{
  "id": "fde5e90cc0964b846949c78fa2e949e2",
  "_format": "hh-sol-build-info-1",
  "solcVersion": "0.8.6",
  "solcLongVersion": "0.8.6+commit.11564f7e",
  "input": {
    "language": "Solidity",
    "sources": {
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBeacon.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/DrawBeacon.sol';\n"
      },
      "@pooltogether/v4-core/contracts/DrawBeacon.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"./interfaces/IDrawBeacon.sol\";\nimport \"./interfaces/IDrawBuffer.sol\";\n\n\n/**\n  * @title  PoolTogether V4 DrawBeacon\n  * @author PoolTogether Inc Team\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\n            To create a new Draw, the user requests a new random number from the RNG service.\n            When the random number is available, the user can create the draw using the create() method\n            which will push the draw onto the DrawBuffer.\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\n*/\ncontract DrawBeacon is IDrawBeacon, Ownable {\n    using SafeCast for uint256;\n    using SafeERC20 for IERC20;\n\n    /* ============ Variables ============ */\n\n    /// @notice RNG contract interface\n    RNGInterface internal rng;\n\n    /// @notice Current RNG Request\n    RngRequest internal rngRequest;\n\n    /// @notice DrawBuffer address\n    IDrawBuffer internal drawBuffer;\n\n    /**\n     * @notice RNG Request Timeout.  In fact, this is really a \"complete draw\" timeout.\n     * @dev If the rng completes the award can still be cancelled.\n     */\n    uint32 internal rngTimeout;\n\n    /// @notice Seconds between beacon period request\n    uint32 internal beaconPeriodSeconds;\n\n    /// @notice Epoch timestamp when beacon period can start\n    uint64 internal beaconPeriodStartedAt;\n\n    /**\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\n     */\n    uint32 internal nextDrawId;\n\n    /* ============ Structs ============ */\n\n    /**\n     * @notice RNG Request\n     * @param id          RNG request ID\n     * @param lockBlock   Block number that the RNG request is locked\n     * @param requestedAt Time when RNG is requested\n     */\n    struct RngRequest {\n        uint32 id;\n        uint32 lockBlock;\n        uint64 requestedAt;\n    }\n\n    /* ============ Events ============ */\n\n    /**\n     * @notice Emit when the DrawBeacon is deployed.\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\n     */\n    event Deployed(\n        uint32 nextDrawId,\n        uint64 beaconPeriodStartedAt\n    );\n\n    /* ============ Modifiers ============ */\n\n    modifier requireDrawNotStarted() {\n        _requireDrawNotStarted();\n        _;\n    }\n\n    modifier requireCanStartDraw() {\n        require(_isBeaconPeriodOver(), \"DrawBeacon/beacon-period-not-over\");\n        require(!isRngRequested(), \"DrawBeacon/rng-already-requested\");\n        _;\n    }\n\n    modifier requireCanCompleteRngRequest() {\n        require(isRngRequested(), \"DrawBeacon/rng-not-requested\");\n        require(isRngCompleted(), \"DrawBeacon/rng-not-complete\");\n        _;\n    }\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Deploy the DrawBeacon smart contract.\n     * @param _owner Address of the DrawBeacon owner\n     * @param _drawBuffer The address of the draw buffer to push draws to\n     * @param _rng The RNG service to use\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\n     */\n    constructor(\n        address _owner,\n        IDrawBuffer _drawBuffer,\n        RNGInterface _rng,\n        uint32 _nextDrawId,\n        uint64 _beaconPeriodStart,\n        uint32 _beaconPeriodSeconds,\n        uint32 _rngTimeout\n    ) Ownable(_owner) {\n        require(_beaconPeriodStart > 0, \"DrawBeacon/beacon-period-greater-than-zero\");\n        require(address(_rng) != address(0), \"DrawBeacon/rng-not-zero\");\n        require(_nextDrawId >= 1, \"DrawBeacon/next-draw-id-gte-one\");\n\n        beaconPeriodStartedAt = _beaconPeriodStart;\n        nextDrawId = _nextDrawId;\n\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\n        _setDrawBuffer(_drawBuffer);\n        _setRngService(_rng);\n        _setRngTimeout(_rngTimeout);\n\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\n        emit BeaconPeriodStarted(_beaconPeriodStart);\n    }\n\n    /* ============ Public Functions ============ */\n\n    /**\n     * @notice Returns whether the random number request has completed.\n     * @return True if a random number request has completed, false otherwise.\n     */\n    function isRngCompleted() public view override returns (bool) {\n        return rng.isRequestComplete(rngRequest.id);\n    }\n\n    /**\n     * @notice Returns whether a random number has been requested\n     * @return True if a random number has been requested, false otherwise.\n     */\n    function isRngRequested() public view override returns (bool) {\n        return rngRequest.id != 0;\n    }\n\n    /**\n     * @notice Returns whether the random number request has timed out.\n     * @return True if a random number request has timed out, false otherwise.\n     */\n    function isRngTimedOut() public view override returns (bool) {\n        if (rngRequest.requestedAt == 0) {\n            return false;\n        } else {\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\n        }\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IDrawBeacon\n    function canStartDraw() external view override returns (bool) {\n        return _isBeaconPeriodOver() && !isRngRequested();\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function canCompleteDraw() external view override returns (bool) {\n        return isRngRequested() && isRngCompleted();\n    }\n\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\n    /// @return The next beacon period start time\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\n        return\n            _calculateNextBeaconPeriodStartTime(\n                beaconPeriodStartedAt,\n                beaconPeriodSeconds,\n                _currentTime()\n            );\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\n        external\n        view\n        override\n        returns (uint64)\n    {\n        return\n            _calculateNextBeaconPeriodStartTime(\n                beaconPeriodStartedAt,\n                beaconPeriodSeconds,\n                _time\n            );\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function cancelDraw() external override {\n        require(isRngTimedOut(), \"DrawBeacon/rng-not-timedout\");\n        uint32 requestId = rngRequest.id;\n        uint32 lockBlock = rngRequest.lockBlock;\n        delete rngRequest;\n        emit DrawCancelled(requestId, lockBlock);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function completeDraw() external override requireCanCompleteRngRequest {\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\n        uint32 _nextDrawId = nextDrawId;\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\n        uint64 _time = _currentTime();\n\n        // create Draw struct\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\n            winningRandomNumber: randomNumber,\n            drawId: _nextDrawId,\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\n            beaconPeriodSeconds: _beaconPeriodSeconds\n        });\n\n        drawBuffer.pushDraw(_draw);\n\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\n            _beaconPeriodStartedAt,\n            _beaconPeriodSeconds,\n            _time\n        );\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\n        nextDrawId = _nextDrawId + 1;\n\n        // Reset the rngReqeust state so Beacon period can start again.\n        delete rngRequest;\n\n        emit DrawCompleted(randomNumber);\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\n        return _beaconPeriodRemainingSeconds();\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function beaconPeriodEndAt() external view override returns (uint64) {\n        return _beaconPeriodEndAt();\n    }\n\n    function getBeaconPeriodSeconds() external view returns (uint32) {\n        return beaconPeriodSeconds;\n    }\n\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\n        return beaconPeriodStartedAt;\n    }\n\n    function getDrawBuffer() external view returns (IDrawBuffer) {\n        return drawBuffer;\n    }\n\n    function getNextDrawId() external view returns (uint32) {\n        return nextDrawId;\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function getLastRngLockBlock() external view override returns (uint32) {\n        return rngRequest.lockBlock;\n    }\n\n    function getLastRngRequestId() external view override returns (uint32) {\n        return rngRequest.id;\n    }\n\n    function getRngService() external view returns (RNGInterface) {\n        return rng;\n    }\n\n    function getRngTimeout() external view returns (uint32) {\n        return rngTimeout;\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function isBeaconPeriodOver() external view override returns (bool) {\n        return _isBeaconPeriodOver();\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\n        external\n        override\n        onlyOwner\n        returns (IDrawBuffer)\n    {\n        return _setDrawBuffer(newDrawBuffer);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function startDraw() external override requireCanStartDraw {\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\n\n        if (feeToken != address(0) && requestFee > 0) {\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\n        }\n\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\n        rngRequest.id = requestId;\n        rngRequest.lockBlock = lockBlock;\n        rngRequest.requestedAt = _currentTime();\n\n        emit DrawStarted(requestId, lockBlock);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\n        external\n        override\n        onlyOwner\n        requireDrawNotStarted\n    {\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\n        _setRngTimeout(_rngTimeout);\n    }\n\n    /// @inheritdoc IDrawBeacon\n    function setRngService(RNGInterface _rngService)\n        external\n        override\n        onlyOwner\n        requireDrawNotStarted\n    {\n        _setRngService(_rngService);\n    }\n\n    /**\n     * @notice Sets the RNG service that the Prize Strategy is connected to\n     * @param _rngService The address of the new RNG service interface\n     */\n    function _setRngService(RNGInterface _rngService) internal\n    {\n        rng = _rngService;\n        emit RngServiceUpdated(_rngService);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Calculates when the next beacon period will start\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\n     * @param _time The timestamp to use as the current time\n     * @return The timestamp at which the next beacon period would start\n     */\n    function _calculateNextBeaconPeriodStartTime(\n        uint64 _beaconPeriodStartedAt,\n        uint32 _beaconPeriodSeconds,\n        uint64 _time\n    ) internal pure returns (uint64) {\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\n    }\n\n    /**\n     * @notice returns the current time.  Used for testing.\n     * @return The current time (block.timestamp)\n     */\n    function _currentTime() internal view virtual returns (uint64) {\n        return uint64(block.timestamp);\n    }\n\n    /**\n     * @notice Returns the timestamp at which the beacon period ends\n     * @return The timestamp at which the beacon period ends\n     */\n    function _beaconPeriodEndAt() internal view returns (uint64) {\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\n    }\n\n    /**\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\n     * @return The number of seconds remaining until the prize can be awarded.\n     */\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\n        uint64 endAt = _beaconPeriodEndAt();\n        uint64 time = _currentTime();\n\n        if (endAt <= time) {\n            return 0;\n        }\n\n        return endAt - time;\n    }\n\n    /**\n     * @notice Returns whether the beacon period is over.\n     * @return True if the beacon period is over, false otherwise\n     */\n    function _isBeaconPeriodOver() internal view returns (bool) {\n        return _beaconPeriodEndAt() <= _currentTime();\n    }\n\n    /**\n     * @notice Check to see draw is in progress.\n     */\n    function _requireDrawNotStarted() internal view {\n        uint256 currentBlock = block.number;\n\n        require(\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\n            \"DrawBeacon/rng-in-flight\"\n        );\n    }\n\n    /**\n     * @notice Set global DrawBuffer variable.\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n     * @param _newDrawBuffer  DrawBuffer address\n     * @return DrawBuffer\n     */\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\n        require(address(_newDrawBuffer) != address(0), \"DrawBeacon/draw-history-not-zero-address\");\n\n        require(\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\n            \"DrawBeacon/existing-draw-history-address\"\n        );\n\n        drawBuffer = _newDrawBuffer;\n\n        emit DrawBufferUpdated(_newDrawBuffer);\n\n        return _newDrawBuffer;\n    }\n\n    /**\n     * @notice Sets the beacon period in seconds.\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\n     */\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\n        require(_beaconPeriodSeconds > 0, \"DrawBeacon/beacon-period-greater-than-zero\");\n        beaconPeriodSeconds = _beaconPeriodSeconds;\n\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\n    }\n\n    /**\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n     * @param _rngTimeout The RNG request timeout in seconds.\n     */\n    function _setRngTimeout(uint32 _rngTimeout) internal {\n        require(_rngTimeout > 60, \"DrawBeacon/rng-timeout-gt-60-secs\");\n        rngTimeout = _rngTimeout;\n\n        emit RngTimeoutSet(_rngTimeout);\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/math/SafeCast.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n *\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n * all math on `uint256` and `int256` and then downcasting.\n */\nlibrary SafeCast {\n    /**\n     * @dev Returns the downcasted uint224 from uint256, reverting on\n     * overflow (when the input is greater than largest uint224).\n     *\n     * Counterpart to Solidity's `uint224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toUint224(uint256 value) internal pure returns (uint224) {\n        require(value <= type(uint224).max, \"SafeCast: value doesn't fit in 224 bits\");\n        return uint224(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint128 from uint256, reverting on\n     * overflow (when the input is greater than largest uint128).\n     *\n     * Counterpart to Solidity's `uint128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     */\n    function toUint128(uint256 value) internal pure returns (uint128) {\n        require(value <= type(uint128).max, \"SafeCast: value doesn't fit in 128 bits\");\n        return uint128(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint96 from uint256, reverting on\n     * overflow (when the input is greater than largest uint96).\n     *\n     * Counterpart to Solidity's `uint96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     */\n    function toUint96(uint256 value) internal pure returns (uint96) {\n        require(value <= type(uint96).max, \"SafeCast: value doesn't fit in 96 bits\");\n        return uint96(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint64 from uint256, reverting on\n     * overflow (when the input is greater than largest uint64).\n     *\n     * Counterpart to Solidity's `uint64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     */\n    function toUint64(uint256 value) internal pure returns (uint64) {\n        require(value <= type(uint64).max, \"SafeCast: value doesn't fit in 64 bits\");\n        return uint64(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint32 from uint256, reverting on\n     * overflow (when the input is greater than largest uint32).\n     *\n     * Counterpart to Solidity's `uint32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     */\n    function toUint32(uint256 value) internal pure returns (uint32) {\n        require(value <= type(uint32).max, \"SafeCast: value doesn't fit in 32 bits\");\n        return uint32(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint16 from uint256, reverting on\n     * overflow (when the input is greater than largest uint16).\n     *\n     * Counterpart to Solidity's `uint16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     */\n    function toUint16(uint256 value) internal pure returns (uint16) {\n        require(value <= type(uint16).max, \"SafeCast: value doesn't fit in 16 bits\");\n        return uint16(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint8 from uint256, reverting on\n     * overflow (when the input is greater than largest uint8).\n     *\n     * Counterpart to Solidity's `uint8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits.\n     */\n    function toUint8(uint256 value) internal pure returns (uint8) {\n        require(value <= type(uint8).max, \"SafeCast: value doesn't fit in 8 bits\");\n        return uint8(value);\n    }\n\n    /**\n     * @dev Converts a signed int256 into an unsigned uint256.\n     *\n     * Requirements:\n     *\n     * - input must be greater than or equal to 0.\n     */\n    function toUint256(int256 value) internal pure returns (uint256) {\n        require(value >= 0, \"SafeCast: value must be positive\");\n        return uint256(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int128 from int256, reverting on\n     * overflow (when the input is less than smallest int128 or\n     * greater than largest int128).\n     *\n     * Counterpart to Solidity's `int128` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 128 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt128(int256 value) internal pure returns (int128) {\n        require(value >= type(int128).min && value <= type(int128).max, \"SafeCast: value doesn't fit in 128 bits\");\n        return int128(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int64 from int256, reverting on\n     * overflow (when the input is less than smallest int64 or\n     * greater than largest int64).\n     *\n     * Counterpart to Solidity's `int64` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 64 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt64(int256 value) internal pure returns (int64) {\n        require(value >= type(int64).min && value <= type(int64).max, \"SafeCast: value doesn't fit in 64 bits\");\n        return int64(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int32 from int256, reverting on\n     * overflow (when the input is less than smallest int32 or\n     * greater than largest int32).\n     *\n     * Counterpart to Solidity's `int32` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 32 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt32(int256 value) internal pure returns (int32) {\n        require(value >= type(int32).min && value <= type(int32).max, \"SafeCast: value doesn't fit in 32 bits\");\n        return int32(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int16 from int256, reverting on\n     * overflow (when the input is less than smallest int16 or\n     * greater than largest int16).\n     *\n     * Counterpart to Solidity's `int16` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 16 bits\n     *\n     * _Available since v3.1._\n     */\n    function toInt16(int256 value) internal pure returns (int16) {\n        require(value >= type(int16).min && value <= type(int16).max, \"SafeCast: value doesn't fit in 16 bits\");\n        return int16(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int8 from int256, reverting on\n     * overflow (when the input is less than smallest int8 or\n     * greater than largest int8).\n     *\n     * Counterpart to Solidity's `int8` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 8 bits.\n     *\n     * _Available since v3.1._\n     */\n    function toInt8(int256 value) internal pure returns (int8) {\n        require(value >= type(int8).min && value <= type(int8).max, \"SafeCast: value doesn't fit in 8 bits\");\n        return int8(value);\n    }\n\n    /**\n     * @dev Converts an unsigned uint256 into a signed int256.\n     *\n     * Requirements:\n     *\n     * - input must be less than or equal to maxInt256.\n     */\n    function toInt256(uint256 value) internal pure returns (int256) {\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\n        require(value <= uint256(type(int256).max), \"SafeCast: value doesn't fit in an int256\");\n        return int256(value);\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n    /**\n     * @dev Returns the amount of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the amount of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\n\n    /**\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\n     * allowance mechanism. `amount` 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(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) external returns (bool);\n\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"
      },
      "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\nimport \"../../../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    function safeTransfer(\n        IERC20 token,\n        address to,\n        uint256 value\n    ) internal {\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n    }\n\n    function safeTransferFrom(\n        IERC20 token,\n        address from,\n        address to,\n        uint256 value\n    ) internal {\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n    }\n\n    /**\n     * @dev Deprecated. This function has issues similar to the ones found in\n     * {IERC20-approve}, and its usage is discouraged.\n     *\n     * Whenever possible, use {safeIncreaseAllowance} and\n     * {safeDecreaseAllowance} instead.\n     */\n    function safeApprove(\n        IERC20 token,\n        address spender,\n        uint256 value\n    ) internal {\n        // safeApprove should only be called when setting an initial allowance,\n        // or when resetting it to zero. To increase and decrease it, use\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n        require(\n            (value == 0) || (token.allowance(address(this), spender) == 0),\n            \"SafeERC20: approve from non-zero to non-zero allowance\"\n        );\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n    }\n\n    function safeIncreaseAllowance(\n        IERC20 token,\n        address spender,\n        uint256 value\n    ) internal {\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\n    }\n\n    function safeDecreaseAllowance(\n        IERC20 token,\n        address spender,\n        uint256 value\n    ) internal {\n        unchecked {\n            uint256 oldAllowance = token.allowance(address(this), spender);\n            require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n            uint256 newAllowance = oldAllowance - value;\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\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, \"SafeERC20: low-level call failed\");\n        if (returndata.length > 0) {\n            // Return data is optional\n            require(abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n        }\n    }\n}\n"
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.6.0;\n\n/// @title Random Number Generator Interface\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\ninterface RNGInterface {\n\n  /// @notice Emitted when a new request for a random number has been submitted\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\n  /// @param sender The indexed address of the sender of the request\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\n\n  /// @notice Emitted when an existing request for a random number has been completed\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\n  /// @param randomNumber The random number produced by the 3rd-party service\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\n\n  /// @notice Gets the last request id used by the RNG service\n  /// @return requestId The last request id used in the last request\n  function getLastRequestId() external view returns (uint32 requestId);\n\n  /// @notice Gets the Fee for making a Request against an RNG service\n  /// @return feeToken The address of the token that is used to pay fees\n  /// @return requestFee The fee required to be paid to make a request\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\n\n  /// @notice Sends a request for a random number to the 3rd-party service\n  /// @dev Some services will complete the request immediately, others may have a time-delay\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\n  /// @return requestId The ID of the request used to get the results of the RNG service\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\n  /// should \"lock\" all activity until the result is available via the `requestId`\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\n\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\n  /// @param requestId The ID of the request used to get the results of the RNG service\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\n\n  /// @notice Gets the random number produced by the 3rd-party service\n  /// @param requestId The ID of the request used to get the results of the RNG service\n  /// @return randomNum The random number\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\n}\n"
      },
      "@pooltogether/owner-manager-contracts/contracts/Ownable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity ^0.8.0;\n\n/**\n * @title Abstract ownable contract that can be inherited by other contracts\n * @notice 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 * By default, the owner is the deployer of the contract.\n *\n * The owner account is set through a two steps process.\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n *\n * The manager account needs to be set using {setManager}.\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 {\n    address private _owner;\n    address private _pendingOwner;\n\n    /**\n     * @dev Emitted when `_pendingOwner` has been changed.\n     * @param pendingOwner new `_pendingOwner` address.\n     */\n    event OwnershipOffered(address indexed pendingOwner);\n\n    /**\n     * @dev Emitted when `_owner` has been changed.\n     * @param previousOwner previous `_owner` address.\n     * @param newOwner new `_owner` address.\n     */\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n    /* ============ Deploy ============ */\n\n    /**\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\n     * @param _initialOwner Initial owner of the contract.\n     */\n    constructor(address _initialOwner) {\n        _setOwner(_initialOwner);\n    }\n\n    /* ============ External Functions ============ */\n\n    /**\n     * @notice Returns the address of the current owner.\n     */\n    function owner() public view virtual returns (address) {\n        return _owner;\n    }\n\n    /**\n     * @notice Gets current `_pendingOwner`.\n     * @return Current `_pendingOwner` address.\n     */\n    function pendingOwner() external view virtual returns (address) {\n        return _pendingOwner;\n    }\n\n    /**\n     * @notice Renounce ownership of the contract.\n     * @dev Leaves the contract without owner. It will not be possible to call\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\n     *\n     * NOTE: Renouncing ownership will leave the contract without an owner,\n     * thereby removing any functionality that is only available to the owner.\n     */\n    function renounceOwnership() external virtual onlyOwner {\n        _setOwner(address(0));\n    }\n\n    /**\n    * @notice Allows current owner to set the `_pendingOwner` address.\n    * @param _newOwner Address to transfer ownership to.\n    */\n    function transferOwnership(address _newOwner) external onlyOwner {\n        require(_newOwner != address(0), \"Ownable/pendingOwner-not-zero-address\");\n\n        _pendingOwner = _newOwner;\n\n        emit OwnershipOffered(_newOwner);\n    }\n\n    /**\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\n    * @dev This function is only callable by the `_pendingOwner`.\n    */\n    function claimOwnership() external onlyPendingOwner {\n        _setOwner(_pendingOwner);\n        _pendingOwner = address(0);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Internal function to set the `_owner` of the contract.\n     * @param _newOwner New `_owner` address.\n     */\n    function _setOwner(address _newOwner) private {\n        address _oldOwner = _owner;\n        _owner = _newOwner;\n        emit OwnershipTransferred(_oldOwner, _newOwner);\n    }\n\n    /* ============ Modifier Functions ============ */\n\n    /**\n     * @dev Throws if called by any account other than the owner.\n     */\n    modifier onlyOwner() {\n        require(owner() == msg.sender, \"Ownable/caller-not-owner\");\n        _;\n    }\n\n    /**\n    * @dev Throws if called by any account other than the `pendingOwner`.\n    */\n    modifier onlyPendingOwner() {\n        require(msg.sender == _pendingOwner, \"Ownable/caller-not-pendingOwner\");\n        _;\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\";\nimport \"./IDrawBuffer.sol\";\n\n/** @title  IDrawBeacon\n  * @author PoolTogether Inc Team\n  * @notice The DrawBeacon interface.\n*/\ninterface IDrawBeacon {\n\n    /// @notice Draw struct created every draw\n    /// @param winningRandomNumber The random number returned from the RNG service\n    /// @param drawId The monotonically increasing drawId for each draw\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\n    struct Draw {\n        uint256 winningRandomNumber;\n        uint32 drawId;\n        uint64 timestamp;\n        uint64 beaconPeriodStartedAt;\n        uint32 beaconPeriodSeconds;\n    }\n\n    /**\n     * @notice Emit when a new DrawBuffer has been set.\n     * @param newDrawBuffer       The new DrawBuffer address\n     */\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\n\n    /**\n     * @notice Emit when a draw has opened.\n     * @param startedAt Start timestamp\n     */\n    event BeaconPeriodStarted(uint64 indexed startedAt);\n\n    /**\n     * @notice Emit when a draw has started.\n     * @param rngRequestId  draw id\n     * @param rngLockBlock  Block when draw becomes invalid\n     */\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\n\n    /**\n     * @notice Emit when a draw has been cancelled.\n     * @param rngRequestId  draw id\n     * @param rngLockBlock  Block when draw becomes invalid\n     */\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\n\n    /**\n     * @notice Emit when a draw has been completed.\n     * @param randomNumber  Random number generated from draw\n     */\n    event DrawCompleted(uint256 randomNumber);\n\n    /**\n     * @notice Emit when a RNG service address is set.\n     * @param rngService  RNG service address\n     */\n    event RngServiceUpdated(RNGInterface indexed rngService);\n\n    /**\n     * @notice Emit when a draw timeout param is set.\n     * @param rngTimeout  draw timeout param in seconds\n     */\n    event RngTimeoutSet(uint32 rngTimeout);\n\n    /**\n     * @notice Emit when the drawPeriodSeconds is set.\n     * @param drawPeriodSeconds Time between draw\n     */\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\n\n    /**\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\n     * @return The number of seconds remaining until the beacon period can be complete.\n     */\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\n\n    /**\n     * @notice Returns the timestamp at which the beacon period ends\n     * @return The timestamp at which the beacon period ends.\n     */\n    function beaconPeriodEndAt() external view returns (uint64);\n\n    /**\n     * @notice Returns whether a Draw can be started.\n     * @return True if a Draw can be started, false otherwise.\n     */\n    function canStartDraw() external view returns (bool);\n\n    /**\n     * @notice Returns whether a Draw can be completed.\n     * @return True if a Draw can be completed, false otherwise.\n     */\n    function canCompleteDraw() external view returns (bool);\n\n    /**\n     * @notice Calculates when the next beacon period will start.\n     * @param time The timestamp to use as the current time\n     * @return The timestamp at which the next beacon period would start\n     */\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\n\n    /**\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\n     */\n    function cancelDraw() external;\n\n    /**\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\n     */\n    function completeDraw() external;\n\n    /**\n     * @notice Returns the block number that the current RNG request has been locked to.\n     * @return The block number that the RNG request is locked to\n     */\n    function getLastRngLockBlock() external view returns (uint32);\n\n    /**\n     * @notice Returns the current RNG Request ID.\n     * @return The current Request ID\n     */\n    function getLastRngRequestId() external view returns (uint32);\n\n    /**\n     * @notice Returns whether the beacon period is over\n     * @return True if the beacon period is over, false otherwise\n     */\n    function isBeaconPeriodOver() external view returns (bool);\n\n    /**\n     * @notice Returns whether the random number request has completed.\n     * @return True if a random number request has completed, false otherwise.\n     */\n    function isRngCompleted() external view returns (bool);\n\n    /**\n     * @notice Returns whether a random number has been requested\n     * @return True if a random number has been requested, false otherwise.\n     */\n    function isRngRequested() external view returns (bool);\n\n    /**\n     * @notice Returns whether the random number request has timed out.\n     * @return True if a random number request has timed out, false otherwise.\n     */\n    function isRngTimedOut() external view returns (bool);\n\n    /**\n     * @notice Allows the owner to set the beacon period in seconds.\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\n     */\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\n\n    /**\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n     * @param rngTimeout The RNG request timeout in seconds.\n     */\n    function setRngTimeout(uint32 rngTimeout) external;\n\n    /**\n     * @notice Sets the RNG service that the Prize Strategy is connected to\n     * @param rngService The address of the new RNG service interface\n     */\n    function setRngService(RNGInterface rngService) external;\n\n    /**\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\n     */\n    function startDraw() external;\n\n    /**\n     * @notice Set global DrawBuffer variable.\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n     * @param newDrawBuffer DrawBuffer address\n     * @return DrawBuffer\n     */\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../interfaces/IDrawBeacon.sol\";\n\n/** @title  IDrawBuffer\n  * @author PoolTogether Inc Team\n  * @notice The DrawBuffer interface.\n*/\ninterface IDrawBuffer {\n    /**\n     * @notice Emit when a new draw has been created.\n     * @param drawId Draw id\n     * @param draw The Draw struct\n     */\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\n\n    /**\n     * @notice Read a ring buffer cardinality\n     * @return Ring buffer cardinality\n     */\n    function getBufferCardinality() external view returns (uint32);\n\n    /**\n     * @notice Read a Draw from the draws ring buffer.\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\n     * @param drawId Draw.drawId\n     * @return IDrawBeacon.Draw\n     */\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\n\n    /**\n     * @notice Read multiple Draws from the draws ring buffer.\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\n     * @param drawIds Array of drawIds\n     * @return IDrawBeacon.Draw[]\n     */\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\n\n    /**\n     * @notice Gets the number of Draws held in the draw ring buffer.\n     * @dev If no Draws have been pushed, it will return 0.\n     * @dev If the ring buffer is full, it will return the cardinality.\n     * @dev Otherwise, it will return the NewestDraw index + 1.\n     * @return Number of Draws held in the draw ring buffer.\n     */\n    function getDrawCount() external view returns (uint32);\n\n    /**\n     * @notice Read newest Draw from draws ring buffer.\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\n     * @return IDrawBeacon.Draw\n     */\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\n\n    /**\n     * @notice Read oldest Draw from draws ring buffer.\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\n     * @return IDrawBeacon.Draw\n     */\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\n\n    /**\n     * @notice Push Draw onto draws ring buffer history.\n     * @dev    Push new draw onto draws history via authorized manager or owner.\n     * @param draw IDrawBeacon.Draw\n     * @return Draw.drawId\n     */\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\n\n    /**\n     * @notice Set existing Draw in draws ring buffer with new parameters.\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\n     * @param newDraw IDrawBeacon.Draw\n     * @return Draw.drawId\n     */\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\n}\n"
      },
      "@openzeppelin/contracts/utils/Address.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n    /**\n     * @dev Returns true if `account` is a contract.\n     *\n     * [IMPORTANT]\n     * ====\n     * It is unsafe to assume that an address for which this function returns\n     * false is an externally-owned account (EOA) and not a contract.\n     *\n     * Among others, `isContract` will return false for the following\n     * types of addresses:\n     *\n     *  - an externally-owned account\n     *  - a contract in construction\n     *  - an address where a contract will be created\n     *  - an address where a contract lived, but was destroyed\n     * ====\n     */\n    function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize, which returns 0 for contracts in\n        // construction, since the code is only stored at the end of the\n        // constructor execution.\n\n        uint256 size;\n        assembly {\n            size := extcodesize(account)\n        }\n        return size > 0;\n    }\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n     */\n    function sendValue(address payable recipient, uint256 amount) internal {\n        require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n        (bool success, ) = recipient.call{value: amount}(\"\");\n        require(success, \"Address: unable to send value, recipient may have reverted\");\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, it is bubbled up by this\n     * function (like regular Solidity function calls).\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     * _Available since v3.1._\n     */\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionCall(target, data, \"Address: low-level call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n     * `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, 0, errorMessage);\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     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value\n    ) internal returns (bytes memory) {\n        return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\n     *\n     * _Available since v3.1._\n     */\n    function functionCallWithValue(\n        address target,\n        bytes memory data,\n        uint256 value,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(address(this).balance >= value, \"Address: insufficient balance for call\");\n        require(isContract(target), \"Address: call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n        return functionStaticCall(target, data, \"Address: low-level static call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a static call.\n     *\n     * _Available since v3.3._\n     */\n    function functionStaticCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        require(isContract(target), \"Address: static call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n        return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n    }\n\n    /**\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n     * but performing a delegate call.\n     *\n     * _Available since v3.4._\n     */\n    function functionDelegateCall(\n        address target,\n        bytes memory data,\n        string memory errorMessage\n    ) internal returns (bytes memory) {\n        require(isContract(target), \"Address: delegate call to non-contract\");\n\n        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResult(success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n     * revert reason using the provided one.\n     *\n     * _Available since v4.3._\n     */\n    function verifyCallResult(\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal pure returns (bytes memory) {\n        if (success) {\n            return returndata;\n        } else {\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\n                assembly {\n                    let returndata_size := mload(returndata)\n                    revert(add(32, returndata), returndata_size)\n                }\n            } else {\n                revert(errorMessage);\n            }\n        }\n    }\n}\n"
      },
      "@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\nimport \"@pooltogether/v4-core/contracts/DrawBeacon.sol\";\n\n/**\n * @title  PoolTogether V4 IPrizeTierHistory\n * @author PoolTogether Inc Team\n * @notice IPrizeTierHistory is the base contract for PrizeTierHistory\n */\ninterface IPrizeTierHistory {\n    /**\n     * @notice Linked Draw and PrizeDistribution parameters storage schema\n     */\n    struct PrizeTier {\n        uint8 bitRangeSize;\n        uint32 drawId;\n        uint32 maxPicksPerUser;\n        uint32 expiryDuration;\n        uint32 endTimestampOffset;\n        uint256 prize;\n        uint32[16] tiers;\n    }\n\n    /**\n     * @notice Emit when new PrizeTier is added to history\n     * @param drawId    Draw ID\n     * @param prizeTier PrizeTier parameters\n     */\n    event PrizeTierPushed(uint32 indexed drawId, PrizeTier prizeTier);\n\n    /**\n     * @notice Emit when existing PrizeTier is updated in history\n     * @param drawId    Draw ID\n     * @param prizeTier PrizeTier parameters\n     */\n    event PrizeTierSet(uint32 indexed drawId, PrizeTier prizeTier);\n\n    /**\n     * @notice Push PrizeTierHistory struct onto history array.\n     * @dev    Callable only by owner or manager,\n     * @param drawPrizeDistribution New PrizeTierHistory struct\n     */\n    function push(PrizeTier calldata drawPrizeDistribution) external;\n\n    function replace(PrizeTier calldata _prizeTier) external;\n\n    /**\n     * @notice Read PrizeTierHistory struct from history array.\n     * @param drawId Draw ID\n     * @return prizeTier\n     */\n    function getPrizeTier(uint32 drawId) external view returns (PrizeTier memory prizeTier);\n\n    /**\n     * @notice Read first Draw ID used to initialize history\n     * @return Draw ID of first PrizeTier record\n     */\n    function getOldestDrawId() external view returns (uint32);\n\n    function getNewestDrawId() external view returns (uint32);\n\n    /**\n     * @notice Read PrizeTierHistory List from history array.\n     * @param drawIds Draw ID array\n     * @return prizeTierList\n     */\n    function getPrizeTierList(uint32[] calldata drawIds)\n        external\n        view\n        returns (PrizeTier[] memory prizeTierList);\n\n    /**\n     * @notice Push PrizeTierHistory struct onto history array.\n     * @dev    Callable only by owner.\n     * @param prizeTier Updated PrizeTierHistory struct\n     * @return drawId Draw ID linked to PrizeTierHistory\n     */\n    function popAndPush(PrizeTier calldata prizeTier) external returns (uint32 drawId);\n\n    function getPrizeTierAtIndex(uint256 index) external view returns (PrizeTier memory);\n\n    /**\n     * @notice Returns the number of Prize Tier structs pushed\n     * @return The number of prize tiers that have been pushed\n     */\n    function count() external view returns (uint256);\n}\n"
      },
      "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\nimport \"./interfaces/IPrizeTierHistory.sol\";\n\n/**\n * @title  PoolTogether V4 IPrizeTierHistory\n * @author PoolTogether Inc Team\n * @notice IPrizeTierHistory is the base contract for PrizeTierHistory\n */\ncontract PrizeTierHistory is IPrizeTierHistory, Manageable {\n    /* ============ Global Variables ============ */\n    /**\n     * @notice History of PrizeTier updates\n     */\n    PrizeTier[] internal history;\n\n    /* ============ Constructor ============ */\n    constructor(address _owner) Ownable(_owner) {}\n\n    /* ============ External Functions ============ */\n\n    // @inheritdoc IPrizeTierHistory\n    function push(PrizeTier calldata _nextPrizeTier) external override onlyManagerOrOwner {\n        PrizeTier[] memory _history = history;\n\n        if (_history.length > 0) {\n            // READ the newest PrizeTier struct\n            PrizeTier memory _newestPrizeTier = history[history.length - 1];\n            // New PrizeTier ID must only be 1 greater than the last PrizeTier ID.\n            require(\n                _nextPrizeTier.drawId > _newestPrizeTier.drawId,\n                \"PrizeTierHistory/non-sequential-prize-tier\"\n            );\n        }\n\n        history.push(_nextPrizeTier);\n\n        emit PrizeTierPushed(_nextPrizeTier.drawId, _nextPrizeTier);\n    }\n\n    // @inheritdoc IPrizeTierHistory\n    function replace(PrizeTier calldata _prizeTier) external override onlyOwner {\n        uint256 cardinality = history.length;\n        require(cardinality > 0, \"PrizeTierHistory/no-prize-tiers\");\n\n        uint256 leftSide = 0;\n        uint256 rightSide = cardinality - 1;\n        uint32 oldestDrawId = history[leftSide].drawId;\n\n        require(_prizeTier.drawId >= oldestDrawId, \"PrizeTierHistory/draw-id-out-of-range\");\n\n        uint256 index = _binarySearchIndex(_prizeTier.drawId, leftSide, rightSide, history);\n\n        require(history[index].drawId == _prizeTier.drawId, \"PrizeTierHistory/draw-id-must-match\");\n\n        history[index] = _prizeTier;\n\n        emit PrizeTierSet(_prizeTier.drawId, _prizeTier);\n    }\n\n    /* ============ Setter Functions ============ */\n\n    // @inheritdoc IPrizeTierHistory\n    function popAndPush(PrizeTier calldata _prizeTier)\n        external\n        override\n        onlyOwner\n        returns (uint32)\n    {\n        require(history.length > 0, \"PrizeTierHistory/history-empty\");\n        PrizeTier memory _newestPrizeTier = history[history.length - 1];\n        require(_prizeTier.drawId >= _newestPrizeTier.drawId, \"PrizeTierHistory/invalid-draw-id\");\n        history[history.length - 1] = _prizeTier;\n        emit PrizeTierSet(_prizeTier.drawId, _prizeTier);\n\n        return _prizeTier.drawId;\n    }\n\n    /* ============ Getter Functions ============ */\n\n    // @inheritdoc IPrizeTierHistory\n    function getPrizeTier(uint32 _drawId) external view override returns (PrizeTier memory) {\n        require(_drawId > 0, \"PrizeTierHistory/draw-id-not-zero\");\n        return _getPrizeTier(_drawId);\n    }\n\n    // @inheritdoc IPrizeTierHistory\n    function getOldestDrawId() external view override returns (uint32) {\n        return history[0].drawId;\n    }\n\n    // @inheritdoc IPrizeTierHistory\n    function getNewestDrawId() external view override returns (uint32) {\n        return history[history.length - 1].drawId;\n    }\n\n    // @inheritdoc IPrizeTierHistory\n    function getPrizeTierList(uint32[] calldata _drawIds)\n        external\n        view\n        override\n        returns (PrizeTier[] memory)\n    {\n        PrizeTier[] memory _data = new PrizeTier[](_drawIds.length);\n        for (uint256 index = 0; index < _drawIds.length; index++) {\n            _data[index] = _getPrizeTier(_drawIds[index]); // SLOAD each struct instead of the whole array before the FOR loop.\n        }\n        return _data;\n    }\n\n    function _getPrizeTier(uint32 _drawId) internal view returns (PrizeTier memory) {\n        uint256 cardinality = history.length;\n        require(cardinality > 0, \"PrizeTierHistory/no-prize-tiers\");\n\n        uint256 leftSide = 0;\n        uint256 rightSide = cardinality - 1;\n        uint32 oldestDrawId = history[leftSide].drawId;\n        uint32 newestDrawId = history[rightSide].drawId;\n\n        require(_drawId >= oldestDrawId, \"PrizeTierHistory/draw-id-out-of-range\");\n        if (_drawId >= newestDrawId) return history[rightSide];\n        if (_drawId == oldestDrawId) return history[leftSide];\n\n        return _binarySearch(_drawId, leftSide, rightSide, history);\n    }\n\n    function _binarySearch(\n        uint32 _drawId,\n        uint256 leftSide,\n        uint256 rightSide,\n        PrizeTier[] storage _history\n    ) internal view returns (PrizeTier memory) {\n        return _history[_binarySearchIndex(_drawId, leftSide, rightSide, _history)];\n    }\n\n    function _binarySearchIndex(\n        uint32 _drawId,\n        uint256 _leftSide,\n        uint256 _rightSide,\n        PrizeTier[] storage _history\n    ) internal view returns (uint256) {\n        uint256 index;\n        uint256 leftSide = _leftSide;\n        uint256 rightSide = _rightSide;\n        while (true) {\n            uint256 center = leftSide + (rightSide - leftSide) / 2;\n            uint32 centerPrizeTierID = _history[center].drawId;\n\n            if (centerPrizeTierID == _drawId) {\n                index = center;\n                break;\n            }\n\n            if (centerPrizeTierID < _drawId) {\n                leftSide = center + 1;\n            } else if (centerPrizeTierID > _drawId) {\n                rightSide = center - 1;\n            }\n\n            if (leftSide == rightSide) {\n                if (centerPrizeTierID >= _drawId) {\n                    index = center - 1;\n                    break;\n                } else {\n                    index = center;\n                    break;\n                }\n            }\n        }\n        return index;\n    }\n\n    function getPrizeTierAtIndex(uint256 index) external view override returns (PrizeTier memory) {\n        return history[index];\n    }\n\n    function count() external view override returns (uint256) {\n        return history.length;\n    }\n}\n"
      },
      "@pooltogether/owner-manager-contracts/contracts/Manageable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity ^0.8.0;\n\nimport \"./Ownable.sol\";\n\n/**\n * @title Abstract manageable contract that can be inherited by other contracts\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\n * there is an owner and a manager that can be granted exclusive access to specific functions.\n *\n * By default, the owner is the deployer of the contract.\n *\n * The owner account is set through a two steps process.\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n *\n * The manager account needs to be set using {setManager}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyManager`, which can be applied to your functions to restrict their use to\n * the manager.\n */\nabstract contract Manageable is Ownable {\n    address private _manager;\n\n    /**\n     * @dev Emitted when `_manager` has been changed.\n     * @param previousManager previous `_manager` address.\n     * @param newManager new `_manager` address.\n     */\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\n\n    /* ============ External Functions ============ */\n\n    /**\n     * @notice Gets current `_manager`.\n     * @return Current `_manager` address.\n     */\n    function manager() public view virtual returns (address) {\n        return _manager;\n    }\n\n    /**\n     * @notice Set or change of manager.\n     * @dev Throws if called by any account other than the owner.\n     * @param _newManager New _manager address.\n     * @return Boolean to indicate if the operation was successful or not.\n     */\n    function setManager(address _newManager) external onlyOwner returns (bool) {\n        return _setManager(_newManager);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Set or change of manager.\n     * @param _newManager New _manager address.\n     * @return Boolean to indicate if the operation was successful or not.\n     */\n    function _setManager(address _newManager) private returns (bool) {\n        address _previousManager = _manager;\n\n        require(_newManager != _previousManager, \"Manageable/existing-manager-address\");\n\n        _manager = _newManager;\n\n        emit ManagerTransferred(_previousManager, _newManager);\n        return true;\n    }\n\n    /* ============ Modifier Functions ============ */\n\n    /**\n     * @dev Throws if called by any account other than the manager.\n     */\n    modifier onlyManager() {\n        require(manager() == msg.sender, \"Manageable/caller-not-manager\");\n        _;\n    }\n\n    /**\n     * @dev Throws if called by any account other than the manager or the owner.\n     */\n    modifier onlyManagerOrOwner() {\n        require(manager() == msg.sender || owner() == msg.sender, \"Manageable/caller-not-manager-or-owner\");\n        _;\n    }\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\nimport \"./interfaces/IReceiverTimelockTrigger.sol\";\nimport \"./interfaces/IPrizeDistributionFactory.sol\";\nimport \"./interfaces/IDrawCalculatorTimelock.sol\";\n\n/**\n\n  * @title  PoolTogether V4 ReceiverTimelockTrigger\n  * @author PoolTogether Inc Team\n  * @notice The ReceiverTimelockTrigger smart contract is an upgrade of the L2TimelockTimelock smart contract.\n            Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will\n            only pass the total supply of all tickets in a \"PrizePool Network\" to the prize distribution factory contract.\n*/\ncontract ReceiverTimelockTrigger is IReceiverTimelockTrigger, Manageable {\n    /* ============ Global Variables ============ */\n\n    /// @notice The DrawBuffer contract address.\n    IDrawBuffer public immutable drawBuffer;\n\n    /// @notice Internal PrizeDistributionFactory reference.\n    IPrizeDistributionFactory public immutable prizeDistributionFactory;\n\n    /// @notice Timelock struct reference.\n    IDrawCalculatorTimelock public immutable timelock;\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Initialize ReceiverTimelockTrigger smart contract.\n     * @param _owner The smart contract owner\n     * @param _drawBuffer DrawBuffer address\n     * @param _prizeDistributionFactory PrizeDistributionFactory address\n     * @param _timelock DrawCalculatorTimelock address\n     */\n    constructor(\n        address _owner,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionFactory _prizeDistributionFactory,\n        IDrawCalculatorTimelock _timelock\n    ) Ownable(_owner) {\n        drawBuffer = _drawBuffer;\n        prizeDistributionFactory = _prizeDistributionFactory;\n        timelock = _timelock;\n        emit Deployed(_drawBuffer, _prizeDistributionFactory, _timelock);\n    }\n\n    /// @inheritdoc IReceiverTimelockTrigger\n    function push(IDrawBeacon.Draw memory _draw, uint256 _totalNetworkTicketSupply)\n        external\n        override\n        onlyManagerOrOwner\n    {\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\n        drawBuffer.pushDraw(_draw);\n        prizeDistributionFactory.pushPrizeDistribution(_draw.drawId, _totalNetworkTicketSupply);\n        emit DrawLockedPushedAndTotalNetworkTicketSupplyPushed(\n            _draw.drawId,\n            _draw,\n            _totalNetworkTicketSupply\n        );\n    }\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\";\nimport \"./IPrizeDistributionFactory.sol\";\nimport \"./IDrawCalculatorTimelock.sol\";\n\n/**\n * @title  PoolTogether V4 IReceiverTimelockTrigger\n * @author PoolTogether Inc Team\n * @notice The IReceiverTimelockTrigger smart contract interface...\n */\ninterface IReceiverTimelockTrigger {\n    /// @notice Emitted when the contract is deployed.\n    event Deployed(\n        IDrawBuffer indexed drawBuffer,\n        IPrizeDistributionFactory indexed prizeDistributionFactory,\n        IDrawCalculatorTimelock indexed timelock\n    );\n\n    /**\n     * @notice Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\n     * @param drawId Draw ID\n     * @param draw Draw\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\n     */\n    event DrawLockedPushedAndTotalNetworkTicketSupplyPushed(\n        uint32 indexed drawId,\n        IDrawBeacon.Draw draw,\n        uint256 totalNetworkTicketSupply\n    );\n\n    /**\n     * @notice Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory.\n     * @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\n     * @param draw Draw\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\n     */\n    function push(IDrawBeacon.Draw memory draw, uint256 totalNetworkTicketSupply) external;\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\n\ninterface IPrizeDistributionFactory {\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply) external;\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\";\n\ninterface IDrawCalculatorTimelock {\n    /**\n     * @notice Emitted when target draw id is locked.\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\n     * @param drawId    The Draw to unlock\n     */\n    struct Timelock {\n        uint64 timestamp;\n        uint32 drawId;\n    }\n\n    /**\n     * @notice Emitted when target draw id is locked.\n     * @param drawId    Draw ID\n     * @param timestamp Block timestamp\n     */\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\n\n    /**\n     * @notice Emitted event when the timelock struct is updated\n     * @param timelock Timelock struct set\n     */\n    event TimelockSet(Timelock timelock);\n\n    /**\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\n     * @dev    Will enforce a \"cooldown\" period between when a Draw is pushed and when users can start to claim prizes.\n     * @param user    User address\n     * @param drawIds Draw.drawId\n     * @param data    Encoded pick indices\n     * @return Prizes awardable array\n     */\n    function calculate(\n        address user,\n        uint32[] calldata drawIds,\n        bytes calldata data\n    ) external view returns (uint256[] memory, bytes memory);\n\n    /**\n     * @notice Lock passed draw id for `timelockDuration` seconds.\n     * @dev    Restricts new draws by forcing a push timelock.\n     * @param _drawId Draw id to lock.\n     * @param _timestamp Epoch timestamp to unlock the draw.\n     * @return True if operation was successful.\n     */\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\n\n    /**\n     * @notice Read internal DrawCalculator variable.\n     * @return IDrawCalculator\n     */\n    function getDrawCalculator() external view returns (IDrawCalculator);\n\n    /**\n     * @notice Read internal Timelock struct.\n     * @return Timelock\n     */\n    function getTimelock() external view returns (Timelock memory);\n\n    /**\n     * @notice Set the Timelock struct. Only callable by the contract owner.\n     * @param _timelock Timelock struct to set.\n     */\n    function setTimelock(Timelock memory _timelock) external;\n\n    /**\n     * @notice Returns bool for timelockDuration elapsing.\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\n     */\n    function hasElapsed() external view returns (bool);\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./ITicket.sol\";\nimport \"./IDrawBuffer.sol\";\nimport \"../PrizeDistributionBuffer.sol\";\nimport \"../PrizeDistributor.sol\";\n\n/**\n * @title  PoolTogether V4 IDrawCalculator\n * @author PoolTogether Inc Team\n * @notice The DrawCalculator interface.\n */\ninterface IDrawCalculator {\n    struct PickPrize {\n        bool won;\n        uint8 tierIndex;\n    }\n\n    ///@notice Emitted when the contract is initialized\n    event Deployed(\n        ITicket indexed ticket,\n        IDrawBuffer indexed drawBuffer,\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\n    );\n\n    ///@notice Emitted when the prizeDistributor is set/updated\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\n\n    /**\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\n     * @param user User for which to calculate prize amount.\n     * @param drawIds drawId array for which to calculate prize amounts for.\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\n     * @return List of awardable prize amounts ordered by drawId.\n     */\n    function calculate(\n        address user,\n        uint32[] calldata drawIds,\n        bytes calldata data\n    ) external view returns (uint256[] memory, bytes memory);\n\n    /**\n     * @notice Read global DrawBuffer variable.\n     * @return IDrawBuffer\n     */\n    function getDrawBuffer() external view returns (IDrawBuffer);\n\n    /**\n     * @notice Read global DrawBuffer variable.\n     * @return IDrawBuffer\n     */\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\n\n    /**\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\n     * @param user The users address\n     * @param drawIds The drawsId to consider\n     * @return Array of balances\n     */\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\n        external\n        view\n        returns (uint256[] memory);\n\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/ITicket.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../libraries/TwabLib.sol\";\nimport \"./IControlledToken.sol\";\n\ninterface ITicket is IControlledToken {\n    /**\n     * @notice A struct containing details for an Account.\n     * @param balance The current balance for an Account.\n     * @param nextTwabIndex The next available index to store a new twab.\n     * @param cardinality The number of recorded twabs (plus one!).\n     */\n    struct AccountDetails {\n        uint224 balance;\n        uint16 nextTwabIndex;\n        uint16 cardinality;\n    }\n\n    /**\n     * @notice Combines account details with their twab history.\n     * @param details The account details.\n     * @param twabs The history of twabs for this account.\n     */\n    struct Account {\n        AccountDetails details;\n        ObservationLib.Observation[65535] twabs;\n    }\n\n    /**\n     * @notice Emitted when TWAB balance has been delegated to another user.\n     * @param delegator Address of the delegator.\n     * @param delegate Address of the delegate.\n     */\n    event Delegated(address indexed delegator, address indexed delegate);\n\n    /**\n     * @notice Emitted when ticket is initialized.\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\n     * @param symbol Ticket symbol (eg: PcDAI).\n     * @param decimals Ticket decimals.\n     * @param controller Token controller address.\n     */\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\n\n    /**\n     * @notice Emitted when a new TWAB has been recorded.\n     * @param delegate The recipient of the ticket power (may be the same as the user).\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\n     */\n    event NewUserTwab(\n        address indexed delegate,\n        ObservationLib.Observation newTwab\n    );\n\n    /**\n     * @notice Emitted when a new total supply TWAB has been recorded.\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\n     */\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\n\n    /**\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\n     * @param user Address of the delegator.\n     * @return Address of the delegate.\n     */\n    function delegateOf(address user) external view returns (address);\n\n    /**\n    * @notice Delegate time-weighted average balances to an alternative address.\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\n              targetted sender and/or recipient address(s).\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\n    * @dev Current delegate address should be different from the new delegate address `to`.\n    * @param  to Recipient of delegated TWAB.\n    */\n    function delegate(address to) external;\n\n    /**\n     * @notice Allows the controller to delegate on a users behalf.\n     * @param user The user for whom to delegate\n     * @param delegate The new delegate\n     */\n    function controllerDelegateFor(address user, address delegate) external;\n\n    /**\n     * @notice Allows a user to delegate via signature\n     * @param user The user who is delegating\n     * @param delegate The new delegate\n     * @param deadline The timestamp by which this must be submitted\n     * @param v The v portion of the ECDSA sig\n     * @param r The r portion of the ECDSA sig\n     * @param s The s portion of the ECDSA sig\n     */\n    function delegateWithSignature(\n        address user,\n        address delegate,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n\n    /**\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\n     * @param user The user for whom to fetch the TWAB context.\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\n     */\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\n\n    /**\n     * @notice Gets the TWAB at a specific index for a user.\n     * @param user The user for whom to fetch the TWAB.\n     * @param index The index of the TWAB to fetch.\n     * @return The TWAB, which includes the twab amount and the timestamp.\n     */\n    function getTwab(address user, uint16 index)\n        external\n        view\n        returns (ObservationLib.Observation memory);\n\n    /**\n     * @notice Retrieves `user` TWAB balance.\n     * @param user Address of the user whose TWAB is being fetched.\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\n     * @return The TWAB balance at the given timestamp.\n     */\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\n\n    /**\n     * @notice Retrieves `user` TWAB balances.\n     * @param user Address of the user whose TWABs are being fetched.\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\n     * @return `user` TWAB balances.\n     */\n    function getBalancesAt(address user, uint64[] calldata timestamps)\n        external\n        view\n        returns (uint256[] memory);\n\n    /**\n     * @notice Retrieves the average balance held by a user for a given time frame.\n     * @param user The user whose balance is checked.\n     * @param startTime The start time of the time frame.\n     * @param endTime The end time of the time frame.\n     * @return The average balance that the user held during the time frame.\n     */\n    function getAverageBalanceBetween(\n        address user,\n        uint64 startTime,\n        uint64 endTime\n    ) external view returns (uint256);\n\n    /**\n     * @notice Retrieves the average balances held by a user for a given time frame.\n     * @param user The user whose balance is checked.\n     * @param startTimes The start time of the time frame.\n     * @param endTimes The end time of the time frame.\n     * @return The average balance that the user held during the time frame.\n     */\n    function getAverageBalancesBetween(\n        address user,\n        uint64[] calldata startTimes,\n        uint64[] calldata endTimes\n    ) external view returns (uint256[] memory);\n\n    /**\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\n     * @return The total supply TWAB balance at the given timestamp.\n     */\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\n\n    /**\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\n     * @return Total supply TWAB balances.\n     */\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\n        external\n        view\n        returns (uint256[] memory);\n\n    /**\n     * @notice Retrieves the average total supply balance for a set of given time frames.\n     * @param startTimes Array of start times.\n     * @param endTimes Array of end times.\n     * @return The average total supplies held during the time frame.\n     */\n    function getAverageTotalSuppliesBetween(\n        uint64[] calldata startTimes,\n        uint64[] calldata endTimes\n    ) external view returns (uint256[] memory);\n}\n"
      },
      "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./libraries/DrawRingBufferLib.sol\";\nimport \"./interfaces/IPrizeDistributionBuffer.sol\";\n\n/**\n  * @title  PoolTogether V4 PrizeDistributionBuffer\n  * @author PoolTogether Inc Team\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\n            validate the incoming parameters.\n*/\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\n\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\n    uint256 internal constant MAX_CARDINALITY = 256;\n\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\n    /// @dev It's fixed point 9 because 1e9 is the largest \"1\" that fits into 2**32\n    uint256 internal constant TIERS_CEILING = 1e9;\n\n    /// @notice Emitted when the contract is deployed.\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\n    event Deployed(uint8 cardinality);\n\n    /// @notice PrizeDistribution ring buffer history.\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\n        internal prizeDistributionRingBuffer;\n\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\n    DrawRingBufferLib.Buffer internal bufferMetadata;\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructor for PrizeDistributionBuffer\n     * @param _owner Address of the PrizeDistributionBuffer owner\n     * @param _cardinality Cardinality of the `bufferMetadata`\n     */\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\n        bufferMetadata.cardinality = _cardinality;\n        emit Deployed(_cardinality);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getBufferCardinality() external view override returns (uint32) {\n        return bufferMetadata.cardinality;\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getPrizeDistribution(uint32 _drawId)\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\n    {\n        return _getPrizeDistribution(bufferMetadata, _drawId);\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getPrizeDistributions(uint32[] calldata _drawIds)\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\n    {\n        uint256 drawIdsLength = _drawIds.length;\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        IPrizeDistributionBuffer.PrizeDistribution[]\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\n                drawIdsLength\n            );\n\n        for (uint256 i = 0; i < drawIdsLength; i++) {\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\n        }\n\n        return _prizeDistributions;\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getPrizeDistributionCount() external view override returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        if (buffer.lastDrawId == 0) {\n            return 0;\n        }\n\n        uint32 bufferNextIndex = buffer.nextIndex;\n\n        // If the buffer is full return the cardinality, else retun the nextIndex\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\n            return buffer.cardinality;\n        } else {\n            return bufferNextIndex;\n        }\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getNewestPrizeDistribution()\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\n    {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function getOldestPrizeDistribution()\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\n    {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        // if the ring buffer is full, the oldest is at the nextIndex\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\n\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\n        if (buffer.lastDrawId == 0) {\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\n        } else if (prizeDistribution.bitRangeSize == 0) {\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\n            prizeDistribution = prizeDistributionRingBuffer[0];\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\n        } else {\n            // Calculates the drawId using the ring buffer cardinality\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\n        }\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function pushPrizeDistribution(\n        uint32 _drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\n    ) external override onlyManagerOrOwner returns (bool) {\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\n    }\n\n    /// @inheritdoc IPrizeDistributionBuffer\n    function setPrizeDistribution(\n        uint32 _drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\n    ) external override onlyOwner returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        uint32 index = buffer.getIndex(_drawId);\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\n\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\n\n        return _drawId;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Gets the PrizeDistributionBuffer for a drawId\n     * @param _buffer DrawRingBufferLib.Buffer\n     * @param _drawId drawId\n     */\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        internal\n        view\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\n    {\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\n    }\n\n    /**\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\n     * @param _drawId       drawId\n     * @param _prizeDistribution PrizeDistributionBuffer struct\n     */\n    function _pushPrizeDistribution(\n        uint32 _drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\n    ) internal returns (bool) {\n        require(_drawId > 0, \"DrawCalc/draw-id-gt-0\");\n        require(_prizeDistribution.matchCardinality > 0, \"DrawCalc/matchCardinality-gt-0\");\n        require(\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\n            \"DrawCalc/bitRangeSize-too-large\"\n        );\n\n        require(_prizeDistribution.bitRangeSize > 0, \"DrawCalc/bitRangeSize-gt-0\");\n        require(_prizeDistribution.maxPicksPerUser > 0, \"DrawCalc/maxPicksPerUser-gt-0\");\n        require(_prizeDistribution.expiryDuration > 0, \"DrawCalc/expiryDuration-gt-0\");\n\n        // ensure that the sum of the tiers are not gt 100%\n        uint256 sumTotalTiers = 0;\n        uint256 tiersLength = _prizeDistribution.tiers.length;\n\n        for (uint256 index = 0; index < tiersLength; index++) {\n            uint256 tier = _prizeDistribution.tiers[index];\n            sumTotalTiers += tier;\n        }\n\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\n        require(sumTotalTiers <= TIERS_CEILING, \"DrawCalc/tiers-gt-100%\");\n\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        // store the PrizeDistribution in the ring buffer\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\n\n        // update the ring buffer data\n        bufferMetadata = buffer.push(_drawId);\n\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\n\n        return true;\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/PrizeDistributor.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"./interfaces/IPrizeDistributor.sol\";\nimport \"./interfaces/IDrawCalculator.sol\";\n\n/**\n    * @title  PoolTogether V4 PrizeDistributor\n    * @author PoolTogether Inc Team\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\n              if an \"optimal\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\n              the previous prize distributor claim payout.\n*/\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\n    using SafeERC20 for IERC20;\n\n    /* ============ Global Variables ============ */\n\n    /// @notice DrawCalculator address\n    IDrawCalculator internal drawCalculator;\n\n    /// @notice Token address\n    IERC20 internal immutable token;\n\n    /// @notice Maps users => drawId => paid out balance\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\n\n    /* ============ Initialize ============ */\n\n    /**\n     * @notice Initialize PrizeDistributor smart contract.\n     * @param _owner          Owner address\n     * @param _token          Token address\n     * @param _drawCalculator DrawCalculator address\n     */\n    constructor(\n        address _owner,\n        IERC20 _token,\n        IDrawCalculator _drawCalculator\n    ) Ownable(_owner) {\n        _setDrawCalculator(_drawCalculator);\n        require(address(_token) != address(0), \"PrizeDistributor/token-not-zero-address\");\n        token = _token;\n        emit TokenSet(_token);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizeDistributor\n    function claim(\n        address _user,\n        uint32[] calldata _drawIds,\n        bytes calldata _data\n    ) external override returns (uint256) {\n        \n        uint256 totalPayout;\n        \n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\n\n        uint256 drawPayoutsLength = drawPayouts.length;\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\n            uint32 drawId = _drawIds[payoutIndex];\n            uint256 payout = drawPayouts[payoutIndex];\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\n            uint256 payoutDiff = 0;\n\n            // helpfully short-circuit, in case the user screwed something up.\n            require(payout > oldPayout, \"PrizeDistributor/zero-payout\");\n\n            unchecked {\n                payoutDiff = payout - oldPayout;\n            }\n\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\n\n            totalPayout += payoutDiff;\n\n            emit ClaimedDraw(_user, drawId, payoutDiff);\n        }\n\n        _awardPayout(_user, totalPayout);\n\n        return totalPayout;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function withdrawERC20(\n        IERC20 _erc20Token,\n        address _to,\n        uint256 _amount\n    ) external override onlyOwner returns (bool) {\n        require(_to != address(0), \"PrizeDistributor/recipient-not-zero-address\");\n        require(address(_erc20Token) != address(0), \"PrizeDistributor/ERC20-not-zero-address\");\n\n        _erc20Token.safeTransfer(_to, _amount);\n\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\n\n        return true;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\n        return drawCalculator;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\n        external\n        view\n        override\n        returns (uint256)\n    {\n        return _getDrawPayoutBalanceOf(_user, _drawId);\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function getToken() external view override returns (IERC20) {\n        return token;\n    }\n\n    /// @inheritdoc IPrizeDistributor\n    function setDrawCalculator(IDrawCalculator _newCalculator)\n        external\n        override\n        onlyOwner\n        returns (IDrawCalculator)\n    {\n        _setDrawCalculator(_newCalculator);\n        return _newCalculator;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\n        internal\n        view\n        returns (uint256)\n    {\n        return userDrawPayouts[_user][_drawId];\n    }\n\n    function _setDrawPayoutBalanceOf(\n        address _user,\n        uint32 _drawId,\n        uint256 _payout\n    ) internal {\n        userDrawPayouts[_user][_drawId] = _payout;\n    }\n\n    /**\n     * @notice Sets DrawCalculator reference for individual draw id.\n     * @param _newCalculator  DrawCalculator address\n     */\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\n        require(address(_newCalculator) != address(0), \"PrizeDistributor/calc-not-zero\");\n        drawCalculator = _newCalculator;\n\n        emit DrawCalculatorSet(_newCalculator);\n    }\n\n    /**\n     * @notice Transfer claimed draw(s) total payout to user.\n     * @param _to      User address\n     * @param _amount  Transfer amount\n     */\n    function _awardPayout(address _to, uint256 _amount) internal {\n        token.safeTransfer(_to, _amount);\n    }\n\n}\n"
      },
      "@pooltogether/v4-core/contracts/libraries/TwabLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./ExtendedSafeCastLib.sol\";\nimport \"./OverflowSafeComparatorLib.sol\";\nimport \"./RingBufferLib.sol\";\nimport \"./ObservationLib.sol\";\n\n/**\n  * @title  PoolTogether V4 TwabLib (Library)\n  * @author PoolTogether Inc Team\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\n            guarantees minimum 7.4 years of search history.\n */\nlibrary TwabLib {\n    using OverflowSafeComparatorLib for uint32;\n    using ExtendedSafeCastLib for uint256;\n\n    /**\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\n                As users transfer/mint/burn tickets new Observation checkpoints are\n                recorded. The current max cardinality guarantees a six month minimum,\n                of historical accurate lookups with current estimates of 1 new block\n                every 15 seconds - the of course contain a transfer to trigger an\n                observation write to storage.\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\n                the max cardinality variable. Preventing \"corrupted\" ring buffer lookup\n                pointers and new observation checkpoints.\n\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\n                If 14 = block time in seconds\n                (2**24) * 14 = 234881024 seconds of history\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\n    */\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\n\n    /** @notice Struct ring buffer parameters for single user Account\n      * @param balance       Current balance for an Account\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\n      * @param cardinality   Current total \"initialized\" ring buffer checkpoints for single user AccountDetails.\n                             Used to set initial boundary conditions for an efficient binary search.\n    */\n    struct AccountDetails {\n        uint208 balance;\n        uint24 nextTwabIndex;\n        uint24 cardinality;\n    }\n\n    /// @notice Combines account details with their twab history\n    /// @param details The account details\n    /// @param twabs The history of twabs for this account\n    struct Account {\n        AccountDetails details;\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\n    }\n\n    /// @notice Increases an account's balance and records a new twab.\n    /// @param _account The account whose balance will be increased\n    /// @param _amount The amount to increase the balance by\n    /// @param _currentTime The current time\n    /// @return accountDetails The new AccountDetails\n    /// @return twab The user's latest TWAB\n    /// @return isNew Whether the TWAB is new\n    function increaseBalance(\n        Account storage _account,\n        uint208 _amount,\n        uint32 _currentTime\n    )\n        internal\n        returns (\n            AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        AccountDetails memory _accountDetails = _account.details;\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\n        accountDetails.balance = _accountDetails.balance + _amount;\n    }\n\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\n     * @param _account        Account whose balance will be decreased\n     * @param _amount         Amount to decrease the balance by\n     * @param _revertMessage  Revert message for insufficient balance\n     * @return accountDetails Updated Account.details struct\n     * @return twab           TWAB observation (with decreasing average)\n     * @return isNew          Whether TWAB is new or calling twice in the same block\n     */\n    function decreaseBalance(\n        Account storage _account,\n        uint208 _amount,\n        string memory _revertMessage,\n        uint32 _currentTime\n    )\n        internal\n        returns (\n            AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        AccountDetails memory _accountDetails = _account.details;\n\n        require(_accountDetails.balance >= _amount, _revertMessage);\n\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\n        unchecked {\n            accountDetails.balance -= _amount;\n        }\n    }\n\n    /** @notice Calculates the average balance held by a user for a given time frame.\n      * @dev    Finds the average balance between start and end timestamp epochs.\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n      * @param _accountDetails User AccountDetails struct loaded in memory\n      * @param _startTime      Start of timestamp range as an epoch\n      * @param _endTime        End of timestamp range as an epoch\n      * @param _currentTime    Block.timestamp\n      * @return Average balance of user held between epoch timestamps start and end\n    */\n    function getAverageBalanceBetween(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _startTime,\n        uint32 _endTime,\n        uint32 _currentTime\n    ) internal view returns (uint256) {\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\n\n        return\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\n    }\n\n    /// @notice Retrieves the oldest TWAB\n    /// @param _twabs The storage array of twabs\n    /// @param _accountDetails The TWAB account details\n    /// @return index The index of the oldest TWAB in the twabs array\n    /// @return twab The oldest TWAB\n    function oldestTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\n        index = _accountDetails.nextTwabIndex;\n        twab = _twabs[index];\n\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\n        if (twab.timestamp == 0) {\n            index = 0;\n            twab = _twabs[0];\n        }\n    }\n\n    /// @notice Retrieves the newest TWAB\n    /// @param _twabs The storage array of twabs\n    /// @param _accountDetails The TWAB account details\n    /// @return index The index of the newest TWAB in the twabs array\n    /// @return twab The newest TWAB\n    function newestTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\n        twab = _twabs[index];\n    }\n\n    /// @notice Retrieves amount at `_targetTime` timestamp\n    /// @param _twabs List of TWABs to search through.\n    /// @param _accountDetails Accounts details\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\n    /// @return uint256 TWAB amount at `_targetTime`.\n    function getBalanceAt(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _targetTime,\n        uint32 _currentTime\n    ) internal view returns (uint256) {\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\n    }\n\n    /// @notice Calculates the average balance held by a user for a given time frame.\n    /// @param _startTime The start time of the time frame.\n    /// @param _endTime The end time of the time frame.\n    /// @return The average balance that the user held during the time frame.\n    function _getAverageBalanceBetween(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _startTime,\n        uint32 _endTime,\n        uint32 _currentTime\n    ) private view returns (uint256) {\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\n            _twabs,\n            _accountDetails\n        );\n\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\n            _twabs,\n            _accountDetails\n        );\n\n        ObservationLib.Observation memory startTwab = _calculateTwab(\n            _twabs,\n            _accountDetails,\n            newTwab,\n            oldTwab,\n            newestTwabIndex,\n            oldestTwabIndex,\n            _startTime,\n            _currentTime\n        );\n\n        ObservationLib.Observation memory endTwab = _calculateTwab(\n            _twabs,\n            _accountDetails,\n            newTwab,\n            oldTwab,\n            newestTwabIndex,\n            oldestTwabIndex,\n            _endTime,\n            _currentTime\n        );\n\n        // Difference in amount / time\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\n    }\n\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\n                between the Observations closes to the supplied targetTime.\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n      * @param _accountDetails User AccountDetails struct loaded in memory\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\n      * @param _currentTime    Block.timestamp\n      * @return uint256 Time-weighted average amount between two closest observations.\n    */\n    function _getBalanceAt(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _targetTime,\n        uint32 _currentTime\n    ) private view returns (uint256) {\n        uint24 newestTwabIndex;\n        ObservationLib.Observation memory afterOrAt;\n        ObservationLib.Observation memory beforeOrAt;\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\n\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\n            return _accountDetails.balance;\n        }\n\n        uint24 oldestTwabIndex;\n        // Now, set before to the oldest TWAB\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\n\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\n            return 0;\n        }\n\n        // Otherwise, we perform the `binarySearch`\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\n            _twabs,\n            newestTwabIndex,\n            oldestTwabIndex,\n            _targetTime,\n            _accountDetails.cardinality,\n            _currentTime\n        );\n\n        // Sum the difference in amounts and divide by the difference in timestamps.\n        // The time-weighted average balance uses time measured between two epoch timestamps as\n        // a constaint on the measurement when calculating the time weighted average balance.\n        return\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\n    }\n\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\n                The balance is linearly interpolated: amount differences / timestamp differences\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\n                IF a search is before or after the range we \"extrapolate\" a Observation from the expected state.\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\n      * @param _accountDetails  User AccountDetails struct loaded in memory\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\n      * @param _time            Block.timestamp\n      * @return accountDetails Updated Account.details struct\n    */\n    function _calculateTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        ObservationLib.Observation memory _newestTwab,\n        ObservationLib.Observation memory _oldestTwab,\n        uint24 _newestTwabIndex,\n        uint24 _oldestTwabIndex,\n        uint32 _targetTimestamp,\n        uint32 _time\n    ) private view returns (ObservationLib.Observation memory) {\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\n        }\n\n        if (_newestTwab.timestamp == _targetTimestamp) {\n            return _newestTwab;\n        }\n\n        if (_oldestTwab.timestamp == _targetTimestamp) {\n            return _oldestTwab;\n        }\n\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\n        }\n\n        // Otherwise, both timestamps must be surrounded by twabs.\n        (\n            ObservationLib.Observation memory beforeOrAtStart,\n            ObservationLib.Observation memory afterOrAtStart\n        ) = ObservationLib.binarySearch(\n                _twabs,\n                _newestTwabIndex,\n                _oldestTwabIndex,\n                _targetTimestamp,\n                _accountDetails.cardinality,\n                _time\n            );\n\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\n\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\n    }\n\n    /**\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\n     * @param _currentTwab    Newest Observation in the Account.twabs list\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\n     * @param _time           Current block.timestamp\n     * @return TWAB Observation\n     */\n    function _computeNextTwab(\n        ObservationLib.Observation memory _currentTwab,\n        uint224 _currentBalance,\n        uint32 _time\n    ) private pure returns (ObservationLib.Observation memory) {\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\n        return\n            ObservationLib.Observation({\n                amount: _currentTwab.amount +\n                    _currentBalance *\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\n                timestamp: _time\n            });\n    }\n\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\n    /// @param _twabs The twabs array to insert into\n    /// @param _accountDetails The current account details\n    /// @param _currentTime The current time\n    /// @return accountDetails The new account details\n    /// @return twab The newest twab (may or may not be brand-new)\n    /// @return isNew Whether the newest twab was created by this call\n    function _nextTwab(\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\n        AccountDetails memory _accountDetails,\n        uint32 _currentTime\n    )\n        private\n        returns (\n            AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        )\n    {\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\n\n        // if we're in the same block, return\n        if (_newestTwab.timestamp == _currentTime) {\n            return (_accountDetails, _newestTwab, false);\n        }\n\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\n            _newestTwab,\n            _accountDetails.balance,\n            _currentTime\n        );\n\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\n\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\n\n        return (nextAccountDetails, newTwab, true);\n    }\n\n    /// @notice \"Pushes\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\n    /// @return The new AccountDetails\n    function push(AccountDetails memory _accountDetails)\n        internal\n        pure\n        returns (AccountDetails memory)\n    {\n        _accountDetails.nextTwabIndex = uint24(\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\n        );\n\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\n        // exceeds the max cardinality, new observations would be incorrectly set or the\n        // observation would be out of \"bounds\" of the ring buffer. Once reached the\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\n            _accountDetails.cardinality += 1;\n        }\n\n        return _accountDetails;\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\n/** @title IControlledToken\n  * @author PoolTogether Inc Team\n  * @notice ERC20 Tokens with a controller for minting & burning.\n*/\ninterface IControlledToken is IERC20 {\n\n    /** \n        @notice Interface to the contract responsible for controlling mint/burn\n    */\n    function controller() external view returns (address);\n\n    /** \n      * @notice Allows the controller to mint tokens for a user account\n      * @dev May be overridden to provide more granular control over minting\n      * @param user Address of the receiver of the minted tokens\n      * @param amount Amount of tokens to mint\n    */\n    function controllerMint(address user, uint256 amount) external;\n\n    /** \n      * @notice Allows the controller to burn tokens from a user account\n      * @dev May be overridden to provide more granular control over burning\n      * @param user Address of the holder account to burn tokens from\n      * @param amount Amount of tokens to burn\n    */\n    function controllerBurn(address user, uint256 amount) external;\n\n    /** \n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\n      * @dev May be overridden to provide more granular control over operator-burning\n      * @param operator Address of the operator performing the burn action via the controller contract\n      * @param user Address of the holder account to burn tokens from\n      * @param amount Amount of tokens to burn\n    */\n    function controllerBurnFrom(\n        address operator,\n        address user,\n        uint256 amount\n    ) external;\n}\n"
      },
      "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n * checks.\n *\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n * easily result in undesired exploitation or bugs, since developers usually\n * assume that overflows raise errors. `SafeCast` restores this intuition by\n * reverting the transaction when such an operation overflows.\n *\n * Using this library instead of the unchecked operations eliminates an entire\n * class of bugs, so it's recommended to use it always.\n *\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n * all math on `uint256` and `int256` and then downcasting.\n */\nlibrary ExtendedSafeCastLib {\n\n    /**\n     * @dev Returns the downcasted uint104 from uint256, reverting on\n     * overflow (when the input is greater than largest uint104).\n     *\n     * Counterpart to Solidity's `uint104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     */\n    function toUint104(uint256 _value) internal pure returns (uint104) {\n        require(_value <= type(uint104).max, \"SafeCast: value doesn't fit in 104 bits\");\n        return uint104(_value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint208 from uint256, reverting on\n     * overflow (when the input is greater than largest uint208).\n     *\n     * Counterpart to Solidity's `uint208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     */\n    function toUint208(uint256 _value) internal pure returns (uint208) {\n        require(_value <= type(uint208).max, \"SafeCast: value doesn't fit in 208 bits\");\n        return uint208(_value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint224 from uint256, reverting on\n     * overflow (when the input is greater than largest uint224).\n     *\n     * Counterpart to Solidity's `uint224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toUint224(uint256 _value) internal pure returns (uint224) {\n        require(_value <= type(uint224).max, \"SafeCast: value doesn't fit in 224 bits\");\n        return uint224(_value);\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\n/// @author PoolTogether Inc.\nlibrary OverflowSafeComparatorLib {\n    /// @notice 32-bit timestamps comparator.\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n    /// @param _b Timestamp to compare against `_a`.\n    /// @param _timestamp A timestamp truncated to 32 bits.\n    /// @return bool Whether `_a` is chronologically < `_b`.\n    function lt(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) internal pure returns (bool) {\n        // No need to adjust if there hasn't been an overflow\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\n\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\n\n        return aAdjusted < bAdjusted;\n    }\n\n    /// @notice 32-bit timestamps comparator.\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n    /// @param _b Timestamp to compare against `_a`.\n    /// @param _timestamp A timestamp truncated to 32 bits.\n    /// @return bool Whether `_a` is chronologically <= `_b`.\n    function lte(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) internal pure returns (bool) {\n\n        // No need to adjust if there hasn't been an overflow\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\n\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\n\n        return aAdjusted <= bAdjusted;\n    }\n\n    /// @notice 32-bit timestamp subtractor\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\n    /// @param _a The subtraction left operand\n    /// @param _b The subtraction right operand\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\n    /// @return The difference between a and b, adjusted for overflow\n    function checkedSub(\n        uint32 _a,\n        uint32 _b,\n        uint32 _timestamp\n    ) internal pure returns (uint32) {\n        // No need to adjust if there hasn't been an overflow\n\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\n\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\n\n        return uint32(aAdjusted - bAdjusted);\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nlibrary RingBufferLib {\n    /**\n    * @notice Returns wrapped TWAB index.\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\n    *       it will return 0 and will point to the first element of the array.\n    * @param _index Index used to navigate through the TWAB circular buffer.\n    * @param _cardinality TWAB buffer cardinality.\n    * @return TWAB index.\n    */\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\n        return _index % _cardinality;\n    }\n\n    /**\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\n    * @param _index The index from which to offset\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\n    * @param _cardinality The number of elements in the ring buffer\n    * @return Offsetted index.\n     */\n    function offset(\n        uint256 _index,\n        uint256 _amount,\n        uint256 _cardinality\n    ) internal pure returns (uint256) {\n        return wrap(_index + _cardinality - _amount, _cardinality);\n    }\n\n    /// @notice Returns the index of the last recorded TWAB\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\n    /// @param _cardinality The cardinality of the TWAB history.\n    /// @return The index of the last recorded TWAB\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\n        internal\n        pure\n        returns (uint256)\n    {\n        if (_cardinality == 0) {\n            return 0;\n        }\n\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\n    }\n\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\n    /// @param _index The index to increment\n    /// @param _cardinality The number of elements in the Ring Buffer\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\n    function nextIndex(uint256 _index, uint256 _cardinality)\n        internal\n        pure\n        returns (uint256)\n    {\n        return wrap(_index + 1, _cardinality);\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\n\nimport \"./OverflowSafeComparatorLib.sol\";\nimport \"./RingBufferLib.sol\";\n\n/**\n* @title Observation Library\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\n* @author PoolTogether Inc.\n*/\nlibrary ObservationLib {\n    using OverflowSafeComparatorLib for uint32;\n    using SafeCast for uint256;\n\n    /// @notice The maximum number of observations\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\n\n    /**\n    * @notice Observation, which includes an amount and timestamp.\n    * @param amount `amount` at `timestamp`.\n    * @param timestamp Recorded `timestamp`.\n    */\n    struct Observation {\n        uint224 amount;\n        uint32 timestamp;\n    }\n\n    /**\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\n    * The result may be the same Observation, or adjacent Observations.\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\n    * @param _observations List of Observations to search through.\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\n    * @param _target Timestamp at which we are searching the Observation.\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\n    * @param _time Timestamp at which we perform the binary search.\n    * @return beforeOrAt Observation recorded before, or at, the target.\n    * @return atOrAfter Observation recorded at, or after, the target.\n    */\n    function binarySearch(\n        Observation[MAX_CARDINALITY] storage _observations,\n        uint24 _newestObservationIndex,\n        uint24 _oldestObservationIndex,\n        uint32 _target,\n        uint24 _cardinality,\n        uint32 _time\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\n        uint256 leftSide = _oldestObservationIndex;\n        uint256 rightSide = _newestObservationIndex < leftSide\n            ? leftSide + _cardinality - 1\n            : _newestObservationIndex;\n        uint256 currentIndex;\n\n        while (true) {\n            // We start our search in the middle of the `leftSide` and `rightSide`.\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\n            currentIndex = (leftSide + rightSide) / 2;\n\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\n\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\n            if (beforeOrAtTimestamp == 0) {\n                leftSide = currentIndex + 1;\n                continue;\n            }\n\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\n\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\n\n            // Check if we've found the corresponding Observation.\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\n                break;\n            }\n\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\n            if (!targetAtOrAfter) {\n                rightSide = currentIndex - 1;\n            } else {\n                // Otherwise, we keep searching higher. To the left of the current index.\n                leftSide = currentIndex + 1;\n            }\n        }\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./RingBufferLib.sol\";\n\n/// @title Library for creating and managing a draw ring buffer.\nlibrary DrawRingBufferLib {\n    /// @notice Draw buffer struct.\n    struct Buffer {\n        uint32 lastDrawId;\n        uint32 nextIndex;\n        uint32 cardinality;\n    }\n\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\n    /// @param _buffer The buffer to check.\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\n    }\n\n    /// @notice Push a draw to the buffer.\n    /// @param _buffer The buffer to push to.\n    /// @param _drawId The drawID to push.\n    /// @return The new buffer.\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \"DRB/must-be-contig\");\n\n        return\n            Buffer({\n                lastDrawId: _drawId,\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\n                cardinality: _buffer.cardinality\n            });\n    }\n\n    /// @notice Get draw ring buffer index pointer.\n    /// @param _buffer The buffer to get the `nextIndex` from.\n    /// @param _drawId The draw id to get the index for.\n    /// @return The draw ring buffer index pointer.\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \"DRB/future-draw\");\n\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\n        require(indexOffset < _buffer.cardinality, \"DRB/expired-draw\");\n\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\n\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/** @title  IPrizeDistributionBuffer\n  * @author PoolTogether Inc Team\n  * @notice The PrizeDistributionBuffer interface.\n*/\ninterface IPrizeDistributionBuffer {\n\n    ///@notice PrizeDistribution struct created every draw\n    ///@param bitRangeSize Decimal representation of bitRangeSize\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\n    struct PrizeDistribution {\n        uint8 bitRangeSize;\n        uint8 matchCardinality;\n        uint32 startTimestampOffset;\n        uint32 endTimestampOffset;\n        uint32 maxPicksPerUser;\n        uint32 expiryDuration;\n        uint104 numberOfPicks;\n        uint32[16] tiers;\n        uint256 prize;\n    }\n\n    /**\n     * @notice Emit when PrizeDistribution is set.\n     * @param drawId       Draw id\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\n     */\n    event PrizeDistributionSet(\n        uint32 indexed drawId,\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\n    );\n\n    /**\n     * @notice Read a ring buffer cardinality\n     * @return Ring buffer cardinality\n     */\n    function getBufferCardinality() external view returns (uint32);\n\n    /**\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\n     * @return prizeDistribution\n     * @return drawId\n     */\n    function getNewestPrizeDistribution()\n        external\n        view\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\n\n    /**\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\n     * @return prizeDistribution\n     * @return drawId\n     */\n    function getOldestPrizeDistribution()\n        external\n        view\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\n\n    /**\n     * @notice Gets PrizeDistribution list from array of drawIds\n     * @param drawIds drawIds to get PrizeDistribution for\n     * @return prizeDistributionList\n     */\n    function getPrizeDistributions(uint32[] calldata drawIds)\n        external\n        view\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\n\n    /**\n     * @notice Gets the PrizeDistributionBuffer for a drawId\n     * @param drawId drawId\n     * @return prizeDistribution\n     */\n    function getPrizeDistribution(uint32 drawId)\n        external\n        view\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\n\n    /**\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\n     * @dev If no Draws have been pushed, it will return 0.\n     * @dev If the ring buffer is full, it will return the cardinality.\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\n     */\n    function getPrizeDistributionCount() external view returns (uint32);\n\n    /**\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\n     * @dev    Only callable by the owner or manager\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\n     * @param prizeDistribution PrizeDistribution parameters struct\n     */\n    function pushPrizeDistribution(\n        uint32 drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\n    ) external returns (bool);\n\n    /**\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\"\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\n               the invalid parameters with correct parameters.\n     * @return drawId\n     */\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\n        external\n        returns (uint32);\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\nimport \"./IDrawBuffer.sol\";\nimport \"./IDrawCalculator.sol\";\n\n/** @title  IPrizeDistributor\n  * @author PoolTogether Inc Team\n  * @notice The PrizeDistributor interface.\n*/\ninterface IPrizeDistributor {\n\n    /**\n     * @notice Emit when user has claimed token from the PrizeDistributor.\n     * @param user   User address receiving draw claim payouts\n     * @param drawId Draw id that was paid out\n     * @param payout Payout for draw\n     */\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\n\n    /**\n     * @notice Emit when DrawCalculator is set.\n     * @param calculator DrawCalculator address\n     */\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\n\n    /**\n     * @notice Emit when Token is set.\n     * @param token Token address\n     */\n    event TokenSet(IERC20 indexed token);\n\n    /**\n     * @notice Emit when ERC20 tokens are withdrawn.\n     * @param token  ERC20 token transferred.\n     * @param to     Address that received funds.\n     * @param amount Amount of tokens transferred.\n     */\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\n\n    /**\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\n               is used as the \"seed\" phrase to generate random numbers.\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\n               subsequentially if an \"optimal\" prize was not included in previous claim pick indices. The\n               payout difference for the new claim is calculated during the award process and transfered to user.\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\n     * @param drawIds Draw IDs from global DrawBuffer reference\n     * @param data    The data to pass to the draw calculator\n     * @return Total claim payout. May include calcuations from multiple draws.\n     */\n    function claim(\n        address user,\n        uint32[] calldata drawIds,\n        bytes calldata data\n    ) external returns (uint256);\n\n    /**\n        * @notice Read global DrawCalculator address.\n        * @return IDrawCalculator\n     */\n    function getDrawCalculator() external view returns (IDrawCalculator);\n\n    /**\n        * @notice Get the amount that a user has already been paid out for a draw\n        * @param user   User address\n        * @param drawId Draw ID\n     */\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\n\n    /**\n        * @notice Read global Ticket address.\n        * @return IERC20\n     */\n    function getToken() external view returns (IERC20);\n\n    /**\n        * @notice Sets DrawCalculator reference contract.\n        * @param newCalculator DrawCalculator address\n        * @return New DrawCalculator address\n     */\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\n\n    /**\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\n        * @dev    Only callable by contract owner.\n        * @param token  ERC20 token to transfer.\n        * @param to     Recipient of the tokens.\n        * @param amount Amount of tokens to transfer.\n        * @return true if operation is successful.\n    */\n    function withdrawERC20(\n        IERC20 token,\n        address to,\n        uint256 amount\n    ) external returns (bool);\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\";\nimport \"./IPrizeDistributionFactory.sol\";\nimport \"./IDrawCalculatorTimelock.sol\";\n\n/**\n * @title  PoolTogether V4 IBeaconTimelockTrigger\n * @author PoolTogether Inc Team\n * @notice The IBeaconTimelockTrigger smart contract interface...\n */\ninterface IBeaconTimelockTrigger {\n    /// @notice Emitted when the contract is deployed.\n    event Deployed(\n        IPrizeDistributionFactory indexed prizeDistributionFactory,\n        IDrawCalculatorTimelock indexed timelock\n    );\n\n    /**\n     * @notice Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\n     * @param drawId Draw ID\n     * @param draw Draw\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\n     */\n    event DrawLockedAndTotalNetworkTicketSupplyPushed(\n        uint32 indexed drawId,\n        IDrawBeacon.Draw draw,\n        uint256 totalNetworkTicketSupply\n    );\n\n    /**\n     * @notice Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory\n     * @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\n     * @param draw Draw\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\n     */\n    function push(IDrawBeacon.Draw memory draw, uint256 totalNetworkTicketSupply) external;\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\";\nimport \"./interfaces/IDrawCalculatorTimelock.sol\";\n\n/**\n  * @title  PoolTogether V4 L2TimelockTrigger\n  * @author PoolTogether Inc Team\n  * @notice L2TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts.\n            The L2TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing\n            claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\n            to  include a \"cooldown\" period for all new Draws. Allowing the correction of a\n            malicously set Draw in the unfortunate event an Owner is compromised.\n*/\ncontract L2TimelockTrigger is Manageable {\n    /// @notice Emitted when the contract is deployed.\n    event Deployed(\n        IDrawBuffer indexed drawBuffer,\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer,\n        IDrawCalculatorTimelock indexed timelock\n    );\n\n    /**\n     * @notice Emitted when Draw and PrizeDistribution are pushed to external contracts.\n     * @param drawId            Draw ID\n     * @param prizeDistribution PrizeDistribution\n     */\n    event DrawAndPrizeDistributionPushed(\n        uint32 indexed drawId,\n        IDrawBeacon.Draw draw,\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\n    );\n\n    /* ============ Global Variables ============ */\n\n    /// @notice The DrawBuffer contract address.\n    IDrawBuffer public immutable drawBuffer;\n\n    /// @notice Internal PrizeDistributionBuffer reference.\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\n\n    /// @notice Timelock struct reference.\n    IDrawCalculatorTimelock public timelock;\n\n    /* ============ Deploy ============ */\n\n    /**\n     * @notice Initialize L2TimelockTrigger smart contract.\n     * @param _owner                   Address of the L2TimelockTrigger owner.\n     * @param _prizeDistributionBuffer PrizeDistributionBuffer address\n     * @param _drawBuffer              DrawBuffer address\n     * @param _timelock                Elapsed seconds before timelocked Draw is available\n     */\n    constructor(\n        address _owner,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionBuffer _prizeDistributionBuffer,\n        IDrawCalculatorTimelock _timelock\n    ) Ownable(_owner) {\n        drawBuffer = _drawBuffer;\n        prizeDistributionBuffer = _prizeDistributionBuffer;\n        timelock = _timelock;\n\n        emit Deployed(_drawBuffer, _prizeDistributionBuffer, _timelock);\n    }\n\n    /* ============ External Functions ============ */\n\n    /**\n     * @notice Push Draw onto draws ring buffer history.\n     * @dev    Restricts new draws by forcing a push timelock.\n     * @param _draw              Draw struct from IDrawBeacon\n     * @param _prizeDistribution PrizeDistribution struct from IPrizeDistributionBuffer\n     */\n    function push(\n        IDrawBeacon.Draw memory _draw,\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\n    ) external onlyManagerOrOwner {\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\n        drawBuffer.pushDraw(_draw);\n        prizeDistributionBuffer.pushPrizeDistribution(_draw.drawId, _prizeDistribution);\n        emit DrawAndPrizeDistributionPushed(_draw.drawId, _draw, _prizeDistribution);\n    }\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\nimport \"./interfaces/IBeaconTimelockTrigger.sol\";\nimport \"./interfaces/IPrizeDistributionFactory.sol\";\nimport \"./interfaces/IDrawCalculatorTimelock.sol\";\n\n/**\n  * @title  PoolTogether V4 BeaconTimelockTrigger\n  * @author PoolTogether Inc Team\n  * @notice The BeaconTimelockTrigger smart contract is an upgrade of the L1TimelockTimelock smart contract.\n            Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will\n            only pass the total supply of all tickets in a \"PrizePool Network\" to the prize distribution factory contract.\n*/\ncontract BeaconTimelockTrigger is IBeaconTimelockTrigger, Manageable {\n    /* ============ Global Variables ============ */\n\n    /// @notice PrizeDistributionFactory reference.\n    IPrizeDistributionFactory public immutable prizeDistributionFactory;\n\n    /// @notice DrawCalculatorTimelock reference.\n    IDrawCalculatorTimelock public immutable timelock;\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Initialize BeaconTimelockTrigger smart contract.\n     * @param _owner The smart contract owner\n     * @param _prizeDistributionFactory PrizeDistributionFactory address\n     * @param _timelock DrawCalculatorTimelock address\n     */\n    constructor(\n        address _owner,\n        IPrizeDistributionFactory _prizeDistributionFactory,\n        IDrawCalculatorTimelock _timelock\n    ) Ownable(_owner) {\n        prizeDistributionFactory = _prizeDistributionFactory;\n        timelock = _timelock;\n        emit Deployed(_prizeDistributionFactory, _timelock);\n    }\n\n    /// @inheritdoc IBeaconTimelockTrigger\n    function push(IDrawBeacon.Draw memory _draw, uint256 _totalNetworkTicketSupply)\n        external\n        override\n        onlyManagerOrOwner\n    {\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\n        prizeDistributionFactory.pushPrizeDistribution(_draw.drawId, _totalNetworkTicketSupply);\n        emit DrawLockedAndTotalNetworkTicketSupplyPushed(\n            _draw.drawId,\n            _draw,\n            _totalNetworkTicketSupply\n        );\n    }\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributor.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/PrizeDistributor.sol';\n"
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"../interfaces/IPrizeSplit.sol\";\n\n/**\n * @title PrizeSplit Interface\n * @author PoolTogether Inc Team\n */\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\n    /* ============ Global Variables ============ */\n    PrizeSplitConfig[] internal _prizeSplits;\n\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizeSplit\n    function getPrizeSplit(uint256 _prizeSplitIndex)\n        external\n        view\n        override\n        returns (PrizeSplitConfig memory)\n    {\n        return _prizeSplits[_prizeSplitIndex];\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\n        return _prizeSplits;\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\n        external\n        override\n        onlyOwner\n    {\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\n        require(newPrizeSplitsLength <= type(uint8).max, \"PrizeSplit/invalid-prizesplits-length\");\n\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\n\n            // REVERT when setting the canonical burn address.\n            require(split.target != address(0), \"PrizeSplit/invalid-prizesplit-target\");\n\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\n            // PUSH the PrizeSplit struct to end of the list.\n            if (_prizeSplits.length <= index) {\n                _prizeSplits.push(split);\n            } else {\n                // ELSE update an existing PrizeSplit struct with new parameters\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\n\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\n                // WRITE to STORAGE with the new PrizeSplit\n                if (\n                    split.target != currentSplit.target ||\n                    split.percentage != currentSplit.percentage\n                ) {\n                    _prizeSplits[index] = split;\n                } else {\n                    continue;\n                }\n            }\n\n            // Emit the added/updated prize split config.\n            emit PrizeSplitSet(split.target, split.percentage, index);\n        }\n\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\n        while (_prizeSplits.length > newPrizeSplitsLength) {\n            uint256 _index;\n            unchecked {\n                _index = _prizeSplits.length - 1;\n            }\n            _prizeSplits.pop();\n            emit PrizeSplitRemoved(_index);\n        }\n\n        // Total prize split do not exceed 100%\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \"PrizeSplit/invalid-prizesplit-percentage-total\");\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\n        external\n        override\n        onlyOwner\n    {\n        require(_prizeSplitIndex < _prizeSplits.length, \"PrizeSplit/nonexistent-prizesplit\");\n        require(_prizeSplit.target != address(0), \"PrizeSplit/invalid-prizesplit-target\");\n\n        // Update the prize split config\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\n\n        // Total prize split do not exceed 100%\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \"PrizeSplit/invalid-prizesplit-percentage-total\");\n\n        // Emit updated prize split config\n        emit PrizeSplitSet(\n            _prizeSplit.target,\n            _prizeSplit.percentage,\n            _prizeSplitIndex\n        );\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Calculates total prize split percentage amount.\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\n     * @return Total prize split(s) percentage amount\n     */\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\n        uint256 _tempTotalPercentage;\n        uint256 prizeSplitsLength = _prizeSplits.length;\n\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\n            _tempTotalPercentage += _prizeSplits[index].percentage;\n        }\n\n        return _tempTotalPercentage;\n    }\n\n    /**\n     * @notice Distributes prize split(s).\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\n     * @param _prize Starting prize award amount\n     * @return The remainder after splits are taken\n     */\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\n        uint256 _prizeTemp = _prize;\n        uint256 prizeSplitsLength = _prizeSplits.length;\n\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\n            PrizeSplitConfig memory split = _prizeSplits[index];\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\n\n            // Award the prize split distribution amount.\n            _awardPrizeSplitAmount(split.target, _splitAmount);\n\n            // Update the remaining prize amount after distributing the prize split percentage.\n            _prizeTemp -= _splitAmount;\n        }\n\n        return _prizeTemp;\n    }\n\n    /**\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\n     * @param _target Recipient of minted tokens\n     * @param _amount Amount of minted tokens\n     */\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./IControlledToken.sol\";\nimport \"./IPrizePool.sol\";\n\n/**\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\n * @author PoolTogether Inc Team\n */\ninterface IPrizeSplit {\n    /**\n     * @notice Emit when an individual prize split is awarded.\n     * @param user          User address being awarded\n     * @param prizeAwarded  Awarded prize amount\n     * @param token         Token address\n     */\n    event PrizeSplitAwarded(\n        address indexed user,\n        uint256 prizeAwarded,\n        IControlledToken indexed token\n    );\n\n    /**\n     * @notice The prize split configuration struct.\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\n     * @param target     Address of recipient receiving the prize split distribution\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\n     */\n    struct PrizeSplitConfig {\n        address target;\n        uint16 percentage;\n    }\n\n    /**\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\n     * @param target     Address of prize split recipient\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\n     * @param index      Index of prize split in the prizeSplts array\n     */\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\n\n    /**\n     * @notice Emitted when a PrizeSplitConfig config is removed.\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\n     * @param target Index of a previously active prize split config\n     */\n    event PrizeSplitRemoved(uint256 indexed target);\n\n    /**\n     * @notice Read prize split config from active PrizeSplits.\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\n     * @return PrizeSplitConfig Single prize split config\n     */\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\n\n    /**\n     * @notice Read all prize splits configs.\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\n     * @return Array of PrizeSplitConfig structs\n     */\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\n\n    /**\n     * @notice Get PrizePool address\n     * @return IPrizePool\n     */\n    function getPrizePool() external view returns (IPrizePool);\n\n    /**\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\n     */\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\n\n    /**\n     * @notice Updates a previously set prize split config.\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\n     * @param prizeStrategySplit PrizeSplitConfig config struct\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\n     */\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\n        external;\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"../external/compound/ICompLike.sol\";\nimport \"../interfaces/ITicket.sol\";\n\ninterface IPrizePool {\n    /// @dev Event emitted when controlled token is added\n    event ControlledTokenAdded(ITicket indexed token);\n\n    event AwardCaptured(uint256 amount);\n\n    /// @dev Event emitted when assets are deposited\n    event Deposited(\n        address indexed operator,\n        address indexed to,\n        ITicket indexed token,\n        uint256 amount\n    );\n\n    /// @dev Event emitted when interest is awarded to a winner\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\n\n    /// @dev Event emitted when external ERC20s are awarded to a winner\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\n\n    /// @dev Event emitted when external ERC20s are transferred out\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\n\n    /// @dev Event emitted when external ERC721s are awarded to a winner\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\n\n    /// @dev Event emitted when assets are withdrawn\n    event Withdrawal(\n        address indexed operator,\n        address indexed from,\n        ITicket indexed token,\n        uint256 amount,\n        uint256 redeemed\n    );\n\n    /// @dev Event emitted when the Balance Cap is set\n    event BalanceCapSet(uint256 balanceCap);\n\n    /// @dev Event emitted when the Liquidity Cap is set\n    event LiquidityCapSet(uint256 liquidityCap);\n\n    /// @dev Event emitted when the Prize Strategy is set\n    event PrizeStrategySet(address indexed prizeStrategy);\n\n    /// @dev Event emitted when the Ticket is set\n    event TicketSet(ITicket indexed ticket);\n\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\n    event ErrorAwardingExternalERC721(bytes error);\n\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\n    /// @param to The address receiving the newly minted tokens\n    /// @param amount The amount of assets to deposit\n    function depositTo(address to, uint256 amount) external;\n\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\n    /// then sets the delegate on behalf of the caller.\n    /// @param to The address receiving the newly minted tokens\n    /// @param amount The amount of assets to deposit\n    /// @param delegate The address to delegate to for the caller\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\n\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\n    /// @param from The address to redeem tokens from.\n    /// @param amount The amount of tokens to redeem for assets.\n    /// @return The actual amount withdrawn\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\n\n    /// @notice Called by the prize strategy to award prizes.\n    /// @dev The amount awarded must be less than the awardBalance()\n    /// @param to The address of the winner that receives the award\n    /// @param amount The amount of assets to be awarded\n    function award(address to, uint256 amount) external;\n\n    /// @notice Returns the balance that is available to award.\n    /// @dev captureAwardBalance() should be called first\n    /// @return The total amount of assets to be awarded for the current prize\n    function awardBalance() external view returns (uint256);\n\n    /// @notice Captures any available interest as award balance.\n    /// @dev This function also captures the reserve fees.\n    /// @return The total amount of assets to be awarded for the current prize\n    function captureAwardBalance() external returns (uint256);\n\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\n    /// @param externalToken The address of the token to check\n    /// @return True if the token may be awarded, false otherwise\n    function canAwardExternal(address externalToken) external view returns (bool);\n\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\n    /// @return The underlying balance of assets\n    function balance() external returns (uint256);\n\n    /**\n     * @notice Read internal Ticket accounted balance.\n     * @return uint256 accountBalance\n     */\n    function getAccountedBalance() external view returns (uint256);\n\n    /**\n     * @notice Read internal balanceCap variable\n     */\n    function getBalanceCap() external view returns (uint256);\n\n    /**\n     * @notice Read internal liquidityCap variable\n     */\n    function getLiquidityCap() external view returns (uint256);\n\n    /**\n     * @notice Read ticket variable\n     */\n    function getTicket() external view returns (ITicket);\n\n    /**\n     * @notice Read token variable\n     */\n    function getToken() external view returns (address);\n\n    /**\n     * @notice Read prizeStrategy variable\n     */\n    function getPrizeStrategy() external view returns (address);\n\n    /// @dev Checks if a specific token is controlled by the Prize Pool\n    /// @param controlledToken The address of the token to check\n    /// @return True if the token is a controlled token, false otherwise\n    function isControlled(ITicket controlledToken) external view returns (bool);\n\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\n    /// @param to The address of the winner that receives the award\n    /// @param externalToken The address of the external asset token being awarded\n    /// @param amount The amount of external assets to be awarded\n    function transferExternalERC20(\n        address to,\n        address externalToken,\n        uint256 amount\n    ) external;\n\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\n    /// @param to The address of the winner that receives the award\n    /// @param amount The amount of external assets to be awarded\n    /// @param externalToken The address of the external asset token being awarded\n    function awardExternalERC20(\n        address to,\n        address externalToken,\n        uint256 amount\n    ) external;\n\n    /// @notice Called by the prize strategy to award external ERC721 prizes\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\n    /// @param to The address of the winner that receives the award\n    /// @param externalToken The address of the external NFT token being awarded\n    /// @param tokenIds An array of NFT Token IDs to be transferred\n    function awardExternalERC721(\n        address to,\n        address externalToken,\n        uint256[] calldata tokenIds\n    ) external;\n\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\n    /// @param balanceCap New balance cap.\n    /// @return True if new balance cap has been successfully set.\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\n\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\n    /// @param liquidityCap The new liquidity cap for the prize pool\n    function setLiquidityCap(uint256 liquidityCap) external;\n\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n    /// @param _prizeStrategy The new prize strategy.\n    function setPrizeStrategy(address _prizeStrategy) external;\n\n    /// @notice Set prize pool ticket.\n    /// @param ticket Address of the ticket to set.\n    /// @return True if ticket has been successfully set.\n    function setTicket(ITicket ticket) external returns (bool);\n\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\n    /// @param to The address to delegate to\n    function compLikeDelegate(ICompLike compLike, address to) external;\n}\n"
      },
      "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\ninterface ICompLike is IERC20 {\n    function getCurrentVotes(address account) external view returns (uint96);\n\n    function delegate(address delegate) external;\n}\n"
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./PrizeSplit.sol\";\nimport \"../interfaces/IStrategy.sol\";\nimport \"../interfaces/IPrizePool.sol\";\n\n/**\n  * @title  PoolTogether V4 PrizeSplitStrategy\n  * @author PoolTogether Inc Team\n  * @notice Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients.\n            The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured\n            interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on\n            the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether\n            iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest\n            is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).\n*/\ncontract PrizeSplitStrategy is PrizeSplit, IStrategy {\n    /**\n     * @notice PrizePool address\n     */\n    IPrizePool internal immutable prizePool;\n\n    /**\n     * @notice Deployed Event\n     * @param owner Contract owner\n     * @param prizePool Linked PrizePool contract\n     */\n    event Deployed(address indexed owner, IPrizePool prizePool);\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Deploy the PrizeSplitStrategy smart contract.\n     * @param _owner     Owner address\n     * @param _prizePool PrizePool address\n     */\n    constructor(address _owner, IPrizePool _prizePool) Ownable(_owner) {\n        require(\n            address(_prizePool) != address(0),\n            \"PrizeSplitStrategy/prize-pool-not-zero-address\"\n        );\n        prizePool = _prizePool;\n        emit Deployed(_owner, _prizePool);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IStrategy\n    function distribute() external override returns (uint256) {\n        uint256 prize = prizePool.captureAwardBalance();\n\n        if (prize == 0) return 0;\n\n        uint256 prizeRemaining = _distributePrizeSplits(prize);\n\n        emit Distributed(prize - prizeRemaining);\n\n        return prize;\n    }\n\n    /// @inheritdoc IPrizeSplit\n    function getPrizePool() external view override returns (IPrizePool) {\n        return prizePool;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Award ticket tokens to prize split recipient.\n     * @dev Award ticket tokens to prize split recipient via the linked PrizePool contract.\n     * @param _to Recipient of minted tokens.\n     * @param _amount Amount of minted tokens.\n     */\n    function _awardPrizeSplitAmount(address _to, uint256 _amount) internal override {\n        IControlledToken _ticket = prizePool.getTicket();\n        prizePool.award(_to, _amount);\n        emit PrizeSplitAwarded(_to, _amount, _ticket);\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\ninterface IStrategy {\n    /**\n     * @notice Emit when a strategy captures award amount from PrizePool.\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\n     */\n    event Distributed(uint256 totalPrizeCaptured);\n\n    /**\n     * @notice Capture the award balance and distribute to prize splits.\n     * @dev    Permissionless function to initialize distribution of interst\n     * @return Prize captured from PrizePool\n     */\n    function distribute() external returns (uint256);\n}\n"
      },
      "@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\";\n\ninterface IPrizeFlush {\n    /**\n     * @notice Emit when the flush function has executed.\n     * @param destination Address receiving funds\n     * @param amount      Amount of tokens transferred\n     */\n    event Flushed(address indexed destination, uint256 amount);\n\n    /**\n     * @notice Emit when destination is set.\n     * @param destination Destination address\n     */\n    event DestinationSet(address destination);\n\n    /**\n     * @notice Emit when strategy is set.\n     * @param strategy Strategy address\n     */\n    event StrategySet(IStrategy strategy);\n\n    /**\n     * @notice Emit when reserve is set.\n     * @param reserve Reserve address\n     */\n    event ReserveSet(IReserve reserve);\n\n    /// @notice Read global destination variable.\n    function getDestination() external view returns (address);\n\n    /// @notice Read global reserve variable.\n    function getReserve() external view returns (IReserve);\n\n    /// @notice Read global strategy variable.\n    function getStrategy() external view returns (IStrategy);\n\n    /// @notice Set global destination variable.\n    function setDestination(address _destination) external returns (address);\n\n    /// @notice Set global reserve variable.\n    function setReserve(IReserve _reserve) external returns (IReserve);\n\n    /// @notice Set global strategy variable.\n    function setStrategy(IStrategy _strategy) external returns (IStrategy);\n\n    /**\n     * @notice Migrate interest from PrizePool to PrizeDistributor in a single transaction.\n     * @dev    Captures interest, checkpoint data and transfers tokens to final destination.\n     * @return True if operation is successful.\n     */\n    function flush() external returns (bool);\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IReserve.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\ninterface IReserve {\n    /**\n     * @notice Emit when checkpoint is created.\n     * @param reserveAccumulated  Total depsosited\n     * @param withdrawAccumulated Total withdrawn\n     */\n\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\n    /**\n     * @notice Emit when the withdrawTo function has executed.\n     * @param recipient Address receiving funds\n     * @param amount    Amount of tokens transfered.\n     */\n    event Withdrawn(address indexed recipient, uint256 amount);\n\n    /**\n     * @notice Create observation checkpoint in ring bufferr.\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\n     */\n    function checkpoint() external;\n\n    /**\n     * @notice Read global token value.\n     * @return IERC20\n     */\n    function getToken() external view returns (IERC20);\n\n    /**\n     * @notice Calculate token accumulation beween timestamp range.\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\n     * @param startTimestamp Account address\n     * @param endTimestamp   Transfer amount\n     */\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\n        external\n        returns (uint224);\n\n    /**\n     * @notice Transfer Reserve token balance to recipient address.\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\n     * @param recipient Account address\n     * @param amount    Transfer amount\n     */\n    function withdrawTo(address recipient, uint256 amount) external;\n}\n"
      },
      "@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\n/**\n * @title  PoolTogether V4 ITwabRewards\n * @author PoolTogether Inc Team\n * @notice TwabRewards contract interface.\n */\ninterface ITwabRewards {\n    /**\n     * @notice Struct to keep track of each promotion's settings.\n     * @param creator Addresss of the promotion creator\n     * @param startTimestamp Timestamp at which the promotion starts\n     * @param numberOfEpochs Number of epochs the promotion will last for\n     * @param epochDuration Duration of one epoch in seconds\n     * @param createdAt Timestamp at which the promotion was created\n     * @param token Address of the token to be distributed as reward\n     * @param tokensPerEpoch Number of tokens to be distributed per epoch\n     * @param rewardsUnclaimed Amount of rewards that have not been claimed yet\n     */\n    struct Promotion {\n        address creator;\n        uint64 startTimestamp;\n        uint8 numberOfEpochs;\n        uint48 epochDuration;\n        uint48 createdAt;\n        IERC20 token;\n        uint256 tokensPerEpoch;\n        uint256 rewardsUnclaimed;\n    }\n\n    /**\n     * @notice Creates a new promotion.\n     * @dev For sake of simplicity, `msg.sender` will be the creator of the promotion.\n     * @dev `_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion.\n     * So the first promotion will have id 1, the second 2, etc.\n     * @dev The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`.\n     * This scenario could happen if the token supplied is a fee on transfer one.\n     * @param _token Address of the token to be distributed\n     * @param _startTimestamp Timestamp at which the promotion starts\n     * @param _tokensPerEpoch Number of tokens to be distributed per epoch\n     * @param _epochDuration Duration of one epoch in seconds\n     * @param _numberOfEpochs Number of epochs the promotion will last for\n     * @return Id of the newly created promotion\n     */\n    function createPromotion(\n        IERC20 _token,\n        uint64 _startTimestamp,\n        uint256 _tokensPerEpoch,\n        uint48 _epochDuration,\n        uint8 _numberOfEpochs\n    ) external returns (uint256);\n\n    /**\n     * @notice End currently active promotion and send promotion tokens back to the creator.\n     * @dev Will only send back tokens from the epochs that have not completed.\n     * @param _promotionId Promotion id to end\n     * @param _to Address that will receive the remaining tokens if there are any left\n     * @return true if operation was successful\n     */\n    function endPromotion(uint256 _promotionId, address _to) external returns (bool);\n\n    /**\n     * @notice Delete an inactive promotion and send promotion tokens back to the creator.\n     * @dev Will send back all the tokens that have not been claimed yet by users.\n     * @dev This function will revert if the promotion is still active.\n     * @dev This function will revert if the grace period is not over yet.\n     * @param _promotionId Promotion id to destroy\n     * @param _to Address that will receive the remaining tokens if there are any left\n     * @return True if operation was successful\n     */\n    function destroyPromotion(uint256 _promotionId, address _to) external returns (bool);\n\n    /**\n     * @notice Extend promotion by adding more epochs.\n     * @param _promotionId Id of the promotion to extend\n     * @param _numberOfEpochs Number of epochs to add\n     * @return True if the operation was successful\n     */\n    function extendPromotion(uint256 _promotionId, uint8 _numberOfEpochs) external returns (bool);\n\n    /**\n     * @notice Claim rewards for a given promotion and epoch.\n     * @dev Rewards can be claimed on behalf of a user.\n     * @dev Rewards can only be claimed for a past epoch.\n     * @param _user Address of the user to claim rewards for\n     * @param _promotionId Id of the promotion to claim rewards for\n     * @param _epochIds Epoch ids to claim rewards for\n     * @return Total amount of rewards claimed\n     */\n    function claimRewards(\n        address _user,\n        uint256 _promotionId,\n        uint8[] calldata _epochIds\n    ) external returns (uint256);\n\n    /**\n     * @notice Get settings for a specific promotion.\n     * @param _promotionId Id of the promotion to get settings for\n     * @return Promotion settings\n     */\n    function getPromotion(uint256 _promotionId) external view returns (Promotion memory);\n\n    /**\n     * @notice Get the current epoch id of a promotion.\n     * @dev Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\n     * @param _promotionId Id of the promotion to get current epoch for\n     * @return Current epoch id of the promotion\n     */\n    function getCurrentEpochId(uint256 _promotionId) external view returns (uint256);\n\n    /**\n     * @notice Get the total amount of tokens left to be rewarded.\n     * @param _promotionId Id of the promotion to get the total amount of tokens left to be rewarded for\n     * @return Amount of tokens left to be rewarded\n     */\n    function getRemainingRewards(uint256 _promotionId) external view returns (uint256);\n\n    /**\n     * @notice Get amount of tokens to be rewarded for a given epoch.\n     * @dev Rewards amount can only be retrieved for epochs that are over.\n     * @dev Will revert if `_epochId` is over the total number of epochs or if epoch is not over.\n     * @dev Will return 0 if the user average balance of tickets is 0.\n     * @dev Will be 0 if user has already claimed rewards for the epoch.\n     * @param _user Address of the user to get amount of rewards for\n     * @param _promotionId Id of the promotion from which the epoch is\n     * @param _epochIds Epoch ids to get reward amount for\n     * @return Amount of tokens per epoch to be rewarded\n     */\n    function getRewardsAmount(\n        address _user,\n        uint256 _promotionId,\n        uint8[] calldata _epochIds\n    ) external view returns (uint256[] memory);\n}\n"
      },
      "@pooltogether/v4-periphery/contracts/TwabRewards.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\";\n\nimport \"./interfaces/ITwabRewards.sol\";\n\n/**\n * @title PoolTogether V4 TwabRewards\n * @author PoolTogether Inc Team\n * @notice Contract to distribute rewards to depositors in a pool.\n * This contract supports the creation of several promotions that can run simultaneously.\n * In order to calculate user rewards, we use the TWAB (Time-Weighted Average Balance) from the Ticket contract.\n * This way, users simply need to hold their tickets to be eligible to claim rewards.\n * Rewards are calculated based on the average amount of tickets they hold during the epoch duration.\n * @dev This contract supports only one prize pool ticket.\n * @dev This contract does not support the use of fee on transfer tokens.\n */\ncontract TwabRewards is ITwabRewards {\n    using SafeERC20 for IERC20;\n\n    /* ============ Global Variables ============ */\n\n    /// @notice Prize pool ticket for which the promotions are created.\n    ITicket public immutable ticket;\n\n    /// @notice Period during which the promotion owner can't destroy a promotion.\n    uint32 public constant GRACE_PERIOD = 60 days;\n\n    /// @notice Settings of each promotion.\n    mapping(uint256 => Promotion) internal _promotions;\n\n    /**\n     * @notice Latest recorded promotion id.\n     * @dev Starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc.\n     */\n    uint256 internal _latestPromotionId;\n\n    /**\n     * @notice Keeps track of claimed rewards per user.\n     * @dev _claimedEpochs[promotionId][user] => claimedEpochs\n     * @dev We pack epochs claimed by a user into a uint256. So we can't store more than 256 epochs.\n     */\n    mapping(uint256 => mapping(address => uint256)) internal _claimedEpochs;\n\n    /* ============ Events ============ */\n\n    /**\n     * @notice Emitted when a promotion is created.\n     * @param promotionId Id of the newly created promotion\n     */\n    event PromotionCreated(uint256 indexed promotionId);\n\n    /**\n     * @notice Emitted when a promotion is ended.\n     * @param promotionId Id of the promotion being ended\n     * @param recipient Address of the recipient that will receive the remaining rewards\n     * @param amount Amount of tokens transferred to the recipient\n     * @param epochNumber Epoch number at which the promotion ended\n     */\n    event PromotionEnded(\n        uint256 indexed promotionId,\n        address indexed recipient,\n        uint256 amount,\n        uint8 epochNumber\n    );\n\n    /**\n     * @notice Emitted when a promotion is destroyed.\n     * @param promotionId Id of the promotion being destroyed\n     * @param recipient Address of the recipient that will receive the unclaimed rewards\n     * @param amount Amount of tokens transferred to the recipient\n     */\n    event PromotionDestroyed(\n        uint256 indexed promotionId,\n        address indexed recipient,\n        uint256 amount\n    );\n\n    /**\n     * @notice Emitted when a promotion is extended.\n     * @param promotionId Id of the promotion being extended\n     * @param numberOfEpochs Number of epochs the promotion has been extended by\n     */\n    event PromotionExtended(uint256 indexed promotionId, uint256 numberOfEpochs);\n\n    /**\n     * @notice Emitted when rewards have been claimed.\n     * @param promotionId Id of the promotion for which epoch rewards were claimed\n     * @param epochIds Ids of the epochs being claimed\n     * @param user Address of the user for which the rewards were claimed\n     * @param amount Amount of tokens transferred to the recipient address\n     */\n    event RewardsClaimed(\n        uint256 indexed promotionId,\n        uint8[] epochIds,\n        address indexed user,\n        uint256 amount\n    );\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructor of the contract.\n     * @param _ticket Prize Pool ticket address for which the promotions will be created\n     */\n    constructor(ITicket _ticket) {\n        _requireTicket(_ticket);\n        ticket = _ticket;\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc ITwabRewards\n    function createPromotion(\n        IERC20 _token,\n        uint64 _startTimestamp,\n        uint256 _tokensPerEpoch,\n        uint48 _epochDuration,\n        uint8 _numberOfEpochs\n    ) external override returns (uint256) {\n        require(_tokensPerEpoch > 0, \"TwabRewards/tokens-not-zero\");\n        require(_epochDuration > 0, \"TwabRewards/duration-not-zero\");\n        _requireNumberOfEpochs(_numberOfEpochs);\n\n        uint256 _nextPromotionId = _latestPromotionId + 1;\n        _latestPromotionId = _nextPromotionId;\n\n        uint256 _amount = _tokensPerEpoch * _numberOfEpochs;\n\n        _promotions[_nextPromotionId] = Promotion({\n            creator: msg.sender,\n            startTimestamp: _startTimestamp,\n            numberOfEpochs: _numberOfEpochs,\n            epochDuration: _epochDuration,\n            createdAt: uint48(block.timestamp),\n            token: _token,\n            tokensPerEpoch: _tokensPerEpoch,\n            rewardsUnclaimed: _amount\n        });\n\n        uint256 _beforeBalance = _token.balanceOf(address(this));\n\n        _token.safeTransferFrom(msg.sender, address(this), _amount);\n\n        uint256 _afterBalance = _token.balanceOf(address(this));\n\n        require(_beforeBalance + _amount == _afterBalance, \"TwabRewards/promo-amount-diff\");\n\n        emit PromotionCreated(_nextPromotionId);\n\n        return _nextPromotionId;\n    }\n\n    /// @inheritdoc ITwabRewards\n    function endPromotion(uint256 _promotionId, address _to) external override returns (bool) {\n        require(_to != address(0), \"TwabRewards/payee-not-zero-addr\");\n\n        Promotion memory _promotion = _getPromotion(_promotionId);\n        _requirePromotionCreator(_promotion);\n        _requirePromotionActive(_promotion);\n\n        uint8 _epochNumber = uint8(_getCurrentEpochId(_promotion));\n        _promotions[_promotionId].numberOfEpochs = _epochNumber;\n\n        uint256 _remainingRewards = _getRemainingRewards(_promotion);\n        _promotion.token.safeTransfer(_to, _remainingRewards);\n\n        emit PromotionEnded(_promotionId, _to, _remainingRewards, _epochNumber);\n\n        return true;\n    }\n\n    /// @inheritdoc ITwabRewards\n    function destroyPromotion(uint256 _promotionId, address _to) external override returns (bool) {\n        require(_to != address(0), \"TwabRewards/payee-not-zero-addr\");\n\n        Promotion memory _promotion = _getPromotion(_promotionId);\n        _requirePromotionCreator(_promotion);\n\n        uint256 _promotionEndTimestamp = _getPromotionEndTimestamp(_promotion);\n        uint256 _promotionCreatedAt = _promotion.createdAt;\n\n        uint256 _gracePeriodEndTimestamp = (\n            _promotionEndTimestamp < _promotionCreatedAt\n                ? _promotionCreatedAt\n                : _promotionEndTimestamp\n        ) + GRACE_PERIOD;\n\n        require(block.timestamp >= _gracePeriodEndTimestamp, \"TwabRewards/grace-period-active\");\n\n        uint256 _rewardsUnclaimed = _promotion.rewardsUnclaimed;\n        delete _promotions[_promotionId];\n\n        _promotion.token.safeTransfer(_to, _rewardsUnclaimed);\n\n        emit PromotionDestroyed(_promotionId, _to, _rewardsUnclaimed);\n\n        return true;\n    }\n\n    /// @inheritdoc ITwabRewards\n    function extendPromotion(uint256 _promotionId, uint8 _numberOfEpochs)\n        external\n        override\n        returns (bool)\n    {\n        _requireNumberOfEpochs(_numberOfEpochs);\n\n        Promotion memory _promotion = _getPromotion(_promotionId);\n        _requirePromotionActive(_promotion);\n\n        uint8 _currentNumberOfEpochs = _promotion.numberOfEpochs;\n\n        require(\n            _numberOfEpochs <= (type(uint8).max - _currentNumberOfEpochs),\n            \"TwabRewards/epochs-over-limit\"\n        );\n\n        _promotions[_promotionId].numberOfEpochs = _currentNumberOfEpochs + _numberOfEpochs;\n\n        uint256 _amount = _numberOfEpochs * _promotion.tokensPerEpoch;\n\n        _promotions[_promotionId].rewardsUnclaimed += _amount;\n        _promotion.token.safeTransferFrom(msg.sender, address(this), _amount);\n\n        emit PromotionExtended(_promotionId, _numberOfEpochs);\n\n        return true;\n    }\n\n    /// @inheritdoc ITwabRewards\n    function claimRewards(\n        address _user,\n        uint256 _promotionId,\n        uint8[] calldata _epochIds\n    ) external override returns (uint256) {\n        Promotion memory _promotion = _getPromotion(_promotionId);\n\n        uint256 _rewardsAmount;\n        uint256 _userClaimedEpochs = _claimedEpochs[_promotionId][_user];\n        uint256 _epochIdsLength = _epochIds.length;\n\n        for (uint256 index = 0; index < _epochIdsLength; index++) {\n            uint8 _epochId = _epochIds[index];\n\n            require(!_isClaimedEpoch(_userClaimedEpochs, _epochId), \"TwabRewards/rewards-claimed\");\n\n            _rewardsAmount += _calculateRewardAmount(_user, _promotion, _epochId);\n            _userClaimedEpochs = _updateClaimedEpoch(_userClaimedEpochs, _epochId);\n        }\n\n        _claimedEpochs[_promotionId][_user] = _userClaimedEpochs;\n        _promotions[_promotionId].rewardsUnclaimed -= _rewardsAmount;\n\n        _promotion.token.safeTransfer(_user, _rewardsAmount);\n\n        emit RewardsClaimed(_promotionId, _epochIds, _user, _rewardsAmount);\n\n        return _rewardsAmount;\n    }\n\n    /// @inheritdoc ITwabRewards\n    function getPromotion(uint256 _promotionId) external view override returns (Promotion memory) {\n        return _getPromotion(_promotionId);\n    }\n\n    /// @inheritdoc ITwabRewards\n    function getCurrentEpochId(uint256 _promotionId) external view override returns (uint256) {\n        return _getCurrentEpochId(_getPromotion(_promotionId));\n    }\n\n    /// @inheritdoc ITwabRewards\n    function getRemainingRewards(uint256 _promotionId) external view override returns (uint256) {\n        return _getRemainingRewards(_getPromotion(_promotionId));\n    }\n\n    /// @inheritdoc ITwabRewards\n    function getRewardsAmount(\n        address _user,\n        uint256 _promotionId,\n        uint8[] calldata _epochIds\n    ) external view override returns (uint256[] memory) {\n        Promotion memory _promotion = _getPromotion(_promotionId);\n\n        uint256 _epochIdsLength = _epochIds.length;\n        uint256[] memory _rewardsAmount = new uint256[](_epochIdsLength);\n\n        for (uint256 index = 0; index < _epochIdsLength; index++) {\n            if (_isClaimedEpoch(_claimedEpochs[_promotionId][_user], uint8(index))) {\n                _rewardsAmount[index] = 0;\n            } else {\n                _rewardsAmount[index] = _calculateRewardAmount(_user, _promotion, _epochIds[index]);\n            }\n        }\n\n        return _rewardsAmount;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Determine if address passed is actually a ticket.\n     * @param _ticket Address to check\n     */\n    function _requireTicket(ITicket _ticket) internal view {\n        require(address(_ticket) != address(0), \"TwabRewards/ticket-not-zero-addr\");\n\n        (bool succeeded, bytes memory data) = address(_ticket).staticcall(\n            abi.encodePacked(_ticket.controller.selector)\n        );\n\n        require(\n            succeeded && data.length > 0 && abi.decode(data, (uint160)) != 0,\n            \"TwabRewards/invalid-ticket\"\n        );\n    }\n\n    /**\n     * @notice Allow a promotion to be created or extended only by a positive number of epochs.\n     * @param _numberOfEpochs Number of epochs to check\n     */\n    function _requireNumberOfEpochs(uint8 _numberOfEpochs) internal pure {\n        require(_numberOfEpochs > 0, \"TwabRewards/epochs-not-zero\");\n    }\n\n    /**\n     * @notice Determine if a promotion is active.\n     * @param _promotion Promotion to check\n     */\n    function _requirePromotionActive(Promotion memory _promotion) internal view {\n        require(\n            _getPromotionEndTimestamp(_promotion) > block.timestamp,\n            \"TwabRewards/promotion-inactive\"\n        );\n    }\n\n    /**\n     * @notice Determine if msg.sender is the promotion creator.\n     * @param _promotion Promotion to check\n     */\n    function _requirePromotionCreator(Promotion memory _promotion) internal view {\n        require(msg.sender == _promotion.creator, \"TwabRewards/only-promo-creator\");\n    }\n\n    /**\n     * @notice Get settings for a specific promotion.\n     * @dev Will revert if the promotion does not exist.\n     * @param _promotionId Promotion id to get settings for\n     * @return Promotion settings\n     */\n    function _getPromotion(uint256 _promotionId) internal view returns (Promotion memory) {\n        Promotion memory _promotion = _promotions[_promotionId];\n        require(_promotion.creator != address(0), \"TwabRewards/invalid-promotion\");\n        return _promotion;\n    }\n\n    /**\n     * @notice Compute promotion end timestamp.\n     * @param _promotion Promotion to compute end timestamp for\n     * @return Promotion end timestamp\n     */\n    function _getPromotionEndTimestamp(Promotion memory _promotion)\n        internal\n        pure\n        returns (uint256)\n    {\n        unchecked {\n            return\n                _promotion.startTimestamp + (_promotion.epochDuration * _promotion.numberOfEpochs);\n        }\n    }\n\n    /**\n     * @notice Get the current epoch id of a promotion.\n     * @dev Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\n     * @dev We return the current epoch id if the promotion has not ended.\n     * If the current timestamp is before the promotion start timestamp, we return 0.\n     * Otherwise, we return the epoch id at the current timestamp. This could be greater than the number of epochs of the promotion.\n     * @param _promotion Promotion to get current epoch for\n     * @return Epoch id\n     */\n    function _getCurrentEpochId(Promotion memory _promotion) internal view returns (uint256) {\n        uint256 _currentEpochId;\n\n        if (block.timestamp > _promotion.startTimestamp) {\n            unchecked {\n                _currentEpochId =\n                    (block.timestamp - _promotion.startTimestamp) /\n                    _promotion.epochDuration;\n            }\n        }\n\n        return _currentEpochId;\n    }\n\n    /**\n     * @notice Get reward amount for a specific user.\n     * @dev Rewards can only be calculated once the epoch is over.\n     * @dev Will revert if `_epochId` is over the total number of epochs or if epoch is not over.\n     * @dev Will return 0 if the user average balance of tickets is 0.\n     * @param _user User to get reward amount for\n     * @param _promotion Promotion from which the epoch is\n     * @param _epochId Epoch id to get reward amount for\n     * @return Reward amount\n     */\n    function _calculateRewardAmount(\n        address _user,\n        Promotion memory _promotion,\n        uint8 _epochId\n    ) internal view returns (uint256) {\n        uint64 _epochDuration = _promotion.epochDuration;\n        uint64 _epochStartTimestamp = _promotion.startTimestamp + (_epochDuration * _epochId);\n        uint64 _epochEndTimestamp = _epochStartTimestamp + _epochDuration;\n\n        require(block.timestamp >= _epochEndTimestamp, \"TwabRewards/epoch-not-over\");\n        require(_epochId < _promotion.numberOfEpochs, \"TwabRewards/invalid-epoch-id\");\n\n        uint256 _averageBalance = ticket.getAverageBalanceBetween(\n            _user,\n            _epochStartTimestamp,\n            _epochEndTimestamp\n        );\n\n        if (_averageBalance > 0) {\n            uint64[] memory _epochStartTimestamps = new uint64[](1);\n            _epochStartTimestamps[0] = _epochStartTimestamp;\n\n            uint64[] memory _epochEndTimestamps = new uint64[](1);\n            _epochEndTimestamps[0] = _epochEndTimestamp;\n\n            uint256 _averageTotalSupply = ticket.getAverageTotalSuppliesBetween(\n                _epochStartTimestamps,\n                _epochEndTimestamps\n            )[0];\n\n            return (_promotion.tokensPerEpoch * _averageBalance) / _averageTotalSupply;\n        }\n\n        return 0;\n    }\n\n    /**\n     * @notice Get the total amount of tokens left to be rewarded.\n     * @param _promotion Promotion to get the total amount of tokens left to be rewarded for\n     * @return Amount of tokens left to be rewarded\n     */\n    function _getRemainingRewards(Promotion memory _promotion) internal view returns (uint256) {\n        if (block.timestamp > _getPromotionEndTimestamp(_promotion)) {\n            return 0;\n        }\n\n        return\n            _promotion.tokensPerEpoch *\n            (_promotion.numberOfEpochs - _getCurrentEpochId(_promotion));\n    }\n\n    /**\n    * @notice Set boolean value for a specific epoch.\n    * @dev Bits are stored in a uint256 from right to left.\n        Let's take the example of the following 8 bits word. 0110 0011\n        To set the boolean value to 1 for the epoch id 2, we need to create a mask by shifting 1 to the left by 2 bits.\n        We get: 0000 0001 << 2 = 0000 0100\n        We then OR the mask with the word to set the value.\n        We get: 0110 0011 | 0000 0100 = 0110 0111\n    * @param _userClaimedEpochs Tightly packed epoch ids with their boolean values\n    * @param _epochId Id of the epoch to set the boolean for\n    * @return Tightly packed epoch ids with the newly boolean value set\n    */\n    function _updateClaimedEpoch(uint256 _userClaimedEpochs, uint8 _epochId)\n        internal\n        pure\n        returns (uint256)\n    {\n        return _userClaimedEpochs | (uint256(1) << _epochId);\n    }\n\n    /**\n    * @notice Check if rewards of an epoch for a given promotion have already been claimed by the user.\n    * @dev Bits are stored in a uint256 from right to left.\n        Let's take the example of the following 8 bits word. 0110 0111\n        To retrieve the boolean value for the epoch id 2, we need to shift the word to the right by 2 bits.\n        We get: 0110 0111 >> 2 = 0001 1001\n        We then get the value of the last bit by masking with 1.\n        We get: 0001 1001 & 0000 0001 = 0000 0001 = 1\n        We then return the boolean value true since the last bit is 1.\n    * @param _userClaimedEpochs Record of epochs already claimed by the user\n    * @param _epochId Epoch id to check\n    * @return true if the rewards have already been claimed for the given epoch, false otherwise\n     */\n    function _isClaimedEpoch(uint256 _userClaimedEpochs, uint8 _epochId)\n        internal\n        pure\n        returns (bool)\n    {\n        return (_userClaimedEpochs >> _epochId) & uint256(1) == 1;\n    }\n}\n"
      },
      "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./interfaces/IPrizeTierHistory.sol\";\n\n/**\n * @title Prize Distribution Factory\n * @author PoolTogether Inc.\n * @notice The Prize Distribution Factory populates a Prize Distribution Buffer for a prize pool.  It uses a Prize Tier History, Draw Buffer and Ticket\n * to compute the correct prize distribution.  It automatically sets the cardinality based on the minPickCost and the total network ticket supply.\n */\ncontract PrizeDistributionFactory is Manageable {\n    using ExtendedSafeCastLib for uint256;\n\n    /// @notice Emitted when a new Prize Distribution is pushed.\n    /// @param drawId The draw id for which the prize dist was pushed\n    /// @param totalNetworkTicketSupply The total network ticket supply that was used to compute the cardinality and portion of picks\n    event PrizeDistributionPushed(uint32 indexed drawId, uint256 totalNetworkTicketSupply);\n\n    /// @notice Emitted when a Prize Distribution is set (overrides another)\n    /// @param drawId The draw id for which the prize dist was set\n    /// @param totalNetworkTicketSupply The total network ticket supply that was used to compute the cardinality and portion of picks\n    event PrizeDistributionSet(uint32 indexed drawId, uint256 totalNetworkTicketSupply);\n\n    /// @notice The prize tier history to pull tier information from\n    IPrizeTierHistory public immutable prizeTierHistory;\n\n    /// @notice The draw buffer to pull the draw from\n    IDrawBuffer public immutable drawBuffer;\n\n    /// @notice The prize distribution buffer to push and set.  This contract must be the manager or owner of the buffer.\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\n\n    /// @notice The ticket whose average total supply will be measured to calculate the portion of picks\n    ITicket public immutable ticket;\n\n    /// @notice The minimum cost of each pick.  Used to calculate the cardinality.\n    uint256 public immutable minPickCost;\n\n    constructor(\n        address _owner,\n        IPrizeTierHistory _prizeTierHistory,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionBuffer _prizeDistributionBuffer,\n        ITicket _ticket,\n        uint256 _minPickCost\n    ) Ownable(_owner) {\n        require(_owner != address(0), \"PDC/owner-zero\");\n        require(address(_prizeTierHistory) != address(0), \"PDC/pth-zero\");\n        require(address(_drawBuffer) != address(0), \"PDC/db-zero\");\n        require(address(_prizeDistributionBuffer) != address(0), \"PDC/pdb-zero\");\n        require(address(_ticket) != address(0), \"PDC/ticket-zero\");\n        require(_minPickCost > 0, \"PDC/pick-cost-gt-zero\");\n\n        minPickCost = _minPickCost;\n        prizeTierHistory = _prizeTierHistory;\n        drawBuffer = _drawBuffer;\n        prizeDistributionBuffer = _prizeDistributionBuffer;\n        ticket = _ticket;\n    }\n\n    /**\n     * @notice Allows the owner or manager to push a new prize distribution onto the buffer.\n     * The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\n     * @param _drawId The draw id to compute for\n     * @param _totalNetworkTicketSupply The total supply of tickets across all prize pools for the network that the ticket belongs to.\n     * @return The resulting Prize Distribution\n     */\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply)\n        external\n        onlyManagerOrOwner\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\n    {\n        IPrizeDistributionBuffer.PrizeDistribution\n            memory prizeDistribution = calculatePrizeDistribution(\n                _drawId,\n                _totalNetworkTicketSupply\n            );\n        prizeDistributionBuffer.pushPrizeDistribution(_drawId, prizeDistribution);\n\n        emit PrizeDistributionPushed(_drawId, _totalNetworkTicketSupply);\n\n        return prizeDistribution;\n    }\n\n    /**\n     * @notice Allows the owner or manager to override an existing prize distribution in the buffer.\n     * The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\n     * @param _drawId The draw id to compute for\n     * @param _totalNetworkTicketSupply The total supply of tickets across all prize pools for the network that the ticket belongs to.\n     * @return The resulting Prize Distribution\n     */\n    function setPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply)\n        external\n        onlyOwner\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\n    {\n        IPrizeDistributionBuffer.PrizeDistribution\n            memory prizeDistribution = calculatePrizeDistribution(\n                _drawId,\n                _totalNetworkTicketSupply\n            );\n        prizeDistributionBuffer.setPrizeDistribution(_drawId, prizeDistribution);\n\n        emit PrizeDistributionSet(_drawId, _totalNetworkTicketSupply);\n\n        return prizeDistribution;\n    }\n\n    /**\n     * @notice Calculates what the prize distribution will be, given a draw id and total network ticket supply.\n     * @param _drawId The draw id to pull from the Draw Buffer and Prize Tier History\n     * @param _totalNetworkTicketSupply The total of all ticket supplies across all prize pools in this network\n     * @return PrizeDistribution using info from the Draw for the given draw id, total network ticket supply, and PrizeTier for the draw.\n     */\n    function calculatePrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply)\n        public\n        view\n        virtual\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\n    {\n        IDrawBeacon.Draw memory draw = drawBuffer.getDraw(_drawId);\n        return\n            calculatePrizeDistributionWithDrawData(\n                _drawId,\n                _totalNetworkTicketSupply,\n                draw.beaconPeriodSeconds,\n                draw.timestamp\n            );\n    }\n\n    /**\n     * @notice Calculates what the prize distribution will be, given a draw id and total network ticket supply.\n     * @param _drawId The draw from which to use the Draw and\n     * @param _totalNetworkTicketSupply The sum of all ticket supplies across all prize pools on the network\n     * @param _beaconPeriodSeconds The beacon period in seconds\n     * @param _drawTimestamp The timestamp at which the draw RNG request started.\n     * @return A PrizeDistribution based on the given params and PrizeTier for the passed draw id\n     */\n    function calculatePrizeDistributionWithDrawData(\n        uint32 _drawId,\n        uint256 _totalNetworkTicketSupply,\n        uint32 _beaconPeriodSeconds,\n        uint64 _drawTimestamp\n    ) public view virtual returns (IPrizeDistributionBuffer.PrizeDistribution memory) {\n        uint256 maxPicks = _totalNetworkTicketSupply / minPickCost;\n\n        IPrizeDistributionBuffer.PrizeDistribution\n            memory prizeDistribution = _calculatePrizeDistribution(\n                _drawId,\n                _beaconPeriodSeconds,\n                maxPicks\n            );\n\n        uint64[] memory startTimestamps = new uint64[](1);\n        uint64[] memory endTimestamps = new uint64[](1);\n\n        startTimestamps[0] = _drawTimestamp - prizeDistribution.startTimestampOffset;\n        endTimestamps[0] = _drawTimestamp - prizeDistribution.endTimestampOffset;\n\n        uint256[] memory ticketAverageTotalSupplies = ticket.getAverageTotalSuppliesBetween(\n            startTimestamps,\n            endTimestamps\n        );\n\n        require(\n            _totalNetworkTicketSupply >= ticketAverageTotalSupplies[0],\n            \"PDF/invalid-network-supply\"\n        );\n\n        if (_totalNetworkTicketSupply > 0) {\n            prizeDistribution.numberOfPicks = uint256(\n                (prizeDistribution.numberOfPicks * ticketAverageTotalSupplies[0]) /\n                    _totalNetworkTicketSupply\n            ).toUint104();\n        } else {\n            prizeDistribution.numberOfPicks = 0;\n        }\n\n        return prizeDistribution;\n    }\n\n    /**\n     * @notice Gets the PrizeDistributionBuffer for a drawId\n     * @param _drawId drawId\n     * @param _startTimestampOffset The start timestamp offset to use for the prize distribution\n     * @param _maxPicks The maximum picks that the distribution should allow.  The Prize Distribution's numberOfPicks will be less than or equal to this number.\n     * @return prizeDistribution\n     */\n    function _calculatePrizeDistribution(\n        uint32 _drawId,\n        uint32 _startTimestampOffset,\n        uint256 _maxPicks\n    ) internal view virtual returns (IPrizeDistributionBuffer.PrizeDistribution memory) {\n        IPrizeTierHistory.PrizeTier memory prizeTier = prizeTierHistory.getPrizeTier(_drawId);\n\n        uint8 cardinality;\n        do {\n            cardinality++;\n        } while ((2**prizeTier.bitRangeSize)**(cardinality + 1) < _maxPicks);\n\n        IPrizeDistributionBuffer.PrizeDistribution\n            memory prizeDistribution = IPrizeDistributionBuffer.PrizeDistribution({\n                bitRangeSize: prizeTier.bitRangeSize,\n                matchCardinality: cardinality,\n                startTimestampOffset: _startTimestampOffset,\n                endTimestampOffset: prizeTier.endTimestampOffset,\n                maxPicksPerUser: prizeTier.maxPicksPerUser,\n                expiryDuration: prizeTier.expiryDuration,\n                numberOfPicks: uint256((2**prizeTier.bitRangeSize)**cardinality).toUint104(),\n                tiers: prizeTier.tiers,\n                prize: prizeTier.prize\n            });\n\n        return prizeDistribution;\n    }\n}\n"
      },
      "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity 0.8.6;\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\";\nimport \"./interfaces/IDrawCalculatorTimelock.sol\";\n\n/**\n  * @title  PoolTogether V4 L1TimelockTrigger\n  * @author PoolTogether Inc Team\n  * @notice L1TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts.\n            The L1TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing\n            claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\n            to  include a \"cooldown\" period for all new Draws. Allowing the correction of a\n            malicously set Draw in the unfortunate event an Owner is compromised.\n*/\ncontract L1TimelockTrigger is Manageable {\n    /* ============ Events ============ */\n\n    /// @notice Emitted when the contract is deployed.\n    /// @param prizeDistributionBuffer The address of the prize distribution buffer contract.\n    /// @param timelock The address of the DrawCalculatorTimelock\n    event Deployed(\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer,\n        IDrawCalculatorTimelock indexed timelock\n    );\n\n    /**\n     * @notice Emitted when target prize distribution is pushed.\n     * @param drawId    Draw ID\n     * @param prizeDistribution PrizeDistribution\n     */\n    event PrizeDistributionPushed(\n        uint32 indexed drawId,\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\n    );\n\n    /* ============ Global Variables ============ */\n\n    /// @notice Internal PrizeDistributionBuffer reference.\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\n\n    /// @notice Timelock struct reference.\n    IDrawCalculatorTimelock public timelock;\n\n    /* ============ Deploy ============ */\n\n    /**\n     * @notice Initialize L1TimelockTrigger smart contract.\n     * @param _owner                    Address of the L1TimelockTrigger owner.\n     * @param _prizeDistributionBuffer PrizeDistributionBuffer address\n     * @param _timelock                 Elapsed seconds before new Draw is available\n     */\n    constructor(\n        address _owner,\n        IPrizeDistributionBuffer _prizeDistributionBuffer,\n        IDrawCalculatorTimelock _timelock\n    ) Ownable(_owner) {\n        prizeDistributionBuffer = _prizeDistributionBuffer;\n        timelock = _timelock;\n\n        emit Deployed(_prizeDistributionBuffer, _timelock);\n    }\n\n    /**\n     * @notice Push Draw onto draws ring buffer history.\n     * @dev    Restricts new draws by forcing a push timelock.\n     * @param _draw Draw struct\n     * @param _prizeDistribution PrizeDistribution struct\n     */\n    function push(\n        IDrawBeacon.Draw calldata _draw,\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\n    ) external onlyManagerOrOwner {\n        // Locks the new PrizeDistribution according to the Draw endtime.\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\n        prizeDistributionBuffer.pushPrizeDistribution(_draw.drawId, _prizeDistribution);\n        emit PrizeDistributionPushed(_draw.drawId, _prizeDistribution);\n    }\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol';\n"
      },
      "@pooltogether/v4-core/contracts/Reserve.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"./interfaces/IReserve.sol\";\nimport \"./libraries/ObservationLib.sol\";\nimport \"./libraries/RingBufferLib.sol\";\n\n/**\n    * @title  PoolTogether V4 Reserve\n    * @author PoolTogether Inc Team\n    * @notice The Reserve contract provides historical lookups of a token balance increase during a target timerange.\n              As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are\n              transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens.\n              By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account\n              can lookup the balance increase of the reserve for a target timerange.   \n    * @dev    By calculating the total held tokens in a specific time range, contracts that require knowledge \n              of captured interest during a draw period, can easily call into the Reserve and deterministically\n              determine the newly aqcuired tokens for that time range. \n */\ncontract Reserve is IReserve, Manageable {\n    using SafeERC20 for IERC20;\n\n    /// @notice ERC20 token\n    IERC20 public immutable token;\n\n    /// @notice Total withdraw amount from reserve\n    uint224 public withdrawAccumulator;\n    uint32 private _gap;\n\n    uint24 internal nextIndex;\n    uint24 internal cardinality;\n\n    /// @notice The maximum number of twab entries\n    uint24 internal constant MAX_CARDINALITY = 16777215; // 2**24 - 1\n\n    ObservationLib.Observation[MAX_CARDINALITY] internal reserveAccumulators;\n\n    /* ============ Events ============ */\n\n    event Deployed(IERC20 indexed token);\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructs Ticket with passed parameters.\n     * @param _owner Owner address\n     * @param _token ERC20 address\n     */\n    constructor(address _owner, IERC20 _token) Ownable(_owner) {\n        token = _token;\n        emit Deployed(_token);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IReserve\n    function checkpoint() external override {\n        _checkpoint();\n    }\n\n    /// @inheritdoc IReserve\n    function getToken() external view override returns (IERC20) {\n        return token;\n    }\n\n    /// @inheritdoc IReserve\n    function getReserveAccumulatedBetween(uint32 _startTimestamp, uint32 _endTimestamp)\n        external\n        view\n        override\n        returns (uint224)\n    {\n        require(_startTimestamp < _endTimestamp, \"Reserve/start-less-then-end\");\n        uint24 _cardinality = cardinality;\n        uint24 _nextIndex = nextIndex;\n\n        (uint24 _newestIndex, ObservationLib.Observation memory _newestObservation) = _getNewestObservation(_nextIndex);\n        (uint24 _oldestIndex, ObservationLib.Observation memory _oldestObservation) = _getOldestObservation(_nextIndex);\n\n        uint224 _start = _getReserveAccumulatedAt(\n            _newestObservation,\n            _oldestObservation,\n            _newestIndex,\n            _oldestIndex,\n            _cardinality,\n            _startTimestamp\n        );\n\n        uint224 _end = _getReserveAccumulatedAt(\n            _newestObservation,\n            _oldestObservation,\n            _newestIndex,\n            _oldestIndex,\n            _cardinality,\n            _endTimestamp\n        );\n\n        return _end - _start;\n    }\n\n    /// @inheritdoc IReserve\n    function withdrawTo(address _recipient, uint256 _amount) external override onlyManagerOrOwner {\n        _checkpoint();\n\n        withdrawAccumulator += uint224(_amount);\n        \n        token.safeTransfer(_recipient, _amount);\n\n        emit Withdrawn(_recipient, _amount);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Find optimal observation checkpoint using target timestamp\n     * @dev    Uses binary search if target timestamp is within ring buffer range.\n     * @param _newestObservation ObservationLib.Observation\n     * @param _oldestObservation ObservationLib.Observation\n     * @param _newestIndex The index of the newest observation\n     * @param _oldestIndex The index of the oldest observation\n     * @param _cardinality       RingBuffer Range\n     * @param _timestamp          Timestamp target\n     *\n     * @return Optimal reserveAccumlator for timestamp.\n     */\n    function _getReserveAccumulatedAt(\n        ObservationLib.Observation memory _newestObservation,\n        ObservationLib.Observation memory _oldestObservation,\n        uint24 _newestIndex,\n        uint24 _oldestIndex,\n        uint24 _cardinality,\n        uint32 _timestamp\n    ) internal view returns (uint224) {\n        uint32 timeNow = uint32(block.timestamp);\n\n        // IF empty ring buffer exit early.\n        if (_cardinality == 0) return 0;\n\n        /**\n         * Ring Buffer Search Optimization\n         * Before performing binary search on the ring buffer check\n         * to see if timestamp is within range of [o T n] by comparing\n         * the target timestamp to the oldest/newest observation.timestamps\n         * IF the timestamp is out of the ring buffer range avoid starting\n         * a binary search, because we can return NULL or oldestObservation.amount\n         */\n\n        /**\n         * IF oldestObservation.timestamp is after timestamp: T[old ]\n         * the Reserve did NOT have a balance or the ring buffer\n         * no longer contains that timestamp checkpoint.\n         */\n        if (_oldestObservation.timestamp > _timestamp) {\n            return 0;\n        }\n\n        /**\n         * IF newestObservation.timestamp is before timestamp: [ new]T\n         * return _newestObservation.amount since observation\n         * contains the highest checkpointed reserveAccumulator.\n         */\n        if (_newestObservation.timestamp <= _timestamp) {\n            return _newestObservation.amount;\n        }\n\n        // IF the timestamp is witin range of ring buffer start/end: [new T old]\n        // FIND the closest observation to the left(or exact) of timestamp: [OT ]\n        (\n            ObservationLib.Observation memory beforeOrAt,\n            ObservationLib.Observation memory atOrAfter\n        ) = ObservationLib.binarySearch(\n                reserveAccumulators,\n                _newestIndex,\n                _oldestIndex,\n                _timestamp,\n                _cardinality,\n                timeNow\n            );\n\n        // IF target timestamp is EXACT match for atOrAfter.timestamp observation return amount.\n        // NOT having an exact match with atOrAfter means values will contain accumulator value AFTER the searchable range.\n        // ELSE return observation.totalDepositedAccumulator closest to LEFT of target timestamp.\n        if (atOrAfter.timestamp == _timestamp) {\n            return atOrAfter.amount;\n        } else {\n            return beforeOrAt.amount;\n        }\n    }\n\n    /// @notice Records the currently accrued reserve amount.\n    function _checkpoint() internal {\n        uint24 _cardinality = cardinality;\n        uint24 _nextIndex = nextIndex;\n        uint256 _balanceOfReserve = token.balanceOf(address(this));\n        uint224 _withdrawAccumulator = withdrawAccumulator; //sload\n        (uint24 newestIndex, ObservationLib.Observation memory newestObservation) = _getNewestObservation(_nextIndex);\n\n        /**\n         * IF tokens have been deposited into Reserve contract since the last checkpoint\n         * create a new Reserve balance checkpoint. The will will update multiple times in a single block.\n         */\n        if (_balanceOfReserve + _withdrawAccumulator > newestObservation.amount) {\n            uint32 nowTime = uint32(block.timestamp);\n\n            // checkpointAccumulator = currentBalance + totalWithdraws\n            uint224 newReserveAccumulator = uint224(_balanceOfReserve) + _withdrawAccumulator;\n\n            // IF newestObservation IS NOT in the current block.\n            // CREATE observation in the accumulators ring buffer.\n            if (newestObservation.timestamp != nowTime) {\n                reserveAccumulators[_nextIndex] = ObservationLib.Observation({\n                    amount: newReserveAccumulator,\n                    timestamp: nowTime\n                });\n                nextIndex = uint24(RingBufferLib.nextIndex(_nextIndex, MAX_CARDINALITY));\n                if (_cardinality < MAX_CARDINALITY) {\n                    cardinality = _cardinality + 1;\n                }\n            }\n            // ELSE IF newestObservation IS in the current block.\n            // UPDATE the checkpoint previously created in block history.\n            else {\n                reserveAccumulators[newestIndex] = ObservationLib.Observation({\n                    amount: newReserveAccumulator,\n                    timestamp: nowTime\n                });\n            }\n\n            emit Checkpoint(newReserveAccumulator, _withdrawAccumulator);\n        }\n    }\n\n    /// @notice Retrieves the oldest observation\n    /// @param _nextIndex The next index of the Reserve observations\n    function _getOldestObservation(uint24 _nextIndex)\n        internal\n        view\n        returns (uint24 index, ObservationLib.Observation memory observation)\n    {\n        index = _nextIndex;\n        observation = reserveAccumulators[index];\n\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\n        if (observation.timestamp == 0) {\n            index = 0;\n            observation = reserveAccumulators[0];\n        }\n    }\n\n    /// @notice Retrieves the newest observation\n    /// @param _nextIndex The next index of the Reserve observations\n    function _getNewestObservation(uint24 _nextIndex)\n        internal\n        view\n        returns (uint24 index, ObservationLib.Observation memory observation)\n    {\n        index = uint24(RingBufferLib.newestIndex(_nextIndex, MAX_CARDINALITY));\n        observation = reserveAccumulators[index];\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/Ticket.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"./libraries/ExtendedSafeCastLib.sol\";\nimport \"./libraries/TwabLib.sol\";\nimport \"./interfaces/ITicket.sol\";\nimport \"./ControlledToken.sol\";\n\n/**\n  * @title  PoolTogether V4 Ticket\n  * @author PoolTogether Inc Team\n  * @notice The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality.\n            The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The\n            historic total supply is available as well as the average total supply between two timestamps.\n\n            A user may \"delegate\" their balance; increasing another user's historic balance while retaining their tokens.\n*/\ncontract Ticket is ControlledToken, ITicket {\n    using SafeERC20 for IERC20;\n    using ExtendedSafeCastLib for uint256;\n\n    // solhint-disable-next-line var-name-mixedcase\n    bytes32 private immutable _DELEGATE_TYPEHASH =\n        keccak256(\"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\");\n\n    /// @notice Record of token holders TWABs for each account.\n    mapping(address => TwabLib.Account) internal userTwabs;\n\n    /// @notice Record of tickets total supply and ring buff parameters used for observation.\n    TwabLib.Account internal totalSupplyTwab;\n\n    /// @notice Mapping of delegates.  Each address can delegate their ticket power to another.\n    mapping(address => address) internal delegates;\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Constructs Ticket with passed parameters.\n     * @param _name ERC20 ticket token name.\n     * @param _symbol ERC20 ticket token symbol.\n     * @param decimals_ ERC20 ticket token decimals.\n     * @param _controller ERC20 ticket controller address (ie: Prize Pool address).\n     */\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 decimals_,\n        address _controller\n    ) ControlledToken(_name, _symbol, decimals_, _controller) {}\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc ITicket\n    function getAccountDetails(address _user)\n        external\n        view\n        override\n        returns (TwabLib.AccountDetails memory)\n    {\n        return userTwabs[_user].details;\n    }\n\n    /// @inheritdoc ITicket\n    function getTwab(address _user, uint16 _index)\n        external\n        view\n        override\n        returns (ObservationLib.Observation memory)\n    {\n        return userTwabs[_user].twabs[_index];\n    }\n\n    /// @inheritdoc ITicket\n    function getBalanceAt(address _user, uint64 _target) external view override returns (uint256) {\n        TwabLib.Account storage account = userTwabs[_user];\n\n        return\n            TwabLib.getBalanceAt(\n                account.twabs,\n                account.details,\n                uint32(_target),\n                uint32(block.timestamp)\n            );\n    }\n\n    /// @inheritdoc ITicket\n    function getAverageBalancesBetween(\n        address _user,\n        uint64[] calldata _startTimes,\n        uint64[] calldata _endTimes\n    ) external view override returns (uint256[] memory) {\n        return _getAverageBalancesBetween(userTwabs[_user], _startTimes, _endTimes);\n    }\n\n    /// @inheritdoc ITicket\n    function getAverageTotalSuppliesBetween(\n        uint64[] calldata _startTimes,\n        uint64[] calldata _endTimes\n    ) external view override returns (uint256[] memory) {\n        return _getAverageBalancesBetween(totalSupplyTwab, _startTimes, _endTimes);\n    }\n\n    /// @inheritdoc ITicket\n    function getAverageBalanceBetween(\n        address _user,\n        uint64 _startTime,\n        uint64 _endTime\n    ) external view override returns (uint256) {\n        TwabLib.Account storage account = userTwabs[_user];\n\n        return\n            TwabLib.getAverageBalanceBetween(\n                account.twabs,\n                account.details,\n                uint32(_startTime),\n                uint32(_endTime),\n                uint32(block.timestamp)\n            );\n    }\n\n    /// @inheritdoc ITicket\n    function getBalancesAt(address _user, uint64[] calldata _targets)\n        external\n        view\n        override\n        returns (uint256[] memory)\n    {\n        uint256 length = _targets.length;\n        uint256[] memory _balances = new uint256[](length);\n\n        TwabLib.Account storage twabContext = userTwabs[_user];\n        TwabLib.AccountDetails memory details = twabContext.details;\n\n        for (uint256 i = 0; i < length; i++) {\n            _balances[i] = TwabLib.getBalanceAt(\n                twabContext.twabs,\n                details,\n                uint32(_targets[i]),\n                uint32(block.timestamp)\n            );\n        }\n\n        return _balances;\n    }\n\n    /// @inheritdoc ITicket\n    function getTotalSupplyAt(uint64 _target) external view override returns (uint256) {\n        return\n            TwabLib.getBalanceAt(\n                totalSupplyTwab.twabs,\n                totalSupplyTwab.details,\n                uint32(_target),\n                uint32(block.timestamp)\n            );\n    }\n\n    /// @inheritdoc ITicket\n    function getTotalSuppliesAt(uint64[] calldata _targets)\n        external\n        view\n        override\n        returns (uint256[] memory)\n    {\n        uint256 length = _targets.length;\n        uint256[] memory totalSupplies = new uint256[](length);\n\n        TwabLib.AccountDetails memory details = totalSupplyTwab.details;\n\n        for (uint256 i = 0; i < length; i++) {\n            totalSupplies[i] = TwabLib.getBalanceAt(\n                totalSupplyTwab.twabs,\n                details,\n                uint32(_targets[i]),\n                uint32(block.timestamp)\n            );\n        }\n\n        return totalSupplies;\n    }\n\n    /// @inheritdoc ITicket\n    function delegateOf(address _user) external view override returns (address) {\n        return delegates[_user];\n    }\n\n    /// @inheritdoc ITicket\n    function controllerDelegateFor(address _user, address _to) external override onlyController {\n        _delegate(_user, _to);\n    }\n\n    /// @inheritdoc ITicket\n    function delegateWithSignature(\n        address _user,\n        address _newDelegate,\n        uint256 _deadline,\n        uint8 _v,\n        bytes32 _r,\n        bytes32 _s\n    ) external virtual override {\n        require(block.timestamp <= _deadline, \"Ticket/delegate-expired-deadline\");\n\n        bytes32 structHash = keccak256(abi.encode(_DELEGATE_TYPEHASH, _user, _newDelegate, _useNonce(_user), _deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSA.recover(hash, _v, _r, _s);\n        require(signer == _user, \"Ticket/delegate-invalid-signature\");\n\n        _delegate(_user, _newDelegate);\n    }\n\n    /// @inheritdoc ITicket\n    function delegate(address _to) external virtual override {\n        _delegate(msg.sender, _to);\n    }\n\n    /// @notice Delegates a users chance to another\n    /// @param _user The user whose balance should be delegated\n    /// @param _to The delegate\n    function _delegate(address _user, address _to) internal {\n        uint256 balance = balanceOf(_user);\n        address currentDelegate = delegates[_user];\n\n        if (currentDelegate == _to) {\n            return;\n        }\n\n        delegates[_user] = _to;\n\n        _transferTwab(currentDelegate, _to, balance);\n\n        emit Delegated(_user, _to);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Retrieves the average balances held by a user for a given time frame.\n     * @param _account The user whose balance is checked.\n     * @param _startTimes The start time of the time frame.\n     * @param _endTimes The end time of the time frame.\n     * @return The average balance that the user held during the time frame.\n     */\n    function _getAverageBalancesBetween(\n        TwabLib.Account storage _account,\n        uint64[] calldata _startTimes,\n        uint64[] calldata _endTimes\n    ) internal view returns (uint256[] memory) {\n        uint256 startTimesLength = _startTimes.length;\n        require(startTimesLength == _endTimes.length, \"Ticket/start-end-times-length-match\");\n\n        TwabLib.AccountDetails memory accountDetails = _account.details;\n\n        uint256[] memory averageBalances = new uint256[](startTimesLength);\n        uint32 currentTimestamp = uint32(block.timestamp);\n\n        for (uint256 i = 0; i < startTimesLength; i++) {\n            averageBalances[i] = TwabLib.getAverageBalanceBetween(\n                _account.twabs,\n                accountDetails,\n                uint32(_startTimes[i]),\n                uint32(_endTimes[i]),\n                currentTimestamp\n            );\n        }\n\n        return averageBalances;\n    }\n\n    // @inheritdoc ERC20\n    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal override {\n        if (_from == _to) {\n            return;\n        }\n\n        address _fromDelegate;\n        if (_from != address(0)) {\n            _fromDelegate = delegates[_from];\n        }\n\n        address _toDelegate;\n        if (_to != address(0)) {\n            _toDelegate = delegates[_to];\n        }\n\n        _transferTwab(_fromDelegate, _toDelegate, _amount);\n    }\n\n    /// @notice Transfers the given TWAB balance from one user to another\n    /// @param _from The user to transfer the balance from.  May be zero in the event of a mint.\n    /// @param _to The user to transfer the balance to.  May be zero in the event of a burn.\n    /// @param _amount The balance that is being transferred.\n    function _transferTwab(address _from, address _to, uint256 _amount) internal {\n        // If we are transferring tokens from a delegated account to an undelegated account\n        if (_from != address(0)) {\n            _decreaseUserTwab(_from, _amount);\n\n            if (_to == address(0)) {\n                _decreaseTotalSupplyTwab(_amount);\n            }\n        }\n\n        // If we are transferring tokens from an undelegated account to a delegated account\n        if (_to != address(0)) {\n            _increaseUserTwab(_to, _amount);\n\n            if (_from == address(0)) {\n                _increaseTotalSupplyTwab(_amount);\n            }\n        }\n    }\n\n    /**\n     * @notice Increase `_to` TWAB balance.\n     * @param _to Address of the delegate.\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\n     */\n    function _increaseUserTwab(\n        address _to,\n        uint256 _amount\n    ) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        TwabLib.Account storage _account = userTwabs[_to];\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        ) = TwabLib.increaseBalance(_account, _amount.toUint208(), uint32(block.timestamp));\n\n        _account.details = accountDetails;\n\n        if (isNew) {\n            emit NewUserTwab(_to, twab);\n        }\n    }\n\n    /**\n     * @notice Decrease `_to` TWAB balance.\n     * @param _to Address of the delegate.\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\n     */\n    function _decreaseUserTwab(\n        address _to,\n        uint256 _amount\n    ) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        TwabLib.Account storage _account = userTwabs[_to];\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory twab,\n            bool isNew\n        ) = TwabLib.decreaseBalance(\n                _account,\n                _amount.toUint208(),\n                \"Ticket/twab-burn-lt-balance\",\n                uint32(block.timestamp)\n            );\n\n        _account.details = accountDetails;\n\n        if (isNew) {\n            emit NewUserTwab(_to, twab);\n        }\n    }\n\n    /// @notice Decreases the total supply twab.  Should be called anytime a balance moves from delegated to undelegated\n    /// @param _amount The amount to decrease the total by\n    function _decreaseTotalSupplyTwab(uint256 _amount) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory tsTwab,\n            bool tsIsNew\n        ) = TwabLib.decreaseBalance(\n                totalSupplyTwab,\n                _amount.toUint208(),\n                \"Ticket/burn-amount-exceeds-total-supply-twab\",\n                uint32(block.timestamp)\n            );\n\n        totalSupplyTwab.details = accountDetails;\n\n        if (tsIsNew) {\n            emit NewTotalSupplyTwab(tsTwab);\n        }\n    }\n\n    /// @notice Increases the total supply twab.  Should be called anytime a balance moves from undelegated to delegated\n    /// @param _amount The amount to increase the total by\n    function _increaseTotalSupplyTwab(uint256 _amount) internal {\n        if (_amount == 0) {\n            return;\n        }\n\n        (\n            TwabLib.AccountDetails memory accountDetails,\n            ObservationLib.Observation memory _totalSupply,\n            bool tsIsNew\n        ) = TwabLib.increaseBalance(totalSupplyTwab, _amount.toUint208(), uint32(block.timestamp));\n\n        totalSupplyTwab.details = accountDetails;\n\n        if (tsIsNew) {\n            emit NewTotalSupplyTwab(_totalSupply);\n        }\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/ControlledToken.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\";\n\nimport \"./interfaces/IControlledToken.sol\";\n\n/**\n * @title  PoolTogether V4 Controlled ERC20 Token\n * @author PoolTogether Inc Team\n * @notice  ERC20 Tokens with a controller for minting & burning\n */\ncontract ControlledToken is ERC20Permit, IControlledToken {\n    /* ============ Global Variables ============ */\n\n    /// @notice Interface to the contract responsible for controlling mint/burn\n    address public override immutable controller;\n\n    /// @notice ERC20 controlled token decimals.\n    uint8 private immutable _decimals;\n\n    /* ============ Events ============ */\n\n    /// @dev Emitted when contract is deployed\n    event Deployed(string name, string symbol, uint8 decimals, address indexed controller);\n\n    /* ============ Modifiers ============ */\n\n    /// @dev Function modifier to ensure that the caller is the controller contract\n    modifier onlyController() {\n        require(msg.sender == address(controller), \"ControlledToken/only-controller\");\n        _;\n    }\n\n    /* ============ Constructor ============ */\n\n    /// @notice Deploy the Controlled Token with Token Details and the Controller\n    /// @param _name The name of the Token\n    /// @param _symbol The symbol for the Token\n    /// @param decimals_ The number of decimals for the Token\n    /// @param _controller Address of the Controller contract for minting & burning\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 decimals_,\n        address _controller\n    ) ERC20Permit(\"PoolTogether ControlledToken\") ERC20(_name, _symbol) {\n        require(address(_controller) != address(0), \"ControlledToken/controller-not-zero-address\");\n        controller = _controller;\n\n        require(decimals_ > 0, \"ControlledToken/decimals-gt-zero\");\n        _decimals = decimals_;\n\n        emit Deployed(_name, _symbol, decimals_, _controller);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @notice Allows the controller to mint tokens for a user account\n    /// @dev May be overridden to provide more granular control over minting\n    /// @param _user Address of the receiver of the minted tokens\n    /// @param _amount Amount of tokens to mint\n    function controllerMint(address _user, uint256 _amount)\n        external\n        virtual\n        override\n        onlyController\n    {\n        _mint(_user, _amount);\n    }\n\n    /// @notice Allows the controller to burn tokens from a user account\n    /// @dev May be overridden to provide more granular control over burning\n    /// @param _user Address of the holder account to burn tokens from\n    /// @param _amount Amount of tokens to burn\n    function controllerBurn(address _user, uint256 _amount)\n        external\n        virtual\n        override\n        onlyController\n    {\n        _burn(_user, _amount);\n    }\n\n    /// @notice Allows an operator via the controller to burn tokens on behalf of a user account\n    /// @dev May be overridden to provide more granular control over operator-burning\n    /// @param _operator Address of the operator performing the burn action via the controller contract\n    /// @param _user Address of the holder account to burn tokens from\n    /// @param _amount Amount of tokens to burn\n    function controllerBurnFrom(\n        address _operator,\n        address _user,\n        uint256 _amount\n    ) external virtual override onlyController {\n        if (_operator != _user) {\n            _approve(_user, _operator, allowance(_user, _operator) - _amount);\n        }\n\n        _burn(_user, _amount);\n    }\n\n    /// @notice Returns the ERC20 controlled token decimals.\n    /// @dev This value should be equal to the decimals of the token used to deposit into the pool.\n    /// @return uint8 decimals.\n    function decimals() public view virtual override returns (uint8) {\n        return _decimals;\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./draft-IERC20Permit.sol\";\nimport \"../ERC20.sol\";\nimport \"../../../utils/cryptography/draft-EIP712.sol\";\nimport \"../../../utils/cryptography/ECDSA.sol\";\nimport \"../../../utils/Counters.sol\";\n\n/**\n * @dev Implementation 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 * _Available since v3.4._\n */\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\n    using Counters for Counters.Counter;\n\n    mapping(address => Counters.Counter) private _nonces;\n\n    // solhint-disable-next-line var-name-mixedcase\n    bytes32 private immutable _PERMIT_TYPEHASH =\n        keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n\n    /**\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n     *\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\n     */\n    constructor(string memory name) EIP712(name, \"1\") {}\n\n    /**\n     * @dev See {IERC20Permit-permit}.\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    ) public virtual override {\n        require(block.timestamp <= deadline, \"ERC20Permit: expired deadline\");\n\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSA.recover(hash, v, r, s);\n        require(signer == owner, \"ERC20Permit: invalid signature\");\n\n        _approve(owner, spender, value);\n    }\n\n    /**\n     * @dev See {IERC20Permit-nonces}.\n     */\n    function nonces(address owner) public view virtual override returns (uint256) {\n        return _nonces[owner].current();\n    }\n\n    /**\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\n        return _domainSeparatorV4();\n    }\n\n    /**\n     * @dev \"Consume a nonce\": return the current value and increment.\n     *\n     * _Available since v4.1._\n     */\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\n        Counters.Counter storage nonce = _nonces[owner];\n        current = nonce.current();\n        nonce.increment();\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)\n\npragma solidity ^0.8.0;\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 */\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    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/ERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n    mapping(address => uint256) private _balances;\n\n    mapping(address => mapping(address => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * The default value of {decimals} is 18. To select a different value for\n     * {decimals} you should overload it.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    constructor(string memory name_, string memory symbol_) {\n        _name = name_;\n        _symbol = symbol_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual override returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual override returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\n     * overridden;\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual override returns (uint8) {\n        return 18;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual override returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual override returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `recipient` cannot be the zero address.\n     * - the caller must have a balance of at least `amount`.\n     */\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\n        _transfer(_msgSender(), recipient, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\n        _approve(_msgSender(), spender, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Emits an {Approval} event indicating the updated allowance. This is not\n     * required by the EIP. See the note at the beginning of {ERC20}.\n     *\n     * Requirements:\n     *\n     * - `sender` and `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     * - the caller must have allowance for ``sender``'s tokens of at least\n     * `amount`.\n     */\n    function transferFrom(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) public virtual override returns (bool) {\n        _transfer(sender, recipient, amount);\n\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\n        require(currentAllowance >= amount, \"ERC20: transfer amount exceeds allowance\");\n        unchecked {\n            _approve(sender, _msgSender(), currentAllowance - amount);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\n        return true;\n    }\n\n    /**\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `spender` must have allowance for the caller of at least\n     * `subtractedValue`.\n     */\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\n        require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n        unchecked {\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * Requirements:\n     *\n     * - `sender` cannot be the zero address.\n     * - `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     */\n    function _transfer(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) internal virtual {\n        require(sender != address(0), \"ERC20: transfer from the zero address\");\n        require(recipient != address(0), \"ERC20: transfer to the zero address\");\n\n        _beforeTokenTransfer(sender, recipient, amount);\n\n        uint256 senderBalance = _balances[sender];\n        require(senderBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n        unchecked {\n            _balances[sender] = senderBalance - amount;\n        }\n        _balances[recipient] += amount;\n\n        emit Transfer(sender, recipient, amount);\n\n        _afterTokenTransfer(sender, recipient, amount);\n    }\n\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n     * the total supply.\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     */\n    function _mint(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: mint to the zero address\");\n\n        _beforeTokenTransfer(address(0), account, amount);\n\n        _totalSupply += amount;\n        _balances[account] += amount;\n        emit Transfer(address(0), account, amount);\n\n        _afterTokenTransfer(address(0), account, amount);\n    }\n\n    /**\n     * @dev Destroys `amount` tokens from `account`, reducing the\n     * total supply.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     * - `account` must have at least `amount` tokens.\n     */\n    function _burn(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: burn from the zero address\");\n\n        _beforeTokenTransfer(account, address(0), amount);\n\n        uint256 accountBalance = _balances[account];\n        require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n        unchecked {\n            _balances[account] = accountBalance - amount;\n        }\n        _totalSupply -= amount;\n\n        emit Transfer(account, address(0), amount);\n\n        _afterTokenTransfer(account, address(0), amount);\n    }\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     */\n    function _approve(\n        address owner,\n        address spender,\n        uint256 amount\n    ) internal virtual {\n        require(owner != address(0), \"ERC20: approve from the zero address\");\n        require(spender != address(0), \"ERC20: approve to the zero address\");\n\n        _allowances[owner][spender] = amount;\n        emit Approval(owner, spender, amount);\n    }\n\n    /**\n     * @dev Hook that is called before any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * will be transferred to `to`.\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n\n    /**\n     * @dev Hook that is called after any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * has been transferred to `to`.\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _afterTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n}\n"
      },
      "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./ECDSA.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 specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\n * they need in their contracts 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 * _Available since v3.4._\n */\nabstract contract EIP712 {\n    /* solhint-disable var-name-mixedcase */\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 _CACHED_DOMAIN_SEPARATOR;\n    uint256 private immutable _CACHED_CHAIN_ID;\n    address private immutable _CACHED_THIS;\n\n    bytes32 private immutable _HASHED_NAME;\n    bytes32 private immutable _HASHED_VERSION;\n    bytes32 private immutable _TYPE_HASH;\n\n    /* solhint-enable var-name-mixedcase */\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        bytes32 hashedName = keccak256(bytes(name));\n        bytes32 hashedVersion = keccak256(bytes(version));\n        bytes32 typeHash = keccak256(\n            \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\"\n        );\n        _HASHED_NAME = hashedName;\n        _HASHED_VERSION = hashedVersion;\n        _CACHED_CHAIN_ID = block.chainid;\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\n        _CACHED_THIS = address(this);\n        _TYPE_HASH = typeHash;\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) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {\n            return _CACHED_DOMAIN_SEPARATOR;\n        } else {\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\n        }\n    }\n\n    function _buildDomainSeparator(\n        bytes32 typeHash,\n        bytes32 nameHash,\n        bytes32 versionHash\n    ) private view returns (bytes32) {\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../Strings.sol\";\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        InvalidSignatureV\n    }\n\n    function _throwError(RecoverError error) private pure {\n        if (error == RecoverError.NoError) {\n            return; // no error: do nothing\n        } else if (error == RecoverError.InvalidSignature) {\n            revert(\"ECDSA: invalid signature\");\n        } else if (error == RecoverError.InvalidSignatureLength) {\n            revert(\"ECDSA: invalid signature length\");\n        } else if (error == RecoverError.InvalidSignatureS) {\n            revert(\"ECDSA: invalid signature 's' value\");\n        } else if (error == RecoverError.InvalidSignatureV) {\n            revert(\"ECDSA: invalid signature 'v' value\");\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature` or error string. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM opcode 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 {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     * _Available since v4.3._\n     */\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n        // Check the signature length\n        // - case 65: r,s,v signature (standard)\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\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            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 if (signature.length == 64) {\n            bytes32 r;\n            bytes32 vs;\n            // ecrecover takes the signature parameters, and the only way to get them\n            // currently is to use assembly.\n            assembly {\n                r := mload(add(signature, 0x20))\n                vs := mload(add(signature, 0x40))\n            }\n            return tryRecover(hash, r, vs);\n        } else {\n            return (address(0), RecoverError.InvalidSignatureLength);\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 opcode 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 {toEthSignedMessageHash} on it.\n     */\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\n        _throwError(error);\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     * _Available since v4.3._\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes32 r,\n        bytes32 vs\n    ) internal pure returns (address, RecoverError) {\n        bytes32 s;\n        uint8 v;\n        assembly {\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n            v := add(shr(255, vs), 27)\n        }\n        return tryRecover(hash, v, r, s);\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n     *\n     * _Available since v4.2._\n     */\n    function recover(\n        bytes32 hash,\n        bytes32 r,\n        bytes32 vs\n    ) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n        _throwError(error);\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     * _Available since v4.3._\n     */\n    function tryRecover(\n        bytes32 hash,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal pure returns (address, RecoverError) {\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);\n        }\n        if (v != 27 && v != 28) {\n            return (address(0), RecoverError.InvalidSignatureV);\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);\n        }\n\n        return (signer, RecoverError.NoError);\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function recover(\n        bytes32 hash,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal pure returns (address) {\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n        _throwError(error);\n        return recovered;\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n     * produces hash corresponding to the one signed with the\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n     * JSON-RPC method as part of EIP-191.\n     *\n     * See {recover}.\n     */\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\n        // 32 is the length in bytes of hash,\n        // enforced by the type signature above\n        return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n32\", hash));\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Message, created from `s`. This\n     * produces hash corresponding to the one signed with the\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n     * JSON-RPC method as part of EIP-191.\n     *\n     * See {recover}.\n     */\n    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", Strings.toString(s.length), s));\n    }\n\n    /**\n     * @dev Returns an Ethereum Signed Typed Data, created from a\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\n     * to the one signed with the\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n     * JSON-RPC method as part of EIP-712.\n     *\n     * See {recover}.\n     */\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(\"\\x19\\x01\", domainSeparator, structHash));\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/Counters.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary Counters {\n    struct Counter {\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\n        uint256 _value; // default: 0\n    }\n\n    function current(Counter storage counter) internal view returns (uint256) {\n        return counter._value;\n    }\n\n    function increment(Counter storage counter) internal {\n        unchecked {\n            counter._value += 1;\n        }\n    }\n\n    function decrement(Counter storage counter) internal {\n        uint256 value = counter._value;\n        require(value > 0, \"Counter: decrement overflow\");\n        unchecked {\n            counter._value = value - 1;\n        }\n    }\n\n    function reset(Counter storage counter) internal {\n        counter._value = 0;\n    }\n}\n"
      },
      "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\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/utils/Context.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\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"
      },
      "@openzeppelin/contracts/utils/Strings.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n    bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\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        // Inspired by OraclizeAPI's implementation - MIT licence\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n        if (value == 0) {\n            return \"0\";\n        }\n        uint256 temp = value;\n        uint256 digits;\n        while (temp != 0) {\n            digits++;\n            temp /= 10;\n        }\n        bytes memory buffer = new bytes(digits);\n        while (value != 0) {\n            digits -= 1;\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n            value /= 10;\n        }\n        return string(buffer);\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        if (value == 0) {\n            return \"0x00\";\n        }\n        uint256 temp = value;\n        uint256 length = 0;\n        while (temp != 0) {\n            length++;\n            temp >>= 8;\n        }\n        return toHexString(value, length);\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        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_SYMBOLS[value & 0xf];\n            value >>= 4;\n        }\n        require(value == 0, \"Strings: hex length insufficient\");\n        return string(buffer);\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\n/**\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n * which have permission to mint (create) new tokens as they see fit.\n *\n * At construction, the deployer of the contract is the only minter.\n */\ncontract ERC20Mintable is ERC20 {\n    constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}\n\n    /**\n     * @dev See {ERC20-_mint}.\n     *\n     * Requirements:\n     *\n     * - the caller must have the {MinterRole}.\n     */\n    function mint(address account, uint256 amount) public {\n        _mint(account, amount);\n    }\n\n    function burn(address account, uint256 amount) public returns (bool) {\n        _burn(account, amount);\n        return true;\n    }\n\n    function masterTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) public {\n        _transfer(from, to, amount);\n    }\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/test/ERC20Mintable.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/test/ERC20Mintable.sol';\n"
      },
      "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\n\nimport \"../interfaces/IPrizePool.sol\";\nimport \"../interfaces/ITicket.sol\";\n\n/**\n * @notice Secp256k1 signature values.\n * @param deadline Timestamp at which the signature expires\n * @param v `v` portion of the signature\n * @param r `r` portion of the signature\n * @param s `s` portion of the signature\n */\nstruct Signature {\n    uint256 deadline;\n    uint8 v;\n    bytes32 r;\n    bytes32 s;\n}\n\n/**\n * @notice Delegate signature to allow delegation of tickets to delegate.\n * @param delegate Address to delegate the prize pool tickets to\n * @param signature Delegate signature\n */\nstruct DelegateSignature {\n    address delegate;\n    Signature signature;\n}\n\n/// @title Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\n/// @custom:experimental This contract has not been fully audited yet.\ncontract EIP2612PermitAndDeposit {\n    using SafeERC20 for IERC20;\n\n    /**\n     * @notice Permits this contract to spend on a user's behalf and deposits into the prize pool.\n     * @dev The `spender` address required by the permit function is the address of this contract.\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _amount Amount of tokens to deposit into the prize pool\n     * @param _to Address that will receive the tickets\n     * @param _permitSignature Permit signature\n     * @param _delegateSignature Delegate signature\n     */\n    function permitAndDepositToAndDelegate(\n        IPrizePool _prizePool,\n        uint256 _amount,\n        address _to,\n        Signature calldata _permitSignature,\n        DelegateSignature calldata _delegateSignature\n    ) external {\n        ITicket _ticket = _prizePool.getTicket();\n        address _token = _prizePool.getToken();\n\n        IERC20Permit(_token).permit(\n            msg.sender,\n            address(this),\n            _amount,\n            _permitSignature.deadline,\n            _permitSignature.v,\n            _permitSignature.r,\n            _permitSignature.s\n        );\n\n        _depositToAndDelegate(\n            address(_prizePool),\n            _ticket,\n            _token,\n            _amount,\n            _to,\n            _delegateSignature\n        );\n    }\n\n    /**\n     * @notice Deposits user's token into the prize pool and delegate tickets.\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _amount Amount of tokens to deposit into the prize pool\n     * @param _to Address that will receive the tickets\n     * @param _delegateSignature Delegate signature\n     */\n    function depositToAndDelegate(\n        IPrizePool _prizePool,\n        uint256 _amount,\n        address _to,\n        DelegateSignature calldata _delegateSignature\n    ) external {\n        ITicket _ticket = _prizePool.getTicket();\n        address _token = _prizePool.getToken();\n\n        _depositToAndDelegate(\n            address(_prizePool),\n            _ticket,\n            _token,\n            _amount,\n            _to,\n            _delegateSignature\n        );\n    }\n\n    /**\n     * @notice Deposits user's token into the prize pool and delegate tickets.\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _ticket Address of the ticket minted by the prize pool\n     * @param _token Address of the token used to deposit into the prize pool\n     * @param _amount Amount of tokens to deposit into the prize pool\n     * @param _to Address that will receive the tickets\n     * @param _delegateSignature Delegate signature\n     */\n    function _depositToAndDelegate(\n        address _prizePool,\n        ITicket _ticket,\n        address _token,\n        uint256 _amount,\n        address _to,\n        DelegateSignature calldata _delegateSignature\n    ) internal {\n        _depositTo(_token, msg.sender, _amount, _prizePool, _to);\n\n        Signature memory signature = _delegateSignature.signature;\n\n        _ticket.delegateWithSignature(\n            _to,\n            _delegateSignature.delegate,\n            signature.deadline,\n            signature.v,\n            signature.r,\n            signature.s\n        );\n    }\n\n    /**\n     * @notice Deposits user's token into the prize pool.\n     * @param _token Address of the EIP-2612 token to approve and deposit\n     * @param _owner Token owner's address (Authorizer)\n     * @param _amount Amount of tokens to deposit\n     * @param _prizePool Address of the prize pool to deposit into\n     * @param _to Address that will receive the tickets\n     */\n    function _depositTo(\n        address _token,\n        address _owner,\n        uint256 _amount,\n        address _prizePool,\n        address _to\n    ) internal {\n        IERC20(_token).safeTransferFrom(_owner, address(this), _amount);\n        IERC20(_token).safeIncreaseAllowance(_prizePool, _amount);\n        IPrizePool(_prizePool).depositTo(_to, _amount);\n    }\n}\n"
      },
      "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\nimport \"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\";\n\nimport \"../external/compound/ICompLike.sol\";\nimport \"../interfaces/IPrizePool.sol\";\nimport \"../interfaces/ITicket.sol\";\n\n/**\n  * @title  PoolTogether V4 PrizePool\n  * @author PoolTogether Inc Team\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\n            Users deposit and withdraw from this contract to participate in Prize Pool.\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\n*/\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\n    using SafeCast for uint256;\n    using SafeERC20 for IERC20;\n    using ERC165Checker for address;\n\n    /// @notice Semver Version\n    string public constant VERSION = \"4.0.0\";\n\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\n    ITicket internal ticket;\n\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\n    address internal prizeStrategy;\n\n    /// @notice The total amount of tickets a user can hold.\n    uint256 internal balanceCap;\n\n    /// @notice The total amount of funds that the prize pool can hold.\n    uint256 internal liquidityCap;\n\n    /// @notice the The awardable balance\n    uint256 internal _currentAwardBalance;\n\n    /* ============ Modifiers ============ */\n\n    /// @dev Function modifier to ensure caller is the prize-strategy\n    modifier onlyPrizeStrategy() {\n        require(msg.sender == prizeStrategy, \"PrizePool/only-prizeStrategy\");\n        _;\n    }\n\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\n    modifier canAddLiquidity(uint256 _amount) {\n        require(_canAddLiquidity(_amount), \"PrizePool/exceeds-liquidity-cap\");\n        _;\n    }\n\n    /* ============ Constructor ============ */\n\n    /// @notice Deploy the Prize Pool\n    /// @param _owner Address of the Prize Pool owner\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\n        _setLiquidityCap(type(uint256).max);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizePool\n    function balance() external override returns (uint256) {\n        return _balance();\n    }\n\n    /// @inheritdoc IPrizePool\n    function awardBalance() external view override returns (uint256) {\n        return _currentAwardBalance;\n    }\n\n    /// @inheritdoc IPrizePool\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\n        return _canAwardExternal(_externalToken);\n    }\n\n    /// @inheritdoc IPrizePool\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\n        return _isControlled(_controlledToken);\n    }\n\n    /// @inheritdoc IPrizePool\n    function getAccountedBalance() external view override returns (uint256) {\n        return _ticketTotalSupply();\n    }\n\n    /// @inheritdoc IPrizePool\n    function getBalanceCap() external view override returns (uint256) {\n        return balanceCap;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getLiquidityCap() external view override returns (uint256) {\n        return liquidityCap;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getTicket() external view override returns (ITicket) {\n        return ticket;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getPrizeStrategy() external view override returns (address) {\n        return prizeStrategy;\n    }\n\n    /// @inheritdoc IPrizePool\n    function getToken() external view override returns (address) {\n        return address(_token());\n    }\n\n    /// @inheritdoc IPrizePool\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\n        uint256 ticketTotalSupply = _ticketTotalSupply();\n        uint256 currentAwardBalance = _currentAwardBalance;\n\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\n        uint256 currentBalance = _balance();\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\n            ? currentBalance - ticketTotalSupply\n            : 0;\n\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\n            ? totalInterest - currentAwardBalance\n            : 0;\n\n        if (unaccountedPrizeBalance > 0) {\n            currentAwardBalance = totalInterest;\n            _currentAwardBalance = currentAwardBalance;\n\n            emit AwardCaptured(unaccountedPrizeBalance);\n        }\n\n        return currentAwardBalance;\n    }\n\n    /// @inheritdoc IPrizePool\n    function depositTo(address _to, uint256 _amount)\n        external\n        override\n        nonReentrant\n        canAddLiquidity(_amount)\n    {\n        _depositTo(msg.sender, _to, _amount);\n    }\n\n    /// @inheritdoc IPrizePool\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\n        external\n        override\n        nonReentrant\n        canAddLiquidity(_amount)\n    {\n        _depositTo(msg.sender, _to, _amount);\n        ticket.controllerDelegateFor(msg.sender, _delegate);\n    }\n\n    /// @notice Transfers tokens in from one user and mints tickets to another\n    /// @notice _operator The user to transfer tokens from\n    /// @notice _to The user to mint tickets to\n    /// @notice _amount The amount to transfer and mint\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\n    {\n        require(_canDeposit(_to, _amount), \"PrizePool/exceeds-balance-cap\");\n\n        ITicket _ticket = ticket;\n\n        _token().safeTransferFrom(_operator, address(this), _amount);\n\n        _mint(_to, _amount, _ticket);\n        _supply(_amount);\n\n        emit Deposited(_operator, _to, _ticket, _amount);\n    }\n\n    /// @inheritdoc IPrizePool\n    function withdrawFrom(address _from, uint256 _amount)\n        external\n        override\n        nonReentrant\n        returns (uint256)\n    {\n        ITicket _ticket = ticket;\n\n        // burn the tickets\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\n\n        // redeem the tickets\n        uint256 _redeemed = _redeem(_amount);\n\n        _token().safeTransfer(_from, _redeemed);\n\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\n\n        return _redeemed;\n    }\n\n    /// @inheritdoc IPrizePool\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\n        if (_amount == 0) {\n            return;\n        }\n\n        uint256 currentAwardBalance = _currentAwardBalance;\n\n        require(_amount <= currentAwardBalance, \"PrizePool/award-exceeds-avail\");\n\n        unchecked {\n            _currentAwardBalance = currentAwardBalance - _amount;\n        }\n\n        ITicket _ticket = ticket;\n\n        _mint(_to, _amount, _ticket);\n\n        emit Awarded(_to, _ticket, _amount);\n    }\n\n    /// @inheritdoc IPrizePool\n    function transferExternalERC20(\n        address _to,\n        address _externalToken,\n        uint256 _amount\n    ) external override onlyPrizeStrategy {\n        if (_transferOut(_to, _externalToken, _amount)) {\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\n        }\n    }\n\n    /// @inheritdoc IPrizePool\n    function awardExternalERC20(\n        address _to,\n        address _externalToken,\n        uint256 _amount\n    ) external override onlyPrizeStrategy {\n        if (_transferOut(_to, _externalToken, _amount)) {\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\n        }\n    }\n\n    /// @inheritdoc IPrizePool\n    function awardExternalERC721(\n        address _to,\n        address _externalToken,\n        uint256[] calldata _tokenIds\n    ) external override onlyPrizeStrategy {\n        require(_canAwardExternal(_externalToken), \"PrizePool/invalid-external-token\");\n\n        if (_tokenIds.length == 0) {\n            return;\n        }\n\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \n        bool hasAwardedTokenIds;\n\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\n                hasAwardedTokenIds = true;\n                _awardedTokenIds[i] = _tokenIds[i];\n            } catch (\n                bytes memory error\n            ) {\n                emit ErrorAwardingExternalERC721(error);\n            }\n        }\n        if (hasAwardedTokenIds) { \n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\n        }\n    }\n\n    /// @inheritdoc IPrizePool\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\n        _setBalanceCap(_balanceCap);\n        return true;\n    }\n\n    /// @inheritdoc IPrizePool\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\n        _setLiquidityCap(_liquidityCap);\n    }\n\n    /// @inheritdoc IPrizePool\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\n        require(address(_ticket) != address(0), \"PrizePool/ticket-not-zero-address\");\n        require(address(ticket) == address(0), \"PrizePool/ticket-already-set\");\n\n        ticket = _ticket;\n\n        emit TicketSet(_ticket);\n\n        _setBalanceCap(type(uint256).max);\n\n        return true;\n    }\n\n    /// @inheritdoc IPrizePool\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\n        _setPrizeStrategy(_prizeStrategy);\n    }\n\n    /// @inheritdoc IPrizePool\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\n        if (_compLike.balanceOf(address(this)) > 0) {\n            _compLike.delegate(_to);\n        }\n    }\n\n    /// @inheritdoc IERC721Receiver\n    function onERC721Received(\n        address,\n        address,\n        uint256,\n        bytes calldata\n    ) external pure override returns (bytes4) {\n        return IERC721Receiver.onERC721Received.selector;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\n    /// @dev Only awardable `externalToken` can be transferred out\n    /// @param _to Recipient address\n    /// @param _externalToken Address of the external asset token being transferred\n    /// @param _amount Amount of external assets to be transferred\n    /// @return True if transfer is successful\n    function _transferOut(\n        address _to,\n        address _externalToken,\n        uint256 _amount\n    ) internal returns (bool) {\n        require(_canAwardExternal(_externalToken), \"PrizePool/invalid-external-token\");\n\n        if (_amount == 0) {\n            return false;\n        }\n\n        IERC20(_externalToken).safeTransfer(_to, _amount);\n\n        return true;\n    }\n\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\n    /// @param _to The user who is receiving the tokens\n    /// @param _amount The amount of tokens they are receiving\n    /// @param _controlledToken The token that is going to be minted\n    function _mint(\n        address _to,\n        uint256 _amount,\n        ITicket _controlledToken\n    ) internal {\n        _controlledToken.controllerMint(_to, _amount);\n    }\n\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\n    /// @param _user Address of the user depositing.\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\n        uint256 _balanceCap = balanceCap;\n\n        if (_balanceCap == type(uint256).max) return true;\n\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\n    }\n\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\n        uint256 _liquidityCap = liquidityCap;\n        if (_liquidityCap == type(uint256).max) return true;\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\n    }\n\n    /// @dev Checks if a specific token is controlled by the Prize Pool\n    /// @param _controlledToken The address of the token to check\n    /// @return True if the token is a controlled token, false otherwise\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\n        return (ticket == _controlledToken);\n    }\n\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\n    /// @param _balanceCap New balance cap.\n    function _setBalanceCap(uint256 _balanceCap) internal {\n        balanceCap = _balanceCap;\n        emit BalanceCapSet(_balanceCap);\n    }\n\n    /// @notice Allows the owner to set a liquidity cap for the pool\n    /// @param _liquidityCap New liquidity cap\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\n        liquidityCap = _liquidityCap;\n        emit LiquidityCapSet(_liquidityCap);\n    }\n\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n    /// @param _prizeStrategy The new prize strategy\n    function _setPrizeStrategy(address _prizeStrategy) internal {\n        require(_prizeStrategy != address(0), \"PrizePool/prizeStrategy-not-zero\");\n\n        prizeStrategy = _prizeStrategy;\n\n        emit PrizeStrategySet(_prizeStrategy);\n    }\n\n    /// @notice The current total of tickets.\n    /// @return Ticket total supply.\n    function _ticketTotalSupply() internal view returns (uint256) {\n        return ticket.totalSupply();\n    }\n\n    /// @dev Gets the current time as represented by the current block\n    /// @return The timestamp of the current block\n    function _currentTime() internal view virtual returns (uint256) {\n        return block.timestamp;\n    }\n\n    /* ============ Abstract Contract Implementatiton ============ */\n\n    /// @notice Determines whether the passed token can be transferred out as an external award.\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n    /// prize strategy should not be allowed to move those tokens.\n    /// @param _externalToken The address of the token to check\n    /// @return True if the token may be awarded, false otherwise\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\n\n    /// @notice Returns the ERC20 asset token used for deposits.\n    /// @return The ERC20 asset token\n    function _token() internal view virtual returns (IERC20);\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens\n    function _balance() internal virtual returns (uint256);\n\n    /// @notice Supplies asset tokens to the yield source.\n    /// @param _mintAmount The amount of asset tokens to be supplied\n    function _supply(uint256 _mintAmount) internal virtual;\n\n    /// @notice Redeems asset tokens from the yield source.\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n    /// @return The actual amount of tokens that were redeemed.\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\n}\n"
      },
      "@openzeppelin/contracts/security/ReentrancyGuard.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\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    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        // On the first call to nonReentrant, _notEntered will be true\n        require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n        // Any calls to nonReentrant after this point will fail\n        _status = _ENTERED;\n\n        _;\n\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"
      },
      "@openzeppelin/contracts/token/ERC721/IERC721.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n    /**\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n     */\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n     */\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n    /**\n     * @dev Returns the number of tokens in ``owner``'s account.\n     */\n    function balanceOf(address owner) external view returns (uint256 balance);\n\n    /**\n     * @dev Returns the owner of the `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function ownerOf(uint256 tokenId) external view returns (address owner);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) external;\n\n    /**\n     * @dev Transfers `tokenId` token from `from` to `to`.\n     *\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 tokenId\n    ) external;\n\n    /**\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n     * The approval is cleared when the token is transferred.\n     *\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n     *\n     * Requirements:\n     *\n     * - The caller must own the token or be an approved operator.\n     * - `tokenId` must exist.\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address to, uint256 tokenId) external;\n\n    /**\n     * @dev Returns the account approved for `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function getApproved(uint256 tokenId) external view returns (address operator);\n\n    /**\n     * @dev Approve or remove `operator` as an operator for the caller.\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n     *\n     * Requirements:\n     *\n     * - The `operator` cannot be the caller.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function setApprovalForAll(address operator, bool _approved) external;\n\n    /**\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n     *\n     * See {setApprovalForAll}\n     */\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes calldata data\n    ) external;\n}\n"
      },
      "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n    /**\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n     * by `operator` from `from`, this function is called.\n     *\n     * It must return its Solidity selector to confirm the token transfer.\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n     *\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\n     */\n    function onERC721Received(\n        address operator,\n        address from,\n        uint256 tokenId,\n        bytes calldata data\n    ) external returns (bytes4);\n}\n"
      },
      "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Checker.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Library used to query support of an interface declared via {IERC165}.\n *\n * Note that these functions return the actual result of the query: they do not\n * `revert` if an interface is not supported. It is up to the caller to decide\n * what to do in these cases.\n */\nlibrary ERC165Checker {\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\n\n    /**\n     * @dev Returns true if `account` supports the {IERC165} interface,\n     */\n    function supportsERC165(address account) internal view returns (bool) {\n        // Any contract that implements ERC165 must explicitly indicate support of\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\n        return\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\n    }\n\n    /**\n     * @dev Returns true if `account` supports the interface defined by\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\n        // query support of both ERC165 as per the spec and support of _interfaceId\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\n    }\n\n    /**\n     * @dev Returns a boolean array where each value corresponds to the\n     * interfaces passed in and whether they're supported or not. This allows\n     * you to batch check interfaces for a contract where your expectation\n     * is that some interfaces may not be supported.\n     *\n     * See {IERC165-supportsInterface}.\n     *\n     * _Available since v3.4._\n     */\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\n        internal\n        view\n        returns (bool[] memory)\n    {\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\n\n        // query support of ERC165 itself\n        if (supportsERC165(account)) {\n            // query support of each interface in interfaceIds\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\n            }\n        }\n\n        return interfaceIdsSupported;\n    }\n\n    /**\n     * @dev Returns true if `account` supports all the interfaces defined in\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\n     *\n     * Batch-querying can lead to gas savings by skipping repeated checks for\n     * {IERC165} support.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\n        // query support of ERC165 itself\n        if (!supportsERC165(account)) {\n            return false;\n        }\n\n        // query support of each interface in _interfaceIds\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\n                return false;\n            }\n        }\n\n        // all interfaces supported\n        return true;\n    }\n\n    /**\n     * @notice Query if a contract implements an interface, does not check ERC165 support\n     * @param account The address of the contract to query for support of an interface\n     * @param interfaceId The interface identifier, as specified in ERC-165\n     * @return true if the contract at account indicates support of the interface with\n     * identifier interfaceId, false otherwise\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\n     * the behavior of this method is undefined. This precondition can be checked\n     * with {supportsERC165}.\n     * Interface identification is specified in ERC-165.\n     */\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\n        if (result.length < 32) return false;\n        return success && abi.decode(result, (bool));\n    }\n}\n"
      },
      "@openzeppelin/contracts/utils/introspection/IERC165.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n    /**\n     * @dev Returns true if this contract implements the interface defined by\n     * `interfaceId`. See the corresponding\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n     * to learn more about how these ids are created.\n     *\n     * This function call must use less than 30 000 gas.\n     */\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
      },
      "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts/utils/Address.sol\";\nimport \"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\";\n\nimport \"./PrizePool.sol\";\n\n/**\n * @title  PoolTogether V4 YieldSourcePrizePool\n * @author PoolTogether Inc Team\n * @notice The Yield Source Prize Pool uses a yield source contract to generate prizes.\n *         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)\n */\ncontract YieldSourcePrizePool is PrizePool {\n    using SafeERC20 for IERC20;\n    using Address for address;\n\n    /// @notice Address of the yield source.\n    IYieldSource public immutable yieldSource;\n\n    /// @dev Emitted when yield source prize pool is deployed.\n    /// @param yieldSource Address of the yield source.\n    event Deployed(address indexed yieldSource);\n\n    /// @notice Emitted when stray deposit token balance in this contract is swept\n    /// @param amount The amount that was swept\n    event Swept(uint256 amount);\n\n    /// @notice Deploy the Prize Pool and Yield Service with the required contract connections\n    /// @param _owner Address of the Yield Source Prize Pool owner\n    /// @param _yieldSource Address of the yield source\n    constructor(address _owner, IYieldSource _yieldSource) PrizePool(_owner) {\n        require(\n            address(_yieldSource) != address(0),\n            \"YieldSourcePrizePool/yield-source-not-zero-address\"\n        );\n\n        yieldSource = _yieldSource;\n\n        // A hack to determine whether it's an actual yield source\n        (bool succeeded, bytes memory data) = address(_yieldSource).staticcall(\n            abi.encodePacked(_yieldSource.depositToken.selector)\n        );\n        address resultingAddress;\n        if (data.length > 0) {\n            resultingAddress = abi.decode(data, (address));\n        }\n        require(succeeded && resultingAddress != address(0), \"YieldSourcePrizePool/invalid-yield-source\");\n\n        emit Deployed(address(_yieldSource));\n    }\n\n    /// @notice Sweeps any stray balance of deposit tokens into the yield source.\n    /// @dev This becomes prize money\n    function sweep() external nonReentrant onlyOwner {\n        uint256 balance = _token().balanceOf(address(this));\n        _supply(balance);\n\n        emit Swept(balance);\n    }\n\n    /// @notice Determines whether the passed token can be transferred out as an external award.\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n    /// prize strategy should not be allowed to move those tokens.\n    /// @param _externalToken The address of the token to check\n    /// @return True if the token may be awarded, false otherwise\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\n        IYieldSource _yieldSource = yieldSource;\n        return (\n            _externalToken != address(_yieldSource) &&\n            _externalToken != _yieldSource.depositToken()\n        );\n    }\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens\n    function _balance() internal override returns (uint256) {\n        return yieldSource.balanceOfToken(address(this));\n    }\n\n    /// @notice Returns the address of the ERC20 asset token used for deposits.\n    /// @return Address of the ERC20 asset token.\n    function _token() internal view override returns (IERC20) {\n        return IERC20(yieldSource.depositToken());\n    }\n\n    /// @notice Supplies asset tokens to the yield source.\n    /// @param _mintAmount The amount of asset tokens to be supplied\n    function _supply(uint256 _mintAmount) internal override {\n        _token().safeIncreaseAllowance(address(yieldSource), _mintAmount);\n        yieldSource.supplyTokenTo(_mintAmount, address(this));\n    }\n\n    /// @notice Redeems asset tokens from the yield source.\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n    /// @return The actual amount of tokens that were redeemed.\n    function _redeem(uint256 _redeemAmount) internal override returns (uint256) {\n        return yieldSource.redeemToken(_redeemAmount);\n    }\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/IYieldSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.6.0;\n\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\ninterface IYieldSource {\n    /// @notice Returns the ERC20 asset token used for deposits.\n    /// @return The ERC20 asset token address.\n    function depositToken() external view returns (address);\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens.\n    function balanceOfToken(address addr) external returns (uint256);\n\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n    /// @param to The user whose balance will receive the tokens\n    function supplyTokenTo(uint256 amount, address to) external;\n\n    /// @notice Redeems tokens from the yield source.\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n    /// @return The actual amount of interst bearing tokens that were redeemed.\n    function redeemToken(uint256 amount) external returns (uint256);\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.6.0;\n\nimport \"../IYieldSource.sol\";\nimport \"./ERC20Mintable.sol\";\n\n/**\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n * which have permission to mint (create) new tokens as they see fit.\n *\n * At construction, the deployer of the contract is the only minter.\n */\ncontract MockYieldSource is ERC20, IYieldSource {\n    ERC20Mintable public token;\n\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 _decimals\n    ) ERC20(\"YIELD\", \"YLD\", 18) {\n        token = new ERC20Mintable(_name, _symbol, _decimals);\n    }\n\n    function yield(uint256 amount) external {\n        token.mint(address(this), amount);\n    }\n\n    /// @notice Returns the ERC20 asset token used for deposits.\n    /// @return The ERC20 asset token address.\n    function depositToken() external view override returns (address) {\n        return address(token);\n    }\n\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n    /// @return The underlying balance of asset tokens.\n    function balanceOfToken(address addr) external view override returns (uint256) {\n        return sharesToTokens(balanceOf(addr));\n    }\n\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n    /// @param to The user whose balance will receive the tokens\n    function supplyTokenTo(uint256 amount, address to) external override {\n        uint256 shares = tokensToShares(amount);\n        token.transferFrom(msg.sender, address(this), amount);\n        _mint(to, shares);\n    }\n\n    /// @notice Redeems tokens from the yield source.\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n    /// @return The actual amount of interst bearing tokens that were redeemed.\n    function redeemToken(uint256 amount) external override returns (uint256) {\n        uint256 shares = tokensToShares(amount);\n        _burn(msg.sender, shares);\n        token.transfer(msg.sender, amount);\n\n        return amount;\n    }\n\n    function tokensToShares(uint256 tokens) public view returns (uint256) {\n        uint256 tokenBalance = token.balanceOf(address(this));\n\n        if (tokenBalance == 0) {\n            return tokens;\n        } else {\n            return (tokens * totalSupply()) / tokenBalance;\n        }\n    }\n\n    function sharesToTokens(uint256 shares) public view returns (uint256) {\n        uint256 supply = totalSupply();\n\n        if (supply == 0) {\n            return shares;\n        } else {\n            return (shares * token.balanceOf(address(this))) / supply;\n        }\n    }\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.6.0;\n\nimport \"./ERC20.sol\";\n\n/**\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n * which have permission to mint (create) new tokens as they see fit.\n *\n * At construction, the deployer of the contract is the only minter.\n */\ncontract ERC20Mintable is ERC20 {\n    constructor(\n        string memory _name,\n        string memory _symbol,\n        uint8 _decimals\n    ) ERC20(_name, _symbol, _decimals) {}\n\n    /**\n     * @dev See {ERC20-_mint}.\n     *\n     * Requirements:\n     *\n     * - the caller must have the {MinterRole}.\n     */\n    function mint(address account, uint256 amount) public returns (bool) {\n        _mint(account, amount);\n        return true;\n    }\n\n    function burn(address account, uint256 amount) public returns (bool) {\n        _burn(account, amount);\n        return true;\n    }\n\n    function masterTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) public {\n        _transfer(from, to, amount);\n    }\n}\n"
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\npragma solidity >=0.6.0;\n\n/**\n * NOTE: Copied from OpenZeppelin\n *\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin guidelines: functions revert instead\n * of returning `false` on failure. This behavior is nonetheless conventional\n * and does not conflict with the expectations of ERC20 applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 {\n    mapping(address => uint256) private _balances;\n\n    mapping(address => mapping(address => uint256)) private _allowances;\n\n    uint256 private _totalSupply;\n\n    string private _name;\n    string private _symbol;\n    uint8 private _decimals;\n\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 Sets the values for {name} and {symbol}.\n     *\n     * The default value of {decimals} is 18. To select a different value for\n     * {decimals} you should overload it.\n     *\n     * All two of these values are immutable: they can only be set once during\n     * construction.\n     */\n    constructor(\n        string memory name_,\n        string memory symbol_,\n        uint8 decimals_\n    ) {\n        _name = name_;\n        _symbol = symbol_;\n        _decimals = decimals_;\n    }\n\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() public view virtual returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\n     * overridden;\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual returns (uint8) {\n        return _decimals;\n    }\n\n    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `recipient` cannot be the zero address.\n     * - the caller must have a balance of at least `amount`.\n     */\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\n        _transfer(msg.sender, recipient, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\n        _approve(msg.sender, spender, amount);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Emits an {Approval} event indicating the updated allowance. This is not\n     * required by the EIP. See the note at the beginning of {ERC20}.\n     *\n     * Requirements:\n     *\n     * - `sender` and `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     * - the caller must have allowance for ``sender``'s tokens of at least\n     * `amount`.\n     */\n    function transferFrom(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) public virtual returns (bool) {\n        _transfer(sender, recipient, amount);\n\n        uint256 currentAllowance = _allowances[sender][msg.sender];\n        require(currentAllowance >= amount, \"ERC20: transfer amount exceeds allowance\");\n        unchecked {\n            _approve(sender, msg.sender, currentAllowance - amount);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\n        return true;\n    }\n\n    /**\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\n     *\n     * This is an alternative to {approve} that can be used as a mitigation for\n     * problems described in {IERC20-approve}.\n     *\n     * Emits an {Approval} event indicating the updated allowance.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `spender` must have allowance for the caller of at least\n     * `subtractedValue`.\n     */\n    function decreaseAllowance(address spender, uint256 subtractedValue)\n        public\n        virtual\n        returns (bool)\n    {\n        uint256 currentAllowance = _allowances[msg.sender][spender];\n        require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n        unchecked {\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\n     *\n     * This internal function is equivalent to {transfer}, and can be used to\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\n     *\n     * Emits a {Transfer} event.\n     *\n     * Requirements:\n     *\n     * - `sender` cannot be the zero address.\n     * - `recipient` cannot be the zero address.\n     * - `sender` must have a balance of at least `amount`.\n     */\n    function _transfer(\n        address sender,\n        address recipient,\n        uint256 amount\n    ) internal virtual {\n        require(sender != address(0), \"ERC20: transfer from the zero address\");\n        require(recipient != address(0), \"ERC20: transfer to the zero address\");\n\n        _beforeTokenTransfer(sender, recipient, amount);\n\n        uint256 senderBalance = _balances[sender];\n        require(senderBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n        unchecked {\n            _balances[sender] = senderBalance - amount;\n        }\n        _balances[recipient] += amount;\n\n        emit Transfer(sender, recipient, amount);\n\n        _afterTokenTransfer(sender, recipient, amount);\n    }\n\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n     * the total supply.\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     */\n    function _mint(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: mint to the zero address\");\n\n        _beforeTokenTransfer(address(0), account, amount);\n\n        _totalSupply += amount;\n        _balances[account] += amount;\n        emit Transfer(address(0), account, amount);\n\n        _afterTokenTransfer(address(0), account, amount);\n    }\n\n    /**\n     * @dev Destroys `amount` tokens from `account`, reducing the\n     * total supply.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * Requirements:\n     *\n     * - `account` cannot be the zero address.\n     * - `account` must have at least `amount` tokens.\n     */\n    function _burn(address account, uint256 amount) internal virtual {\n        require(account != address(0), \"ERC20: burn from the zero address\");\n\n        _beforeTokenTransfer(account, address(0), amount);\n\n        uint256 accountBalance = _balances[account];\n        require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n        unchecked {\n            _balances[account] = accountBalance - amount;\n        }\n        _totalSupply -= amount;\n\n        emit Transfer(account, address(0), amount);\n\n        _afterTokenTransfer(account, address(0), amount);\n    }\n\n    /**\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n     *\n     * This internal function is equivalent to `approve`, and can be used to\n     * e.g. set automatic allowances for certain subsystems, etc.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `owner` cannot be the zero address.\n     * - `spender` cannot be the zero address.\n     */\n    function _approve(\n        address owner,\n        address spender,\n        uint256 amount\n    ) internal virtual {\n        require(owner != address(0), \"ERC20: approve from the zero address\");\n        require(spender != address(0), \"ERC20: approve to the zero address\");\n\n        _allowances[owner][spender] = amount;\n        emit Approval(owner, spender, amount);\n    }\n\n    /**\n     * @dev Hook that is called before any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * will be transferred to `to`.\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _beforeTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n\n    /**\n     * @dev Hook that is called after any transfer of tokens. This includes\n     * minting and burning.\n     *\n     * Calling conditions:\n     *\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n     * has been transferred to `to`.\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n     * - `from` and `to` are never both zero.\n     *\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n     */\n    function _afterTokenTransfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {}\n\n    uint256[45] private __gap;\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Ticket.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/Ticket.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Reserve.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/Reserve.sol';\n"
      },
      "@pooltogether/v4-core/contracts/DrawBuffer.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./interfaces/IDrawBuffer.sol\";\nimport \"./interfaces/IDrawBeacon.sol\";\nimport \"./libraries/DrawRingBufferLib.sol\";\n\n/**\n  * @title  PoolTogether V4 DrawBuffer\n  * @author PoolTogether Inc Team\n  * @notice The DrawBuffer provides historical lookups of Draws via a circular ring buffer.\n            Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot.\n            The Draw settings can be created by manager/owner and existing Draws can only be updated the owner.\n            Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\n    @dev    A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.\n    @dev    All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...)\n            will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.\n*/\ncontract DrawBuffer is IDrawBuffer, Manageable {\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\n\n    /// @notice Draws ring buffer max length.\n    uint16 public constant MAX_CARDINALITY = 256;\n\n    /// @notice Draws ring buffer array.\n    IDrawBeacon.Draw[MAX_CARDINALITY] private drawRingBuffer;\n\n    /// @notice Holds ring buffer information\n    DrawRingBufferLib.Buffer internal bufferMetadata;\n\n    /* ============ Deploy ============ */\n\n    /**\n     * @notice Deploy DrawBuffer smart contract.\n     * @param _owner Address of the owner of the DrawBuffer.\n     * @param _cardinality Draw ring buffer cardinality.\n     */\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\n        bufferMetadata.cardinality = _cardinality;\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IDrawBuffer\n    function getBufferCardinality() external view override returns (uint32) {\n        return bufferMetadata.cardinality;\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getDraw(uint32 drawId) external view override returns (IDrawBeacon.Draw memory) {\n        return drawRingBuffer[_drawIdToDrawIndex(bufferMetadata, drawId)];\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getDraws(uint32[] calldata _drawIds)\n        external\n        view\n        override\n        returns (IDrawBeacon.Draw[] memory)\n    {\n        IDrawBeacon.Draw[] memory draws = new IDrawBeacon.Draw[](_drawIds.length);\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        for (uint256 index = 0; index < _drawIds.length; index++) {\n            draws[index] = drawRingBuffer[_drawIdToDrawIndex(buffer, _drawIds[index])];\n        }\n\n        return draws;\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getDrawCount() external view override returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n\n        if (buffer.lastDrawId == 0) {\n            return 0;\n        }\n\n        uint32 bufferNextIndex = buffer.nextIndex;\n\n        if (drawRingBuffer[bufferNextIndex].timestamp != 0) {\n            return buffer.cardinality;\n        } else {\n            return bufferNextIndex;\n        }\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getNewestDraw() external view override returns (IDrawBeacon.Draw memory) {\n        return _getNewestDraw(bufferMetadata);\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function getOldestDraw() external view override returns (IDrawBeacon.Draw memory) {\n        // oldest draw should be next available index, otherwise it's at 0\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        IDrawBeacon.Draw memory draw = drawRingBuffer[buffer.nextIndex];\n\n        if (draw.timestamp == 0) {\n            // if draw is not init, then use draw at 0\n            draw = drawRingBuffer[0];\n        }\n\n        return draw;\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function pushDraw(IDrawBeacon.Draw memory _draw)\n        external\n        override\n        onlyManagerOrOwner\n        returns (uint32)\n    {\n        return _pushDraw(_draw);\n    }\n\n    /// @inheritdoc IDrawBuffer\n    function setDraw(IDrawBeacon.Draw memory _newDraw) external override onlyOwner returns (uint32) {\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\n        uint32 index = buffer.getIndex(_newDraw.drawId);\n        drawRingBuffer[index] = _newDraw;\n        emit DrawSet(_newDraw.drawId, _newDraw);\n        return _newDraw.drawId;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Convert a Draw.drawId to a Draws ring buffer index pointer.\n     * @dev    The getNewestDraw.drawId() is used to calculate a Draws ID delta position.\n     * @param _drawId Draw.drawId\n     * @return Draws ring buffer index pointer\n     */\n    function _drawIdToDrawIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\n        internal\n        pure\n        returns (uint32)\n    {\n        return _buffer.getIndex(_drawId);\n    }\n\n    /**\n     * @notice Read newest Draw from the draws ring buffer.\n     * @dev    Uses the lastDrawId to calculate the most recently added Draw.\n     * @param _buffer Draw ring buffer\n     * @return IDrawBeacon.Draw\n     */\n    function _getNewestDraw(DrawRingBufferLib.Buffer memory _buffer)\n        internal\n        view\n        returns (IDrawBeacon.Draw memory)\n    {\n        return drawRingBuffer[_buffer.getIndex(_buffer.lastDrawId)];\n    }\n\n    /**\n     * @notice Push Draw onto draws ring buffer history.\n     * @dev    Push new draw onto draws list via authorized manager or owner.\n     * @param _newDraw IDrawBeacon.Draw\n     * @return Draw.drawId\n     */\n    function _pushDraw(IDrawBeacon.Draw memory _newDraw) internal returns (uint32) {\n        DrawRingBufferLib.Buffer memory _buffer = bufferMetadata;\n        drawRingBuffer[_buffer.nextIndex] = _newDraw;\n        bufferMetadata = _buffer.push(_newDraw.drawId);\n\n        emit DrawSet(_newDraw.drawId, _newDraw);\n\n        return _newDraw.drawId;\n    }\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBuffer.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/DrawBuffer.sol';\n"
      },
      "@pooltogether/v4-core/contracts/DrawCalculator.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"./interfaces/IDrawCalculator.sol\";\nimport \"./interfaces/ITicket.sol\";\nimport \"./interfaces/IDrawBuffer.sol\";\nimport \"./interfaces/IPrizeDistributionBuffer.sol\";\nimport \"./interfaces/IDrawBeacon.sol\";\n\n/**\n  * @title  PoolTogether V4 DrawCalculator\n  * @author PoolTogether Inc Team\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\n            their picks. A users picks are generated deterministically based on their address and balance\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\n            picks to choose from, and thus a higher chance to match the winning numbers.\n*/\ncontract DrawCalculator is IDrawCalculator {\n\n    /// @notice DrawBuffer address\n    IDrawBuffer public immutable drawBuffer;\n\n    /// @notice Ticket associated with DrawCalculator\n    ITicket public immutable ticket;\n\n    /// @notice The stored history of draw settings.  Stored as ring buffer.\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\n\n    /// @notice The tiers array length\n    uint8 public constant TIERS_LENGTH = 16;\n\n    /* ============ Constructor ============ */\n\n    /// @notice Constructor for DrawCalculator\n    /// @param _ticket Ticket associated with this DrawCalculator\n    /// @param _drawBuffer The address of the draw buffer to push draws to\n    /// @param _prizeDistributionBuffer PrizeDistributionBuffer address\n    constructor(\n        ITicket _ticket,\n        IDrawBuffer _drawBuffer,\n        IPrizeDistributionBuffer _prizeDistributionBuffer\n    ) {\n        require(address(_ticket) != address(0), \"DrawCalc/ticket-not-zero\");\n        require(address(_prizeDistributionBuffer) != address(0), \"DrawCalc/pdb-not-zero\");\n        require(address(_drawBuffer) != address(0), \"DrawCalc/dh-not-zero\");\n\n        ticket = _ticket;\n        drawBuffer = _drawBuffer;\n        prizeDistributionBuffer = _prizeDistributionBuffer;\n\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionBuffer);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IDrawCalculator\n    function calculate(\n        address _user,\n        uint32[] calldata _drawIds,\n        bytes calldata _pickIndicesForDraws\n    ) external view override returns (uint256[] memory, bytes memory) {\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\n        require(pickIndices.length == _drawIds.length, \"DrawCalc/invalid-pick-indices-length\");\n\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\n\n        // READ list of IPrizeDistributionBuffer.PrizeDistribution using the drawIds\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\n            .getPrizeDistributions(_drawIds);\n\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\n\n        // The users address is hashed once.\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\n\n        return _calculatePrizesAwardable(\n                userBalances,\n                _userRandomNumber,\n                draws,\n                pickIndices,\n                _prizeDistributions\n            );\n    }\n\n    /// @inheritdoc IDrawCalculator\n    function getDrawBuffer() external view override returns (IDrawBuffer) {\n        return drawBuffer;\n    }\n\n    /// @inheritdoc IDrawCalculator\n    function getPrizeDistributionBuffer()\n        external\n        view\n        override\n        returns (IPrizeDistributionBuffer)\n    {\n        return prizeDistributionBuffer;\n    }\n\n    /// @inheritdoc IDrawCalculator\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\n        external\n        view\n        override\n        returns (uint256[] memory)\n    {\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\n            .getPrizeDistributions(_drawIds);\n\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Calculates the prizes awardable for each Draw passed.\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\n     * @param _userRandomNumber       Random number of the user to consider over draws\n     * @param _draws                  List of Draws\n     * @param _pickIndicesForDraws    Pick indices for each Draw\n     * @param _prizeDistributions     PrizeDistribution for each Draw\n\n     */\n    function _calculatePrizesAwardable(\n        uint256[] memory _normalizedUserBalances,\n        bytes32 _userRandomNumber,\n        IDrawBeacon.Draw[] memory _draws,\n        uint64[][] memory _pickIndicesForDraws,\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\n        \n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\n\n        uint64 timeNow = uint64(block.timestamp);\n\n\n\n        // calculate prizes awardable for each Draw passed\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\n\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \"DrawCalc/draw-expired\");\n\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\n                _prizeDistributions[drawIndex],\n                _normalizedUserBalances[drawIndex]\n            );\n\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\n                _draws[drawIndex].winningRandomNumber,\n                totalUserPicks,\n                _userRandomNumber,\n                _pickIndicesForDraws[drawIndex],\n                _prizeDistributions[drawIndex]\n            );\n        }\n        prizeCounts = abi.encode(_prizeCounts);\n        prizesAwardable = _prizesAwardable;\n    }\n\n    /**\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\n     * @param _prizeDistribution The PrizeDistribution to consider\n     * @param _normalizedUserBalance The normalized user balances to consider\n     * @return The number of picks a user gets for a Draw\n     */\n    function _calculateNumberOfUserPicks(\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\n        uint256 _normalizedUserBalance\n    ) internal pure returns (uint64) {\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\n    }\n\n    /**\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\n     * @param _user The user to consider\n     * @param _draws The draws we are looking at\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\n     * @return An array of normalized balances\n     */\n    function _getNormalizedBalancesAt(\n        address _user,\n        IDrawBeacon.Draw[] memory _draws,\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\n    ) internal view returns (uint256[] memory) {\n        uint256 drawsLength = _draws.length;\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\n\n        // generate timestamps with draw cutoff offsets included\n        for (uint32 i = 0; i < drawsLength; i++) {\n            unchecked {\n                _timestampsWithStartCutoffTimes[i] =\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\n                _timestampsWithEndCutoffTimes[i] =\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\n            }\n        }\n\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\n            _user,\n            _timestampsWithStartCutoffTimes,\n            _timestampsWithEndCutoffTimes\n        );\n\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\n            _timestampsWithStartCutoffTimes,\n            _timestampsWithEndCutoffTimes\n        );\n\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\n\n        // divide balances by total supplies (normalize)\n        for (uint256 i = 0; i < drawsLength; i++) {\n            if(totalSupplies[i] == 0){\n                normalizedBalances[i] = 0;\n            }\n            else {\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\n            }\n        }\n\n        return normalizedBalances;\n    }\n\n    /**\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\n     * @param _winningRandomNumber Draw's winningRandomNumber\n     * @param _totalUserPicks      number of picks the user gets for the Draw\n     * @param _userRandomNumber    users randomNumber for that draw\n     * @param _picks               users picks for that draw\n     * @param _prizeDistribution   PrizeDistribution for that draw\n     * @return prize (if any), prizeCounts (if any)\n     */\n    function _calculate(\n        uint256 _winningRandomNumber,\n        uint256 _totalUserPicks,\n        bytes32 _userRandomNumber,\n        uint64[] memory _picks,\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\n        \n        // create bitmasks for the PrizeDistribution\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\n        uint32 picksLength = uint32(_picks.length);\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\n\n        uint8 maxWinningTierIndex = 0;\n\n        require(\n            picksLength <= _prizeDistribution.maxPicksPerUser,\n            \"DrawCalc/exceeds-max-user-picks\"\n        );\n\n        // for each pick, find number of matching numbers and calculate prize distributions index\n        for (uint32 index = 0; index < picksLength; index++) {\n            require(_picks[index] < _totalUserPicks, \"DrawCalc/insufficient-user-picks\");\n\n            if (index > 0) {\n                require(_picks[index] > _picks[index - 1], \"DrawCalc/picks-ascending\");\n            }\n\n            // hash the user random number with the pick value\n            uint256 randomNumberThisPick = uint256(\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\n            );\n\n            uint8 tiersIndex = _calculateTierIndex(\n                randomNumberThisPick,\n                _winningRandomNumber,\n                masks\n            );\n\n            // there is prize for this tier index\n            if (tiersIndex < TIERS_LENGTH) {\n                if (tiersIndex > maxWinningTierIndex) {\n                    maxWinningTierIndex = tiersIndex;\n                }\n                _prizeCounts[tiersIndex]++;\n            }\n        }\n\n        // now calculate prizeFraction given prizeCounts\n        uint256 prizeFraction = 0;\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\n            _prizeDistribution,\n            maxWinningTierIndex\n        );\n\n        // multiple the fractions by the prizeCounts and add them up\n        for (\n            uint256 prizeCountIndex = 0;\n            prizeCountIndex <= maxWinningTierIndex;\n            prizeCountIndex++\n        ) {\n            if (_prizeCounts[prizeCountIndex] > 0) {\n                prizeFraction +=\n                    prizeTiersFractions[prizeCountIndex] *\n                    _prizeCounts[prizeCountIndex];\n            }\n        }\n\n        // return the absolute amount of prize awardable\n        // div by 1e9 as prize tiers are base 1e9\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9; \n        prizeCounts = _prizeCounts;\n    }\n\n    ///@notice Calculates the tier index given the random numbers and masks\n    ///@param _randomNumberThisPick users random number for this Pick\n    ///@param _winningRandomNumber The winning number for this draw\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\n    function _calculateTierIndex(\n        uint256 _randomNumberThisPick,\n        uint256 _winningRandomNumber,\n        uint256[] memory _masks\n    ) internal pure returns (uint8) {\n        uint8 numberOfMatches = 0;\n        uint8 masksLength = uint8(_masks.length);\n\n        // main number matching loop\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\n            uint256 mask = _masks[matchIndex];\n\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\n                // there are no more sequential matches since this comparison is not a match\n                if (masksLength == numberOfMatches) {\n                    return 0;\n                } else {\n                    return masksLength - numberOfMatches;\n                }\n            }\n\n            // else there was a match\n            numberOfMatches++;\n        }\n\n        return masksLength - numberOfMatches;\n    }\n\n    /**\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\n     * @return An array of bitmasks\n     */\n    function _createBitMasks(IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution)\n        internal\n        pure\n        returns (uint256[] memory)\n    {\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\n\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\n            // shift mask bits to correct position and insert in result mask array\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\n        }\n\n        return masks;\n    }\n\n    /**\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\n     * @param _prizeDistribution prizeDistribution struct for Draw\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\n     * @return returns the fraction of the total prize (fixed point 9 number)\n     */\n    function _calculatePrizeTierFraction(\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\n        uint256 _prizeTierIndex\n    ) internal pure returns (uint256) {\n         // get the prize fraction at that index\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\n\n        // calculate number of prizes for that index\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\n            _prizeDistribution.bitRangeSize,\n            _prizeTierIndex\n        );\n\n        return prizeFraction / numberOfPrizesForIndex;\n    }\n\n    /**\n     * @notice Generates an array of prize tiers fractions\n     * @param _prizeDistribution prizeDistribution struct for Draw\n     * @param maxWinningTierIndex Max length of the prize tiers array\n     * @return returns an array of prize tiers fractions\n     */\n    function _calculatePrizeTierFractions(\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\n        uint8 maxWinningTierIndex\n    ) internal pure returns (uint256[] memory) {\n        uint256[] memory prizeDistributionFractions = new uint256[](\n            maxWinningTierIndex + 1\n        );\n\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\n                _prizeDistribution,\n                i\n            );\n        }\n\n        return prizeDistributionFractions;\n    }\n\n    /**\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\n     * @param _bitRangeSize Bit range size for Draw\n     * @param _prizeTierIndex Index of the prize tier array to calculate\n     * @return returns the fraction of the total prize (base 1e18)\n     */\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\n        internal\n        pure\n        returns (uint256)\n    {\n        if (_prizeTierIndex > 0) {\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\n        } else {\n            return 1;\n        }\n    }\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawCalculator.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/DrawCalculator.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/TwabRewards.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-periphery/contracts/TwabRewards.sol';\n"
      },
      "@pooltogether/v4-periphery/contracts/PrizeFlush.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./interfaces/IPrizeFlush.sol\";\n\n/**\n * @title  PoolTogether V4 PrizeFlush\n * @author PoolTogether Inc Team\n * @notice The PrizeFlush contract helps capture interest from the PrizePool and move collected funds\n           to a designated PrizeDistributor contract. When deployed, the destination, reserve and strategy\n           addresses are set and used as static parameters during every \"flush\" execution. The parameters can be\n           reset by the Owner if necessary.\n */\ncontract PrizeFlush is IPrizeFlush, Manageable {\n    /**\n     * @notice Destination address for captured interest.\n     * @dev Should be set to the PrizeDistributor address.\n     */\n    address internal destination;\n\n    /// @notice Reserve address.\n    IReserve internal reserve;\n\n    /// @notice Strategy address.\n    IStrategy internal strategy;\n\n    /**\n     * @notice Emitted when contract has been deployed.\n     * @param destination Destination address\n     * @param reserve Strategy address\n     * @param strategy Reserve address\n     *\n     */\n    event Deployed(\n        address indexed destination,\n        IReserve indexed reserve,\n        IStrategy indexed strategy\n    );\n\n    /* ============ Constructor ============ */\n\n    /**\n     * @notice Deploy Prize Flush.\n     * @param _owner Prize Flush owner address\n     * @param _destination Destination address\n     * @param _strategy Strategy address\n     * @param _reserve Reserve address\n     *\n     */\n    constructor(\n        address _owner,\n        address _destination,\n        IStrategy _strategy,\n        IReserve _reserve\n    ) Ownable(_owner) {\n        _setDestination(_destination);\n        _setReserve(_reserve);\n        _setStrategy(_strategy);\n\n        emit Deployed(_destination, _reserve, _strategy);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IPrizeFlush\n    function getDestination() external view override returns (address) {\n        return destination;\n    }\n\n    /// @inheritdoc IPrizeFlush\n    function getReserve() external view override returns (IReserve) {\n        return reserve;\n    }\n\n    /// @inheritdoc IPrizeFlush\n    function getStrategy() external view override returns (IStrategy) {\n        return strategy;\n    }\n\n    /// @inheritdoc IPrizeFlush\n    function setDestination(address _destination) external override onlyOwner returns (address) {\n        _setDestination(_destination);\n        emit DestinationSet(_destination);\n        return _destination;\n    }\n\n    /// @inheritdoc IPrizeFlush\n    function setReserve(IReserve _reserve) external override onlyOwner returns (IReserve) {\n        _setReserve(_reserve);\n        emit ReserveSet(_reserve);\n        return _reserve;\n    }\n\n    /// @inheritdoc IPrizeFlush\n    function setStrategy(IStrategy _strategy) external override onlyOwner returns (IStrategy) {\n        _setStrategy(_strategy);\n        emit StrategySet(_strategy);\n        return _strategy;\n    }\n\n    /// @inheritdoc IPrizeFlush\n    function flush() external override onlyManagerOrOwner returns (bool) {\n        // Captures interest from PrizePool and distributes funds using a PrizeSplitStrategy.\n        strategy.distribute();\n\n        // After funds are distributed using PrizeSplitStrategy we EXPECT funds to be located in the Reserve.\n        IReserve _reserve = reserve;\n        IERC20 _token = _reserve.getToken();\n        uint256 _amount = _token.balanceOf(address(_reserve));\n\n        // IF the tokens were succesfully moved to the Reserve, now move them to the destination (PrizeDistributor) address.\n        if (_amount > 0) {\n            address _destination = destination;\n\n            // Create checkpoint and transfers new total balance to PrizeDistributor\n            _reserve.withdrawTo(_destination, _amount);\n\n            emit Flushed(_destination, _amount);\n            return true;\n        }\n\n        return false;\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Set global destination variable.\n     * @dev `_destination` cannot be the zero address.\n     * @param _destination Destination address\n     */\n    function _setDestination(address _destination) internal {\n        require(_destination != address(0), \"Flush/destination-not-zero-address\");\n        destination = _destination;\n    }\n\n    /**\n     * @notice Set global reserve variable.\n     * @dev `_reserve` cannot be the zero address.\n     * @param _reserve Reserve address\n     */\n    function _setReserve(IReserve _reserve) internal {\n        require(address(_reserve) != address(0), \"Flush/reserve-not-zero-address\");\n        reserve = _reserve;\n    }\n\n    /**\n     * @notice Set global strategy variable.\n     * @dev `_strategy` cannot be the zero address.\n     * @param _strategy Strategy address\n     */\n    function _setStrategy(IStrategy _strategy) internal {\n        require(address(_strategy) != address(0), \"Flush/strategy-not-zero-address\");\n        strategy = _strategy;\n    }\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeFlush.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-periphery/contracts/PrizeFlush.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol';\n"
      },
      "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./interfaces/IDrawCalculatorTimelock.sol\";\n\n/**\n  * @title  PoolTogether V4 OracleTimelock\n  * @author PoolTogether Inc Team\n  * @notice OracleTimelock(s) acts as an intermediary between multiple V4 smart contracts.\n            The OracleTimelock is responsible for pushing Draws to a DrawBuffer and routing\n            claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\n            to include a \"cooldown\" period for all new Draws. Allowing the correction of a\n            maliciously set Draw in the unfortunate event an Owner is compromised.\n*/\ncontract DrawCalculatorTimelock is IDrawCalculatorTimelock, Manageable {\n    /* ============ Global Variables ============ */\n\n    /// @notice Internal DrawCalculator reference.\n    IDrawCalculator internal immutable calculator;\n\n    /// @notice Internal Timelock struct reference.\n    Timelock internal timelock;\n\n    /* ============ Events ============ */\n\n    /**\n     * @notice Deployed event when the constructor is called\n     * @param drawCalculator DrawCalculator address bound to this timelock\n     */\n    event Deployed(IDrawCalculator indexed drawCalculator);\n\n    /* ============ Deploy ============ */\n\n    /**\n     * @notice Initialize DrawCalculatorTimelockTrigger smart contract.\n     * @param _owner                       Address of the DrawCalculator owner.\n     * @param _calculator                 DrawCalculator address.\n     */\n    constructor(address _owner, IDrawCalculator _calculator) Ownable(_owner) {\n        calculator = _calculator;\n\n        emit Deployed(_calculator);\n    }\n\n    /* ============ External Functions ============ */\n\n    /// @inheritdoc IDrawCalculatorTimelock\n    function calculate(\n        address user,\n        uint32[] calldata drawIds,\n        bytes calldata data\n    ) external view override returns (uint256[] memory, bytes memory) {\n        Timelock memory _timelock = timelock;\n\n        for (uint256 i = 0; i < drawIds.length; i++) {\n            // if draw id matches timelock and not expired, revert\n            if (drawIds[i] == _timelock.drawId) {\n                _requireTimelockElapsed(_timelock);\n            }\n        }\n\n        return calculator.calculate(user, drawIds, data);\n    }\n\n    /// @inheritdoc IDrawCalculatorTimelock\n    function lock(uint32 _drawId, uint64 _timestamp)\n        external\n        override\n        onlyManagerOrOwner\n        returns (bool)\n    {\n        Timelock memory _timelock = timelock;\n        require(_drawId == _timelock.drawId + 1, \"OM/not-drawid-plus-one\");\n\n        _requireTimelockElapsed(_timelock);\n        timelock = Timelock({ drawId: _drawId, timestamp: _timestamp });\n        emit LockedDraw(_drawId, _timestamp);\n\n        return true;\n    }\n\n    /// @inheritdoc IDrawCalculatorTimelock\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\n        return calculator;\n    }\n\n    /// @inheritdoc IDrawCalculatorTimelock\n    function getTimelock() external view override returns (Timelock memory) {\n        return timelock;\n    }\n\n    /// @inheritdoc IDrawCalculatorTimelock\n    function setTimelock(Timelock memory _timelock) external override onlyOwner {\n        timelock = _timelock;\n\n        emit TimelockSet(_timelock);\n    }\n\n    /// @inheritdoc IDrawCalculatorTimelock\n    function hasElapsed() external view override returns (bool) {\n        return _timelockHasElapsed(timelock);\n    }\n\n    /* ============ Internal Functions ============ */\n\n    /**\n     * @notice Read global DrawCalculator variable.\n     * @return IDrawCalculator\n     */\n    function _timelockHasElapsed(Timelock memory _timelock) internal view returns (bool) {\n        // If the timelock hasn't been initialized, then it's elapsed\n        if (_timelock.timestamp == 0) {\n            return true;\n        }\n\n        // Otherwise if the timelock has expired, we're good.\n        return (block.timestamp > _timelock.timestamp);\n    }\n\n    /**\n     * @notice Require the timelock \"cooldown\" period has elapsed\n     * @param _timelock the Timelock to check\n     */\n    function _requireTimelockElapsed(Timelock memory _timelock) internal view {\n        require(_timelockHasElapsed(_timelock), \"OM/timelock-not-expired\");\n    }\n}\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol';\n"
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol';\n"
      }
    },
    "settings": {
      "optimizer": {
        "enabled": true,
        "runs": 2000
      },
      "evmVersion": "berlin",
      "outputSelection": {
        "*": {
          "*": [
            "abi",
            "evm.bytecode",
            "evm.deployedBytecode",
            "evm.methodIdentifiers",
            "metadata",
            "devdoc",
            "userdoc",
            "storageLayout",
            "evm.gasEstimates"
          ],
          "": [
            "ast"
          ]
        }
      },
      "metadata": {
        "useLiteralContent": true
      }
    }
  },
  "output": {
    "contracts": {
      "@openzeppelin/contracts/security/ReentrancyGuard.sol": {
        "ReentrancyGuard": {
          "abi": [],
          "devdoc": {
            "details": "Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.0;\\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    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        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\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\",\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 10,
                "contract": "@openzeppelin/contracts/security/ReentrancyGuard.sol:ReentrancyGuard",
                "label": "_status",
                "offset": 0,
                "slot": "0",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/ERC20.sol": {
        "ERC20": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "name_",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "symbol_",
                  "type": "string"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "constructor": {
                "details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
              },
              "decimals()": {
                "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 270,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
                  "entryPoint": 453,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "extract_byte_array_length": {
                  "entryPoint": 559,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 620,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1985:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:94"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:94",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:94"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:94"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:94"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:94",
                                "statements": []
                              },
                              "src": "647:133:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:885:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1022:444:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1068:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1077:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1080:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1070:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1070:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1070:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1052:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1039:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1039:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1064:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1032:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1093:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1097:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1132:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1150:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1154:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1158:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1136:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1187:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1196:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1199:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1189:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1189:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1189:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1175:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1183:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1169:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1212:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1251:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1251:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1222:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1222:61:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1292:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1318:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1329:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1314:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1314:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1308:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1308:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1296:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1348:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1342:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1387:73:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1426:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1426:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:63:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1387:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "980:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "991:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1003:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1011:6:94",
                            "type": ""
                          }
                        ],
                        "src": "904:562:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1526:325:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1536:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1550:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1553:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1536:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1567:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1603:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1593:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1593:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1571:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1644:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1646:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1660:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1656:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1646:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1617:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1614:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1734:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1762:3:94",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1767:10:94",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1758:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1758:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1799:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1792:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1792:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1792:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1827:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1830:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1820:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1820:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1820:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1690:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1713:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1721:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1687:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1687:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1684:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1506:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1515:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1471:380:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1888:95:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1905:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1912:3:94",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1917:10:94",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1908:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1908:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1898:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1898:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1898:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1945:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1948:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1938:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1938:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1938:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1969:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "1962:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1962:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1962:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "1856:127:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000c7038038062000c708339810160408190526200003491620001c5565b81516200004990600390602085019062000068565b5080516200005f90600490602084019062000068565b50505062000282565b82805462000076906200022f565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b600082601f8301126200012057600080fd5b81516001600160401b03808211156200013d576200013d6200026c565b604051601f8301601f19908116603f011681019082821181831017156200016857620001686200026c565b816040528381526020925086838588010111156200018557600080fd5b600091505b83821015620001a957858201830151818301840152908201906200018a565b83821115620001bb5760008385830101525b9695505050505050565b60008060408385031215620001d957600080fd5b82516001600160401b0380821115620001f157600080fd5b620001ff868387016200010e565b935060208501519150808211156200021657600080fd5b5062000225858286016200010e565b9150509250929050565b600181811c908216806200024457607f821691505b602082108114156200026657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6109de80620002926000396000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e391906108a2565b60405180910390f35b6100ff6100fa366004610878565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f36600461083c565b61028e565b604051601281526020016100e3565b6100ff610151366004610878565b610352565b6101136101643660046107e7565b6001600160a01b031660009081526020819052604090205490565b6100d661038e565b6100ff610195366004610878565b61039d565b6100ff6101a8366004610878565b61044e565b6101136101bb366004610809565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f590610954565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610954565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b600061028533848461045b565b50600192915050565b600061029b8484846105b3565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561033a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610347853385840361045b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610389908690610915565b61045b565b6060600480546101f590610954565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610331565b610444338585840361045b565b5060019392505050565b60006102853384846105b3565b6001600160a01b0383166104d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166105525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166106ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383166000908152602081905260409020548181101561073a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610771908490610915565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107bd91815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e257600080fd5b919050565b6000602082840312156107f957600080fd5b610802826107cb565b9392505050565b6000806040838503121561081c57600080fd5b610825836107cb565b9150610833602084016107cb565b90509250929050565b60008060006060848603121561085157600080fd5b61085a846107cb565b9250610868602085016107cb565b9150604084013590509250925092565b6000806040838503121561088b57600080fd5b610894836107cb565b946020939093013593505050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b818111156108e1576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561094f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096857607f821691505b602082108114156109a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220703e7e7f2d439195d6746cba3bcd9304c704f856042928488b1f029fb05dbf1964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xC70 CODESIZE SUB DUP1 PUSH3 0xC70 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1C5 JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x282 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x22F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x120 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x13D JUMPI PUSH3 0x13D PUSH3 0x26C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x168 JUMPI PUSH3 0x168 PUSH3 0x26C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1A9 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x18A JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1BB JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1FF DUP7 DUP4 DUP8 ADD PUSH3 0x10E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x216 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x225 DUP6 DUP3 DUP7 ADD PUSH3 0x10E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x244 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x266 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x9DE DUP1 PUSH3 0x292 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x143 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x83C JUMP JUMPDEST PUSH2 0x28E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x151 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x7E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x38E JUMP JUMPDEST PUSH2 0xFF PUSH2 0x195 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x39D JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x44E JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1BB CALLDATASIZE PUSH1 0x4 PUSH2 0x809 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29B DUP5 DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x33A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x347 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x285 SWAP2 DUP6 SWAP1 PUSH2 0x389 SWAP1 DUP7 SWAP1 PUSH2 0x915 JUMP JUMPDEST PUSH2 0x45B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x437 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH2 0x444 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x552 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x73A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x771 SWAP1 DUP5 SWAP1 PUSH2 0x915 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7BD SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x802 DUP3 PUSH2 0x7CB JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x81C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x825 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH2 0x833 PUSH1 0x20 DUP5 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x851 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x85A DUP5 PUSH2 0x7CB JUMP JUMPDEST SWAP3 POP PUSH2 0x868 PUSH1 0x20 DUP6 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x88B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x894 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8CF JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B3 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x94F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x968 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A2 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0x3E7E7F2D439195D6746CBA3BCD9304C704 0xF8 JUMP DIV 0x29 0x28 0x48 DUP12 0x1F MUL SWAP16 0xB0 0x5D 0xBF NOT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1388:10416:1:-:0;;;1963:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2029:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2052:17:1;;;;:7;;:17;;;;;:::i;:::-;;1963:113;;1388:10416;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1388:10416:1;;;-1:-1:-1;1388:10416:1;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:94;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:94;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:94;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:94:o;904:562::-;1003:6;1011;1064:2;1052:9;1043:7;1039:23;1035:32;1032:2;;;1080:1;1077;1070:12;1032:2;1107:16;;-1:-1:-1;;;;;1172:14:94;;;1169:2;;;1199:1;1196;1189:12;1169:2;1222:61;1275:7;1266:6;1255:9;1251:22;1222:61;:::i;:::-;1212:71;;1329:2;1318:9;1314:18;1308:25;1292:41;;1358:2;1348:8;1345:16;1342:2;;;1374:1;1371;1364:12;1342:2;;1397:63;1452:7;1441:8;1430:9;1426:24;1397:63;:::i;:::-;1387:73;;;1022:444;;;;;:::o;1471:380::-;1550:1;1546:12;;;;1593;;;1614:2;;1668:4;1660:6;1656:17;1646:27;;1614:2;1721;1713:6;1710:14;1690:18;1687:38;1684:2;;;1767:10;1762:3;1758:20;1755:1;1748:31;1802:4;1799:1;1792:15;1830:4;1827:1;1820:15;1684:2;;1526:325;;;:::o;1856:127::-;1917:10;1912:3;1908:20;1905:1;1898:31;1948:4;1945:1;1938:15;1972:4;1969:1;1962:15;1888:95;1388:10416:1;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 1115,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_573": {
                  "entryPoint": null,
                  "id": 573,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_msgSender_1560": {
                  "entryPoint": null,
                  "id": 1560,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transfer_389": {
                  "entryPoint": 1459,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 632,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_114": {
                  "entryPoint": null,
                  "id": 114,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 925,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 850,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_94": {
                  "entryPoint": 486,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 910,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 654,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 1102,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 1995,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2023,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2057,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2108,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2168,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2210,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 2325,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 2388,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:6053:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:94",
                            "type": ""
                          }
                        ],
                        "src": "406:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:94",
                            "type": ""
                          }
                        ],
                        "src": "671:328:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:94",
                                "statements": []
                              },
                              "src": "1735:140:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:94",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:94"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:8:94",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3292:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3304:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3315:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3300:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3300:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3292:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2923:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3504:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3521:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3532:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3571:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3594:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3605:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3590:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3590:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3610:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3583:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3583:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3583:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3665:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3676:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3661:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3661:18:94"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3681:10:94",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3654:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3654:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3654:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3701:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3713:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3724:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3709:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3709:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3701:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3481:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3495:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3330:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3913:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3930:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3941:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3923:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3923:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3923:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3964:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3975:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3960:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3960:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3980:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3953:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3953:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3953:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4003:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4014:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3999:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3999:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4019:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3992:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4074:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4085:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4070:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4070:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4090:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4063:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4063:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4063:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4107:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4119:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4130:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4115:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4115:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4107:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3890:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3904:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3739:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4319:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4336:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4347:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4329:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4329:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4329:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4370:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4381:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4366:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4366:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4386:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4359:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4359:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4409:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4420:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4405:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4405:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4425:34:94",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4398:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4398:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4398:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4480:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4491:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4476:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4476:18:94"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4496:6:94",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4469:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4469:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4469:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4512:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4524:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4535:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4520:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4520:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4512:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4296:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4310:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4145:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4724:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4741:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4752:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4734:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4734:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4775:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4786:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4771:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4771:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4791:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4764:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4764:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4764:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4814:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4825:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4810:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4810:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4830:34:94",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4803:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4803:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4803:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4896:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:18:94"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4901:7:94",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4874:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4874:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4874:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4918:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4930:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4941:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4926:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4926:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4918:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4701:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4715:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4550:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5057:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5067:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5079:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5090:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5075:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5075:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5067:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5109:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5120:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5102:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5102:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5102:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5026:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5037:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5048:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4956:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5235:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5245:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5253:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5253:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5245:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5287:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5302:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5310:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5298:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5298:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5204:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5226:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5138:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5375:234:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5410:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5431:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5434:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5424:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5424:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5424:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5532:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5535:4:94",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5525:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5525:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5525:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5560:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5563:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5553:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5553:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5553:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5391:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "5398:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "5394:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5394:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5388:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5388:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5385:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5587:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5598:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "5601:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5594:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5594:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "5587:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "5358:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "5361:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "5367:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5327:282:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5669:382:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5679:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5693:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5696:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "5689:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5689:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5710:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5740:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "5736:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5736:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "5714:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5787:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5789:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "5803:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5811:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "5799:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5799:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5789:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5767:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5760:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5760:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5757:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5877:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5898:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5901:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5891:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5891:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5891:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5999:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6002:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5992:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5992:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5992:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6027:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6030:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6020:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6020:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5833:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5856:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5864:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5853:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5853:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "5830:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5830:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5827:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "5649:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "5658:6:94",
                            "type": ""
                          }
                        ],
                        "src": "5614:437:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e391906108a2565b60405180910390f35b6100ff6100fa366004610878565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f36600461083c565b61028e565b604051601281526020016100e3565b6100ff610151366004610878565b610352565b6101136101643660046107e7565b6001600160a01b031660009081526020819052604090205490565b6100d661038e565b6100ff610195366004610878565b61039d565b6100ff6101a8366004610878565b61044e565b6101136101bb366004610809565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f590610954565b80601f016020809104026020016040519081016040528092919081815260200182805461022190610954565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b600061028533848461045b565b50600192915050565b600061029b8484846105b3565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561033a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610347853385840361045b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610285918590610389908690610915565b61045b565b6060600480546101f590610954565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610331565b610444338585840361045b565b5060019392505050565b60006102853384846105b3565b6001600160a01b0383166104d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166105525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661062f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0382166106ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b0383166000908152602081905260409020548181101561073a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610331565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610771908490610915565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107bd91815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e257600080fd5b919050565b6000602082840312156107f957600080fd5b610802826107cb565b9392505050565b6000806040838503121561081c57600080fd5b610825836107cb565b9150610833602084016107cb565b90509250929050565b60008060006060848603121561085157600080fd5b61085a846107cb565b9250610868602085016107cb565b9150604084013590509250925092565b6000806040838503121561088b57600080fd5b610894836107cb565b946020939093013593505050565b600060208083528351808285015260005b818110156108cf578581018301518582016040015282016108b3565b818111156108e1576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561094f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096857607f821691505b602082108114156109a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220703e7e7f2d439195d6746cba3bcd9304c704f856042928488b1f029fb05dbf1964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x187 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x143 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x278 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x83C JUMP JUMPDEST PUSH2 0x28E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x151 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x7E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x38E JUMP JUMPDEST PUSH2 0xFF PUSH2 0x195 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x39D JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x878 JUMP JUMPDEST PUSH2 0x44E JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1BB CALLDATASIZE PUSH1 0x4 PUSH2 0x809 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x221 SWAP1 PUSH2 0x954 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x243 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x251 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29B DUP5 DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x33A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x347 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x285 SWAP2 DUP6 SWAP1 PUSH2 0x389 SWAP1 DUP7 SWAP1 PUSH2 0x915 JUMP JUMPDEST PUSH2 0x45B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F5 SWAP1 PUSH2 0x954 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x437 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH2 0x444 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x45B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x285 CALLER DUP5 DUP5 PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x552 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x73A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x331 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x771 SWAP1 DUP5 SWAP1 PUSH2 0x915 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7BD SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x802 DUP3 PUSH2 0x7CB JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x81C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x825 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH2 0x833 PUSH1 0x20 DUP5 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x851 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x85A DUP5 PUSH2 0x7CB JUMP JUMPDEST SWAP3 POP PUSH2 0x868 PUSH1 0x20 DUP6 ADD PUSH2 0x7CB JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x88B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x894 DUP4 PUSH2 0x7CB JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8CF JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B3 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x94F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x968 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A2 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0x3E7E7F2D439195D6746CBA3BCD9304C704 0xF8 JUMP DIV 0x29 0x28 0x48 DUP12 0x1F MUL SWAP16 0xB0 0x5D 0xBF NOT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1388:10416:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:94;;1421:22;1403:41;;1391:2;1376:18;4238:166:1;1358:92:94;3229:106:1;3316:12;;3229:106;;;5102:25:94;;;5090:2;5075:18;3229:106:1;5057:76:94;4871:478:1;;;;;;:::i;:::-;;:::i;3078:91::-;;;3160:2;5280:36:94;;5268:2;5253:18;3078:91:1;5235:87:94;5744:212:1;;;;;;:::i;:::-;;:::i;3393:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:1;3467:7;3493:18;;;;;;;;;;;;3393:125;2352:102;;;:::i;6443:405::-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;3951:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:1;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;2141:98;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:10;4360:7:1;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:1;4238:166;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:1;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:10;5097:33:1;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:1;;3532:2:94;5140:79:1;;;3514:21:94;3571:2;3551:18;;;3544:30;3610:34;3590:18;;;3583:62;3681:10;3661:18;;;3654:38;3709:19;;5140:79:1;;;;;;;;;5253:57;5262:6;719:10:10;5303:6:1;5284:16;:25;5253:8;:57::i;:::-;-1:-1:-1;5338:4:1;;4871:478;-1:-1:-1;;;;4871:478:1:o;5744:212::-;719:10:10;5832:4:1;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:1;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;2352:102::-;2408:13;2440:7;2433:14;;;;;:::i;6443:405::-;719:10:10;6536:4:1;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:1;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:1;;4752:2:94;6623:85:1;;;4734:21:94;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;4901:7;4881:18;;;4874:35;4926:19;;6623:85:1;4724:227:94;6623:85:1;6742:67;719:10:10;6765:7:1;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:1;;6443:405;-1:-1:-1;;;6443:405:1:o;3721:172::-;3807:4;3823:42;719:10:10;3847:9:1;3858:6;3823:9;:42::i;10019:370::-;-1:-1:-1;;;;;10150:19:1;;10142:68;;;;-1:-1:-1;;;10142:68:1;;4347:2:94;10142:68:1;;;4329:21:94;4386:2;4366:18;;;4359:30;4425:34;4405:18;;;4398:62;4496:6;4476:18;;;4469:34;4520:19;;10142:68:1;4319:226:94;10142:68:1;-1:-1:-1;;;;;10228:21:1;;10220:68;;;;-1:-1:-1;;;10220:68:1;;2722:2:94;10220:68:1;;;2704:21:94;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;10220:68:1;2694:224:94;10220:68:1;-1:-1:-1;;;;;10299:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;5102:25:94;;;10350:32:1;;5075:18:94;10350:32:1;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:1;;7449:70;;;;-1:-1:-1;;;7449:70:1;;3941:2:94;7449:70:1;;;3923:21:94;3980:2;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4090:7;4070:18;;;4063:35;4115:19;;7449:70:1;3913:227:94;7449:70:1;-1:-1:-1;;;;;7537:23:1;;7529:71;;;;-1:-1:-1;;;7529:71:1;;2318:2:94;7529:71:1;;;2300:21:94;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7529:71:1;2290:225:94;7529:71:1;-1:-1:-1;;;;;7693:17:1;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:1;;3125:2:94;7720:74:1;;;3107:21:94;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:8;3254:18;;;3247:36;3300:19;;7720:74:1;3097:228:94;7720:74:1;-1:-1:-1;;;;;7828:17:1;;;:9;:17;;;;;;;;;;;7848:22;;;7828:42;;7890:20;;;;;;;;:30;;7864:6;;7828:9;7890:30;;7864:6;;7890:30;:::i;:::-;;;;;;;;7953:9;-1:-1:-1;;;;;7936:35:1;7945:6;-1:-1:-1;;;;;7936:35:1;;7964:6;7936:35;;;;5102:25:94;;5090:2;5075:18;;5057:76;7936:35:1;;;;;;;;7439:596;7322:713;;;:::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:94:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:94:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:94;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:94:o;5327:282::-;5367:3;5398:1;5394:6;5391:1;5388:13;5385:2;;;5434:77;5431:1;5424:88;5535:4;5532:1;5525:15;5563:4;5560:1;5553:15;5385:2;-1:-1:-1;5594:9:94;;5375:234::o;5614:437::-;5693:1;5689:12;;;;5736;;;5757:2;;5811:4;5803:6;5799:17;5789:27;;5757:2;5864;5856:6;5853:14;5833:18;5830:38;5827:2;;;5901:77;5898:1;5891:88;6002:4;5999:1;5992:15;6030:4;6027:1;6020:15;5827:2;;5669:382;;;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "505200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2585",
                "decimals()": "244",
                "decreaseAllowance(address,uint256)": "26910",
                "increaseAllowance(address,uint256)": "26957",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2304",
                "transfer(address,uint256)": "51209",
                "transferFrom(address,address,uint256)": "infinite"
              },
              "internal": {
                "_afterTokenTransfer(address,address,uint256)": "infinite",
                "_approve(address,address,uint256)": "infinite",
                "_beforeTokenTransfer(address,address,uint256)": "infinite",
                "_burn(address,uint256)": "infinite",
                "_mint(address,uint256)": "infinite",
                "_transfer(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xd1d8caaeb45f78e0b0715664d56c220c283c89bf8b8c02954af86404d6b367f8\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\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\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\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\",\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
        "IERC20": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface of the ERC20 standard as defined in the EIP.",
            "events": {
              "Approval(address,address,uint256)": {
                "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
              },
              "Transfer(address,address,uint256)": {
                "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
              }
            },
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
              },
              "approve(address,uint256)": {
                "details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
        "IERC20Metadata": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
              },
              "approve(address,uint256)": {
                "details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "decimals()": {
                "details": "Returns the decimals places of the token."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token."
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "decimals()": "313ce567",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\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\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
        "ERC20Permit": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. _Available since v3.4._",
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "constructor": {
                "details": "Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`. It's a good idea to use the same `name` that is defined as the ERC20 token name."
              },
              "decimals()": {
                "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. _Available since v3.4._\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`. It's a good idea to use the same `name` that is defined as the ERC20 token name.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":\"ERC20Permit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xd1d8caaeb45f78e0b0715664d56c220c283c89bf8b8c02954af86404d6b367f8\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\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\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation 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 * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\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    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x8a763ef5625e97f5287c7ddd5ede434129069e15d83bf0a68ad10a5e56ccb439\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\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 */\\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    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\",\"keccak256\":\"0xf41ca991f30855bf80ffd11e9347856a517b977f0a6c2d52e6421a99b7840329\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\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\",\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\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        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\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        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\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        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_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../Strings.sol\\\";\\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        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode 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 {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     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\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            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 if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\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 opcode 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 {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\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 \\u00f7 2 + 1, and for v in (302): v \\u2208 {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);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\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);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from `s`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n\\\", Strings.toString(s.length), s));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xe9e291de7ffe06e66503c6700b1bb84ff6e0989cbb974653628d8994e7c97f03\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.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 specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts 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 * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\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 _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n    address private immutable _CACHED_THIS;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\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        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _CACHED_THIS = address(this);\\n        _TYPE_HASH = typeHash;\\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) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0x6688fad58b9ec0286d40fa957152e575d5d8bd4c3aa80985efdb11b44f776ae7\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)1576_storage)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Counter)1576_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)1576_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Counter)1576_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 1575,
                    "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
        "IERC20Permit": {
          "abi": [
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.",
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."
              },
              "nonces(address)": {
                "details": "Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section].\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":\"IERC20Permit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\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 */\\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    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\",\"keccak256\":\"0xf41ca991f30855bf80ffd11e9347856a517b977f0a6c2d52e6421a99b7840329\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
        "SafeERC20": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers around ERC20 operations that throw on failure (when the token contract returns false). Tokens that return no value (and instead revert or throw on failure) are also supported, non-reverting calls are assumed to be successful. To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, which allows you to call the safe operations as `token.safeTransfer(...)`, etc.",
            "kind": "dev",
            "methods": {},
            "title": "SafeERC20",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122031c8559742f74b6a4c53ceb7cff41bcecdde8f82b9a8d1e75edf6c47269469e264736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 BALANCE 0xC8 SSTORE SWAP8 TIMESTAMP 0xF7 0x4B PUSH11 0x4C53CEB7CFF41BCECDDE8F DUP3 0xB9 0xA8 0xD1 0xE7 0x5E 0xDF PUSH13 0x47269469E264736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "645:3270:6:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;645:3270:6;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122031c8559742f74b6a4c53ceb7cff41bcecdde8f82b9a8d1e75edf6c47269469e264736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 BALANCE 0xC8 SSTORE SWAP8 TIMESTAMP 0xF7 0x4B PUSH11 0x4C53CEB7CFF41BCECDDE8F DUP3 0xB9 0xA8 0xD1 0xE7 0x5E 0xDF PUSH13 0x47269469E264736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "645:3270:6:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "_callOptionalReturn(contract IERC20,bytes memory)": "infinite",
                "safeApprove(contract IERC20,address,uint256)": "infinite",
                "safeDecreaseAllowance(contract IERC20,address,uint256)": "infinite",
                "safeIncreaseAllowance(contract IERC20,address,uint256)": "infinite",
                "safeTransfer(contract IERC20,address,uint256)": "infinite",
                "safeTransferFrom(contract IERC20,address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers around ERC20 operations that throw on failure (when the token contract returns false). Tokens that return no value (and instead revert or throw on failure) are also supported, non-reverting calls are assumed to be successful. To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"SafeERC20\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":\"SafeERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC721/IERC721.sol": {
        "IERC721": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "approved",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "approved",
                  "type": "bool"
                }
              ],
              "name": "ApprovalForAll",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "balance",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "getApproved",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                }
              ],
              "name": "isApprovedForAll",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "ownerOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "safeTransferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "bool",
                  "name": "_approved",
                  "type": "bool"
                }
              ],
              "name": "setApprovalForAll",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Required interface of an ERC721 compliant contract.",
            "events": {
              "Approval(address,address,uint256)": {
                "details": "Emitted when `owner` enables `approved` to manage the `tokenId` token."
              },
              "ApprovalForAll(address,address,bool)": {
                "details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
              },
              "Transfer(address,address,uint256)": {
                "details": "Emitted when `tokenId` token is transferred from `from` to `to`."
              }
            },
            "kind": "dev",
            "methods": {
              "approve(address,uint256)": {
                "details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the number of tokens in ``owner``'s account."
              },
              "getApproved(uint256)": {
                "details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
              },
              "isApprovedForAll(address,address)": {
                "details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
              },
              "ownerOf(uint256)": {
                "details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
              },
              "safeTransferFrom(address,address,uint256)": {
                "details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
              },
              "safeTransferFrom(address,address,uint256,bytes)": {
                "details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
              },
              "setApprovalForAll(address,bool)": {
                "details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
              },
              "supportsInterface(bytes4)": {
                "details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "getApproved(uint256)": "081812fc",
              "isApprovedForAll(address,address)": "e985e9c5",
              "ownerOf(uint256)": "6352211e",
              "safeTransferFrom(address,address,uint256)": "42842e0e",
              "safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
              "setApprovalForAll(address,bool)": "a22cb465",
              "supportsInterface(bytes4)": "01ffc9a7",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Required interface of an ERC721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
        "IERC721Receiver": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "tokenId",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.",
            "kind": "dev",
            "methods": {
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              }
            },
            "title": "ERC721 token receiver interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "onERC721Received(address,address,uint256,bytes)": "150b7a02"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"}},\"title\":\"ERC721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Address.sol": {
        "Address": {
          "abi": [],
          "devdoc": {
            "details": "Collection of functions related to the address type",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212200653fc066de2a044cd12d667acb965e76873e60a5b080913f5f4a174b670456c64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MOD MSTORE8 0xFC MOD PUSH14 0xE2A044CD12D667ACB965E76873E6 EXP JUMPDEST ADDMOD MULMOD SGT CREATE2 DELEGATECALL LOG1 PUSH21 0xB670456C64736F6C63430008060033000000000000 ",
              "sourceMap": "179:7729:9:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;179:7729:9;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212200653fc066de2a044cd12d667acb965e76873e60a5b080913f5f4a174b670456c64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MOD MSTORE8 0xFC MOD PUSH14 0xE2A044CD12D667ACB965E76873E6 EXP JUMPDEST ADDMOD MULMOD SGT CREATE2 DELEGATECALL LOG1 PUSH21 0xB670456C64736F6C63430008060033000000000000 ",
              "sourceMap": "179:7729:9:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "functionCall(address,bytes memory)": "infinite",
                "functionCall(address,bytes memory,string memory)": "infinite",
                "functionCallWithValue(address,bytes memory,uint256)": "infinite",
                "functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
                "functionDelegateCall(address,bytes memory)": "infinite",
                "functionDelegateCall(address,bytes memory,string memory)": "infinite",
                "functionStaticCall(address,bytes memory)": "infinite",
                "functionStaticCall(address,bytes memory,string memory)": "infinite",
                "isContract(address)": "infinite",
                "sendValue(address payable,uint256)": "infinite",
                "verifyCallResult(bool,bytes memory,string memory)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Context.sol": {
        "Context": {
          "abi": [],
          "devdoc": {
            "details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\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\",\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Counters.sol": {
        "Counters": {
          "abi": [],
          "devdoc": {
            "author": "Matt Condon (@shrugs)",
            "details": "Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number of elements in a mapping, issuing ERC721 ids, or counting request ids. Include with `using Counters for Counters.Counter;`",
            "kind": "dev",
            "methods": {},
            "title": "Counters",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c0fb8d5fab2c3bcf4784df4f9fe26fac051038a1e09e7120132bfeeed0fad22764736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC0 0xFB DUP14 0x5F 0xAB 0x2C EXTCODESIZE 0xCF SELFBALANCE DUP5 0xDF 0x4F SWAP16 0xE2 PUSH16 0xAC051038A1E09E7120132BFEEED0FAD2 0x27 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "424:971:11:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;424:971:11;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c0fb8d5fab2c3bcf4784df4f9fe26fac051038a1e09e7120132bfeeed0fad22764736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC0 0xFB DUP14 0x5F 0xAB 0x2C EXTCODESIZE 0xCF SELFBALANCE DUP5 0xDF 0x4F SWAP16 0xE2 PUSH16 0xAC051038A1E09E7120132BFEEED0FAD2 0x27 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "424:971:11:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "current(struct Counters.Counter storage pointer)": "infinite",
                "decrement(struct Counters.Counter storage pointer)": "infinite",
                "increment(struct Counters.Counter storage pointer)": "infinite",
                "reset(struct Counters.Counter storage pointer)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"Matt Condon (@shrugs)\",\"details\":\"Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number of elements in a mapping, issuing ERC721 ids, or counting request ids. Include with `using Counters for Counters.Counter;`\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Counters\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Counters.sol\":\"Counters\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/Strings.sol": {
        "Strings": {
          "abi": [],
          "devdoc": {
            "details": "String operations.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205e9d5c5940f9e0f445765d45cfb5f098beca0d1eddb029c96442728bd43fdff764736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E SWAP14 0x5C MSIZE BLOCKHASH 0xF9 0xE0 DELEGATECALL GASLIMIT PUSH23 0x5D45CFB5F098BECA0D1EDDB029C96442728BD43FDFF764 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "146:1885:12:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;146:1885:12;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212205e9d5c5940f9e0f445765d45cfb5f098beca0d1eddb029c96442728bd43fdff764736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E SWAP14 0x5C MSIZE BLOCKHASH 0xF9 0xE0 DELEGATECALL GASLIMIT PUSH23 0x5D45CFB5F098BECA0D1EDDB029C96442728BD43FDFF764 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "146:1885:12:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "toHexString(uint256)": "infinite",
                "toHexString(uint256,uint256)": "infinite",
                "toString(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"String operations.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\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        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\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        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\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        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_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
        "ECDSA": {
          "abi": [],
          "devdoc": {
            "details": "Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220554076b7db3e857089f812093ada0d1fd9155eb405ab875a806b47db253d310364736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SSTORE BLOCKHASH PUSH23 0xB7DB3E857089F812093ADA0D1FD9155EB405AB875A806B SELFBALANCE 0xDB 0x25 RETURNDATASIZE BALANCE SUB PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "354:8967:13:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;354:8967:13;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220554076b7db3e857089f812093ada0d1fd9155eb405ab875a806b47db253d310364736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SSTORE BLOCKHASH PUSH23 0xB7DB3E857089F812093ADA0D1FD9155EB405AB875A806B SELFBALANCE 0xDB 0x25 RETURNDATASIZE BALANCE SUB PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "354:8967:13:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "_throwError(enum ECDSA.RecoverError)": "infinite",
                "recover(bytes32,bytes memory)": "infinite",
                "recover(bytes32,bytes32,bytes32)": "infinite",
                "recover(bytes32,uint8,bytes32,bytes32)": "infinite",
                "toEthSignedMessageHash(bytes memory)": "infinite",
                "toEthSignedMessageHash(bytes32)": "infinite",
                "toTypedDataHash(bytes32,bytes32)": "infinite",
                "tryRecover(bytes32,bytes memory)": "infinite",
                "tryRecover(bytes32,bytes32,bytes32)": "infinite",
                "tryRecover(bytes32,uint8,bytes32,bytes32)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Elliptic Curve Digital Signature Algorithm (ECDSA) operations. These functions can be used to verify that a message was signed by the holder of the private keys of a given address.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\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        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\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        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\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        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_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../Strings.sol\\\";\\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        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode 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 {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     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\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            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 if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\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 opcode 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 {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\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 \\u00f7 2 + 1, and for v in (302): v \\u2208 {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);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\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);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from `s`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n\\\", Strings.toString(s.length), s));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xe9e291de7ffe06e66503c6700b1bb84ff6e0989cbb974653628d8994e7c97f03\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
        "EIP712": {
          "abi": [],
          "devdoc": {
            "details": "https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in their contracts using a combination of `abi.encode` and `keccak256`. This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA ({_hashTypedDataV4}). The implementation of the domain separator was designed to be as efficient as possible while still properly updating the chain id to protect against replay attacks on an eventual fork of the chain. NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. _Available since v3.4._",
            "kind": "dev",
            "methods": {
              "constructor": {
                "details": "Initializes the domain separator and parameter caches. The meaning of `name` and `version` is specified in https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. - `version`: the current major version of the signing domain. NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart contract upgrade]."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in their contracts using a combination of `abi.encode` and `keccak256`. This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA ({_hashTypedDataV4}). The implementation of the domain separator was designed to be as efficient as possible while still properly updating the chain id to protect against replay attacks on an eventual fork of the chain. NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. _Available since v3.4._\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the domain separator and parameter caches. The meaning of `name` and `version` is specified in https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. - `version`: the current major version of the signing domain. NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart contract upgrade].\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":\"EIP712\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\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        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\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        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\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        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_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../Strings.sol\\\";\\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        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode 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 {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     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\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            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 if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\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 opcode 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 {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\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 \\u00f7 2 + 1, and for v in (302): v \\u2208 {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);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\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);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from `s`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n\\\", Strings.toString(s.length), s));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xe9e291de7ffe06e66503c6700b1bb84ff6e0989cbb974653628d8994e7c97f03\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.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 specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts 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 * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\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 _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n    address private immutable _CACHED_THIS;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\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        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _CACHED_THIS = address(this);\\n        _TYPE_HASH = typeHash;\\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) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0x6688fad58b9ec0286d40fa957152e575d5d8bd4c3aa80985efdb11b44f776ae7\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol": {
        "ERC165Checker": {
          "abi": [],
          "devdoc": {
            "details": "Library used to query support of an interface declared via {IERC165}. Note that these functions return the actual result of the query: they do not `revert` if an interface is not supported. It is up to the caller to decide what to do in these cases.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122097c1c17bec14db8279f6cc1e4a4b150bdc1ede0f68f3b29cb2d0824c507e0c6764736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP8 0xC1 0xC1 PUSH28 0xEC14DB8279F6CC1E4A4B150BDC1EDE0F68F3B29CB2D0824C507E0C67 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "434:4185:15:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;434:4185:15;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122097c1c17bec14db8279f6cc1e4a4b150bdc1ede0f68f3b29cb2d0824c507e0c6764736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP8 0xC1 0xC1 PUSH28 0xEC14DB8279F6CC1E4A4B150BDC1EDE0F68F3B29CB2D0824C507E0C67 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "434:4185:15:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "_supportsERC165Interface(address,bytes4)": "infinite",
                "getSupportedInterfaces(address,bytes4[] memory)": "infinite",
                "supportsAllInterfaces(address,bytes4[] memory)": "infinite",
                "supportsERC165(address)": "infinite",
                "supportsInterface(address,bytes4)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library used to query support of an interface declared via {IERC165}. Note that these functions return the actual result of the query: they do not `revert` if an interface is not supported. It is up to the caller to decide what to do in these cases.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":\"ERC165Checker\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Checker.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xf7291d7213336b00ee7edbf7cd5034778dd7b0bda2a7489e664f1e5cacc6c24e\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/introspection/IERC165.sol": {
        "IERC165": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "bytes4",
                  "name": "interfaceId",
                  "type": "bytes4"
                }
              ],
              "name": "supportsInterface",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.",
            "kind": "dev",
            "methods": {
              "supportsInterface(bytes4)": {
                "details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "supportsInterface(bytes4)": "01ffc9a7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/utils/math/SafeCast.sol": {
        "SafeCast": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ad13e93b743abc9c59292b253dcabbf4db9f781b031ddb9e767c12dbd16220fd64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAD SGT 0xE9 EXTCODESIZE PUSH21 0x3ABC9C59292B253DCABBF4DB9F781B031DDB9E767C SLT 0xDB 0xD1 PUSH3 0x20FD64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "827:6990:17:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;827:6990:17;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ad13e93b743abc9c59292b253dcabbf4db9f781b031ddb9e767c12dbd16220fd64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAD SGT 0xE9 EXTCODESIZE PUSH21 0x3ABC9C59292B253DCABBF4DB9F781B031DDB9E767C SLT 0xDB 0xD1 PUSH3 0x20FD64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "827:6990:17:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "toInt128(int256)": "infinite",
                "toInt16(int256)": "infinite",
                "toInt256(uint256)": "infinite",
                "toInt32(int256)": "infinite",
                "toInt64(int256)": "infinite",
                "toInt8(int256)": "infinite",
                "toUint128(uint256)": "infinite",
                "toUint16(uint256)": "infinite",
                "toUint224(uint256)": "infinite",
                "toUint256(int256)": "infinite",
                "toUint32(uint256)": "infinite",
                "toUint64(uint256)": "infinite",
                "toUint8(uint256)": "infinite",
                "toUint96(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":\"SafeCast\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/owner-manager-contracts/contracts/Manageable.sol": {
        "Manageable": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "ManagerTransferred(address,address)": {
                "details": "Emitted when `_manager` has been changed.",
                "params": {
                  "newManager": "new `_manager` address.",
                  "previousManager": "previous `_manager` address."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "Abstract manageable contract that can be inherited by other contracts",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"ManagerTransferred(address,address)\":{\"details\":\"Emitted when `_manager` has been changed.\",\"params\":{\"newManager\":\"new `_manager` address.\",\"previousManager\":\"previous `_manager` address.\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"Abstract manageable contract that can be inherited by other contracts\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Contract module based on Ownable which provides a basic access control mechanism, where there is an owner and a manager that can be granted exclusive access to specific functions. By default, the owner is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. This module is used through inheritance. It will make available the modifier `onlyManager`, which can be applied to your functions to restrict their use to the manager.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":\"Manageable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Contract module based on Ownable which provides a basic access control mechanism, where there is an owner and a manager that can be granted exclusive access to specific functions. By default, the owner is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. This module is used through inheritance. It will make available the modifier `onlyManager`, which can be applied to your functions to restrict their use to the manager.",
            "version": 1
          }
        }
      },
      "@pooltogether/owner-manager-contracts/contracts/Ownable.sol": {
        "Ownable": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "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"
            }
          ],
          "devdoc": {
            "events": {
              "OwnershipOffered(address)": {
                "details": "Emitted when `_pendingOwner` has been changed.",
                "params": {
                  "pendingOwner": "new `_pendingOwner` address."
                }
              },
              "OwnershipTransferred(address,address)": {
                "details": "Emitted when `_owner` has been changed.",
                "params": {
                  "newOwner": "new `_owner` address.",
                  "previousOwner": "previous `_owner` address."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_initialOwner": "Initial owner of the contract."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "Abstract ownable contract that can be inherited by other contracts",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"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\"}],\"devdoc\":{\"events\":{\"OwnershipOffered(address)\":{\"details\":\"Emitted when `_pendingOwner` has been changed.\",\"params\":{\"pendingOwner\":\"new `_pendingOwner` address.\"}},\"OwnershipTransferred(address,address)\":{\"details\":\"Emitted when `_owner` has been changed.\",\"params\":{\"newOwner\":\"new `_owner` address.\",\"previousOwner\":\"previous `_owner` address.\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_initialOwner\":\"Initial owner of the contract.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"Abstract ownable contract that can be inherited by other contracts\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initializes the contract setting `_initialOwner` as the initial owner.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol:Ownable",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol:Ownable",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initializes the contract setting `_initialOwner` as the initial owner."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner is the deployer of the contract. The owner account is set through a two steps process.      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer The manager account needs to be set using {setManager}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
            "version": 1
          }
        }
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "RNGInterface": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "RandomNumberCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                }
              ],
              "name": "RandomNumberRequested",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getLastRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRequestFee",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "feeToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "requestFee",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                }
              ],
              "name": "isRequestComplete",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "isCompleted",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                }
              ],
              "name": "randomNumber",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "randomNum",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "requestRandomNumber",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "lockBlock",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "RandomNumberCompleted(uint32,uint256)": {
                "params": {
                  "randomNumber": "The random number produced by the 3rd-party service",
                  "requestId": "The indexed ID of the request used to get the results of the RNG service"
                }
              },
              "RandomNumberRequested(uint32,address)": {
                "params": {
                  "requestId": "The indexed ID of the request used to get the results of the RNG service",
                  "sender": "The indexed address of the sender of the request"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getLastRequestId()": {
                "returns": {
                  "requestId": "The last request id used in the last request"
                }
              },
              "getRequestFee()": {
                "returns": {
                  "feeToken": "The address of the token that is used to pay fees",
                  "requestFee": "The fee required to be paid to make a request"
                }
              },
              "isRequestComplete(uint32)": {
                "details": "For time-delayed requests, this function is used to check/confirm completion",
                "params": {
                  "requestId": "The ID of the request used to get the results of the RNG service"
                },
                "returns": {
                  "isCompleted": "True if the request has completed and a random number is available, false otherwise"
                }
              },
              "randomNumber(uint32)": {
                "params": {
                  "requestId": "The ID of the request used to get the results of the RNG service"
                },
                "returns": {
                  "randomNum": "The random number"
                }
              },
              "requestRandomNumber()": {
                "details": "Some services will complete the request immediately, others may have a time-delaySome services require payment in the form of a token, such as $LINK for Chainlink VRF",
                "returns": {
                  "lockBlock": "The block number at which the RNG service will start generating time-delayed randomness.  The calling contract should \"lock\" all activity until the result is available via the `requestId`",
                  "requestId": "The ID of the request used to get the results of the RNG service"
                }
              }
            },
            "title": "Random Number Generator Interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getLastRequestId()": "19c2b4c3",
              "getRequestFee()": "0d37b537",
              "isRequestComplete(uint32)": "3a19b9bc",
              "randomNumber(uint32)": "9d2a5f98",
              "requestRandomNumber()": "8678a7b2"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"RandomNumberCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RandomNumberRequested\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getLastRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRequestFee\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"feeToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"requestFee\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"}],\"name\":\"isRequestComplete\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isCompleted\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"}],\"name\":\"randomNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"randomNum\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"requestRandomNumber\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"lockBlock\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"RandomNumberCompleted(uint32,uint256)\":{\"params\":{\"randomNumber\":\"The random number produced by the 3rd-party service\",\"requestId\":\"The indexed ID of the request used to get the results of the RNG service\"}},\"RandomNumberRequested(uint32,address)\":{\"params\":{\"requestId\":\"The indexed ID of the request used to get the results of the RNG service\",\"sender\":\"The indexed address of the sender of the request\"}}},\"kind\":\"dev\",\"methods\":{\"getLastRequestId()\":{\"returns\":{\"requestId\":\"The last request id used in the last request\"}},\"getRequestFee()\":{\"returns\":{\"feeToken\":\"The address of the token that is used to pay fees\",\"requestFee\":\"The fee required to be paid to make a request\"}},\"isRequestComplete(uint32)\":{\"details\":\"For time-delayed requests, this function is used to check/confirm completion\",\"params\":{\"requestId\":\"The ID of the request used to get the results of the RNG service\"},\"returns\":{\"isCompleted\":\"True if the request has completed and a random number is available, false otherwise\"}},\"randomNumber(uint32)\":{\"params\":{\"requestId\":\"The ID of the request used to get the results of the RNG service\"},\"returns\":{\"randomNum\":\"The random number\"}},\"requestRandomNumber()\":{\"details\":\"Some services will complete the request immediately, others may have a time-delaySome services require payment in the form of a token, such as $LINK for Chainlink VRF\",\"returns\":{\"lockBlock\":\"The block number at which the RNG service will start generating time-delayed randomness.  The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\",\"requestId\":\"The ID of the request used to get the results of the RNG service\"}}},\"title\":\"Random Number Generator Interface\",\"version\":1},\"userdoc\":{\"events\":{\"RandomNumberCompleted(uint32,uint256)\":{\"notice\":\"Emitted when an existing request for a random number has been completed\"},\"RandomNumberRequested(uint32,address)\":{\"notice\":\"Emitted when a new request for a random number has been submitted\"}},\"kind\":\"user\",\"methods\":{\"getLastRequestId()\":{\"notice\":\"Gets the last request id used by the RNG service\"},\"getRequestFee()\":{\"notice\":\"Gets the Fee for making a Request against an RNG service\"},\"isRequestComplete(uint32)\":{\"notice\":\"Checks if the request for randomness from the 3rd-party service has completed\"},\"randomNumber(uint32)\":{\"notice\":\"Gets the random number produced by the 3rd-party service\"},\"requestRandomNumber()\":{\"notice\":\"Sends a request for a random number to the 3rd-party service\"}},\"notice\":\"Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":\"RNGInterface\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "RandomNumberCompleted(uint32,uint256)": {
                "notice": "Emitted when an existing request for a random number has been completed"
              },
              "RandomNumberRequested(uint32,address)": {
                "notice": "Emitted when a new request for a random number has been submitted"
              }
            },
            "kind": "user",
            "methods": {
              "getLastRequestId()": {
                "notice": "Gets the last request id used by the RNG service"
              },
              "getRequestFee()": {
                "notice": "Gets the Fee for making a Request against an RNG service"
              },
              "isRequestComplete(uint32)": {
                "notice": "Checks if the request for randomness from the 3rd-party service has completed"
              },
              "randomNumber(uint32)": {
                "notice": "Gets the random number produced by the 3rd-party service"
              },
              "requestRandomNumber()": {
                "notice": "Sends a request for a random number to the 3rd-party service"
              }
            },
            "notice": "Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/ControlledToken.sol": {
        "ControlledToken": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "decimals_",
                  "type": "uint8"
                },
                {
                  "internalType": "address",
                  "name": "_controller",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(string,string,uint8,address)": {
                "details": "Emitted when contract is deployed"
              }
            },
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "constructor": {
                "params": {
                  "_controller": "Address of the Controller contract for minting & burning",
                  "_name": "The name of the Token",
                  "_symbol": "The symbol for the Token",
                  "decimals_": "The number of decimals for the Token"
                }
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_operator": "Address of the operator performing the burn action via the controller contract",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "_amount": "Amount of tokens to mint",
                  "_user": "Address of the receiver of the minted tokens"
                }
              },
              "decimals()": {
                "details": "This value should be equal to the decimals of the token used to deposit into the pool.",
                "returns": {
                  "_0": "uint8 decimals."
                }
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "title": "PoolTogether V4 Controlled ERC20 Token",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_2318": {
                  "entryPoint": null,
                  "id": 2318,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3412": {
                  "entryPoint": null,
                  "id": 3412,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_727": {
                  "entryPoint": null,
                  "id": 727,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2374": {
                  "entryPoint": null,
                  "id": 2374,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 876,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory": {
                  "entryPoint": 1021,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_encode_string": {
                  "entryPoint": 1185,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed": {
                  "entryPoint": 1231,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 1292,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 1343,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 1404,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4371:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:94"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:94",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:94"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:94"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:686:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "855:738:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "902:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "911:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "904:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "904:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "904:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "876:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "885:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "872:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "872:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "897:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "941:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "931:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "966:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "984:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "988:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "980:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "980:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "992:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "970:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1021:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1030:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1033:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1023:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1023:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1017:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1046:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1089:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1100:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1085:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1085:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1109:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1056:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1056:61:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1046:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1126:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1152:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1163:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1148:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1148:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1130:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1196:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1205:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1208:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1198:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1182:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1192:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1176:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1221:73:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1275:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1260:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1260:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1286:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1231:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1231:63:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1221:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1303:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1326:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1337:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1316:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1316:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1307:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1389:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1398:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1401:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1391:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1391:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1391:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1374:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1381:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1370:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1360:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1360:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1353:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1350:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1414:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1424:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1414:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1438:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1474:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1442:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1545:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1554:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1557:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1547:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1547:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1547:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1500:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "1513:7:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1530:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1535:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1526:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1526:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1539:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1522:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1522:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1509:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1509:33:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1497:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1497:46:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1490:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1490:54:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1487:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1580:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "808:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "820:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "828:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "836:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "844:6:94",
                            "type": ""
                          }
                        ],
                        "src": "705:888:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1648:208:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1658:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1678:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1662:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1705:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1693:19:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1754:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1743:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1743:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1765:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1770:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1761:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1761:14:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1777:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:63:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1793:57:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1821:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1829:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1817:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1817:15:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1838:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1834:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1834:7:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1813:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1813:29:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:39:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1845:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:50:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1793:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1625:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1632:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1640:3:94",
                            "type": ""
                          }
                        ],
                        "src": "1598:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2074:276:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2084:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2096:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2107:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2092:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2092:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2084:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2120:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2165:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2176:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2161:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2161:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2154:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2154:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2154:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2219:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2224:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2197:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2251:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2262:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2247:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2247:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2267:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2240:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2240:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2240:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2294:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2305:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2290:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2290:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:6:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2331:3:94",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2336:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2327:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2327:11:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2340:1:94",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2323:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2323:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2283:61:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2011:9:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2022:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2030:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2038:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2046:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2054:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2065:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1861:489:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2548:268:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2565:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2576:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2558:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:59:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2643:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:45:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2678:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2663:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2663:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2695:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2683:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2683:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2656:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2656:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2656:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2715:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2741:6:94"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2749:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2776:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2787:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2772:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2772:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2804:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2792:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2765:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2765:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2765:45:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2501:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2512:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2520:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2528:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2539:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2355:461:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2995:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3012:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3023:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3005:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3005:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3005:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3057:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3042:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3042:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3062:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3035:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3035:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3085:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3096:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3081:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3081:18:94"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3101:34:94",
                                    "type": "",
                                    "value": "ControlledToken/decimals-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3074:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3074:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3145:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3168:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3153:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3153:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3145:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2972:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2986:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2821:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3356:233:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3384:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3407:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3418:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3403:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3403:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3423:2:94",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:94"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:34:94",
                                    "type": "",
                                    "value": "ControlledToken/controller-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3517:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3528:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3513:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3513:18:94"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3533:13:94",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3506:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3506:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3506:41:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3556:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3568:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3579:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3556:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3347:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3182:407:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3666:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3726:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3751:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "3756:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3747:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3747:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3770:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3775:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3766:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3766:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3760:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3760:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3740:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3740:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3687:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3698:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3700:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3712:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3680:3:94",
                                "statements": []
                              },
                              "src": "3676:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3828:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "3833:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3824:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3824:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3842:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3798:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "3625:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "3630:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3635:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3594:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3912:325:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3936:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3939:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3932:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3932:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3983:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4030:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4032:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4032:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4010:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4003:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4000:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4120:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4141:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4148:3:94",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4153:10:94",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "4144:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4144:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4134:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4134:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4134:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4185:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4188:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4213:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4216:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4206:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4206:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4099:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4107:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4096:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4096:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4070:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "3892:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3901:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3857:380:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4274:95:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4291:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4298:3:94",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4303:10:94",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4294:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4294:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4284:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4331:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4334:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4324:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4324:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4324:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4358:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4348:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4348:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4348:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4242:127:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n        let value_1 := mload(add(headStart, 96))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        let tail_1 := abi_encode_string(value0, add(headStart, 96))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_string(value1, tail_1)\n        mstore(add(headStart, 64), and(value2, 0xff))\n    }\n    function abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"ControlledToken/decimals-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"ControlledToken/controller-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101a06040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140523480156200003757600080fd5b5060405162001c2138038062001c218339810160408190526200005a91620003fd565b6040518060400160405280601c81526020017f506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e0000000081525080604051806040016040528060018152602001603160f81b81525086868160039080519060200190620000c5929190620002c6565b508051620000db906004906020840190620002c6565b5050825160208085019190912083518483012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091935091906080523060601b60c0526101205250505050506001600160a01b038116620001e35760405162461bcd60e51b815260206004820152602b60248201527f436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a60448201526a65726f2d6164647265737360a81b60648201526084015b60405180910390fd5b6001600160601b0319606082901b166101605260ff8216620002485760405162461bcd60e51b815260206004820181905260248201527f436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f6044820152606401620001da565b7fff0000000000000000000000000000000000000000000000000000000000000060f883901b16610180526040516001600160a01b038216907fde72fc29218361f33503847e6f32be813f9ec92fc7c772bb59e46675c890fd0e90620002b490879087908790620004cf565b60405180910390a25050505062000592565b828054620002d4906200053f565b90600052602060002090601f016020900481019282620002f8576000855562000343565b82601f106200031357805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034357825182559160200191906001019062000326565b506200035192915062000355565b5090565b5b8082111562000351576000815560010162000356565b600082601f8301126200037e57600080fd5b81516001600160401b03808211156200039b576200039b6200057c565b604051601f8301601f19908116603f01168101908282118183101715620003c657620003c66200057c565b81604052838152866020858801011115620003e057600080fd5b620003f38460208301602089016200050c565b9695505050505050565b600080600080608085870312156200041457600080fd5b84516001600160401b03808211156200042c57600080fd5b6200043a888389016200036c565b955060208701519150808211156200045157600080fd5b5062000460878288016200036c565b935050604085015160ff811681146200047857600080fd5b60608601519092506001600160a01b03811681146200049657600080fd5b939692955090935050565b60008151808452620004bb8160208601602086016200050c565b601f01601f19169290920160200192915050565b606081526000620004e46060830186620004a1565b8281036020840152620004f88186620004a1565b91505060ff83166040830152949350505050565b60005b83811015620005295781810151838201526020016200050f565b8381111562000539576000848401525b50505050565b600181811c908216806200055457607f821691505b602082108114156200057657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160601c60e0516101005161012051610140516101605160601c6101805160f81c6116006200062160003960006101a80152600081816102e3015281816104df01528181610565015261065e015260006107f601526000610d0001526000610d4f01526000610d2a01526000610c8301526000610cad01526000610cd701526116006000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c806370a08231116100b2578063a457c2d711610081578063d505accf11610066578063d505accf14610292578063dd62ed3e146102a5578063f77c4791146102de57600080fd5b8063a457c2d71461026c578063a9059cbb1461027f57600080fd5b806370a08231146102155780637ecebe001461023e57806390596dd11461025157806395d89b411461026457600080fd5b8063313ce5671161010957806339509351116100ee57806339509351146101da5780635d7b0758146101ed578063631b5dfb1461020257600080fd5b8063313ce567146101a15780633644e515146101d257600080fd5b806306fdde031461013b578063095ea7b31461015957806318160ddd1461017c57806323b872dd1461018e575b600080fd5b61014361031d565b60405161015091906114e5565b60405180910390f35b61016c6101673660046114bb565b6103af565b6040519015158152602001610150565b6002545b604051908152602001610150565b61016c61019c36600461140c565b6103c5565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610150565b610180610489565b61016c6101e83660046114bb565b610498565b6102006101fb3660046114bb565b6104d4565b005b61020061021036600461140c565b61055a565b6101806102233660046113b7565b6001600160a01b031660009081526020819052604090205490565b61018061024c3660046113b7565b610633565b61020061025f3660046114bb565b610653565b6101436106d5565b61016c61027a3660046114bb565b6106e4565b61016c61028d3660046114bb565b610795565b6102006102a0366004611448565b6107a2565b6101806102b33660046113d9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610150565b60606003805461032c90611569565b80601f016020809104026020016040519081016040528092919081815260200182805461035890611569565b80156103a55780601f1061037a576101008083540402835291602001916103a5565b820191906000526020600020905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b60006103bc338484610906565b50600192915050565b60006103d2848484610a5e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61047e8533858403610906565b506001949350505050565b6000610493610c76565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bc9185906104cf90869061153a565b610906565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461054c5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610d9d565b5050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146105d25760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b816001600160a01b0316836001600160a01b031614610624576001600160a01b0382811660009081526001602090815260408083209387168352929052205461062490839085906104cf908590611552565b61062e8282610e7c565b505050565b6001600160a01b0381166000908152600560205260408120545b92915050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146106cb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610e7c565b60606004805461032c90611569565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561077e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610468565b61078b3385858403610906565b5060019392505050565b60006103bc338484610a5e565b834211156107f25760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610468565b60007f00000000000000000000000000000000000000000000000000000000000000008888886108218c611001565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061087c82611029565b9050600061088c82878787611092565b9050896001600160a01b0316816001600160a01b0316146108ef5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610468565b6108fa8a8a8a610906565b50505050505050505050565b6001600160a01b0383166109815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0382166109fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ada5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b038216610b565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03831660009081526020819052604090205481811015610be55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c1c90849061153a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c6891815260200190565b60405180910390a350505050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610ccf57507f000000000000000000000000000000000000000000000000000000000000000046145b15610cf957507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b038216610df35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610468565b8060026000828254610e05919061153a565b90915550506001600160a01b03821660009081526020819052604081208054839290610e3290849061153a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ef85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03821660009081526020819052604090205481811015610f875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fb6908490611552565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061064d611036610c76565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006110a3878787876110ba565b915091506110b0816111a7565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156110f1575060009050600361119e565b8460ff16601b1415801561110957508460ff16601c14155b1561111a575060009050600461119e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561116e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111975760006001925092505061119e565b9150600090505b94509492505050565b60008160048111156111bb576111bb6115b4565b14156111c45750565b60018160048111156111d8576111d86115b4565b14156112265760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610468565b600281600481111561123a5761123a6115b4565b14156112885760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610468565b600381600481111561129c5761129c6115b4565b14156113105760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6004816004811115611324576113246115b4565b14156113985760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b50565b80356001600160a01b03811681146113b257600080fd5b919050565b6000602082840312156113c957600080fd5b6113d28261139b565b9392505050565b600080604083850312156113ec57600080fd5b6113f58361139b565b91506114036020840161139b565b90509250929050565b60008060006060848603121561142157600080fd5b61142a8461139b565b92506114386020850161139b565b9150604084013590509250925092565b600080600080600080600060e0888a03121561146357600080fd5b61146c8861139b565b965061147a6020890161139b565b95506040880135945060608801359350608088013560ff8116811461149e57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156114ce57600080fd5b6114d78361139b565b946020939093013593505050565b600060208083528351808285015260005b81811015611512578581018301518582016040015282016114f6565b81811115611524576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561154d5761154d61159e565b500190565b6000828210156115645761156461159e565b500390565b600181811c9082168061157d57607f821691505b6020821081141561102357634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220965170745a93c4d4c337b301e4be47cfc1448a6ace202900d7833846aad35f7d64736f6c63430008060033",
              "opcodes": "PUSH2 0x1A0 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x140 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1C21 CODESIZE SUB DUP1 PUSH3 0x1C21 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x5A SWAP2 PUSH3 0x3FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1C DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x506F6F6C546F67657468657220436F6E74726F6C6C6564546F6B656E00000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP DUP7 DUP7 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xC5 SWAP3 SWAP2 SWAP1 PUSH3 0x2C6 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0xDB SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x2C6 JUMP JUMPDEST POP POP DUP3 MLOAD PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP5 DUP4 ADD KECCAK256 PUSH1 0xE0 DUP3 SWAP1 MSTORE PUSH2 0x100 DUP2 SWAP1 MSTORE CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP2 DUP9 ADD DUP2 SWAP1 MSTORE DUP2 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD SWAP5 SWAP1 SWAP5 MSTORE ADDRESS DUP2 DUP5 ADD MSTORE DUP2 MLOAD DUP1 DUP3 SUB SWAP1 SWAP4 ADD DUP4 MSTORE PUSH1 0xC0 ADD SWAP1 MSTORE DUP1 MLOAD SWAP5 ADD SWAP4 SWAP1 SWAP4 KECCAK256 SWAP2 SWAP4 POP SWAP2 SWAP1 PUSH1 0x80 MSTORE ADDRESS PUSH1 0x60 SHL PUSH1 0xC0 MSTORE PUSH2 0x120 MSTORE POP POP POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x1E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F636F6E74726F6C6C65722D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x65726F2D61646472657373 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH2 0x160 MSTORE PUSH1 0xFF DUP3 AND PUSH3 0x248 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F646563696D616C732D67742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x1DA JUMP JUMPDEST PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 PUSH1 0xF8 DUP4 SWAP1 SHL AND PUSH2 0x180 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xDE72FC29218361F33503847E6F32BE813F9EC92FC7C772BB59E46675C890FD0E SWAP1 PUSH3 0x2B4 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH3 0x4CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH3 0x592 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2D4 SWAP1 PUSH3 0x53F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x2F8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x343 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x313 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x343 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x343 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x343 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x326 JUMP JUMPDEST POP PUSH3 0x351 SWAP3 SWAP2 POP PUSH3 0x355 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x351 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x356 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x37E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x39B JUMPI PUSH3 0x39B PUSH3 0x57C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x3C6 JUMPI PUSH3 0x3C6 PUSH3 0x57C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x3E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x3F3 DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x50C JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x414 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x42C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x43A DUP9 DUP4 DUP10 ADD PUSH3 0x36C JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x451 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x460 DUP8 DUP3 DUP9 ADD PUSH3 0x36C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x478 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x496 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0x4BB DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0x50C JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH3 0x4E4 PUSH1 0x60 DUP4 ADD DUP7 PUSH3 0x4A1 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x4F8 DUP2 DUP7 PUSH3 0x4A1 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xFF DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x529 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x50F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x539 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x554 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x576 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x160 MLOAD PUSH1 0x60 SHR PUSH2 0x180 MLOAD PUSH1 0xF8 SHR PUSH2 0x1600 PUSH3 0x621 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0x1A8 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x2E3 ADD MSTORE DUP2 DUP2 PUSH2 0x4DF ADD MSTORE DUP2 DUP2 PUSH2 0x565 ADD MSTORE PUSH2 0x65E ADD MSTORE PUSH1 0x0 PUSH2 0x7F6 ADD MSTORE PUSH1 0x0 PUSH2 0xD00 ADD MSTORE PUSH1 0x0 PUSH2 0xD4F ADD MSTORE PUSH1 0x0 PUSH2 0xD2A ADD MSTORE PUSH1 0x0 PUSH2 0xC83 ADD MSTORE PUSH1 0x0 PUSH2 0xCAD ADD MSTORE PUSH1 0x0 PUSH2 0xCD7 ADD MSTORE PUSH2 0x1600 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x136 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x292 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2A5 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x2DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x26C JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x27F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x215 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x23E JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x264 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1DA JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x1ED JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x143 PUSH2 0x31D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x150 SWAP2 SWAP1 PUSH2 0x14E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x19C CALLDATASIZE PUSH1 0x4 PUSH2 0x140C JUMP JUMPDEST PUSH2 0x3C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x489 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x1E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x498 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x1FB CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x200 PUSH2 0x210 CALLDATASIZE PUSH1 0x4 PUSH2 0x140C JUMP JUMPDEST PUSH2 0x55A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x223 CALLDATASIZE PUSH1 0x4 PUSH2 0x13B7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x24C CALLDATASIZE PUSH1 0x4 PUSH2 0x13B7 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x25F CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x653 JUMP JUMPDEST PUSH2 0x143 PUSH2 0x6D5 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x27A CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x6E4 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x28D CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x795 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1448 JUMP JUMPDEST PUSH2 0x7A2 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x13D9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x305 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1569 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x358 SWAP1 PUSH2 0x1569 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x388 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D2 DUP5 DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x471 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x47E DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x493 PUSH2 0xC76 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x3BC SWAP2 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP7 SWAP1 PUSH2 0x153A JUMP JUMPDEST PUSH2 0x906 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x54C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xD9D JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x5D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x624 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0x624 SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP6 SWAP1 PUSH2 0x1552 JUMP JUMPDEST PUSH2 0x62E DUP3 DUP3 PUSH2 0xE7C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x6CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xE7C JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1569 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x77E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x78B CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x7F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x821 DUP13 PUSH2 0x1001 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x87C DUP3 PUSH2 0x1029 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x88C DUP3 DUP8 DUP8 DUP8 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x8FA DUP11 DUP11 DUP11 PUSH2 0x906 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xADA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB56 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xBE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xC1C SWAP1 DUP5 SWAP1 PUSH2 0x153A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0xCCF JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0xCF9 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDF3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE05 SWAP2 SWAP1 PUSH2 0x153A JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xE32 SWAP1 DUP5 SWAP1 PUSH2 0x153A JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xF87 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xFB6 SWAP1 DUP5 SWAP1 PUSH2 0x1552 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x64D PUSH2 0x1036 PUSH2 0xC76 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x10A3 DUP8 DUP8 DUP8 DUP8 PUSH2 0x10BA JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x10B0 DUP2 PUSH2 0x11A7 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x10F1 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x119E JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1109 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x111A JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x119E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x116E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1197 JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x119E JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x11BB JUMPI PUSH2 0x11BB PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x11C4 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x11D8 JUMPI PUSH2 0x11D8 PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1226 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x123A JUMPI PUSH2 0x123A PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1288 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x129C JUMPI PUSH2 0x129C PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1310 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1324 JUMPI PUSH2 0x1324 PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1398 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x13B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13D2 DUP3 PUSH2 0x139B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13F5 DUP4 PUSH2 0x139B JUMP JUMPDEST SWAP2 POP PUSH2 0x1403 PUSH1 0x20 DUP5 ADD PUSH2 0x139B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x142A DUP5 PUSH2 0x139B JUMP JUMPDEST SWAP3 POP PUSH2 0x1438 PUSH1 0x20 DUP6 ADD PUSH2 0x139B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x146C DUP9 PUSH2 0x139B JUMP JUMPDEST SWAP7 POP PUSH2 0x147A PUSH1 0x20 DUP10 ADD PUSH2 0x139B JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x149E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14D7 DUP4 PUSH2 0x139B JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1512 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x14F6 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1524 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x154D JUMPI PUSH2 0x154D PUSH2 0x159E JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1564 JUMPI PUSH2 0x1564 PUSH2 0x159E JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x157D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1023 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP7 MLOAD PUSH17 0x745A93C4D4C337B301E4BE47CFC1448A6A 0xCE KECCAK256 0x29 STOP 0xD7 DUP4 CODESIZE CHAINID 0xAA 0xD3 0x5F PUSH30 0x64736F6C6343000806003300000000000000000000000000000000000000 ",
              "sourceMap": "342:3626:21:-:0;;;1129:95:4;1076:148;;1500:503:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1456:52:4;;;;;;;;;;;;;;;;;1495:4;2455:602:14;;;;;;;;;;;;;-1:-1:-1;;;2455:602:14;;;1682:5:21;1689:7;2037:5:1;2029;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2052:17:1;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2541:22:14;;;;;;;;;;2597:25;;;;;;2778;;;;2813:31;;;;2873:13;2854:32;;;;-1:-1:-1;3633:73:14;;2651:117;3633:73;;;2120:25:94;;;2161:18;;;2154:34;;;-1:-1:-1;2204:18:94;;2197:34;;;2247:18;;;2240:34;;;;3700:4:14;2290:19:94;;;2283:61;3633:73:14;;;;;;;;;;2092:19:94;;3633:73:14;;3623:84;;;;;;;;2541:22;;-1:-1:-1;2597:25:14;2651:117;2896:85;;3014:4;2991:28;;;;3029:21;;-1:-1:-1;;;;;;;;;;1716:34:21;::::2;1708:90;;;::::0;-1:-1:-1;;;1708:90:21;;3384:2:94;1708:90:21::2;::::0;::::2;3366:21:94::0;3423:2;3403:18;;;3396:30;3462:34;3442:18;;;3435:62;-1:-1:-1;;;3513:18:94;;;3506:41;3564:19;;1708:90:21::2;;;;;;;;;-1:-1:-1::0;;;;;;1808:24:21::2;::::0;;;;::::2;::::0;1851:13:::2;::::0;::::2;1843:58;;;::::0;-1:-1:-1;;;1843:58:21;;3023:2:94;1843:58:21::2;::::0;::::2;3005:21:94::0;;;3042:18;;;3035:30;3101:34;3081:18;;;3074:62;3153:18;;1843:58:21::2;2995:182:94::0;1843:58:21::2;1911:21:::0;::::2;::::0;;;;::::2;::::0;1948:48:::2;::::0;-1:-1:-1;;;;;1948:48:21;::::2;::::0;::::2;::::0;::::2;::::0;1957:5;;1964:7;;1923:9;;1948:48:::2;:::i;:::-;;;;;;;;1500:503:::0;;;;342:3626;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;342:3626:21;;;-1:-1:-1;342:3626:21;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:94;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:94;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:94;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:2;;;594:1;591;584:12;543:2;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;78:622;-1:-1:-1;;;;;;78:622:94:o;705:888::-;820:6;828;836;844;897:3;885:9;876:7;872:23;868:33;865:2;;;914:1;911;904:12;865:2;941:16;;-1:-1:-1;;;;;1006:14:94;;;1003:2;;;1033:1;1030;1023:12;1003:2;1056:61;1109:7;1100:6;1089:9;1085:22;1056:61;:::i;:::-;1046:71;;1163:2;1152:9;1148:18;1142:25;1126:41;;1192:2;1182:8;1179:16;1176:2;;;1208:1;1205;1198:12;1176:2;;1231:63;1286:7;1275:8;1264:9;1260:24;1231:63;:::i;:::-;1221:73;;;1337:2;1326:9;1322:18;1316:25;1381:4;1374:5;1370:16;1363:5;1360:27;1350:2;;1401:1;1398;1391:12;1350:2;1474;1459:18;;1453:25;1424:5;;-1:-1:-1;;;;;;1509:33:94;;1497:46;;1487:2;;1557:1;1554;1547:12;1487:2;855:738;;;;-1:-1:-1;855:738:94;;-1:-1:-1;;855:738:94:o;1598:258::-;1640:3;1678:5;1672:12;1705:6;1700:3;1693:19;1721:63;1777:6;1770:4;1765:3;1761:14;1754:4;1747:5;1743:16;1721:63;:::i;:::-;1838:2;1817:15;-1:-1:-1;;1813:29:94;1804:39;;;;1845:4;1800:50;;1648:208;-1:-1:-1;;1648:208:94:o;2355:461::-;2576:2;2565:9;2558:21;2539:4;2602:45;2643:2;2632:9;2628:18;2620:6;2602:45;:::i;:::-;2695:9;2687:6;2683:22;2678:2;2667:9;2663:18;2656:50;2723:33;2749:6;2741;2723:33;:::i;:::-;2715:41;;;2804:4;2796:6;2792:17;2787:2;2776:9;2772:18;2765:45;2548:268;;;;;;:::o;3594:258::-;3666:1;3676:113;3690:6;3687:1;3684:13;3676:113;;;3766:11;;;3760:18;3747:11;;;3740:39;3712:2;3705:10;3676:113;;;3807:6;3804:1;3801:13;3798:2;;;3842:1;3833:6;3828:3;3824:16;3817:27;3798:2;;3647:205;;;:::o;3857:380::-;3936:1;3932:12;;;;3979;;;4000:2;;4054:4;4046:6;4042:17;4032:27;;4000:2;4107;4099:6;4096:14;4076:18;4073:38;4070:2;;;4153:10;4148:3;4144:20;4141:1;4134:31;4188:4;4185:1;4178:15;4216:4;4213:1;4206:15;4070:2;;3912:325;;;:::o;4242:127::-;4303:10;4298:3;4294:20;4291:1;4284:31;4334:4;4331:1;4324:15;4358:4;4355:1;4348:15;4274:95;342:3626:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_827": {
                  "entryPoint": 1161,
                  "id": 827,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 2310,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_573": {
                  "entryPoint": null,
                  "id": 573,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2374": {
                  "entryPoint": null,
                  "id": 2374,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_517": {
                  "entryPoint": 3708,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_2347": {
                  "entryPoint": 3190,
                  "id": 2347,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_2390": {
                  "entryPoint": 4137,
                  "id": 2390,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_445": {
                  "entryPoint": 3485,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_1560": {
                  "entryPoint": null,
                  "id": 1560,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_throwError_1911": {
                  "entryPoint": 4519,
                  "id": 1911,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transfer_389": {
                  "entryPoint": 2654,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_856": {
                  "entryPoint": 4097,
                  "id": 856,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 943,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@controllerBurnFrom_3481": {
                  "entryPoint": 1370,
                  "id": 3481,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@controllerBurn_3446": {
                  "entryPoint": 1619,
                  "id": 3446,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerMint_3429": {
                  "entryPoint": 1236,
                  "id": 3429,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controller_3327": {
                  "entryPoint": null,
                  "id": 3327,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@current_1588": {
                  "entryPoint": null,
                  "id": 1588,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_3491": {
                  "entryPoint": null,
                  "id": 3491,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 1764,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 1176,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increment_1602": {
                  "entryPoint": null,
                  "id": 1602,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@name_94": {
                  "entryPoint": 797,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@nonces_816": {
                  "entryPoint": 1587,
                  "id": 816,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@permit_800": {
                  "entryPoint": 1954,
                  "id": 800,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@recover_2177": {
                  "entryPoint": 4242,
                  "id": 2177,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 1749,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_2236": {
                  "entryPoint": null,
                  "id": 2236,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 965,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 1941,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2144": {
                  "entryPoint": 4282,
                  "id": 2144,
                  "parameterSlots": 4,
                  "returnSlots": 2
                },
                "abi_decode_address": {
                  "entryPoint": 5019,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 5047,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 5081,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 5132,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 5192,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 5307,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5349,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5434,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5458,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 5481,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5534,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x21": {
                  "entryPoint": 5556,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:13267:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:94",
                            "type": ""
                          }
                        ],
                        "src": "406:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:94",
                            "type": ""
                          }
                        ],
                        "src": "671:328:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1174:523:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1221:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1230:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1233:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1223:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1223:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1195:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1191:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1191:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1216:3:94",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1246:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1256:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1246:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1294:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1327:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1338:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1323:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1323:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1304:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1304:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1294:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1351:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1378:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1389:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1374:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1374:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1361:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1351:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1429:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1440:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1425:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1425:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1453:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1483:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1494:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1479:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1479:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1466:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1466:33:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1457:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1547:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1556:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1559:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1549:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1549:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1549:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1521:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1532:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1539:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1528:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1528:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1518:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1518:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1511:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1511:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1508:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1572:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1582:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1572:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1596:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1623:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1634:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1619:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1619:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1596:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1648:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1675:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1686:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1671:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1671:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1658:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1658:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1648:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1092:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1103:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1115:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1123:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1131:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1139:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1147:6:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "1155:6:94",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "1163:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1004:693:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1789:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1835:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1844:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1847:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1837:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1837:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1837:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1810:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1819:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1806:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1806:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1831:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1802:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1802:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1799:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1860:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1889:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1870:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1870:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1860:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1908:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1935:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1946:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1931:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1931:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1918:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1918:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1908:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1747:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1758:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1770:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1778:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1702:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2209:196:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2226:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2231:66:94",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2219:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2219:79:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2219:79:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2318:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2323:1:94",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2314:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2314:11:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2327:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2307:27:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2307:27:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2354:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2359:2:94",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2350:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2350:12:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2364:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2343:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2343:28:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2343:28:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2380:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2391:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:2:94",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2387:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2387:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "2380:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2177:3:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2182:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2190:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2201:3:94",
                            "type": ""
                          }
                        ],
                        "src": "1961:444:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2511:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2521:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2533:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2544:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2529:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2529:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2521:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2563:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2578:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2586:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2574:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2574:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2556:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2556:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2556:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2480:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2491:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2502:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2410:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2736:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2746:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2758:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2769:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2754:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2754:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2746:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2788:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2813:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2806:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2806:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2799:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2799:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2781:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2781:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2781:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2705:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2716:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2727:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2641:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2934:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2944:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2956:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2967:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2952:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2952:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2944:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2986:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2997:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2979:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2979:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2979:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2903:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2914:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2925:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2833:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3256:373:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3266:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3278:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3289:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3274:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3274:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3266:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3309:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3320:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3302:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3302:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3302:25:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3336:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3346:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3340:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3408:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3419:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3404:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3404:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3428:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3436:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3424:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3424:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3397:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3397:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3397:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3460:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3471:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3456:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3456:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3480:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3488:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3476:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3476:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3449:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3449:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3449:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3512:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3523:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3508:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3508:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3528:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3501:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3501:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3501:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:19:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3572:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:35:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3599:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3610:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3595:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3595:19:94"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "3616:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3588:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3588:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3588:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3185:9:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "3196:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3204:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3212:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3220:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3228:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3236:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3247:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3015:614:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3847:299:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3857:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3869:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3880:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3865:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3865:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3857:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3900:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3911:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3893:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3893:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3893:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3938:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3949:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3934:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3934:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3954:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3927:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3927:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3927:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3981:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3992:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3977:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3977:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3970:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3970:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3970:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4024:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4035:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4020:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4020:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4040:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4013:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4013:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4013:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4067:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4078:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4063:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4063:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "4088:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4096:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4084:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4084:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4056:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4056:84:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4056:84:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3784:9:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3795:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3803:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3811:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3819:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3827:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3838:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3634:512:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4332:217:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4342:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4354:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4365:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4350:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4350:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4342:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4385:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4396:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4378:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4378:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4378:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4423:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4434:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4419:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4419:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4443:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4451:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4439:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4439:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4412:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4412:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4412:45:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4477:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4488:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4473:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4473:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4493:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4466:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4520:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4531:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4516:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4516:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4536:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4509:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4509:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4509:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4277:9:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4288:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4296:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4304:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4312:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4323:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4151:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4675:535:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4685:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4695:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4689:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4713:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4724:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4706:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4706:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4706:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4736:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4750:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4750:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4740:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4783:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4794:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4779:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4779:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4799:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4772:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4772:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4772:34:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4815:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4824:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4819:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4884:90:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4913:9:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4924:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4909:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4909:17:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4928:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4905:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4905:26:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4947:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4955:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4943:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4943:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4959:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4939:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4939:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4933:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4933:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4898:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4898:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4898:66:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4845:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4848:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4842:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4842:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4856:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4858:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4867:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4870:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4863:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4863:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4858:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4838:3:94",
                                "statements": []
                              },
                              "src": "4834:140:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5008:66:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5037:9:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5048:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "5033:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5033:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "5057:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5029:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5029:31:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5062:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5022:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5022:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5022:42:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4989:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4992:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4986:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4986:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4983:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5083:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5099:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5118:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5126:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5114:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5114:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5131:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5110:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5110:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5095:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5095:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5201:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5091:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5091:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5083:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4644:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4655:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4666:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4554:656:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5389:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5406:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5417:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5399:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5399:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5399:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5440:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5451:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5436:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5436:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5456:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5429:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5429:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5429:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5479:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5490:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5475:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5475:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5495:26:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5468:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5468:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5468:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5531:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5543:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5554:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5539:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5539:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5531:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5366:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5380:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5215:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5742:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5759:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5770:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5752:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5752:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5752:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5793:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5804:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5789:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5789:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5809:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5782:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5782:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5782:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5832:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5843:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5828:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5828:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5848:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5821:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5821:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5821:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5903:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5914:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5899:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5899:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5919:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5892:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5892:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5892:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5934:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5946:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5957:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5942:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5942:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5934:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5719:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5733:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5568:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6146:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6163:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6174:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6156:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6156:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6156:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6197:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6208:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6193:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6193:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6213:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6186:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6186:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6186:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6236:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6247:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6232:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6232:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6252:34:94",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6225:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6225:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6225:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6307:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6318:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6303:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6303:18:94"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6323:4:94",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6296:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6296:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6296:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6337:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6349:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6360:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6345:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6345:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6337:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6123:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6137:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5972:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6549:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6566:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6577:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6559:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6559:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6559:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6600:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6611:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6596:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6596:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6616:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6589:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6589:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6589:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6639:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6650:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6635:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6635:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6655:33:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6628:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6628:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6628:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6698:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6710:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6721:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6706:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6706:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6698:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6526:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6540:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6375:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6909:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6926:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6937:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6919:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6919:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6919:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6960:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6971:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6956:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6956:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6976:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6949:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6949:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6949:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6999:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7010:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6995:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6995:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7015:34:94",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6988:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6988:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6988:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7070:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7081:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7066:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7066:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7086:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7059:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7059:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7059:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7100:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7112:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7123:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7108:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7108:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7100:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6886:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6900:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6735:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7312:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7329:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7340:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7322:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7322:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7322:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7363:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7374:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7359:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7359:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7379:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7352:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7352:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7352:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7402:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7413:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7398:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7398:18:94"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7418:31:94",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7391:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7391:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7391:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7459:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7471:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7482:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7467:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7467:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7459:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7289:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7303:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7138:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7670:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7687:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7698:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7680:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7680:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7680:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7721:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7732:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7717:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7717:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7737:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7710:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7710:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7710:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7760:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7771:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7756:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7756:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7776:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7749:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7749:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7749:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7831:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7842:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7827:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7827:18:94"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7847:8:94",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7820:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7820:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7820:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7865:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7877:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7888:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7873:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7873:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7865:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7647:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7661:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7496:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8077:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8094:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8105:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8087:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8087:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8087:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8128:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8139:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8124:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8124:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8144:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8117:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8117:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8117:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8167:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8178:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8163:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8163:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8183:34:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8156:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8156:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8156:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8238:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8249:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8234:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8234:18:94"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8254:4:94",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8227:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8227:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8227:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8268:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8280:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8291:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8276:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8268:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8054:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8068:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7903:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8480:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8497:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8508:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8490:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8490:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8490:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8531:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8542:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8527:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8527:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8547:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8520:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8520:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8520:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8570:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8581:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8566:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8566:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8586:34:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8559:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8559:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8559:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8641:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8652:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8637:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8637:18:94"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8657:4:94",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8630:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8630:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8630:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8671:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8683:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8694:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8679:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8679:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8671:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8457:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8471:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8306:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8883:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8900:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8911:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8893:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8893:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8893:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8934:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8945:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8930:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8930:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8950:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8923:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8923:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8923:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8973:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8984:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8969:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8969:18:94"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8989:32:94",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8962:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8962:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8962:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9031:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9043:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9054:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9039:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9039:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9031:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8860:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8874:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8709:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9242:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9259:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9270:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9252:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9252:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9252:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9293:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9304:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9289:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9289:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9309:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9282:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9282:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9282:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9332:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9343:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9328:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9328:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9348:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9321:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9321:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9321:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9403:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9414:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9399:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9399:18:94"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9419:10:94",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9392:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9392:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9392:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9439:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9451:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9462:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9447:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9447:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9439:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9219:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9233:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9068:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9651:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9668:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9679:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9661:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9661:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9661:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9702:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9713:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9698:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9698:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9718:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9691:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9691:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9691:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9741:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9752:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9737:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9737:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9757:34:94",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9730:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9730:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9730:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9812:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9823:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9808:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9808:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9828:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9801:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9801:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9801:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9841:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9853:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9864:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9849:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9849:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9841:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9628:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9642:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9477:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10053:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10070:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10081:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10063:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10063:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10063:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10104:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10115:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10100:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10100:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10120:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10093:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10093:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10093:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10143:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10154:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10139:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10139:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10159:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10132:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10132:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10132:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10214:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10225:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10210:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10210:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10230:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10203:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10203:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10203:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10247:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10259:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10270:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10255:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10255:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10247:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10030:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10044:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9879:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10459:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10476:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10487:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10469:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10469:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10469:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10510:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10521:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10506:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10506:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10526:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10499:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10499:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10499:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10549:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10560:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10545:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10545:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10565:34:94",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10538:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10538:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10538:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10620:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10631:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10616:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10616:18:94"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10636:6:94",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10609:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10609:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10609:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10652:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10664:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10675:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10660:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10660:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10652:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10436:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10450:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10285:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10864:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10881:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10892:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10874:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10874:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10874:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10915:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10926:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10911:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10911:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10931:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10904:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10904:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10904:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10954:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10965:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10950:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10950:18:94"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10970:33:94",
                                    "type": "",
                                    "value": "ControlledToken/only-controller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10943:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10943:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10943:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11013:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11025:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11036:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11021:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11021:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11013:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10841:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10855:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10690:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11224:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11241:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11252:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11234:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11234:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11234:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11275:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11286:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11271:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11271:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11291:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11264:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11264:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11264:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11314:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11325:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11310:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11310:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11330:34:94",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11303:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11303:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11303:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11385:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11396:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11381:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11381:18:94"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11401:7:94",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11374:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11374:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11374:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11418:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11430:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11441:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11426:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11426:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11418:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11201:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11215:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11050:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11630:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11647:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11658:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11640:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11640:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11640:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11681:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11692:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11677:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11677:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11697:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11670:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11670:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11670:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11720:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11731:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11716:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11716:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11736:33:94",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11709:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11709:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11709:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11779:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11791:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11802:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11787:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11787:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11779:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11607:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11621:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11456:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11917:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11927:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11939:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11950:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11935:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11935:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11927:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11969:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11980:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11962:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11962:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11962:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11886:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11897:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11908:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11816:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12095:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12105:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12117:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12128:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12113:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12113:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12105:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12147:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12162:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12170:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12158:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12158:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12140:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12140:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12140:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12064:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12075:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12086:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11998:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12235:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12262:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12264:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12264:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12264:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12251:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12258:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12254:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12248:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12248:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12245:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12293:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12304:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12307:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12300:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12300:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12293:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12218:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12221:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12227:3:94",
                            "type": ""
                          }
                        ],
                        "src": "12187:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12369:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12391:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12393:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12393:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12393:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12385:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12388:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12382:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12382:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12379:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12422:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12434:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12437:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "12430:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12430:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "12422:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12351:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12354:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "12360:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12320:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12505:382:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12515:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12529:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "12532:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "12525:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12525:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "12515:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12546:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "12576:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12582:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12572:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12572:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "12550:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12623:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12625:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "12639:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12647:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "12635:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12635:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12625:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12603:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "12596:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12596:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12593:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12713:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12734:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12737:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12727:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12727:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12727:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12835:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12838:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12828:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12828:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12828:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12863:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12866:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12856:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12856:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12856:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12669:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12692:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12700:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12689:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12689:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12666:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12666:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12663:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "12485:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "12494:6:94",
                            "type": ""
                          }
                        ],
                        "src": "12450:437:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12924:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12941:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12944:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12934:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12934:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12934:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13038:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13041:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13031:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13031:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13031:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13062:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13065:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13055:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13055:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13055:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12892:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13113:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13130:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13133:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13123:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13123:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13123:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13227:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13230:4:94",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13220:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13220:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13220:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13251:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13254:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13244:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13244:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13244:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13081:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        let value := calldataload(add(headStart, 128))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value4 := value\n        value5 := calldataload(add(headStart, 160))\n        value6 := calldataload(add(headStart, 192))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x1901000000000000000000000000000000000000000000000000000000000000)\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"ERC20Permit: expired deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 'v' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"ERC20Permit: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ControlledToken/only-controller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "716": [
                  {
                    "length": 32,
                    "start": 2038
                  }
                ],
                "2243": [
                  {
                    "length": 32,
                    "start": 3287
                  }
                ],
                "2245": [
                  {
                    "length": 32,
                    "start": 3245
                  }
                ],
                "2247": [
                  {
                    "length": 32,
                    "start": 3203
                  }
                ],
                "2249": [
                  {
                    "length": 32,
                    "start": 3370
                  }
                ],
                "2251": [
                  {
                    "length": 32,
                    "start": 3407
                  }
                ],
                "2253": [
                  {
                    "length": 32,
                    "start": 3328
                  }
                ],
                "3327": [
                  {
                    "length": 32,
                    "start": 739
                  },
                  {
                    "length": 32,
                    "start": 1247
                  },
                  {
                    "length": 32,
                    "start": 1381
                  },
                  {
                    "length": 32,
                    "start": 1630
                  }
                ],
                "3330": [
                  {
                    "length": 32,
                    "start": 424
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101365760003560e01c806370a08231116100b2578063a457c2d711610081578063d505accf11610066578063d505accf14610292578063dd62ed3e146102a5578063f77c4791146102de57600080fd5b8063a457c2d71461026c578063a9059cbb1461027f57600080fd5b806370a08231146102155780637ecebe001461023e57806390596dd11461025157806395d89b411461026457600080fd5b8063313ce5671161010957806339509351116100ee57806339509351146101da5780635d7b0758146101ed578063631b5dfb1461020257600080fd5b8063313ce567146101a15780633644e515146101d257600080fd5b806306fdde031461013b578063095ea7b31461015957806318160ddd1461017c57806323b872dd1461018e575b600080fd5b61014361031d565b60405161015091906114e5565b60405180910390f35b61016c6101673660046114bb565b6103af565b6040519015158152602001610150565b6002545b604051908152602001610150565b61016c61019c36600461140c565b6103c5565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610150565b610180610489565b61016c6101e83660046114bb565b610498565b6102006101fb3660046114bb565b6104d4565b005b61020061021036600461140c565b61055a565b6101806102233660046113b7565b6001600160a01b031660009081526020819052604090205490565b61018061024c3660046113b7565b610633565b61020061025f3660046114bb565b610653565b6101436106d5565b61016c61027a3660046114bb565b6106e4565b61016c61028d3660046114bb565b610795565b6102006102a0366004611448565b6107a2565b6101806102b33660046113d9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103057f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610150565b60606003805461032c90611569565b80601f016020809104026020016040519081016040528092919081815260200182805461035890611569565b80156103a55780601f1061037a576101008083540402835291602001916103a5565b820191906000526020600020905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b60006103bc338484610906565b50600192915050565b60006103d2848484610a5e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104715760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61047e8533858403610906565b506001949350505050565b6000610493610c76565b905090565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103bc9185906104cf90869061153a565b610906565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461054c5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610d9d565b5050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146105d25760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b816001600160a01b0316836001600160a01b031614610624576001600160a01b0382811660009081526001602090815260408083209387168352929052205461062490839085906104cf908590611552565b61062e8282610e7c565b505050565b6001600160a01b0381166000908152600560205260408120545b92915050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146106cb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610468565b6105568282610e7c565b60606004805461032c90611569565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561077e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610468565b61078b3385858403610906565b5060019392505050565b60006103bc338484610a5e565b834211156107f25760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610468565b60007f00000000000000000000000000000000000000000000000000000000000000008888886108218c611001565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061087c82611029565b9050600061088c82878787611092565b9050896001600160a01b0316816001600160a01b0316146108ef5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610468565b6108fa8a8a8a610906565b50505050505050505050565b6001600160a01b0383166109815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0382166109fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ada5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b038216610b565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03831660009081526020819052604090205481811015610be55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610c1c90849061153a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c6891815260200190565b60405180910390a350505050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015610ccf57507f000000000000000000000000000000000000000000000000000000000000000046145b15610cf957507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b038216610df35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610468565b8060026000828254610e05919061153a565b90915550506001600160a01b03821660009081526020819052604081208054839290610e3290849061153a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610ef85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b03821660009081526020819052604090205481811015610f875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610fb6908490611552565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600061064d611036610c76565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006110a3878787876110ba565b915091506110b0816111a7565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156110f1575060009050600361119e565b8460ff16601b1415801561110957508460ff16601c14155b1561111a575060009050600461119e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561116e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111975760006001925092505061119e565b9150600090505b94509492505050565b60008160048111156111bb576111bb6115b4565b14156111c45750565b60018160048111156111d8576111d86115b4565b14156112265760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610468565b600281600481111561123a5761123a6115b4565b14156112885760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610468565b600381600481111561129c5761129c6115b4565b14156113105760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b6004816004811115611324576113246115b4565b14156113985760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610468565b50565b80356001600160a01b03811681146113b257600080fd5b919050565b6000602082840312156113c957600080fd5b6113d28261139b565b9392505050565b600080604083850312156113ec57600080fd5b6113f58361139b565b91506114036020840161139b565b90509250929050565b60008060006060848603121561142157600080fd5b61142a8461139b565b92506114386020850161139b565b9150604084013590509250925092565b600080600080600080600060e0888a03121561146357600080fd5b61146c8861139b565b965061147a6020890161139b565b95506040880135945060608801359350608088013560ff8116811461149e57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156114ce57600080fd5b6114d78361139b565b946020939093013593505050565b600060208083528351808285015260005b81811015611512578581018301518582016040015282016114f6565b81811115611524576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561154d5761154d61159e565b500190565b6000828210156115645761156461159e565b500390565b600181811c9082168061157d57607f821691505b6020821081141561102357634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220965170745a93c4d4c337b301e4be47cfc1448a6ace202900d7833846aad35f7d64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x136 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD505ACCF GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x292 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2A5 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x2DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x26C JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x27F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x215 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x23E JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x264 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x39509351 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1DA JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x1ED JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x202 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x143 PUSH2 0x31D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x150 SWAP2 SWAP1 PUSH2 0x14E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x3AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x19C CALLDATASIZE PUSH1 0x4 PUSH2 0x140C JUMP JUMPDEST PUSH2 0x3C5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x489 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x1E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x498 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x1FB CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x200 PUSH2 0x210 CALLDATASIZE PUSH1 0x4 PUSH2 0x140C JUMP JUMPDEST PUSH2 0x55A JUMP JUMPDEST PUSH2 0x180 PUSH2 0x223 CALLDATASIZE PUSH1 0x4 PUSH2 0x13B7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x24C CALLDATASIZE PUSH1 0x4 PUSH2 0x13B7 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x25F CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x653 JUMP JUMPDEST PUSH2 0x143 PUSH2 0x6D5 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x27A CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x6E4 JUMP JUMPDEST PUSH2 0x16C PUSH2 0x28D CALLDATASIZE PUSH1 0x4 PUSH2 0x14BB JUMP JUMPDEST PUSH2 0x795 JUMP JUMPDEST PUSH2 0x200 PUSH2 0x2A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1448 JUMP JUMPDEST PUSH2 0x7A2 JUMP JUMPDEST PUSH2 0x180 PUSH2 0x2B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x13D9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x305 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x150 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1569 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x358 SWAP1 PUSH2 0x1569 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x388 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D2 DUP5 DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x471 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x47E DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x493 PUSH2 0xC76 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x3BC SWAP2 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP7 SWAP1 PUSH2 0x153A JUMP JUMPDEST PUSH2 0x906 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x54C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xD9D JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x5D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x624 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0x624 SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x4CF SWAP1 DUP6 SWAP1 PUSH2 0x1552 JUMP JUMPDEST PUSH2 0x62E DUP3 DUP3 PUSH2 0xE7C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x6CB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x556 DUP3 DUP3 PUSH2 0xE7C JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x32C SWAP1 PUSH2 0x1569 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x77E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x78B CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x906 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BC CALLER DUP5 DUP5 PUSH2 0xA5E JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x7F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x821 DUP13 PUSH2 0x1001 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x87C DUP3 PUSH2 0x1029 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x88C DUP3 DUP8 DUP8 DUP8 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH2 0x8FA DUP11 DUP11 DUP11 PUSH2 0x906 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x981 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xADA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB56 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xBE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xC1C SWAP1 DUP5 SWAP1 PUSH2 0x153A JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0xCCF JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0xCF9 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xDF3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE05 SWAP2 SWAP1 PUSH2 0x153A JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xE32 SWAP1 DUP5 SWAP1 PUSH2 0x153A JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xF87 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xFB6 SWAP1 DUP5 SWAP1 PUSH2 0x1552 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x64D PUSH2 0x1036 PUSH2 0xC76 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x10A3 DUP8 DUP8 DUP8 DUP8 PUSH2 0x10BA JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x10B0 DUP2 PUSH2 0x11A7 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x10F1 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x119E JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1109 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x111A JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x119E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x116E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1197 JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x119E JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x11BB JUMPI PUSH2 0x11BB PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x11C4 JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x11D8 JUMPI PUSH2 0x11D8 PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1226 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x123A JUMPI PUSH2 0x123A PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1288 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x129C JUMPI PUSH2 0x129C PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1310 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1324 JUMPI PUSH2 0x1324 PUSH2 0x15B4 JUMP JUMPDEST EQ ISZERO PUSH2 0x1398 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x468 JUMP JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x13B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13D2 DUP3 PUSH2 0x139B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13F5 DUP4 PUSH2 0x139B JUMP JUMPDEST SWAP2 POP PUSH2 0x1403 PUSH1 0x20 DUP5 ADD PUSH2 0x139B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x142A DUP5 PUSH2 0x139B JUMP JUMPDEST SWAP3 POP PUSH2 0x1438 PUSH1 0x20 DUP6 ADD PUSH2 0x139B JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1463 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x146C DUP9 PUSH2 0x139B JUMP JUMPDEST SWAP7 POP PUSH2 0x147A PUSH1 0x20 DUP10 ADD PUSH2 0x139B JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x149E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14D7 DUP4 PUSH2 0x139B JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1512 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x14F6 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1524 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x154D JUMPI PUSH2 0x154D PUSH2 0x159E JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1564 JUMPI PUSH2 0x1564 PUSH2 0x159E JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x157D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1023 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP7 MLOAD PUSH17 0x745A93C4D4C337B301E4BE47CFC1448A6A 0xCE KECCAK256 0x29 STOP 0xD7 DUP4 CODESIZE CHAINID 0xAA 0xD3 0x5F PUSH30 0x64736F6C6343000806003300000000000000000000000000000000000000 ",
              "sourceMap": "342:3626:21:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;2806:14:94;;2799:22;2781:41;;2769:2;2754:18;4238:166:1;2736:92:94;3229:106:1;3316:12;;3229:106;;;2979:25:94;;;2967:2;2952:18;3229:106:1;2934:76:94;4871:478:1;;;;;;:::i;:::-;;:::i;3868:98:21:-;;;12170:4:94;3950:9:21;12158:17:94;12140:36;;12128:2;12113:18;3868:98:21;12095:87:94;2506:113:4;;;:::i;5744:212:1:-;;;;;;:::i;:::-;;:::i;2328:171:21:-;;;;;;:::i;:::-;;:::i;:::-;;3357:312;;;;;;:::i;:::-;;:::i;3393:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:1;3467:7;3493:18;;;;;;;;;;;;3393:125;2256:126:4;;;;;;:::i;:::-;;:::i;2774:171:21:-;;;;;;:::i;:::-;;:::i;2352:102:1:-;;;:::i;6443:405::-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;1569:626:4:-;;;;;;:::i;:::-;;:::i;3951:149:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:1;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;540:44:21;;;;;;;;-1:-1:-1;;;;;2574:55:94;;;2556:74;;2544:2;2529:18;540:44:21;2511:125:94;2141:98:1;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:10;4360:7:1;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:1;4238:166;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:1;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:10;5097:33:1;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:1;;9270:2:94;5140:79:1;;;9252:21:94;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;9419:10;9399:18;;;9392:38;9447:19;;5140:79:1;;;;;;;;;5253:57;5262:6;719:10:10;5303:6:1;5284:16;:25;5253:8;:57::i;:::-;-1:-1:-1;5338:4:1;;4871:478;-1:-1:-1;;;;4871:478:1:o;2506:113:4:-;2566:7;2592:20;:18;:20::i;:::-;2585:27;;2506:113;:::o;5744:212:1:-;719:10:10;5832:4:1;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:1;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;2328:171:21:-;1039:10;-1:-1:-1;;;;;1061:10:21;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:21;;10892:2:94;1031:77:21;;;10874:21:94;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:21;10864:181:94;1031:77:21;2471:21:::1;2477:5;2484:7;2471:5;:21::i;:::-;2328:171:::0;;:::o;3357:312::-;1039:10;-1:-1:-1;;;;;1061:10:21;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:21;;10892:2:94;1031:77:21;;;10874:21:94;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:21;10864:181:94;1031:77:21;3534:5:::1;-1:-1:-1::0;;;;;3521:18:21::1;:9;-1:-1:-1::0;;;;;3521:18:21::1;;3517:114;;-1:-1:-1::0;;;;;4066:18:1;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;3555:65:21::1;::::0;4066:18:1;;:27;;3582:37:21::1;::::0;3612:7;;3582:37:::1;:::i;3555:65::-;3641:21;3647:5;3654:7;3641:5;:21::i;:::-;3357:312:::0;;;:::o;2256:126:4:-;-1:-1:-1;;;;;2351:14:4;;2325:7;2351:14;;;:7;:14;;;;;918::11;2351:24:4;2344:31;2256:126;-1:-1:-1;;2256:126:4:o;2774:171:21:-;1039:10;-1:-1:-1;;;;;1061:10:21;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:21;;10892:2:94;1031:77:21;;;10874:21:94;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:21;10864:181:94;1031:77:21;2917:21:::1;2923:5;2930:7;2917:5;:21::i;2352:102:1:-:0;2408:13;2440:7;2433:14;;;;;:::i;6443:405::-;719:10:10;6536:4:1;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:1;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:1;;11252:2:94;6623:85:1;;;11234:21:94;11291:2;11271:18;;;11264:30;11330:34;11310:18;;;11303:62;11401:7;11381:18;;;11374:35;11426:19;;6623:85:1;11224:227:94;6623:85:1;6742:67;719:10:10;6765:7:1;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:1;;6443:405;-1:-1:-1;;;6443:405:1:o;3721:172::-;3807:4;3823:42;719:10:10;3847:9:1;3858:6;3823:9;:42::i;1569:626:4:-;1804:8;1785:15;:27;;1777:69;;;;-1:-1:-1;;;1777:69:4;;7340:2:94;1777:69:4;;;7322:21:94;7379:2;7359:18;;;7352:30;7418:31;7398:18;;;7391:59;7467:18;;1777:69:4;7312:179:94;1777:69:4;1857:18;1899:16;1917:5;1924:7;1933:5;1940:16;1950:5;1940:9;:16::i;:::-;1888:79;;;;;;3302:25:94;;;;-1:-1:-1;;;;;3424:15:94;;;3404:18;;;3397:43;3476:15;;;;3456:18;;;3449:43;3508:18;;;3501:34;3551:19;;;3544:35;3595:19;;;3588:35;;;3274:19;;1888:79:4;;;;;;;;;;;;1878:90;;;;;;1857:111;;1979:12;1994:28;2011:10;1994:16;:28::i;:::-;1979:43;;2033:14;2050:28;2064:4;2070:1;2073;2076;2050:13;:28::i;:::-;2033:45;;2106:5;-1:-1:-1;;;;;2096:15:4;:6;-1:-1:-1;;;;;2096:15:4;;2088:58;;;;-1:-1:-1;;;2088:58:4;;8911:2:94;2088:58:4;;;8893:21:94;8950:2;8930:18;;;8923:30;8989:32;8969:18;;;8962:60;9039:18;;2088:58:4;8883:180:94;2088:58:4;2157:31;2166:5;2173:7;2182:5;2157:8;:31::i;:::-;1767:428;;;1569:626;;;;;;;:::o;10019:370:1:-;-1:-1:-1;;;;;10150:19:1;;10142:68;;;;-1:-1:-1;;;10142:68:1;;10487:2:94;10142:68:1;;;10469:21:94;10526:2;10506:18;;;10499:30;10565:34;10545:18;;;10538:62;10636:6;10616:18;;;10609:34;10660:19;;10142:68:1;10459:226:94;10142:68:1;-1:-1:-1;;;;;10228:21:1;;10220:68;;;;-1:-1:-1;;;10220:68:1;;6937:2:94;10220:68:1;;;6919:21:94;6976:2;6956:18;;;6949:30;7015:34;6995:18;;;6988:62;7086:4;7066:18;;;7059:32;7108:19;;10220:68:1;6909:224:94;10220:68:1;-1:-1:-1;;;;;10299:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;2979:25:94;;;10350:32:1;;2952:18:94;10350:32:1;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:1;;7449:70;;;;-1:-1:-1;;;7449:70:1;;10081:2:94;7449:70:1;;;10063:21:94;10120:2;10100:18;;;10093:30;10159:34;10139:18;;;10132:62;10230:7;10210:18;;;10203:35;10255:19;;7449:70:1;10053:227:94;7449:70:1;-1:-1:-1;;;;;7537:23:1;;7529:71;;;;-1:-1:-1;;;7529:71:1;;5770:2:94;7529:71:1;;;5752:21:94;5809:2;5789:18;;;5782:30;5848:34;5828:18;;;5821:62;5919:5;5899:18;;;5892:33;5942:19;;7529:71:1;5742:225:94;7529:71:1;-1:-1:-1;;;;;7693:17:1;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:1;;7698:2:94;7720:74:1;;;7680:21:94;7737:2;7717:18;;;7710:30;7776:34;7756:18;;;7749:62;7847:8;7827:18;;;7820:36;7873:19;;7720:74:1;7670:228:94;7720:74:1;-1:-1:-1;;;;;7828:17:1;;;:9;:17;;;;;;;;;;;7848:22;;;7828:42;;7890:20;;;;;;;;:30;;7864:6;;7828:9;7890:30;;7864:6;;7890:30;:::i;:::-;;;;;;;;7953:9;-1:-1:-1;;;;;7936:35:1;7945:6;-1:-1:-1;;;;;7936:35:1;;7964:6;7936:35;;;;2979:25:94;;2967:2;2952:18;;2934:76;7936:35:1;;;;;;;;7439:596;7322:713;;;:::o;3143:308:14:-;3196:7;3227:4;-1:-1:-1;;;;;3236:12:14;3219:29;;:66;;;;;3269:16;3252:13;:33;3219:66;3215:230;;;-1:-1:-1;3308:24:14;;3143:308::o;3215:230::-;-1:-1:-1;3633:73:14;;;3392:10;3633:73;;;;3893:25:94;;;;3404:12:14;3934:18:94;;;3927:34;3418:15:14;3977:18:94;;;3970:34;3677:13:14;4020:18:94;;;4013:34;3700:4:14;4063:19:94;;;;4056:84;;;;3633:73:14;;;;;;;;;;3865:19:94;;;;3633:73:14;;;3623:84;;;;;;2506:113:4:o;8311:389:1:-;-1:-1:-1;;;;;8394:21:1;;8386:65;;;;-1:-1:-1;;;8386:65:1;;11658:2:94;8386:65:1;;;11640:21:94;11697:2;11677:18;;;11670:30;11736:33;11716:18;;;11709:61;11787:18;;8386:65:1;11630:181:94;8386:65:1;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:1;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:1;;2979:25:94;;;-1:-1:-1;;;;;8597:37:1;;;8614:1;;8597:37;;2967:2:94;2952:18;8597:37:1;;;;;;;2328:171:21;;:::o;9020:576:1:-;-1:-1:-1;;;;;9103:21:1;;9095:67;;;;-1:-1:-1;;;9095:67:1;;9679:2:94;9095:67:1;;;9661:21:94;9718:2;9698:18;;;9691:30;9757:34;9737:18;;;9730:62;9828:3;9808:18;;;9801:31;9849:19;;9095:67:1;9651:223:94;9095:67:1;-1:-1:-1;;;;;9258:18:1;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:1;;6174:2:94;9286:71:1;;;6156:21:94;6213:2;6193:18;;;6186:30;6252:34;6232:18;;;6225:62;6323:4;6303:18;;;6296:32;6345:19;;9286:71:1;6146:224:94;9286:71:1;-1:-1:-1;;;;;9391:18:1;;:9;:18;;;;;;;;;;9412:23;;;9391:44;;9455:12;:22;;9429:6;;9391:9;9455:22;;9429:6;;9455:22;:::i;:::-;;;;-1:-1:-1;;9493:37:1;;2979:25:94;;;9519:1:1;;-1:-1:-1;;;;;9493:37:1;;;;;2967:2:94;2952:18;9493:37:1;;;;;;;3357:312:21;;;:::o;2750:203:4:-;-1:-1:-1;;;;;2870:14:4;;2810:15;2870:14;;;:7;:14;;;;;918::11;;1050:1;1032:19;;;;918:14;2929:17:4;2827:126;2750:203;;;:::o;4339:165:14:-;4416:7;4442:55;4464:20;:18;:20::i;:::-;4486:10;9254:57:13;;2231:66:94;9254:57:13;;;2219:79:94;2314:11;;;2307:27;;;2350:12;;;2343:28;;;9218:7:13;;2387:12:94;;9254:57:13;;;;;;;;;;;;9244:68;;;;;;9237:75;;9125:194;;;;;7480:270;7603:7;7623:17;7642:18;7664:25;7675:4;7681:1;7684;7687;7664:10;:25::i;:::-;7622:67;;;;7699:18;7711:5;7699:11;:18::i;:::-;-1:-1:-1;7734:9:13;7480:270;-1:-1:-1;;;;;7480:270:13:o;5744:1603::-;5870:7;;6794:66;6781:79;;6777:161;;;-1:-1:-1;6892:1:13;;-1:-1:-1;6896:30:13;6876:51;;6777:161;6951:1;:7;;6956:2;6951:7;;:18;;;;;6962:1;:7;;6967:2;6962:7;;6951:18;6947:100;;;-1:-1:-1;7001:1:13;;-1:-1:-1;7005:30:13;6985:51;;6947:100;7158:24;;;7141:14;7158:24;;;;;;;;;4378:25:94;;;4451:4;4439:17;;4419:18;;;4412:45;;;;4473:18;;;4466:34;;;4516:18;;;4509:34;;;7158:24:13;;4350:19:94;;7158:24:13;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7158:24:13;;-1:-1:-1;;7158:24:13;;;-1:-1:-1;;;;;;;7196:20:13;;7192:101;;7248:1;7252:29;7232:50;;;;;;;7192:101;7311:6;-1:-1:-1;7319:20:13;;-1:-1:-1;5744:1603:13;;;;;;;;:::o;533:631::-;610:20;601:5;:29;;;;;;;;:::i;:::-;;597:561;;;533:631;:::o;597:561::-;706:29;697:5;:38;;;;;;;;:::i;:::-;;693:465;;;751:34;;-1:-1:-1;;;751:34:13;;5417:2:94;751:34:13;;;5399:21:94;5456:2;5436:18;;;5429:30;5495:26;5475:18;;;5468:54;5539:18;;751:34:13;5389:174:94;693:465:13;815:35;806:5;:44;;;;;;;;:::i;:::-;;802:356;;;866:41;;-1:-1:-1;;;866:41:13;;6577:2:94;866:41:13;;;6559:21:94;6616:2;6596:18;;;6589:30;6655:33;6635:18;;;6628:61;6706:18;;866:41:13;6549:181:94;802:356:13;937:30;928:5;:39;;;;;;;;:::i;:::-;;924:234;;;983:44;;-1:-1:-1;;;983:44:13;;8105:2:94;983:44:13;;;8087:21:94;8144:2;8124:18;;;8117:30;8183:34;8163:18;;;8156:62;8254:4;8234:18;;;8227:32;8276:19;;983:44:13;8077:224:94;924:234:13;1057:30;1048:5;:39;;;;;;;;:::i;:::-;;1044:114;;;1103:44;;-1:-1:-1;;;1103:44:13;;8508:2:94;1103:44:13;;;8490:21:94;8547:2;8527:18;;;8520:30;8586:34;8566:18;;;8559:62;8657:4;8637:18;;;8630:32;8679:19;;1103:44:13;8480:224:94;1044:114:13;533:631;:::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:94:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:693::-;1115:6;1123;1131;1139;1147;1155;1163;1216:3;1204:9;1195:7;1191:23;1187:33;1184:2;;;1233:1;1230;1223:12;1184:2;1256:29;1275:9;1256:29;:::i;:::-;1246:39;;1304:38;1338:2;1327:9;1323:18;1304:38;:::i;:::-;1294:48;;1389:2;1378:9;1374:18;1361:32;1351:42;;1440:2;1429:9;1425:18;1412:32;1402:42;;1494:3;1483:9;1479:19;1466:33;1539:4;1532:5;1528:16;1521:5;1518:27;1508:2;;1559:1;1556;1549:12;1508:2;1174:523;;;;-1:-1:-1;1174:523:94;;;;1582:5;1634:3;1619:19;;1606:33;;-1:-1:-1;1686:3:94;1671:19;;;1658:33;;1174:523;-1:-1:-1;;1174:523:94:o;1702:254::-;1770:6;1778;1831:2;1819:9;1810:7;1806:23;1802:32;1799:2;;;1847:1;1844;1837:12;1799:2;1870:29;1889:9;1870:29;:::i;:::-;1860:39;1946:2;1931:18;;;;1918:32;;-1:-1:-1;;;1789:167:94:o;4554:656::-;4666:4;4695:2;4724;4713:9;4706:21;4756:6;4750:13;4799:6;4794:2;4783:9;4779:18;4772:34;4824:1;4834:140;4848:6;4845:1;4842:13;4834:140;;;4943:14;;;4939:23;;4933:30;4909:17;;;4928:2;4905:26;4898:66;4863:10;;4834:140;;;4992:6;4989:1;4986:13;4983:2;;;5062:1;5057:2;5048:6;5037:9;5033:22;5029:31;5022:42;4983:2;-1:-1:-1;5126:2:94;5114:15;-1:-1:-1;;5110:88:94;5095:104;;;;5201:2;5091:113;;4675:535;-1:-1:-1;;;4675:535:94:o;12187:128::-;12227:3;12258:1;12254:6;12251:1;12248:13;12245:2;;;12264:18;;:::i;:::-;-1:-1:-1;12300:9:94;;12235:80::o;12320:125::-;12360:4;12388:1;12385;12382:8;12379:2;;;12393:18;;:::i;:::-;-1:-1:-1;12430:9:94;;12369:76::o;12450:437::-;12529:1;12525:12;;;;12572;;;12593:2;;12647:4;12639:6;12635:17;12625:27;;12593:2;12700;12692:6;12689:14;12669:18;12666:38;12663:2;;;-1:-1:-1;;;12734:1:94;12727:88;12838:4;12835:1;12828:15;12866:4;12863:1;12856:15;12892:184;-1:-1:-1;;;12941:1:94;12934:88;13041:4;13038:1;13031:15;13065:4;13062:1;13055:15;13081:184;-1:-1:-1;;;13130:1:94;13123:88;13230:4;13227:1;13220:15;13254:4;13251:1;13244:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1126400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "DOMAIN_SEPARATOR()": "infinite",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2563",
                "controller()": "infinite",
                "controllerBurn(address,uint256)": "infinite",
                "controllerBurnFrom(address,address,uint256)": "infinite",
                "controllerMint(address,uint256)": "infinite",
                "decimals()": "infinite",
                "decreaseAllowance(address,uint256)": "26933",
                "increaseAllowance(address,uint256)": "26979",
                "name()": "infinite",
                "nonces(address)": "2605",
                "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51232",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerMint(address,uint256)": "5d7b0758",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"_controller\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(string,string,uint8,address)\":{\"details\":\"Emitted when contract is deployed\"}},\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"params\":{\"_controller\":\"Address of the Controller contract for minting & burning\",\"_name\":\"The name of the Token\",\"_symbol\":\"The symbol for the Token\",\"decimals_\":\"The number of decimals for the Token\"}},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_operator\":\"Address of the operator performing the burn action via the controller contract\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"_amount\":\"Amount of tokens to mint\",\"_user\":\"Address of the receiver of the minted tokens\"}},\"decimals()\":{\"details\":\"This value should be equal to the decimals of the token used to deposit into the pool.\",\"returns\":{\"_0\":\"uint8 decimals.\"}},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"title\":\"PoolTogether V4 Controlled ERC20 Token\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Deploy the Controlled Token with Token Details and the Controller\"},\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"},\"decimals()\":{\"notice\":\"Returns the ERC20 controlled token decimals.\"}},\"notice\":\"ERC20 Tokens with a controller for minting & burning\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/ControlledToken.sol\":\"ControlledToken\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xd1d8caaeb45f78e0b0715664d56c220c283c89bf8b8c02954af86404d6b367f8\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\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\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation 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 * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\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    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x8a763ef5625e97f5287c7ddd5ede434129069e15d83bf0a68ad10a5e56ccb439\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\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 */\\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    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\",\"keccak256\":\"0xf41ca991f30855bf80ffd11e9347856a517b977f0a6c2d52e6421a99b7840329\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\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\",\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\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        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\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        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\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        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_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../Strings.sol\\\";\\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        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode 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 {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     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\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            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 if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\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 opcode 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 {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\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 \\u00f7 2 + 1, and for v in (302): v \\u2208 {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);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\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);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from `s`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n\\\", Strings.toString(s.length), s));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xe9e291de7ffe06e66503c6700b1bb84ff6e0989cbb974653628d8994e7c97f03\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.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 specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts 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 * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\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 _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n    address private immutable _CACHED_THIS;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\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        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _CACHED_THIS = address(this);\\n        _TYPE_HASH = typeHash;\\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) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0x6688fad58b9ec0286d40fa957152e575d5d8bd4c3aa80985efdb11b44f776ae7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/ControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\\\";\\n\\nimport \\\"./interfaces/IControlledToken.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 Controlled ERC20 Token\\n * @author PoolTogether Inc Team\\n * @notice  ERC20 Tokens with a controller for minting & burning\\n */\\ncontract ControlledToken is ERC20Permit, IControlledToken {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Interface to the contract responsible for controlling mint/burn\\n    address public override immutable controller;\\n\\n    /// @notice ERC20 controlled token decimals.\\n    uint8 private immutable _decimals;\\n\\n    /* ============ Events ============ */\\n\\n    /// @dev Emitted when contract is deployed\\n    event Deployed(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure that the caller is the controller contract\\n    modifier onlyController() {\\n        require(msg.sender == address(controller), \\\"ControlledToken/only-controller\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Controlled Token with Token Details and the Controller\\n    /// @param _name The name of the Token\\n    /// @param _symbol The symbol for the Token\\n    /// @param decimals_ The number of decimals for the Token\\n    /// @param _controller Address of the Controller contract for minting & burning\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ERC20Permit(\\\"PoolTogether ControlledToken\\\") ERC20(_name, _symbol) {\\n        require(address(_controller) != address(0), \\\"ControlledToken/controller-not-zero-address\\\");\\n        controller = _controller;\\n\\n        require(decimals_ > 0, \\\"ControlledToken/decimals-gt-zero\\\");\\n        _decimals = decimals_;\\n\\n        emit Deployed(_name, _symbol, decimals_, _controller);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @notice Allows the controller to mint tokens for a user account\\n    /// @dev May be overridden to provide more granular control over minting\\n    /// @param _user Address of the receiver of the minted tokens\\n    /// @param _amount Amount of tokens to mint\\n    function controllerMint(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _mint(_user, _amount);\\n    }\\n\\n    /// @notice Allows the controller to burn tokens from a user account\\n    /// @dev May be overridden to provide more granular control over burning\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurn(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n    /// @dev May be overridden to provide more granular control over operator-burning\\n    /// @param _operator Address of the operator performing the burn action via the controller contract\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurnFrom(\\n        address _operator,\\n        address _user,\\n        uint256 _amount\\n    ) external virtual override onlyController {\\n        if (_operator != _user) {\\n            _approve(_user, _operator, allowance(_user, _operator) - _amount);\\n        }\\n\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Returns the ERC20 controlled token decimals.\\n    /// @dev This value should be equal to the decimals of the token used to deposit into the pool.\\n    /// @return uint8 decimals.\\n    function decimals() public view virtual override returns (uint8) {\\n        return _decimals;\\n    }\\n}\\n\",\"keccak256\":\"0x7dec4c4427ea75702a706e574d17751ca989b2aaea4991380a126b611d95ff9e\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)1576_storage)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Counter)1576_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)1576_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Counter)1576_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 1575,
                    "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "constructor": {
                "notice": "Deploy the Controlled Token with Token Details and the Controller"
              },
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              },
              "decimals()": {
                "notice": "Returns the ERC20 controlled token decimals."
              }
            },
            "notice": "ERC20 Tokens with a controller for minting & burning",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/DrawBeacon.sol": {
        "DrawBeacon": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract RNGInterface",
                  "name": "_rng",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "_nextDrawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint64",
                  "name": "_beaconPeriodStart",
                  "type": "uint64"
                },
                {
                  "internalType": "uint32",
                  "name": "_beaconPeriodSeconds",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_rngTimeout",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "drawPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "BeaconPeriodSecondsUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint64",
                  "name": "startedAt",
                  "type": "uint64"
                }
              ],
              "name": "BeaconPeriodStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "nextDrawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint64",
                  "name": "beaconPeriodStartedAt",
                  "type": "uint64"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "DrawBufferUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawCancelled",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "DrawCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "contract RNGInterface",
                  "name": "rngService",
                  "type": "address"
                }
              ],
              "name": "RngServiceUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "RngTimeoutSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "beaconPeriodEndAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "beaconPeriodRemainingSeconds",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "_time",
                  "type": "uint64"
                }
              ],
              "name": "calculateNextBeaconPeriodStartTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "calculateNextBeaconPeriodStartTimeFromCurrentTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canCompleteDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canStartDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "cancelDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "completeDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBeaconPeriodSeconds",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBeaconPeriodStartedAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngLockBlock",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNextDrawId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRngService",
              "outputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRngTimeout",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isBeaconPeriodOver",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngCompleted",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngRequested",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngTimedOut",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_beaconPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "setBeaconPeriodSeconds",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "setDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "_rngService",
                  "type": "address"
                }
              ],
              "name": "setRngService",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "setRngTimeout",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "startDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(uint32,uint64)": {
                "params": {
                  "beaconPeriodStartedAt": "Timestamp when beacon period starts.",
                  "nextDrawId": "Draw ID at which the DrawBeacon should start. Can't be inferior to 1."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "beaconPeriodEndAt()": {
                "returns": {
                  "_0": "The timestamp at which the beacon period ends."
                }
              },
              "beaconPeriodRemainingSeconds()": {
                "returns": {
                  "_0": "The number of seconds remaining until the beacon period can be complete."
                }
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "params": {
                  "time": "The timestamp to use as the current time"
                },
                "returns": {
                  "_0": "The timestamp at which the next beacon period would start"
                }
              },
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": {
                "returns": {
                  "_0": "The next beacon period start time"
                }
              },
              "canCompleteDraw()": {
                "returns": {
                  "_0": "True if a Draw can be completed, false otherwise."
                }
              },
              "canStartDraw()": {
                "returns": {
                  "_0": "True if a Draw can be started, false otherwise."
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_beaconPeriodSeconds": "The duration of the beacon period in seconds",
                  "_beaconPeriodStart": "The starting timestamp of the beacon period.",
                  "_drawBuffer": "The address of the draw buffer to push draws to",
                  "_nextDrawId": "Draw ID at which the DrawBeacon should start. Can't be inferior to 1.",
                  "_owner": "Address of the DrawBeacon owner",
                  "_rng": "The RNG service to use"
                }
              },
              "getLastRngLockBlock()": {
                "returns": {
                  "_0": "The block number that the RNG request is locked to"
                }
              },
              "getLastRngRequestId()": {
                "returns": {
                  "_0": "The current Request ID"
                }
              },
              "isBeaconPeriodOver()": {
                "returns": {
                  "_0": "True if the beacon period is over, false otherwise"
                }
              },
              "isRngCompleted()": {
                "returns": {
                  "_0": "True if a random number request has completed, false otherwise."
                }
              },
              "isRngRequested()": {
                "returns": {
                  "_0": "True if a random number has been requested, false otherwise."
                }
              },
              "isRngTimedOut()": {
                "returns": {
                  "_0": "True if a random number request has timed out, false otherwise."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "params": {
                  "beaconPeriodSeconds": "The new beacon period in seconds.  Must be greater than zero."
                }
              },
              "setDrawBuffer(address)": {
                "details": "All subsequent Draw requests/completions will be pushed to the new DrawBuffer.",
                "params": {
                  "newDrawBuffer": "DrawBuffer address"
                },
                "returns": {
                  "_0": "DrawBuffer"
                }
              },
              "setRngService(address)": {
                "params": {
                  "rngService": "The address of the new RNG service interface"
                }
              },
              "setRngTimeout(uint32)": {
                "params": {
                  "rngTimeout": "The RNG request timeout in seconds."
                }
              },
              "startDraw()": {
                "details": "The RNG-Request-Fee is expected to be held within this contract before calling this function"
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "stateVariables": {
              "nextDrawId": {
                "details": "Starts at 1. This way we know that no Draw has been recorded at 0."
              },
              "rngTimeout": {
                "details": "If the rng completes the award can still be cancelled."
              }
            },
            "title": "PoolTogether V4 DrawBeacon",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_3675": {
                  "entryPoint": null,
                  "id": 3675,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_4348": {
                  "entryPoint": 648,
                  "id": 4348,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_4326": {
                  "entryPoint": 829,
                  "id": 4326,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 568,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_4157": {
                  "entryPoint": 1139,
                  "id": 4157,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_4370": {
                  "entryPoint": 1213,
                  "id": 4370,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_RNGInterface_$3314t_uint32t_uint64t_uint32t_uint32_fromMemory": {
                  "entryPoint": 1422,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 1396,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 1593,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4141:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:108:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "83:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "98:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "92:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "92:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "83:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "159:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "171:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "161:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "161:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "161:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "127:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "138:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "145:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "134:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "134:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "124:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "124:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "117:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "117:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "114:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "63:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:167:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "406:766:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "453:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "462:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "465:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "455:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "455:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "455:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "427:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "436:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "423:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "423:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "448:3:94",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "419:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "419:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "416:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "478:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "497:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "491:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "491:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "482:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "541:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "556:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "566:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "556:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "580:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "616:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "601:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "601:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "595:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "595:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "584:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "654:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "629:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "629:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "629:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "671:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "681:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "671:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "697:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "722:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "733:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "718:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "718:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "712:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "712:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "701:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "771:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "746:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "746:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "746:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "788:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "798:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "814:58:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "857:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "868:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "853:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "853:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "824:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "824:48:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "814:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "881:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "906:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "917:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "902:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "902:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "896:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "896:26:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "885:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "988:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "997:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1000:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "990:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "990:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "990:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "944:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "957:7:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "974:2:94",
                                                    "type": "",
                                                    "value": "64"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "978:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "970:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "970:10:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "982:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "966:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "966:18:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "953:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "953:32:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "941:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "941:45:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "934:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "934:53:94"
                              },
                              "nodeType": "YulIf",
                              "src": "931:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1013:17:94",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "1023:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1013:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1039:59:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1082:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1093:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1078:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1078:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1049:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1049:49:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1039:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1107:59:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1150:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1161:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1117:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1117:49:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_RNGInterface_$3314t_uint32t_uint64t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "324:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "335:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "347:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "355:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "363:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "371:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "379:6:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "387:6:94",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "395:6:94",
                            "type": ""
                          }
                        ],
                        "src": "186:986:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1351:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1368:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1379:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1361:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1361:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1402:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1413:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1398:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1398:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1418:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1391:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1391:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1391:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1452:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1437:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1437:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1457:33:94",
                                    "type": "",
                                    "value": "DrawBeacon/next-draw-id-gte-one"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1430:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1430:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1430:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1500:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1512:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1523:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1508:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1508:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1500:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1328:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1342:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1177:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1711:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1728:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1739:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1762:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1773:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1758:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1758:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1778:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1751:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1751:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1751:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1801:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1812:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1797:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1797:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1817:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1790:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1790:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1790:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1872:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1883:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1868:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1868:18:94"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1888:10:94",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1861:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1861:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1861:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1908:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1920:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1931:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1916:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1916:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1908:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1688:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1702:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1537:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2120:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2137:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2148:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2130:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2130:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2130:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2171:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2182:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2167:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2167:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2187:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2160:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2160:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2160:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2210:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2221:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2206:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2206:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2226:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2199:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2199:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2199:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2281:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2292:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2277:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2277:18:94"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2297:12:94",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2270:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2270:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2270:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2319:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2331:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2342:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2327:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2327:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2319:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2097:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2111:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1946:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2531:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2548:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2559:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2541:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2541:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2541:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2582:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2593:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2578:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2578:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2598:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2571:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2571:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2571:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2621:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2632:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2617:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2617:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2637:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2610:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2610:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2610:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2692:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2703:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2688:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2688:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2708:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2681:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2681:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2681:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2721:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2733:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2744:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2729:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2729:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2721:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2508:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2522:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2357:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2933:173:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2950:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2961:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2943:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2943:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2943:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2984:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2995:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2980:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2980:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3000:2:94",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2973:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2973:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2973:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3023:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3034:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3019:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3019:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3039:25:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3012:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3012:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3012:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3074:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3086:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3097:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3082:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3082:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2910:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2924:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2759:347:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3285:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3302:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3313:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3295:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3295:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3295:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3336:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3347:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3332:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3332:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3352:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3325:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3325:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3325:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3375:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3386:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3371:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3371:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3391:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3364:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3364:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3364:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:94"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:10:94",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3482:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3505:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3490:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3482:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3262:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3276:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3111:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3619:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3629:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3641:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3652:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3637:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3637:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3629:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3671:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3686:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3694:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3682:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3682:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3664:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3664:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3664:42:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3588:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3599:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3610:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3520:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3842:161:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3852:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3864:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3875:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3860:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3860:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3852:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3894:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3909:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3917:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3905:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3905:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3887:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3887:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3887:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3949:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3960:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3945:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3945:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3969:6:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3985:2:94",
                                                "type": "",
                                                "value": "64"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3989:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "3981:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3981:10:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3993:1:94",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "3977:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3977:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3965:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3965:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3938:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3938:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3938:59:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3803:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3814:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3822:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3833:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3717:286:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4053:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4117:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4126:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4129:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4119:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4119:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4119:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4076:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4087:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4102:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4107:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4098:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "4098:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4111:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "4094:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4094:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4083:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4083:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4073:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4073:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4066:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4066:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4063:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4042:5:94",
                            "type": ""
                          }
                        ],
                        "src": "4008:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_RNGInterface_$3314t_uint32t_uint64t_uint32t_uint32_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        value3 := abi_decode_uint32_fromMemory(add(headStart, 96))\n        let value_3 := mload(add(headStart, 128))\n        if iszero(eq(value_3, and(value_3, sub(shl(64, 1), 1)))) { revert(0, 0) }\n        value4 := value_3\n        value5 := abi_decode_uint32_fromMemory(add(headStart, 160))\n        value6 := abi_decode_uint32_fromMemory(add(headStart, 192))\n    }\n    function abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawBeacon/next-draw-id-gte-one\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/existing-draw-history\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-greater\")\n        mstore(add(headStart, 96), \"-than-zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-timeout-gt-60-sec\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/draw-history-not-zero\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(64, 1), 1)))\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620024293803806200242983398101604081905262000034916200058e565b86620000408162000238565b506000836001600160401b031611620000a25760405162461bcd60e51b815260206004820152602a6024820152600080516020620024098339815191526044820152692d7468616e2d7a65726f60b01b60648201526084015b60405180910390fd5b6001600160a01b038516620000fa5760405162461bcd60e51b815260206004820152601760248201527f44726177426561636f6e2f726e672d6e6f742d7a65726f000000000000000000604482015260640162000099565b60018463ffffffff161015620001535760405162461bcd60e51b815260206004820152601f60248201527f44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e6500604482015260640162000099565b6005805463ffffffff861668010000000000000000026001600160601b03199091166001600160401b038616171790556200018e8262000288565b62000199866200033d565b50620001a58562000473565b620001b081620004bd565b6040805163ffffffff861681526001600160401b03851660208201527f3125f2f28108d5eabe48aa2a11adff21d6f9244f0436278992999404ba4fc5ad910160405180910390a16040516001600160401b038416907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a25050505050505062000652565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008163ffffffff1611620002e25760405162461bcd60e51b815260206004820152602a6024820152600080516020620024098339815191526044820152692d7468616e2d7a65726f60b01b606482015260840162000099565b6004805463ffffffff60c01b1916600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020015b60405180910390a150565b6004546000906001600160a01b03908116908316620003b05760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f6044820152672d6164647265737360c01b606482015260840162000099565b806001600160a01b0316836001600160a01b03161415620004255760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f72796044820152672d6164647265737360c01b606482015260840162000099565b600480546001600160a01b0319166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b600280546001600160a01b0319166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b603c8163ffffffff16116200051f5760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d7365636044820152607360f81b606482015260840162000099565b6004805463ffffffff60a01b1916600160a01b63ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d08459060200162000332565b805163ffffffff811681146200058957600080fd5b919050565b600080600080600080600060e0888a031215620005aa57600080fd5b8751620005b78162000639565b6020890151909750620005ca8162000639565b6040890151909650620005dd8162000639565b9450620005ed6060890162000574565b60808901519094506001600160401b03811681146200060b57600080fd5b92506200061b60a0890162000574565b91506200062b60c0890162000574565b905092959891949750929550565b6001600160a01b03811681146200064f57600080fd5b50565b611da780620006626000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063738bbea811610104578063a104fd79116100a2578063d1e7765711610071578063d1e77657146103b5578063e30c3978146103bd578063e4a75bb8146103ce578063f2fde38b146103d657600080fd5b8063a104fd791461036d578063a3ae35ab14610375578063ab70d49c14610388578063c57708c21461039b57600080fd5b80637f4296d7116100de5780637f4296d71461032e57806389c36f8e146103415780638da5cb5b14610349578063919bead01461035a57600080fd5b8063738bbea81461030d57806375e38f16146103155780637ce52b181461031d57600080fd5b80633e7a39081161017c5780634e71e0c81161014b5780634e71e0c8146102d45780635020ea56146102dc5780636bea5344146102ef578063715018a61461030557600080fd5b80633e7a39081461028a5780634019f2d61461029f578063412a616a146102c45780634aba4f6b146102cc57600080fd5b80631b5344a2116101b85780631b5344a2146102165780632a7ad6091461024d5780632ae168a61461025b57806339f92c301461026357600080fd5b80630996f6e1146101df5780630bdeecbd146101fc578063111070e414610206575b600080fd5b6101e76103e9565b60405190151581526020015b60405180910390f35b61020461040a565b005b60035463ffffffff1615156101e7565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff90911681526020016101f3565b60035463ffffffff16610238565b6102046107b9565b60055467ffffffffffffffff165b60405167ffffffffffffffff90911681526020016101f3565b600454600160c01b900463ffffffff16610238565b6004546001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b610204610aae565b6101e7610b78565b610204610c17565b6102046102ea366004611ada565b610ca5565b600354640100000000900463ffffffff16610238565b610204610d22565b6101e7610d97565b610271610e16565b6002546001600160a01b03166102ac565b61020461033c366004611a54565b610e20565b610271610e9a565b6000546001600160a01b03166102ac565b610204610368366004611ada565b610ec7565b610271610f41565b610271610383366004611b4e565b610f4b565b6102ac610396366004611a54565b610f7e565b60055468010000000000000000900463ffffffff16610238565b6101e7610ff2565b6001546001600160a01b03166102ac565b6101e7610ffc565b6102046103e4366004611a54565b61101e565b60006103f361115a565b8015610405575060035463ffffffff16155b905090565b60035463ffffffff166104645760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b61046c610b78565b6104b85760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c6574650000000000604482015260640161045b565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561052157600080fd5b505af1158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611ac1565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006105944290565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561066e57600080fd5b505af1158015610682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a69190611af7565b5060006106b4858585611180565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506106de866001611bfd565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6107c161115a565b6108335760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b60035463ffffffff16156108895760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d726571756573746564604482015260640161045b565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156108e757600080fd5b505afa1580156108fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091f9190611a71565b90925090506001600160a01b0382161580159061093c5750600081115b1561095b5760025461095b906001600160a01b038481169116836111c5565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b1580156109ba57600080fd5b505af11580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f29190611b14565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610a254290565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610ab6610d97565b610b025760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f75740000000000604482015260640161045b565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610bdf57600080fd5b505afa158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104059190611a9f565b6001546001600160a01b03163314610c715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161045b565b600154610c86906001600160a01b03166112f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610cb86000546001600160a01b031690565b6001600160a01b031614610d0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d16611352565b610d1f816113cc565b50565b33610d356000546001600160a01b031690565b6001600160a01b031614610d8b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d9560006112f5565b565b60035460009068010000000000000000900467ffffffffffffffff16610dbd5750600090565b4260035460045467ffffffffffffffff92831692610e0692680100000000000000009004169074010000000000000000000000000000000000000000900463ffffffff16611c25565b67ffffffffffffffff1610905090565b60006104056114cc565b33610e336000546001600160a01b031690565b6001600160a01b031614610e895760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610e91611352565b610d1f81611508565b6005546004546000916104059167ffffffffffffffff90911690600160c01b900463ffffffff1642611180565b33610eda6000546001600160a01b031690565b6001600160a01b031614610f305760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f38611352565b610d1f8161155f565b6000610405611647565b600554600454600091610f789167ffffffffffffffff90911690600160c01b900463ffffffff1684611180565b92915050565b600033610f936000546001600160a01b031690565b6001600160a01b031614610fe95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f7882611672565b600061040561115a565b600061100f60035463ffffffff16151590565b80156104055750610405610b78565b336110316000546001600160a01b031690565b6001600160a01b0316146110875760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b6001600160a01b0381166111035760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161045b565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60004267ffffffffffffffff1661116f611647565b67ffffffffffffffff161115905090565b60008063ffffffff84166111948685611cc6565b61119e9190611c48565b90506111b063ffffffff851682611c96565b6111ba9086611c25565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112629190611ac1565b61126c9190611be5565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506112ef9085906117db565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806113805750600354640100000000900463ffffffff1681105b610d1f5760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c696768740000000000000000604482015260640161045b565b603c8163ffffffff16116114485760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806114d7611647565b90504267ffffffffffffffff808216908316116114f75760009250505090565b6115018183611cc6565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff16116115db5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f00000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016114c1565b60045460055460009161040591600160c01b90910463ffffffff169067ffffffffffffffff16611c25565b6004546000906001600160a01b039081169083166116f85760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b806001600160a01b0316836001600160a01b031614156117805760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611830826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118c59092919063ffffffff16565b8051909150156118c0578080602001905181019061184e9190611a9f565b6118c05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161045b565b505050565b60606118d484846000856118dc565b949350505050565b6060824710156119545760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161045b565b843b6119a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045b565b600080866001600160a01b031685876040516119be9190611b78565b60006040518083038185875af1925050503d80600081146119fb576040519150601f19603f3d011682016040523d82523d6000602084013e611a00565b606091505b5091509150611a10828286611a1b565b979650505050505050565b60608315611a2a5750816111be565b825115611a3a5782518084602001fd5b8160405162461bcd60e51b815260040161045b9190611b94565b600060208284031215611a6657600080fd5b81356111be81611d4a565b60008060408385031215611a8457600080fd5b8251611a8f81611d4a565b6020939093015192949293505050565b600060208284031215611ab157600080fd5b815180151581146111be57600080fd5b600060208284031215611ad357600080fd5b5051919050565b600060208284031215611aec57600080fd5b81356111be81611d5f565b600060208284031215611b0957600080fd5b81516111be81611d5f565b60008060408385031215611b2757600080fd5b8251611b3281611d5f565b6020840151909250611b4381611d5f565b809150509250929050565b600060208284031215611b6057600080fd5b813567ffffffffffffffff811681146111be57600080fd5b60008251611b8a818460208701611cef565b9190910192915050565b6020815260008251806020840152611bb3816040850160208701611cef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611bf857611bf8611d1b565b500190565b600063ffffffff808316818516808303821115611c1c57611c1c611d1b565b01949350505050565b600067ffffffffffffffff808316818516808303821115611c1c57611c1c611d1b565b600067ffffffffffffffff80841680611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611cbd57611cbd611d1b565b02949350505050565b600067ffffffffffffffff83811690831681811015611ce757611ce7611d1b565b039392505050565b60005b83811015611d0a578181015183820152602001611cf2565b838111156112ef5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610d1f57600080fd5b63ffffffff81168114610d1f57600080fdfea2646970667358221220b666fa52964bf99e4796686787b8bd3015b009df0838eb680de9fee2ce1dc0d464736f6c6343000806003344726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2429 CODESIZE SUB DUP1 PUSH3 0x2429 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x58E JUMP JUMPDEST DUP7 PUSH3 0x40 DUP2 PUSH3 0x238 JUMP JUMPDEST POP PUSH1 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND GT PUSH3 0xA2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x2409 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x2D7468616E2D7A65726F PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH3 0xFA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D7A65726F000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x1 DUP5 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH3 0x153 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6E6578742D647261772D69642D6774652D6F6E6500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP7 AND PUSH9 0x10000000000000000 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND OR OR SWAP1 SSTORE PUSH3 0x18E DUP3 PUSH3 0x288 JUMP JUMPDEST PUSH3 0x199 DUP7 PUSH3 0x33D JUMP JUMPDEST POP PUSH3 0x1A5 DUP6 PUSH3 0x473 JUMP JUMPDEST PUSH3 0x1B0 DUP2 PUSH3 0x4BD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP7 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x3125F2F28108D5EABE48AA2A11ADFF21D6F9244F0436278992999404BA4FC5AD SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP PUSH3 0x652 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH3 0x2E2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x2409 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x2D7468616E2D7A65726F PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL NOT AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH3 0x3B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x2D61646472657373 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH3 0x425 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x2D61646472657373 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH3 0x51F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x99 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD PUSH3 0x332 JUMP JUMPDEST DUP1 MLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH3 0x589 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH3 0x5AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 MLOAD PUSH3 0x5B7 DUP2 PUSH3 0x639 JUMP JUMPDEST PUSH1 0x20 DUP10 ADD MLOAD SWAP1 SWAP8 POP PUSH3 0x5CA DUP2 PUSH3 0x639 JUMP JUMPDEST PUSH1 0x40 DUP10 ADD MLOAD SWAP1 SWAP7 POP PUSH3 0x5DD DUP2 PUSH3 0x639 JUMP JUMPDEST SWAP5 POP PUSH3 0x5ED PUSH1 0x60 DUP10 ADD PUSH3 0x574 JUMP JUMPDEST PUSH1 0x80 DUP10 ADD MLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x60B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP PUSH3 0x61B PUSH1 0xA0 DUP10 ADD PUSH3 0x574 JUMP JUMPDEST SWAP2 POP PUSH3 0x62B PUSH1 0xC0 DUP10 ADD PUSH3 0x574 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x64F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1DA7 DUP1 PUSH3 0x662 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x738BBEA8 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA104FD79 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD1E77657 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD1E77657 EQ PUSH2 0x3B5 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0xE4A75BB8 EQ PUSH2 0x3CE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA104FD79 EQ PUSH2 0x36D JUMPI DUP1 PUSH4 0xA3AE35AB EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0xAB70D49C EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0xC57708C2 EQ PUSH2 0x39B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F4296D7 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x7F4296D7 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x89C36F8E EQ PUSH2 0x341 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x919BEAD0 EQ PUSH2 0x35A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x738BBEA8 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0x75E38F16 EQ PUSH2 0x315 JUMPI DUP1 PUSH4 0x7CE52B18 EQ PUSH2 0x31D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2D4 JUMPI DUP1 PUSH4 0x5020EA56 EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x6BEA5344 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x29F JUMPI DUP1 PUSH4 0x412A616A EQ PUSH2 0x2C4 JUMPI DUP1 PUSH4 0x4ABA4F6B EQ PUSH2 0x2CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1B5344A2 GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x1B5344A2 EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0x2A7AD609 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x2AE168A6 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x39F92C30 EQ PUSH2 0x263 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x996F6E1 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xBDEECBD EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x111070E4 EQ PUSH2 0x206 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x3E9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x204 PUSH2 0x40A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO PUSH2 0x1E7 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x7B9 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xAAE JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xC17 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xCA5 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xD22 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE16 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x33C CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xE20 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE9A JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xEC7 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xF41 JUMP JUMPDEST PUSH2 0x271 PUSH2 0x383 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH2 0x2AC PUSH2 0x396 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xF7E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFF2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFFC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x3E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x101E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F3 PUSH2 0x115A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D72657175657374656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x46C PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x4B8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D636F6D706C6574650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x9D2A5F9800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9D2A5F98 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x521 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x535 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x559 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD SWAP2 SWAP3 POP PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 DUP3 DIV DUP2 AND SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH1 0x0 PUSH2 0x594 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP8 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP8 DUP2 AND PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x3 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP3 AND PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP6 AND PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x4 DUP1 SLOAD SWAP9 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP9 MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP5 MLOAD DUP7 AND PUSH1 0x24 DUP7 ADD MSTORE SWAP2 MLOAD DUP4 AND PUSH1 0x44 DUP6 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP4 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x84 DUP3 ADD MSTORE SWAP3 SWAP4 POP SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x66E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x682 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x6A6 SWAP2 SWAP1 PUSH2 0x1AF7 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x6B4 DUP6 DUP6 DUP6 PUSH2 0x1180 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH8 0xFFFFFFFFFFFFFFFF DUP4 AND OR SWAP1 SSTORE SWAP1 POP PUSH2 0x6DE DUP7 PUSH1 0x1 PUSH2 0x1BFD JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 AND SWAP1 SSTORE PUSH1 0x40 MLOAD DUP8 DUP2 MSTORE PUSH32 0x13F646A3648EE5B5A0E8D6BC3D2D623FDDF38FA7C8C5DFDBDBE6A913112EDC6C SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x7C1 PUSH2 0x115A JUMP JUMPDEST PUSH2 0x833 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D6E6F742D6F7665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D616C72656164792D726571756573746564 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xD37B53700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0xD37B537 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8FB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x91F SWAP2 SWAP1 PUSH2 0x1A71 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x93C JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0x95B JUMPI PUSH1 0x2 SLOAD PUSH2 0x95B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND DUP4 PUSH2 0x11C5 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8678A7B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x8678A7B2 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP8 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x9CE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9F2 SWAP2 SWAP1 PUSH2 0x1B14 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP3 AND SWAP1 DUP6 AND OR OR SWAP1 SSTORE SWAP1 SWAP3 POP SWAP1 POP PUSH2 0xA25 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0xDE3A7AF7D3C2126E4FB96A7065B39F8BB17E3B9111C092E11236942FB38CA61 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH2 0xAB6 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0xB02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D74696D65646F75740000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND DUP1 DUP4 MSTORE SWAP3 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x67638A3A7093A89CC6046DCA58AA93D6343E30847E8F84FC3759D9D4A3E6E38B SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x3A19B9BC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x3A19B9BC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBDF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBF3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x405 SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xC86 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x12F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0xCB8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD16 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x13CC JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xD35 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD8B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD95 PUSH1 0x0 PUSH2 0x12F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xDBD JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST TIMESTAMP PUSH1 0x3 SLOAD PUSH1 0x4 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND SWAP3 PUSH2 0xE06 SWAP3 PUSH9 0x10000000000000000 SWAP1 DIV AND SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND LT SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x14CC JUMP JUMPDEST CALLER PUSH2 0xE33 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE89 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xE91 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x1508 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x1180 JUMP JUMPDEST CALLER PUSH2 0xEDA PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF38 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x155F JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x1647 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0xF78 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x1180 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xF93 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFE9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF78 DUP3 PUSH2 0x1672 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x115A JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100F PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH2 0x405 PUSH2 0xB78 JUMP JUMPDEST CALLER PUSH2 0x1031 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x116F PUSH2 0x1647 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x1194 DUP7 DUP6 PUSH2 0x1CC6 JUMP JUMPDEST PUSH2 0x119E SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST SWAP1 POP PUSH2 0x11B0 PUSH4 0xFFFFFFFF DUP6 AND DUP3 PUSH2 0x1C96 JUMP JUMPDEST PUSH2 0x11BA SWAP1 DUP7 PUSH2 0x1C25 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x122A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x123E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1262 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH2 0x126C SWAP2 SWAP1 PUSH2 0x1BE5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x12EF SWAP1 DUP6 SWAP1 PUSH2 0x17DB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD NUMBER SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO DUP1 PUSH2 0x1380 JUMPI POP PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 LT JUMPDEST PUSH2 0xD1F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D696E2D666C696768740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1448 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x14D7 PUSH2 0x1647 JUMP JUMPDEST SWAP1 POP TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x14F7 JUMPI PUSH1 0x0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x1501 DUP2 DUP4 PUSH2 0x1CC6 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x15DB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D67726561746572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D7468616E2D7A65726F00000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD PUSH2 0x14C1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x5 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH2 0x16F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1780 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18C5 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x18C0 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x184E SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH2 0x18C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x18D4 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x18DC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1954 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x19A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x19BE SWAP2 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x19FB JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A00 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A10 DUP3 DUP3 DUP7 PUSH2 0x1A1B JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1A2A JUMPI POP DUP2 PUSH2 0x11BE JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1A3A JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x45B SWAP2 SWAP1 PUSH2 0x1B94 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1A8F DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AD3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1B32 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x1B43 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1B8A DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1BB3 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1BF8 JUMPI PUSH2 0x1BF8 PUSH2 0x1D1B JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1C8A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1CBD JUMPI PUSH2 0x1CBD PUSH2 0x1D1B JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1D1B JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D0A JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1CF2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x12EF JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB6 PUSH7 0xFA52964BF99E47 SWAP7 PUSH9 0x6787B8BD3015B009DF ADDMOD CODESIZE 0xEB PUSH9 0xDE9FEE2CE1DC0D464 PUSH20 0x6F6C6343000806003344726177426561636F6E2F PUSH3 0x656163 PUSH16 0x6E2D706572696F642D67726561746572 ",
              "sourceMap": "1131:14710:22:-:0;;;3923:841;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4161:6;1648:24:19;4161:6:22;1648:9:19;:24::i;:::-;1603:76;4208:1:22::1;4187:18;-1:-1:-1::0;;;;;4187:22:22::1;;4179:77;;;::::0;-1:-1:-1;;;4179:77:22;;2148:2:94;4179:77:22::1;::::0;::::1;2130:21:94::0;2187:2;2167:18;;;2160:30;-1:-1:-1;;;;;;;;;;;2206:18:94;;;2199:62;-1:-1:-1;;;2277:18:94;;;2270:40;2327:19;;4179:77:22::1;;;;;;;;;-1:-1:-1::0;;;;;4274:27:22;::::1;4266:63;;;::::0;-1:-1:-1;;;4266:63:22;;2961:2:94;4266:63:22::1;::::0;::::1;2943:21:94::0;3000:2;2980:18;;;2973:30;3039:25;3019:18;;;3012:53;3082:18;;4266:63:22::1;2933:173:94::0;4266:63:22::1;4362:1;4347:11;:16;;;;4339:60;;;::::0;-1:-1:-1;;;4339:60:22;;1379:2:94;4339:60:22::1;::::0;::::1;1361:21:94::0;1418:2;1398:18;;;1391:30;1457:33;1437:18;;;1430:61;1508:18;;4339:60:22::1;1351:181:94::0;4339:60:22::1;4410:21;:42:::0;;4462:24:::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;;4462:24:22;;;-1:-1:-1;;;;;4410:42:22;::::1;4462:24:::0;::::1;::::0;;4497:45:::1;4521:20:::0;4497:23:::1;:45::i;:::-;4552:27;4567:11:::0;4552:14:::1;:27::i;:::-;-1:-1:-1::0;4589:20:22::1;4604:4:::0;4589:14:::1;:20::i;:::-;4619:27;4634:11:::0;4619:14:::1;:27::i;:::-;4662:41;::::0;;3917:10:94;3905:23;;3887:42;;-1:-1:-1;;;;;3965:31:94;;3960:2;3945:18;;3938:59;4662:41:22::1;::::0;3860:18:94;4662:41:22::1;;;;;;;4718:39;::::0;-1:-1:-1;;;;;4718:39:22;::::1;::::0;::::1;::::0;;;::::1;3923:841:::0;;;;;;;1131:14710;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;15109:283:22:-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:22;;2148:2:94;15190:79:22;;;2130:21:94;2187:2;2167:18;;;2160:30;-1:-1:-1;;;;;;;;;;;2206:18:94;;;2199:62;-1:-1:-1;;;2277:18:94;;;2270:40;2327:19;;15190:79:22;2120:232:94;15190:79:22;15279:19;:42;;-1:-1:-1;;;;15279:42:22;-1:-1:-1;;;15279:42:22;;;;;;;;;;;;;15337:48;;3664:42:94;;;15337:48:22;;3652:2:94;3637:18;15337:48:22;;;;;;;;15109:283;:::o;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:22;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:22;;3313:2:94;14571:90:22;;;3295:21:94;3352:2;3332:18;;;3325:30;3391:34;3371:18;;;3364:62;-1:-1:-1;;;3442:18:94;;;3435:38;3490:19;;14571:90:22;3285:230:94;14571:90:22;14728:19;-1:-1:-1;;;;;14693:55:22;14701:14;-1:-1:-1;;;;;14693:55:22;;;14672:142;;;;-1:-1:-1;;;14672:142:22;;1739:2:94;14672:142:22;;;1721:21:94;1778:2;1758:18;;;1751:30;1817:34;1797:18;;;1790:62;-1:-1:-1;;;1868:18:94;;;1861:38;1916:19;;14672:142:22;1711:230:94;14672:142:22;14825:10;:27;;-1:-1:-1;;;;;;14825:27:22;-1:-1:-1;;;;;14825:27:22;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:22;-1:-1:-1;14919:14:22;;14424:516;-1:-1:-1;14424:516:22:o;11695:142::-;11768:3;:17;;-1:-1:-1;;;;;;11768:17:22;-1:-1:-1;;;;;11768:17:22;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:22;11695:142;:::o;15631:208::-;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:22;;2559:2:94;15694:62:22;;;2541:21:94;2598:2;2578:18;;;2571:30;2637:34;2617:18;;;2610:62;-1:-1:-1;;;2688:18:94;;;2681:31;2729:19;;15694:62:22;2531:223:94;15694:62:22;15766:10;:24;;-1:-1:-1;;;;15766:24:22;-1:-1:-1;;;15766:24:22;;;;;;;;;;;;;15806:26;;3664:42:94;;;15806:26:22;;3652:2:94;3637:18;15806:26:22;3619:93:94;14:167;92:13;;145:10;134:22;;124:33;;114:2;;171:1;168;161:12;114:2;73:108;;;:::o;186:986::-;347:6;355;363;371;379;387;395;448:3;436:9;427:7;423:23;419:33;416:2;;;465:1;462;455:12;416:2;497:9;491:16;516:31;541:5;516:31;:::i;:::-;616:2;601:18;;595:25;566:5;;-1:-1:-1;629:33:94;595:25;629:33;:::i;:::-;733:2;718:18;;712:25;681:7;;-1:-1:-1;746:33:94;712:25;746:33;:::i;:::-;798:7;-1:-1:-1;824:48:94;868:2;853:18;;824:48;:::i;:::-;917:3;902:19;;896:26;814:58;;-1:-1:-1;;;;;;953:32:94;;941:45;;931:2;;1000:1;997;990:12;931:2;1023:7;-1:-1:-1;1049:49:94;1093:3;1078:19;;1049:49;:::i;:::-;1039:59;;1117:49;1161:3;1150:9;1146:19;1117:49;:::i;:::-;1107:59;;406:766;;;;;;;;;;:::o;4008:131::-;-1:-1:-1;;;;;4083:31:94;;4073:42;;4063:2;;4129:1;4126;4119:12;4063:2;4053:86;:::o;:::-;1131:14710:22;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_beaconPeriodEndAt_4210": {
                  "entryPoint": 5703,
                  "id": 4210,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_beaconPeriodRemainingSeconds_4238": {
                  "entryPoint": 5324,
                  "id": 4238,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_calculateNextBeaconPeriodStartTime_4186": {
                  "entryPoint": 4480,
                  "id": 4186,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 6107,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_currentTime_4199": {
                  "entryPoint": null,
                  "id": 4199,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_isBeaconPeriodOver_4251": {
                  "entryPoint": 4442,
                  "id": 4251,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_requireDrawNotStarted_4274": {
                  "entryPoint": 4946,
                  "id": 4274,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_4348": {
                  "entryPoint": 5471,
                  "id": 4348,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_4326": {
                  "entryPoint": 5746,
                  "id": 4326,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 4853,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_4157": {
                  "entryPoint": 5384,
                  "id": 4157,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_4370": {
                  "entryPoint": 5068,
                  "id": 4370,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@beaconPeriodEndAt_3921": {
                  "entryPoint": 3905,
                  "id": 3921,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@beaconPeriodRemainingSeconds_3910": {
                  "entryPoint": 3606,
                  "id": 3910,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTimeFromCurrentTime_3770": {
                  "entryPoint": 3738,
                  "id": 3770,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTime_3786": {
                  "entryPoint": 3915,
                  "id": 3786,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@canCompleteDraw_3756": {
                  "entryPoint": 4092,
                  "id": 3756,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canStartDraw_3742": {
                  "entryPoint": 1001,
                  "id": 3742,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@cancelDraw_3816": {
                  "entryPoint": 2734,
                  "id": 3816,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 3095,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@completeDraw_3899": {
                  "entryPoint": 1034,
                  "id": 3899,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1412": {
                  "entryPoint": 6364,
                  "id": 1412,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1342": {
                  "entryPoint": 6341,
                  "id": 1342,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getBeaconPeriodSeconds_3929": {
                  "entryPoint": null,
                  "id": 3929,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBeaconPeriodStartedAt_3937": {
                  "entryPoint": null,
                  "id": 3937,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawBuffer_3946": {
                  "entryPoint": null,
                  "id": 3946,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngLockBlock_3965": {
                  "entryPoint": null,
                  "id": 3965,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngRequestId_3975": {
                  "entryPoint": null,
                  "id": 3975,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNextDrawId_3954": {
                  "entryPoint": null,
                  "id": 3954,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngService_3984": {
                  "entryPoint": null,
                  "id": 3984,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngTimeout_3992": {
                  "entryPoint": null,
                  "id": 3992,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isBeaconPeriodOver_4003": {
                  "entryPoint": 4082,
                  "id": 4003,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1271": {
                  "entryPoint": null,
                  "id": 1271,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isRngCompleted_3689": {
                  "entryPoint": 2936,
                  "id": 3689,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngRequested_3702": {
                  "entryPoint": null,
                  "id": 3702,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngTimedOut_3727": {
                  "entryPoint": 3479,
                  "id": 3727,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 3362,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1030": {
                  "entryPoint": 4549,
                  "id": 1030,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBeaconPeriodSeconds_4108": {
                  "entryPoint": 3783,
                  "id": 4108,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setDrawBuffer_4021": {
                  "entryPoint": 3966,
                  "id": 4021,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setRngService_4141": {
                  "entryPoint": 3616,
                  "id": 4141,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setRngTimeout_4124": {
                  "entryPoint": 3237,
                  "id": 4124,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@startDraw_4092": {
                  "entryPoint": 1977,
                  "id": 4092,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 4126,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1547": {
                  "entryPoint": 6683,
                  "id": 1547,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 6740,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256_fromMemory": {
                  "entryPoint": 6769,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 6815,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IDrawBuffer_$8409": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_RNGInterface_$3314": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 6849,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 6874,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32_fromMemory": {
                  "entryPoint": 6903,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint32_fromMemory": {
                  "entryPoint": 6932,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 6990,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 7032,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_RNGInterface_$3314__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7060,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 7141,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 7165,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 7205,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint64": {
                  "entryPoint": 7240,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint64": {
                  "entryPoint": 7318,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint64": {
                  "entryPoint": 7366,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 7407,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "panic_error_0x11": {
                  "entryPoint": 7451,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 7498,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7519,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:14641:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:247:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "364:214:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "410:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "419:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "422:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "412:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "412:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "385:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "394:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "406:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "377:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "377:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "374:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "435:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "454:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "448:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "448:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "439:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "473:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "473:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "473:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "513:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "523:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "513:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "537:35:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "568:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "553:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "553:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:25:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "537:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "322:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "333:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "345:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "353:6:94",
                            "type": ""
                          }
                        ],
                        "src": "266:312:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "751:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "814:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "823:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "826:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "816:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "816:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "816:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "783:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "804:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "797:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "797:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "790:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "790:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "780:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "780:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "773:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "773:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "770:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "839:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "849:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "839:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "627:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "638:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "650:6:94",
                            "type": ""
                          }
                        ],
                        "src": "583:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "955:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1001:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1010:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1013:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1003:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1003:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1003:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "976:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "985:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "972:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "972:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "997:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "968:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "968:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "965:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1026:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1052:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1039:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1039:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1030:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1096:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1071:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1071:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1071:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1111:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1121:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1111:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IDrawBuffer_$8409",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "921:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "932:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "944:6:94",
                            "type": ""
                          }
                        ],
                        "src": "865:267:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1228:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1274:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1283:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1286:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1276:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1276:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1276:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1249:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1258:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1245:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1245:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1270:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1241:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1241:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1238:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1299:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1325:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1312:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1312:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1303:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1369:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1344:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1344:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1344:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1384:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1394:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1384:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_RNGInterface_$3314",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1194:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1205:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1217:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1137:268:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1491:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1537:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1546:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1549:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1539:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1539:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1539:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1512:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1521:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1508:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1508:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1533:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1504:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1504:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1501:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1562:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1578:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1572:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1572:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1562:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1457:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1468:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1480:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1410:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1668:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1714:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1723:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1726:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1716:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1716:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1716:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1689:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1698:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1685:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1685:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1710:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1681:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1681:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1678:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1739:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1765:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1743:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1808:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1784:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1784:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1784:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1823:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1833:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1823:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1634:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1645:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1657:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1599:245:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1929:169:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1975:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1984:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1987:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1977:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1977:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1977:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1950:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1959:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1946:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1946:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1971:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1942:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1942:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1939:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2000:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2019:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2013:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2013:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2004:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2062:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2038:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2038:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2038:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2077:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2087:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2077:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1895:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1906:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1918:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1849:249:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2199:285:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2245:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2254:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2257:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2247:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2247:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2247:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2220:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2229:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2216:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2216:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2241:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2212:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2212:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2209:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2270:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2289:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2274:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2332:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2308:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2308:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2308:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2347:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2357:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2347:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2371:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2396:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2407:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2392:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2392:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2386:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2386:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2375:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2444:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2420:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2420:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2420:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2461:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2471:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2461:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2157:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2168:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2180:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2188:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2103:381:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2558:215:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2604:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2613:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2616:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2606:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2606:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2606:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2579:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2588:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2575:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2575:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2600:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2571:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2571:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2568:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2629:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2655:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2642:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2642:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2633:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2727:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2736:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2739:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2729:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2729:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2729:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2698:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2705:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2694:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2694:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2684:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2684:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2677:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2677:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2674:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2752:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2762:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2752:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2524:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2535:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2547:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2489:284:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2915:137:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2925:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2945:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2939:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2939:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2929:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2987:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2995:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2983:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2983:17:94"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3002:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3007:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2961:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2961:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2961:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3023:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3034:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3039:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3030:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3030:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "3023:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2891:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2896:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2907:3:94",
                            "type": ""
                          }
                        ],
                        "src": "2778:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3158:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3168:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3180:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3191:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3168:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3210:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3225:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3233:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3221:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3221:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3203:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3203:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3203:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3127:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3138:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3149:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3057:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3417:198:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3427:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3439:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3450:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3427:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3462:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3472:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3466:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3530:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3545:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3553:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3541:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3541:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3523:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3523:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3523:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3577:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3588:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3573:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3573:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3597:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3605:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3593:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3593:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3566:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3566:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3566:43:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3378:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3389:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3397:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3408:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3288:327:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3749:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3759:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3771:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3782:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3767:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3767:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3759:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3801:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3816:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3824:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3812:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3812:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3794:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3794:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3794:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3888:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3899:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3884:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3884:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3904:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3877:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3877:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3877:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3710:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3721:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3729:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3740:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3620:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4017:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4027:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4039:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4050:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4035:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4035:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4027:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4069:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "4094:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4087:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4087:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "4080:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4080:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4062:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4062:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4062:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3986:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3997:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4008:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3922:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4235:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4245:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4257:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4268:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4253:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4253:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4245:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4287:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4302:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4310:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4298:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4298:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4280:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4280:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4280:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4204:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4215:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4226:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4114:246:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4487:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4497:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4509:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4520:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4505:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4505:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4497:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4539:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4554:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4562:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4550:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4550:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4532:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4532:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4532:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_RNGInterface_$3314__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4456:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4467:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4478:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4365:247:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4738:321:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4755:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4766:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4748:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4748:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4748:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4778:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4798:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4792:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4792:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4782:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4825:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4836:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4821:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4821:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4841:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4814:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4814:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4814:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4883:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4891:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4879:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4879:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4900:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4911:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4896:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4896:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4916:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4857:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4857:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4857:66:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4932:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4948:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4967:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4975:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4963:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4963:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4980:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4959:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4959:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4944:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4944:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5050:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4940:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4940:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4932:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4707:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4718:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4729:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4617:442:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5238:178:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5255:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5266:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5248:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5248:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5248:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5289:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5300:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5285:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5285:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5305:2:94",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5278:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5278:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5278:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5328:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5339:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5324:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5324:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5344:30:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5317:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5317:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5317:58:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5384:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5396:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5407:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5392:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5392:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5384:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5215:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5229:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5064:352:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5595:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5612:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5623:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5605:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5605:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5605:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5646:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5657:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5642:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5642:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5662:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5635:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5635:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5635:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5685:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5696:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5681:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5681:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d616c72656164792d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5701:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-already-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5674:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5674:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5674:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5745:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5757:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5768:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5753:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5753:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5745:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5572:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5586:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5421:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5956:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5973:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5984:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5966:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5966:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5966:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6007:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6018:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6003:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6003:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6023:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5996:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5996:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5996:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6046:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6057:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6042:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6042:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6062:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6035:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6035:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6035:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6117:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6128:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6113:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6113:18:94"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6133:10:94",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6106:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6106:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6106:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6153:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6165:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6176:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6161:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6161:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6153:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5933:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5947:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5782:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6365:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6382:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6393:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6375:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6375:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6375:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6416:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6427:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6412:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6412:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6432:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6405:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6405:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6405:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6455:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6466:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6451:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6451:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6471:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6444:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6444:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6444:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6526:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6537:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6522:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6522:18:94"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6542:12:94",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6515:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6515:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6515:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6564:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6576:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6587:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6572:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6572:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6564:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6342:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6356:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6191:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6776:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6793:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6804:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6786:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6786:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6786:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6827:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6838:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6823:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6823:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6843:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6816:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6816:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6816:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6866:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6877:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6862:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6862:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6882:34:94",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6855:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6855:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6855:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6937:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6948:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6933:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6933:18:94"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6953:8:94",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6926:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6926:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6926:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6971:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6983:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6994:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6979:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6979:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6971:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6753:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6767:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6602:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7183:177:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7200:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7211:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7193:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7193:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7193:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7234:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7245:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7230:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7230:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7250:2:94",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7223:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7223:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7223:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7273:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7284:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7269:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7269:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d636f6d706c657465",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7289:29:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-complete"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7262:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7262:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7262:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7328:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7340:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7351:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7336:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7336:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7328:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7160:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7174:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7009:351:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7539:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7556:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7567:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7549:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7549:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7549:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7590:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7601:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7586:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7586:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7606:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7579:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7579:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7579:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7629:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7640:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7625:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7625:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7645:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7618:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7618:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7618:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7681:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7693:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7704:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7689:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7689:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7681:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7516:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7530:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7365:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7892:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7909:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7920:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7902:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7902:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7902:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7943:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7954:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7939:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7939:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7959:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7932:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7932:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7932:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7982:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7993:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7978:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7978:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7998:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7971:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7971:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7971:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8053:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8064:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8049:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8049:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8069:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8042:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8042:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8042:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8082:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8094:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8105:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8090:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8090:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8082:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7869:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7883:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7718:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8294:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8311:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8322:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8304:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8304:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8304:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8345:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8356:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8341:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8341:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8361:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8334:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8334:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8334:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8384:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8395:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8380:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8380:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8400:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8373:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8373:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8373:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8443:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8455:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8466:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8451:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8451:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8443:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8271:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8285:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8120:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8654:177:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8671:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8682:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8664:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8664:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8664:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8705:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8716:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8701:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8701:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8721:2:94",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8694:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8694:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8694:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8744:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8755:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8740:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8740:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d74696d65646f7574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8760:29:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-timedout"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8733:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8733:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8733:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8799:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8811:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8822:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8807:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8807:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8799:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8631:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8645:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8480:351:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9010:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9027:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9038:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9020:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9020:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9020:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9061:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9072:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9057:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9057:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9077:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9050:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9050:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9050:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9100:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9111:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9096:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9096:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f7665",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9116:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-not-ove"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9089:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9089:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9089:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9171:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9182:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9167:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9167:18:94"
                                  },
                                  {
                                    "hexValue": "72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9187:3:94",
                                    "type": "",
                                    "value": "r"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9160:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9160:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9160:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9200:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9212:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9223:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9208:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9208:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9200:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8987:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9001:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8836:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9412:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9429:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9440:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9422:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9422:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9422:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9463:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9474:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9459:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9459:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9479:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9452:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9452:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9452:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9502:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9513:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9498:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9498:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9518:31:94",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9491:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9491:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9491:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9559:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9571:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9582:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9567:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9567:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9559:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9389:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9403:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9238:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9770:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9787:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9798:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9780:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9780:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9780:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9821:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9832:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9817:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9817:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9837:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9810:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9810:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9810:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9860:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9871:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9856:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9856:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9876:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9849:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9849:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9849:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9931:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9942:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9927:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9927:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9947:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9920:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9920:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9920:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9964:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9976:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9987:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9972:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9972:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9964:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9747:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9761:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9596:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10176:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10193:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10204:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10186:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10186:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10186:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10227:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10238:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10223:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10223:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10243:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10216:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10216:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10216:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10266:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10277:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10262:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10262:18:94"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10282:34:94",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10255:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10255:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10255:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10337:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10348:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10333:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10333:18:94"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10353:12:94",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10326:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10326:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10326:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10375:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10387:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10398:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10383:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10383:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10375:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10153:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10167:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10002:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10587:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10604:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10615:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10597:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10597:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10597:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10638:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10649:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10634:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10634:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10654:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10627:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10627:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10627:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10677:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10688:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10673:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10673:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10693:34:94",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10666:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10666:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10666:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10748:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10759:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10744:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10744:18:94"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10764:10:94",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10737:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10737:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10737:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10784:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10796:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10807:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10792:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10792:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10784:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10564:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10578:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10413:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10996:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11013:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11024:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11006:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11006:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11006:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11047:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11058:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11043:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11043:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11063:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11036:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11036:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11036:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11086:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11097:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11082:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11082:18:94"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d696e2d666c69676874",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11102:26:94",
                                    "type": "",
                                    "value": "DrawBeacon/rng-in-flight"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11075:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11075:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11075:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11138:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11150:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11161:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11146:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11146:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11138:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10973:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10987:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10822:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11320:524:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11330:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11342:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11353:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11338:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11338:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11330:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11373:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11390:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "11384:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11384:13:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11366:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11366:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11366:32:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11407:44:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11437:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11445:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11433:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11433:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11427:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11427:24:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "11411:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11460:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11470:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11464:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11500:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11511:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11496:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11496:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11522:12:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11536:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11518:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11518:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11489:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11489:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11489:51:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11549:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11581:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11589:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11577:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11577:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11571:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11571:24:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11553:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11604:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11614:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11608:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11652:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11663:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11648:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11674:14:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "11690:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11670:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11670:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11641:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11641:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11641:53:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11714:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11725:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11710:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11710:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "11746:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11754:4:94",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11742:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11742:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "11736:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11736:24:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "11762:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11732:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11732:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11703:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11703:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11703:63:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11786:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11797:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11782:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11782:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "11818:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11826:4:94",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11814:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11814:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "11808:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11808:24:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11834:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11804:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11804:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11775:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11775:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11775:63:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11289:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11300:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11311:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11175:669:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11950:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11960:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11972:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11983:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11968:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11968:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11960:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12002:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12013:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11995:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11995:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11995:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11919:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11930:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11941:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11849:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12130:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12140:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12152:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12163:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12148:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12148:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12140:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12182:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12197:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12205:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12193:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12193:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12175:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12175:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12175:42:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12099:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12110:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12121:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12031:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12327:101:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12337:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12349:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12360:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12345:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12345:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12337:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12379:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12394:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12402:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12390:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12390:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12372:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12372:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12372:50:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12296:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12307:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12318:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12228:200:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12481:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12508:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12510:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12510:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12510:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12497:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12504:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12500:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12500:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12494:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12494:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12491:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12539:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12550:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12553:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12546:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12546:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12539:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12464:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12467:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12473:3:94",
                            "type": ""
                          }
                        ],
                        "src": "12433:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12613:181:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12623:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12633:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12627:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12652:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12667:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12670:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12663:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12663:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12656:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12682:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12697:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12700:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12693:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12693:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12686:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12737:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12739:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12739:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12739:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12718:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12727:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12731:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12723:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12723:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12715:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12715:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12712:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12768:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12779:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12784:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12775:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12775:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12768:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12596:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12599:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12605:3:94",
                            "type": ""
                          }
                        ],
                        "src": "12566:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12846:189:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12856:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12866:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12860:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12893:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12908:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12911:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12904:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12904:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12897:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12923:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12938:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12941:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12934:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12934:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12927:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12978:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12980:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12980:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12980:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12959:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12968:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12972:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12964:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12964:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12956:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12956:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12953:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13009:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13020:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13025:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13016:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13016:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13009:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12829:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12832:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12838:3:94",
                            "type": ""
                          }
                        ],
                        "src": "12799:236:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13085:308:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13095:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13105:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13099:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13132:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13147:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13150:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13143:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13143:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13136:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13185:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13206:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13209:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13199:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13199:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13199:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13307:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13310:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13300:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13300:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13300:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13335:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13338:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13328:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13328:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13328:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13172:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13165:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13165:11:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13162:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13362:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "13375:1:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13378:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13371:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13371:10:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13383:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "13367:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13367:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "13362:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13070:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13073:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13079:1:94",
                            "type": ""
                          }
                        ],
                        "src": "13040:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13449:219:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13459:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13469:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13463:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13496:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13511:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13514:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13507:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13507:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13500:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13526:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13541:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13544:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13537:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13537:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13530:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13607:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13609:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13609:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13609:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13577:3:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "13570:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13570:11:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "13563:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13563:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13587:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13596:2:94"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13600:3:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "13592:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13592:12:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13584:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13584:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13559:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13559:47:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13556:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13638:24:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13653:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13658:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "13649:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13649:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "13638:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13428:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13431:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "13437:7:94",
                            "type": ""
                          }
                        ],
                        "src": "13398:270:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13721:181:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13731:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13741:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13735:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13768:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13783:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13786:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13779:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13779:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13772:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13798:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13813:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13816:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13809:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13809:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13802:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13844:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13846:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13846:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13846:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13834:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13839:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13831:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13831:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13828:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13875:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13887:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13892:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13883:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13883:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13875:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13703:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13706:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13712:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13673:229:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13960:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13970:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13979:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13974:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14039:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14064:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "14069:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14060:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14060:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14083:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14088:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "14079:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14079:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "14073:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14073:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14053:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14053:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14053:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14000:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14003:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13997:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13997:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14011:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14013:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14022:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14025:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14018:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14018:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14013:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13993:3:94",
                                "statements": []
                              },
                              "src": "13989:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14128:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14141:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "14146:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14137:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14137:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14155:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14130:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14130:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14130:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14117:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14120:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14114:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14114:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14111:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "13938:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "13943:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "13948:6:94",
                            "type": ""
                          }
                        ],
                        "src": "13907:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14202:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14219:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14222:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14212:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14212:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14212:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14316:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14319:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14309:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14309:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14309:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14340:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14343:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "14333:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14333:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14333:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "14170:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14404:109:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14491:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14500:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14503:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14493:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14493:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14493:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14427:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14438:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14445:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14434:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14434:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14424:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14424:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14417:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14417:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14414:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14393:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14359:154:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14562:77:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14617:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14626:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14629:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14619:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14619:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14619:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14585:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14596:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14603:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14592:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14592:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14582:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14582:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14575:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14575:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14572:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14551:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14518:121:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := mload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IDrawBuffer_$8409(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_RNGInterface_$3314(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32t_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_RNGInterface_$3314__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-requested\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-already-requested\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/existing-draw-history\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-greater\")\n        mstore(add(headStart, 96), \"-than-zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-complete\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-timeout-gt-60-sec\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-not-timedout\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"DrawBeacon/beacon-period-not-ove\")\n        mstore(add(headStart, 96), \"r\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"DrawBeacon/draw-history-not-zero\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawBeacon/rng-in-flight\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, mload(value0))\n        let memberValue0 := mload(add(value0, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(headStart, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value0, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(headStart, 0x40), and(memberValue0_1, _2))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), _2))\n        mstore(add(headStart, 0x80), and(mload(add(value0, 0x80)), _1))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint64(x, y) -> r\n    {\n        let _1 := 0xffffffffffffffff\n        let y_1 := and(y, _1)\n        if iszero(y_1)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_mul_t_uint64(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint64(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101da5760003560e01c8063738bbea811610104578063a104fd79116100a2578063d1e7765711610071578063d1e77657146103b5578063e30c3978146103bd578063e4a75bb8146103ce578063f2fde38b146103d657600080fd5b8063a104fd791461036d578063a3ae35ab14610375578063ab70d49c14610388578063c57708c21461039b57600080fd5b80637f4296d7116100de5780637f4296d71461032e57806389c36f8e146103415780638da5cb5b14610349578063919bead01461035a57600080fd5b8063738bbea81461030d57806375e38f16146103155780637ce52b181461031d57600080fd5b80633e7a39081161017c5780634e71e0c81161014b5780634e71e0c8146102d45780635020ea56146102dc5780636bea5344146102ef578063715018a61461030557600080fd5b80633e7a39081461028a5780634019f2d61461029f578063412a616a146102c45780634aba4f6b146102cc57600080fd5b80631b5344a2116101b85780631b5344a2146102165780632a7ad6091461024d5780632ae168a61461025b57806339f92c301461026357600080fd5b80630996f6e1146101df5780630bdeecbd146101fc578063111070e414610206575b600080fd5b6101e76103e9565b60405190151581526020015b60405180910390f35b61020461040a565b005b60035463ffffffff1615156101e7565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff90911681526020016101f3565b60035463ffffffff16610238565b6102046107b9565b60055467ffffffffffffffff165b60405167ffffffffffffffff90911681526020016101f3565b600454600160c01b900463ffffffff16610238565b6004546001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b610204610aae565b6101e7610b78565b610204610c17565b6102046102ea366004611ada565b610ca5565b600354640100000000900463ffffffff16610238565b610204610d22565b6101e7610d97565b610271610e16565b6002546001600160a01b03166102ac565b61020461033c366004611a54565b610e20565b610271610e9a565b6000546001600160a01b03166102ac565b610204610368366004611ada565b610ec7565b610271610f41565b610271610383366004611b4e565b610f4b565b6102ac610396366004611a54565b610f7e565b60055468010000000000000000900463ffffffff16610238565b6101e7610ff2565b6001546001600160a01b03166102ac565b6101e7610ffc565b6102046103e4366004611a54565b61101e565b60006103f361115a565b8015610405575060035463ffffffff16155b905090565b60035463ffffffff166104645760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b61046c610b78565b6104b85760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c6574650000000000604482015260640161045b565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561052157600080fd5b505af1158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611ac1565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006105944290565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561066e57600080fd5b505af1158015610682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a69190611af7565b5060006106b4858585611180565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506106de866001611bfd565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6107c161115a565b6108335760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b60035463ffffffff16156108895760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d726571756573746564604482015260640161045b565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156108e757600080fd5b505afa1580156108fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091f9190611a71565b90925090506001600160a01b0382161580159061093c5750600081115b1561095b5760025461095b906001600160a01b038481169116836111c5565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b1580156109ba57600080fd5b505af11580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f29190611b14565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610a254290565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610ab6610d97565b610b025760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f75740000000000604482015260640161045b565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610bdf57600080fd5b505afa158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104059190611a9f565b6001546001600160a01b03163314610c715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161045b565b600154610c86906001600160a01b03166112f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610cb86000546001600160a01b031690565b6001600160a01b031614610d0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d16611352565b610d1f816113cc565b50565b33610d356000546001600160a01b031690565b6001600160a01b031614610d8b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d9560006112f5565b565b60035460009068010000000000000000900467ffffffffffffffff16610dbd5750600090565b4260035460045467ffffffffffffffff92831692610e0692680100000000000000009004169074010000000000000000000000000000000000000000900463ffffffff16611c25565b67ffffffffffffffff1610905090565b60006104056114cc565b33610e336000546001600160a01b031690565b6001600160a01b031614610e895760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610e91611352565b610d1f81611508565b6005546004546000916104059167ffffffffffffffff90911690600160c01b900463ffffffff1642611180565b33610eda6000546001600160a01b031690565b6001600160a01b031614610f305760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f38611352565b610d1f8161155f565b6000610405611647565b600554600454600091610f789167ffffffffffffffff90911690600160c01b900463ffffffff1684611180565b92915050565b600033610f936000546001600160a01b031690565b6001600160a01b031614610fe95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f7882611672565b600061040561115a565b600061100f60035463ffffffff16151590565b80156104055750610405610b78565b336110316000546001600160a01b031690565b6001600160a01b0316146110875760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b6001600160a01b0381166111035760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161045b565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60004267ffffffffffffffff1661116f611647565b67ffffffffffffffff161115905090565b60008063ffffffff84166111948685611cc6565b61119e9190611c48565b90506111b063ffffffff851682611c96565b6111ba9086611c25565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112629190611ac1565b61126c9190611be5565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506112ef9085906117db565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806113805750600354640100000000900463ffffffff1681105b610d1f5760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c696768740000000000000000604482015260640161045b565b603c8163ffffffff16116114485760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806114d7611647565b90504267ffffffffffffffff808216908316116114f75760009250505090565b6115018183611cc6565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff16116115db5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f00000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016114c1565b60045460055460009161040591600160c01b90910463ffffffff169067ffffffffffffffff16611c25565b6004546000906001600160a01b039081169083166116f85760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b806001600160a01b0316836001600160a01b031614156117805760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611830826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118c59092919063ffffffff16565b8051909150156118c0578080602001905181019061184e9190611a9f565b6118c05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161045b565b505050565b60606118d484846000856118dc565b949350505050565b6060824710156119545760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161045b565b843b6119a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045b565b600080866001600160a01b031685876040516119be9190611b78565b60006040518083038185875af1925050503d80600081146119fb576040519150601f19603f3d011682016040523d82523d6000602084013e611a00565b606091505b5091509150611a10828286611a1b565b979650505050505050565b60608315611a2a5750816111be565b825115611a3a5782518084602001fd5b8160405162461bcd60e51b815260040161045b9190611b94565b600060208284031215611a6657600080fd5b81356111be81611d4a565b60008060408385031215611a8457600080fd5b8251611a8f81611d4a565b6020939093015192949293505050565b600060208284031215611ab157600080fd5b815180151581146111be57600080fd5b600060208284031215611ad357600080fd5b5051919050565b600060208284031215611aec57600080fd5b81356111be81611d5f565b600060208284031215611b0957600080fd5b81516111be81611d5f565b60008060408385031215611b2757600080fd5b8251611b3281611d5f565b6020840151909250611b4381611d5f565b809150509250929050565b600060208284031215611b6057600080fd5b813567ffffffffffffffff811681146111be57600080fd5b60008251611b8a818460208701611cef565b9190910192915050565b6020815260008251806020840152611bb3816040850160208701611cef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611bf857611bf8611d1b565b500190565b600063ffffffff808316818516808303821115611c1c57611c1c611d1b565b01949350505050565b600067ffffffffffffffff808316818516808303821115611c1c57611c1c611d1b565b600067ffffffffffffffff80841680611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611cbd57611cbd611d1b565b02949350505050565b600067ffffffffffffffff83811690831681811015611ce757611ce7611d1b565b039392505050565b60005b83811015611d0a578181015183820152602001611cf2565b838111156112ef5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610d1f57600080fd5b63ffffffff81168114610d1f57600080fdfea2646970667358221220b666fa52964bf99e4796686787b8bd3015b009df0838eb680de9fee2ce1dc0d464736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1DA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x738BBEA8 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xA104FD79 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xD1E77657 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD1E77657 EQ PUSH2 0x3B5 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0xE4A75BB8 EQ PUSH2 0x3CE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA104FD79 EQ PUSH2 0x36D JUMPI DUP1 PUSH4 0xA3AE35AB EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0xAB70D49C EQ PUSH2 0x388 JUMPI DUP1 PUSH4 0xC57708C2 EQ PUSH2 0x39B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7F4296D7 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x7F4296D7 EQ PUSH2 0x32E JUMPI DUP1 PUSH4 0x89C36F8E EQ PUSH2 0x341 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x349 JUMPI DUP1 PUSH4 0x919BEAD0 EQ PUSH2 0x35A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x738BBEA8 EQ PUSH2 0x30D JUMPI DUP1 PUSH4 0x75E38F16 EQ PUSH2 0x315 JUMPI DUP1 PUSH4 0x7CE52B18 EQ PUSH2 0x31D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 GT PUSH2 0x17C JUMPI DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2D4 JUMPI DUP1 PUSH4 0x5020EA56 EQ PUSH2 0x2DC JUMPI DUP1 PUSH4 0x6BEA5344 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x305 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3E7A3908 EQ PUSH2 0x28A JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0x29F JUMPI DUP1 PUSH4 0x412A616A EQ PUSH2 0x2C4 JUMPI DUP1 PUSH4 0x4ABA4F6B EQ PUSH2 0x2CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1B5344A2 GT PUSH2 0x1B8 JUMPI DUP1 PUSH4 0x1B5344A2 EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0x2A7AD609 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x2AE168A6 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0x39F92C30 EQ PUSH2 0x263 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x996F6E1 EQ PUSH2 0x1DF JUMPI DUP1 PUSH4 0xBDEECBD EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0x111070E4 EQ PUSH2 0x206 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x3E9 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x204 PUSH2 0x40A JUMP JUMPDEST STOP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO PUSH2 0x1E7 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x7B9 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND JUMPDEST PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xAAE JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xC17 JUMP JUMPDEST PUSH2 0x204 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xCA5 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x204 PUSH2 0xD22 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE16 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x33C CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xE20 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xE9A JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1ADA JUMP JUMPDEST PUSH2 0xEC7 JUMP JUMPDEST PUSH2 0x271 PUSH2 0xF41 JUMP JUMPDEST PUSH2 0x271 PUSH2 0x383 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B4E JUMP JUMPDEST PUSH2 0xF4B JUMP JUMPDEST PUSH2 0x2AC PUSH2 0x396 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0xF7E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x238 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFF2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2AC JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0xFFC JUMP JUMPDEST PUSH2 0x204 PUSH2 0x3E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x101E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F3 PUSH2 0x115A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D72657175657374656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x46C PUSH2 0xB78 JUMP JUMPDEST PUSH2 0x4B8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D636F6D706C6574650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x9D2A5F9800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9D2A5F98 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x521 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x535 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x559 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD SWAP2 SWAP3 POP PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 DUP3 DIV DUP2 AND SWAP3 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH1 0x0 PUSH2 0x594 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP8 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP8 DUP2 AND PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x3 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP3 AND PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE DUP10 DUP6 AND PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x4 DUP1 SLOAD SWAP9 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP9 MLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP5 MLOAD DUP7 AND PUSH1 0x24 DUP7 ADD MSTORE SWAP2 MLOAD DUP4 AND PUSH1 0x44 DUP6 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP4 ADD MSTORE MLOAD SWAP1 SWAP2 AND PUSH1 0x84 DUP3 ADD MSTORE SWAP3 SWAP4 POP SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x66E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x682 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x6A6 SWAP2 SWAP1 PUSH2 0x1AF7 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x6B4 DUP6 DUP6 DUP6 PUSH2 0x1180 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH8 0xFFFFFFFFFFFFFFFF DUP4 AND OR SWAP1 SSTORE SWAP1 POP PUSH2 0x6DE DUP7 PUSH1 0x1 PUSH2 0x1BFD JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 AND SWAP1 SSTORE PUSH1 0x40 MLOAD DUP8 DUP2 MSTORE PUSH32 0x13F646A3648EE5B5A0E8D6BC3D2D623FDDF38FA7C8C5DFDBDBE6A913112EDC6C SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 PUSH32 0x9E5F7E6AC833C4735B5548BBEEC59DAC4D413789AA351FBE11A654DAC0C4306C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x7C1 PUSH2 0x115A JUMP JUMPDEST PUSH2 0x833 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D6E6F742D6F7665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D616C72656164792D726571756573746564 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0xD37B53700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0xD37B537 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8FB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x91F SWAP2 SWAP1 PUSH2 0x1A71 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x93C JUMPI POP PUSH1 0x0 DUP2 GT JUMPDEST ISZERO PUSH2 0x95B JUMPI PUSH1 0x2 SLOAD PUSH2 0x95B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND SWAP2 AND DUP4 PUSH2 0x11C5 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8678A7B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP2 MLOAD PUSH1 0x0 SWAP4 DUP5 SWAP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP3 PUSH4 0x8678A7B2 SWAP3 PUSH1 0x4 DUP1 DUP4 ADD SWAP4 SWAP3 DUP3 SWAP1 SUB ADD DUP2 DUP8 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x9CE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9F2 SWAP2 SWAP1 PUSH2 0x1B14 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP5 AND PUSH5 0x100000000 MUL PUSH8 0xFFFFFFFFFFFFFFFF NOT SWAP1 SWAP3 AND SWAP1 DUP6 AND OR OR SWAP1 SSTORE SWAP1 SWAP3 POP SWAP1 POP PUSH2 0xA25 TIMESTAMP SWAP1 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0xDE3A7AF7D3C2126E4FB96A7065B39F8BB17E3B9111C092E11236942FB38CA61 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST PUSH2 0xAB6 PUSH2 0xD97 JUMP JUMPDEST PUSH2 0xB02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D6E6F742D74696D65646F75740000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000000000000000000000000000 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND DUP1 DUP4 MSTORE SWAP3 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x67638A3A7093A89CC6046DCA58AA93D6343E30847E8F84FC3759D9D4A3E6E38B SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x3A19B9BC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x3A19B9BC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBDF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBF3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x405 SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xC86 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x12F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0xCB8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD0E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD16 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x13CC JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0xD35 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD8B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xD95 PUSH1 0x0 PUSH2 0x12F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH9 0x10000000000000000 SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xDBD JUMPI POP PUSH1 0x0 SWAP1 JUMP JUMPDEST TIMESTAMP PUSH1 0x3 SLOAD PUSH1 0x4 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND SWAP3 PUSH2 0xE06 SWAP3 PUSH9 0x10000000000000000 SWAP1 DIV AND SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND LT SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x14CC JUMP JUMPDEST CALLER PUSH2 0xE33 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE89 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xE91 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x1508 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x1180 JUMP JUMPDEST CALLER PUSH2 0xEDA PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF38 PUSH2 0x1352 JUMP JUMPDEST PUSH2 0xD1F DUP2 PUSH2 0x155F JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x1647 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x4 SLOAD PUSH1 0x0 SWAP2 PUSH2 0xF78 SWAP2 PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x1180 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xF93 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFE9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH2 0xF78 DUP3 PUSH2 0x1672 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x405 PUSH2 0x115A JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100F PUSH1 0x3 SLOAD PUSH4 0xFFFFFFFF AND ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x405 JUMPI POP PUSH2 0x405 PUSH2 0xB78 JUMP JUMPDEST CALLER PUSH2 0x1031 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x116F PUSH2 0x1647 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND GT ISZERO SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x1194 DUP7 DUP6 PUSH2 0x1CC6 JUMP JUMPDEST PUSH2 0x119E SWAP2 SWAP1 PUSH2 0x1C48 JUMP JUMPDEST SWAP1 POP PUSH2 0x11B0 PUSH4 0xFFFFFFFF DUP6 AND DUP3 PUSH2 0x1C96 JUMP JUMPDEST PUSH2 0x11BA SWAP1 DUP7 PUSH2 0x1C25 JUMP JUMPDEST SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x122A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x123E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1262 SWAP2 SWAP1 PUSH2 0x1AC1 JUMP JUMPDEST PUSH2 0x126C SWAP2 SWAP1 PUSH2 0x1BE5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x12EF SWAP1 DUP6 SWAP1 PUSH2 0x17DB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD NUMBER SWAP1 PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO DUP1 PUSH2 0x1380 JUMPI POP PUSH1 0x3 SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP2 LT JUMPDEST PUSH2 0xD1F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D696E2D666C696768740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x3C DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1448 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F726E672D74696D656F75742D67742D36302D736563 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x521671714DD36D366ADF3FE2EFEC91D3F58A3131AAD68E268821D8144B5D0845 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x14D7 PUSH2 0x1647 JUMP JUMPDEST SWAP1 POP TIMESTAMP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x14F7 JUMPI PUSH1 0x0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x1501 DUP2 DUP4 PUSH2 0x1CC6 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xF935763CC7C57EE8ED6318ED71E756CCA0731294C9F46FF5B386F36D6FF1417A SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND GT PUSH2 0x15DB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F626561636F6E2D706572696F642D67726561746572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D7468616E2D7A65726F00000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x4727494DBD863E2084366F539D6EC569AAF7AB78582A34F006F004266777CD19 SWAP1 PUSH1 0x20 ADD PUSH2 0x14C1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x5 SLOAD PUSH1 0x0 SWAP2 PUSH2 0x405 SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0x1C25 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND PUSH2 0x16F8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F647261772D686973746F72792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1780 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x44726177426561636F6E2F6578697374696E672D647261772D686973746F7279 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D61646472657373000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xEB70B03FAB908E126E5EFC33F8DFD2731FA89C716282A86769025F8DD4A6C1E0 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18C5 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x18C0 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x184E SWAP2 SWAP1 PUSH2 0x1A9F JUMP JUMPDEST PUSH2 0x18C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x18D4 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x18DC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x1954 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x45B JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x19A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x45B JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x19BE SWAP2 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x19FB JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1A00 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A10 DUP3 DUP3 DUP7 PUSH2 0x1A1B JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1A2A JUMPI POP DUP2 PUSH2 0x11BE JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1A3A JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x45B SWAP2 SWAP1 PUSH2 0x1B94 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A84 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1A8F DUP2 PUSH2 0x1D4A JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AD3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AEC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x11BE DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1B32 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x1B43 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1B60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x11BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1B8A DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1BB3 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1CEF JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1BF8 JUMPI PUSH2 0x1BF8 PUSH2 0x1D1B JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1C1C JUMPI PUSH2 0x1C1C PUSH2 0x1D1B JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1C8A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1CBD JUMPI PUSH2 0x1CBD PUSH2 0x1D1B JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1D1B JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1D0A JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1CF2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x12EF JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1F JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB6 PUSH7 0xFA52964BF99E47 SWAP7 PUSH9 0x6787B8BD3015B009DF ADDMOD CODESIZE 0xEB PUSH9 0xDE9FEE2CE1DC0D464 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "1131:14710:22:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5885:128;;;:::i;:::-;;;4087:14:94;;4080:22;4062:41;;4050:2;4035:18;5885:128:22;;;;;;;;7352:1377;;;:::i;:::-;;5277:104;5356:10;:13;;;:18;;5277:104;;9850:90;9923:10;;;;;;;9850:90;;;12205:10:94;12193:23;;;12175:42;;12163:2;12148:18;9850:90:22;12130:93:94;9641:108:22;9729:10;:13;;;9641:108;;10356:531;;;:::i;9173:112::-;9257:21;;;;9173:112;;;12402:18:94;12390:31;;;12372:50;;12360:2;12345:18;9173:112:22;12327:101:94;9059:108:22;9141:19;;-1:-1:-1;;;9141:19:22;;;;9059:108;;9291:95;9369:10;;-1:-1:-1;;;;;9369:10:22;9291:95;;;-1:-1:-1;;;;;3221:55:94;;;3203:74;;3191:2;3176:18;9291:95:22;3158:125:94;7034:280:22;;;:::i;4991:122::-;;;:::i;3147:129:19:-;;;:::i;11172:137:22:-;;;;;;:::i;:::-;;:::i;9520:115::-;9608:10;:20;;;;;;9520:115;;2508:94:19;;;:::i;5554:237:22:-;;;:::i;8767:135::-;;;:::i;9755:89::-;9834:3;;-1:-1:-1;;;;;9834:3:22;9755:89;;11347:179;;;;;;:::i;:::-;;:::i;6355:285::-;;;:::i;1814:85:19:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;10925:209:22;;;;;;:::i;:::-;;:::i;8940:113::-;;;:::i;6678:318::-;;;;;;:::i;:::-;;:::i;10129:189::-;;;;;;:::i;:::-;;:::i;9392:90::-;9465:10;;;;;;;9392:90;;9978:113;;;:::i;2014:101:19:-;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;6051:125:22;;;:::i;2751:234:19:-;;;;;;:::i;:::-;;:::i;5885:128:22:-;5941:4;5964:21;:19;:21::i;:::-;:42;;;;-1:-1:-1;5356:10:22;:13;;;:18;5964:42;5957:49;;5885:128;:::o;7352:1377::-;5356:10;:13;;;3235:57;;;;-1:-1:-1;;;3235:57:22;;5266:2:94;3235:57:22;;;5248:21:94;5305:2;5285:18;;;5278:30;5344;5324:18;;;5317:58;5392:18;;3235:57:22;;;;;;;;;3310:16;:14;:16::i;:::-;3302:56;;;;-1:-1:-1;;;3302:56:22;;7211:2:94;3302:56:22;;;7193:21:94;7250:2;7230:18;;;7223:30;7289:29;7269:18;;;7262:57;7336:18;;3302:56:22;7183:177:94;3302:56:22;7456:3:::1;::::0;7473:10:::1;:13:::0;7456:31:::1;::::0;;;;7473:13:::1;::::0;;::::1;7456:31;::::0;::::1;12175:42:94::0;7433:20:22::1;::::0;-1:-1:-1;;;;;7456:3:22::1;::::0;:16:::1;::::0;12148:18:94;;7456:31:22::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7518:10;::::0;7631:19:::1;::::0;7433:54;;-1:-1:-1;7518:10:22::1;::::0;;::::1;::::0;::::1;::::0;7570:21:::1;::::0;;::::1;::::0;-1:-1:-1;;;7631:19:22;::::1;;7497:18;7675:14;12856:15:::0;;12769:110;7675:14:::1;7762:333;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;7884:10:::1;:22:::0;;;::::1;;::::0;;::::1;7762:333:::0;;;;;;;;::::1;::::0;;;;;;;;::::1;::::0;;;;;;8106:10:::1;::::0;;:26;;;;;11384:13:94;;8106:26:22;;::::1;11366:32:94::0;;;;11427:24;;11518:21;;11496:20;;;11489:51;11571:24;;11670:23;;11648:20;;;11641:53;11736:24;11732:33;;;11710:20;;;11703:63;11808:24;11804:33;;;11782:20;;;11775:63;7660:29:22;;-1:-1:-1;7762:333:22;-1:-1:-1;;;;;8106:10:22;;::::1;::::0;:19:::1;::::0;11338::94;;8106:26:22::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8252:32;8287:134;8336:22;8372:20;8406:5;8287:35;:134::i;:::-;8431:21;:49:::0;;-1:-1:-1;;8431:49:22::1;;::::0;::::1;;::::0;;;-1:-1:-1;8503:15:22::1;:11:::0;-1:-1:-1;8503:15:22::1;:::i;:::-;8490:10;:28:::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;8608:10:::1;8601:17:::0;;;;;;8634:27:::1;::::0;11995:25:94;;;8634:27:22::1;::::0;11983:2:94;11968:18;8634:27:22::1;;;;;;;8676:46;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;7423:1306;;;;;;;7352:1377::o:0;10356:531::-;3030:21;:19;:21::i;:::-;3022:67;;;;-1:-1:-1;;;3022:67:22;;9038:2:94;3022:67:22;;;9020:21:94;9077:2;9057:18;;;9050:30;9116:34;9096:18;;;9089:62;9187:3;9167:18;;;9160:31;9208:19;;3022:67:22;9010:223:94;3022:67:22;5356:10;:13;;;:18;3099:62;;;;-1:-1:-1;;;3099:62:22;;5623:2:94;3099:62:22;;;5605:21:94;;;5642:18;;;5635:30;5701:34;5681:18;;;5674:62;5753:18;;3099:62:22;5595:182:94;3099:62:22;10466:3:::1;::::0;:19:::1;::::0;;;;;;;10426:16:::1;::::0;;;-1:-1:-1;;;;;10466:3:22;;::::1;::::0;:17:::1;::::0;:19:::1;::::0;;::::1;::::0;;;;;;;:3;:19;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10425:60:::0;;-1:-1:-1;10425:60:22;-1:-1:-1;;;;;;10500:22:22;::::1;::::0;;::::1;::::0;:40:::1;;;10539:1;10526:10;:14;10500:40;10496:135;;;10603:3;::::0;10556:64:::1;::::0;-1:-1:-1;;;;;10556:38:22;;::::1;::::0;10603:3:::1;10609:10:::0;10556:38:::1;:64::i;:::-;10680:3;::::0;:25:::1;::::0;;;;;;;10642:16:::1;::::0;;;-1:-1:-1;;;;;10680:3:22;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;;;;;;;10642:16;10680:3;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10715:10;:25:::0;;::::1;10750:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;10750:32:22;;;10715:25;;::::1;10750:32:::0;::::1;::::0;;10641:64;;-1:-1:-1;10641:64:22;-1:-1:-1;10817:14:22::1;12856:15:::0;;12769:110;10817:14:::1;10792:10;:39:::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10847:33:::1;::::0;::::1;12193:23:94::0;;;12175:42;;10847:33:22;::::1;::::0;::::1;::::0;12163:2:94;12148:18;10847:33:22::1;;;;;;;10415:472;;;;10356:531::o:0;7034:280::-;7092:15;:13;:15::i;:::-;7084:55;;;;-1:-1:-1;;;7084:55:22;;8682:2:94;7084:55:22;;;8664:21:94;8721:2;8701:18;;;8694:30;8760:29;8740:18;;;8733:57;8807:18;;7084:55:22;8654:177:94;7084:55:22;7168:10;:13;;7240:17;;;;;;7272:35;;7168:13;7210:20;;;;;12175:42:94;;;7168:13:22;;;7210:20;7168:13;;7272:35;;12163:2:94;12148:18;7272:35:22;;;;;;;7074:240;;7034:280::o;4991:122::-;5070:3;;5092:10;:13;5070:36;;;;;5092:13;;;;5070:36;;;12175:42:94;5047:4:22;;-1:-1:-1;;;;;5070:3:22;;:21;;12148:18:94;;5070:36:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;8322:2:94;4028:71:19;;;8304:21:94;8361:2;8341:18;;;8334:30;8400:33;8380:18;;;8373:61;8451:18;;4028:71:19;8294:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;11172:137:22:-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7567:2:94;3819:58:19;;;7549:21:94;7606:2;7586:18;;;7579:30;7645:26;7625:18;;;7618:54;7689:18;;3819:58:19;7539:174:94;3819:58:19;2933:24:22::1;:22;:24::i;:::-;11275:27:::2;11290:11;11275:14;:27::i;:::-;11172:137:::0;:::o;2508:94:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7567:2:94;3819:58:19;;;7549:21:94;7606:2;7586:18;;;7579:30;7645:26;7625:18;;;7618:54;7689:18;;3819:58:19;7539:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;5554:237:22:-;5629:10;:22;5609:4;;5629:22;;;;;5625:160;;-1:-1:-1;5679:5:22;;5554:237::o;5625:160::-;12856:15;5735:10;:22;5722:10;;:52;;;;;:35;;5735:22;;;;;5722:10;;;;;:35;:::i;:::-;:52;;;5715:59;;5554:237;:::o;8767:135::-;8839:6;8864:31;:29;:31::i;11347:179::-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7567:2:94;3819:58:19;;;7549:21:94;7606:2;7586:18;;;7579:30;7645:26;7625:18;;;7618:54;7689:18;;3819:58:19;7539:174:94;3819:58:19;2933:24:22::1;:22;:24::i;:::-;11492:27:::2;11507:11;11492:14;:27::i;6355:285::-:0;6529:21;;6568:19;;6439:6;;6476:157;;6529:21;;;;;-1:-1:-1;;;6568:19:22;;;;12856:15;6476:35;:157::i;10925:209::-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7567:2:94;3819:58:19;;;7549:21:94;7606:2;7586:18;;;7579:30;7645:26;7625:18;;;7618:54;7689:18;;3819:58:19;7539:174:94;3819:58:19;2933:24:22::1;:22;:24::i;:::-;11082:45:::2;11106:20;11082:23;:45::i;8940:113::-:0;9001:6;9026:20;:18;:20::i;6678:318::-;6894:21;;6933:19;;6800:6;;6841:148;;6894:21;;;;;-1:-1:-1;;;6933:19:22;;;;6970:5;6841:35;:148::i;:::-;6822:167;6678:318;-1:-1:-1;;6678:318:22:o;10129:189::-;10248:11;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7567:2:94;3819:58:19;;;7549:21:94;7606:2;7586:18;;;7579:30;7645:26;7625:18;;;7618:54;7689:18;;3819:58:19;7539:174:94;3819:58:19;10282:29:22::1;10297:13;10282:14;:29::i;9978:113::-:0;10040:4;10063:21;:19;:21::i;6051:125::-;6110:4;6133:16;5356:10;:13;;;:18;;;5277:104;6133:16;:36;;;;;6153:16;:14;:16::i;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7567:2:94;3819:58:19;;;7549:21:94;7606:2;7586:18;;;7579:30;7645:26;7625:18;;;7618:54;7689:18;;3819:58:19;7539:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;9798:2:94;2826:73:19::1;::::0;::::1;9780:21:94::0;9837:2;9817:18;;;9810:30;9876:34;9856:18;;;9849:62;9947:7;9927:18;;;9920:35;9972:19;;2826:73:19::1;9770:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;13747:122:22:-;13801:4;12856:15;13824:38;;:20;:18;:20::i;:::-;:38;;;;13817:45;;13747:122;:::o;12280:357::-;12452:6;;12494:55;;;12495:30;12503:22;12495:5;:30;:::i;:::-;12494:55;;;;:::i;:::-;12470:79;-1:-1:-1;12592:37:22;;;;12470:79;12592:37;:::i;:::-;12566:64;;:22;:64;:::i;:::-;12559:71;;;12280:357;;;;;;:::o;2022:310:6:-;2171:39;;;;;2195:4;2171:39;;;3523:34:94;-1:-1:-1;;;;;3593:15:94;;;3573:18;;;3566:43;2148:20:6;;2213:5;;2171:15;;;;;3435:18:94;;2171:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;;-1:-1:-1;;;;;3812:55:94;;2255:69:6;;;3794:74:94;3884:18;;;;3877:34;;;2255:69:6;;;;;;;;;;3767:18:94;;;;2255:69:6;;;;;;;;;;2278:22;2255:69;;;3877:34:94;;-1:-1:-1;2228:97:6;;2248:5;;2228:19;:97::i;:::-;2138:194;2022:310;;;:::o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13940:246:22:-;14065:10;:20;14021:12;;14065:20;;;;;:25;;:64;;-1:-1:-1;14109:10:22;:20;;;;;;14094:35;;14065:64;14044:135;;;;-1:-1:-1;;;14044:135:22;;11024:2:94;14044:135:22;;;11006:21:94;11063:2;11043:18;;;11036:30;11102:26;11082:18;;;11075:54;11146:18;;14044:135:22;10996:174:94;15631:208:22;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:22;;7920:2:94;15694:62:22;;;7902:21:94;7959:2;7939:18;;;7932:30;7998:34;7978:18;;;7971:62;8069:3;8049:18;;;8042:31;8090:19;;15694:62:22;7892:223:94;15694:62:22;15766:10;:24;;;;;;;;;;;;;;;;;;15806:26;;12175:42:94;;;15806:26:22;;12163:2:94;12148:18;15806:26:22;;;;;;;;15631:208;:::o;13347:254::-;13411:6;13429:12;13444:20;:18;:20::i;:::-;13429:35;-1:-1:-1;12856:15:22;13517:13;;;;;;;;13513:52;;13553:1;13546:8;;;;13347:254;:::o;13513:52::-;13582:12;13590:4;13582:5;:12;:::i;:::-;13575:19;;;;13347:254;:::o;11695:142::-;11768:3;:17;;-1:-1:-1;;11768:17:22;-1:-1:-1;;;;;11768:17:22;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:22;11695:142;:::o;15109:283::-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:22;;6393:2:94;15190:79:22;;;6375:21:94;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;6542:12;6522:18;;;6515:40;6572:19;;15190:79:22;6365:232:94;15190:79:22;15279:19;:42;;;;-1:-1:-1;;;15279:42:22;;;;;;;;;;;;;15337:48;;12175:42:94;;;15337:48:22;;12163:2:94;12148:18;15337:48:22;12130:93:94;13031:128:22;13133:19;;13109:21;;13084:6;;13109:43;;-1:-1:-1;;;13133:19:22;;;;;;13109:21;;:43;:::i;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:22;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:22;;10615:2:94;14571:90:22;;;10597:21:94;10654:2;10634:18;;;10627:30;10693:34;10673:18;;;10666:62;10764:10;10744:18;;;10737:38;10792:19;;14571:90:22;10587:230:94;14571:90:22;14728:19;-1:-1:-1;;;;;14693:55:22;14701:14;-1:-1:-1;;;;;14693:55:22;;;14672:142;;;;-1:-1:-1;;;14672:142:22;;5984:2:94;14672:142:22;;;5966:21:94;6023:2;6003:18;;;5996:30;6062:34;6042:18;;;6035:62;6133:10;6113:18;;;6106:38;6161:19;;14672:142:22;5956:230:94;14672:142:22;14825:10;:27;;-1:-1:-1;;14825:27:22;-1:-1:-1;;;;;14825:27:22;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:22;-1:-1:-1;14919:14:22;;14424:516;-1:-1:-1;14424:516:22:o;3207:706:6:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:6;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:6;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:6;;10204:2:94;3811:85:6;;;10186:21:94;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;10353:12;10333:18;;;10326:40;10383:19;;3811:85:6;10176:232:94;3811:85:6;3277:636;3207:706;;:::o;3514:223:9:-;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;:::-;3671:59;3514:223;-1:-1:-1;;;;3514:223:9:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:9;;6804:2:94;4790:81:9;;;6786:21:94;6843:2;6823:18;;;6816:30;6882:34;6862:18;;;6855:62;6953:8;6933:18;;;6926:36;6979:19;;4790:81:9;6776:228:94;4790:81:9;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:9;;9440:2:94;4881:60:9;;;9422:21:94;9479:2;9459:18;;;9452:30;9518:31;9498:18;;;9491:59;9567:18;;4881:60:9;9412:179:94;4881:60:9;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:9;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:9:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:9;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:9;;;;;;;;:::i;14:247:94:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:312::-;345:6;353;406:2;394:9;385:7;381:23;377:32;374:2;;;422:1;419;412:12;374:2;454:9;448:16;473:31;498:5;473:31;:::i;:::-;568:2;553:18;;;;547:25;523:5;;547:25;;-1:-1:-1;;;364:214:94:o;583:277::-;650:6;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;751:9;745:16;804:5;797:13;790:21;783:5;780:32;770:2;;826:1;823;816:12;1410:184;1480:6;1533:2;1521:9;1512:7;1508:23;1504:32;1501:2;;;1549:1;1546;1539:12;1501:2;-1:-1:-1;1572:16:94;;1491:103;-1:-1:-1;1491:103:94:o;1599:245::-;1657:6;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1726:1;1723;1716:12;1678:2;1765:9;1752:23;1784:30;1808:5;1784:30;:::i;1849:249::-;1918:6;1971:2;1959:9;1950:7;1946:23;1942:32;1939:2;;;1987:1;1984;1977:12;1939:2;2019:9;2013:16;2038:30;2062:5;2038:30;:::i;2103:381::-;2180:6;2188;2241:2;2229:9;2220:7;2216:23;2212:32;2209:2;;;2257:1;2254;2247:12;2209:2;2289:9;2283:16;2308:30;2332:5;2308:30;:::i;:::-;2407:2;2392:18;;2386:25;2357:5;;-1:-1:-1;2420:32:94;2386:25;2420:32;:::i;:::-;2471:7;2461:17;;;2199:285;;;;;:::o;2489:284::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:2;;;2616:1;2613;2606:12;2568:2;2655:9;2642:23;2705:18;2698:5;2694:30;2687:5;2684:41;2674:2;;2739:1;2736;2729:12;2778:274;2907:3;2945:6;2939:13;2961:53;3007:6;3002:3;2995:4;2987:6;2983:17;2961:53;:::i;:::-;3030:16;;;;;2915:137;-1:-1:-1;;2915:137:94:o;4617:442::-;4766:2;4755:9;4748:21;4729:4;4798:6;4792:13;4841:6;4836:2;4825:9;4821:18;4814:34;4857:66;4916:6;4911:2;4900:9;4896:18;4891:2;4883:6;4879:15;4857:66;:::i;:::-;4975:2;4963:15;4980:66;4959:88;4944:104;;;;5050:2;4940:113;;4738:321;-1:-1:-1;;4738:321:94:o;12433:128::-;12473:3;12504:1;12500:6;12497:1;12494:13;12491:2;;;12510:18;;:::i;:::-;-1:-1:-1;12546:9:94;;12481:80::o;12566:228::-;12605:3;12633:10;12670:2;12667:1;12663:10;12700:2;12697:1;12693:10;12731:3;12727:2;12723:12;12718:3;12715:21;12712:2;;;12739:18;;:::i;:::-;12775:13;;12613:181;-1:-1:-1;;;;12613:181:94:o;12799:236::-;12838:3;12866:18;12911:2;12908:1;12904:10;12941:2;12938:1;12934:10;12972:3;12968:2;12964:12;12959:3;12956:21;12953:2;;;12980:18;;:::i;13040:353::-;13079:1;13105:18;13150:2;13147:1;13143:10;13172:3;13162:2;;13209:77;13206:1;13199:88;13310:4;13307:1;13300:15;13338:4;13335:1;13328:15;13162:2;13371:10;;13367:20;;;;;13085:308;-1:-1:-1;;13085:308:94:o;13398:270::-;13437:7;13469:18;13514:2;13511:1;13507:10;13544:2;13541:1;13537:10;13600:3;13596:2;13592:12;13587:3;13584:21;13577:3;13570:11;13563:19;13559:47;13556:2;;;13609:18;;:::i;:::-;13649:13;;13449:219;-1:-1:-1;;;;13449:219:94:o;13673:229::-;13712:4;13741:18;13809:10;;;;13779;;13831:12;;;13828:2;;;13846:18;;:::i;:::-;13883:13;;13721:181;-1:-1:-1;;;13721:181:94:o;13907:258::-;13979:1;13989:113;14003:6;14000:1;13997:13;13989:113;;;14079:11;;;14073:18;14060:11;;;14053:39;14025:2;14018:10;13989:113;;;14120:6;14117:1;14114:13;14111:2;;;-1:-1:-1;;14155:1:94;14137:16;;14130:27;13960:205::o;14170:184::-;14222:77;14219:1;14212:88;14319:4;14316:1;14309:15;14343:4;14340:1;14333:15;14359:154;-1:-1:-1;;;;;14438:5:94;14434:54;14427:5;14424:65;14414:2;;14503:1;14500;14493:12;14518:121;14603:10;14596:5;14592:22;14585:5;14582:33;14572:2;;14629:1;14626;14619:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1518200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "beaconPeriodEndAt()": "infinite",
                "beaconPeriodRemainingSeconds()": "infinite",
                "calculateNextBeaconPeriodStartTime(uint64)": "infinite",
                "calculateNextBeaconPeriodStartTimeFromCurrentTime()": "5019",
                "canCompleteDraw()": "infinite",
                "canStartDraw()": "infinite",
                "cancelDraw()": "32481",
                "claimOwnership()": "54486",
                "completeDraw()": "infinite",
                "getBeaconPeriodSeconds()": "2370",
                "getBeaconPeriodStartedAt()": "2408",
                "getDrawBuffer()": "2388",
                "getLastRngLockBlock()": "2407",
                "getLastRngRequestId()": "2375",
                "getNextDrawId()": "2429",
                "getRngService()": "2421",
                "getRngTimeout()": "2353",
                "isBeaconPeriodOver()": "infinite",
                "isRngCompleted()": "infinite",
                "isRngRequested()": "2390",
                "isRngTimedOut()": "6756",
                "owner()": "2420",
                "pendingOwner()": "2397",
                "renounceOwnership()": "28246",
                "setBeaconPeriodSeconds(uint32)": "infinite",
                "setDrawBuffer(address)": "30301",
                "setRngService(address)": "infinite",
                "setRngTimeout(uint32)": "infinite",
                "startDraw()": "infinite",
                "transferOwnership(address)": "28010"
              },
              "internal": {
                "_beaconPeriodEndAt()": "4366",
                "_beaconPeriodRemainingSeconds()": "4546",
                "_calculateNextBeaconPeriodStartTime(uint64,uint32,uint64)": "464",
                "_currentTime()": "infinite",
                "_isBeaconPeriodOver()": "4419",
                "_requireDrawNotStarted()": "infinite",
                "_setBeaconPeriodSeconds(uint32)": "infinite",
                "_setDrawBuffer(contract IDrawBuffer)": "infinite",
                "_setRngService(contract RNGInterface)": "25414",
                "_setRngTimeout(uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "beaconPeriodEndAt()": "a104fd79",
              "beaconPeriodRemainingSeconds()": "75e38f16",
              "calculateNextBeaconPeriodStartTime(uint64)": "a3ae35ab",
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": "89c36f8e",
              "canCompleteDraw()": "e4a75bb8",
              "canStartDraw()": "0996f6e1",
              "cancelDraw()": "412a616a",
              "claimOwnership()": "4e71e0c8",
              "completeDraw()": "0bdeecbd",
              "getBeaconPeriodSeconds()": "3e7a3908",
              "getBeaconPeriodStartedAt()": "39f92c30",
              "getDrawBuffer()": "4019f2d6",
              "getLastRngLockBlock()": "6bea5344",
              "getLastRngRequestId()": "2a7ad609",
              "getNextDrawId()": "c57708c2",
              "getRngService()": "7ce52b18",
              "getRngTimeout()": "1b5344a2",
              "isBeaconPeriodOver()": "d1e77657",
              "isRngCompleted()": "4aba4f6b",
              "isRngRequested()": "111070e4",
              "isRngTimedOut()": "738bbea8",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBeaconPeriodSeconds(uint32)": "919bead0",
              "setDrawBuffer(address)": "ab70d49c",
              "setRngService(address)": "7f4296d7",
              "setRngTimeout(uint32)": "5020ea56",
              "startDraw()": "2ae168a6",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract RNGInterface\",\"name\":\"_rng\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_nextDrawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"_beaconPeriodStart\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"_beaconPeriodSeconds\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_rngTimeout\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"drawPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"BeaconPeriodSecondsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"startedAt\",\"type\":\"uint64\"}],\"name\":\"BeaconPeriodStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"nextDrawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"DrawBufferUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"DrawCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"contract RNGInterface\",\"name\":\"rngService\",\"type\":\"address\"}],\"name\":\"RngServiceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngTimeout\",\"type\":\"uint32\"}],\"name\":\"RngTimeoutSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"beaconPeriodEndAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"beaconPeriodRemainingSeconds\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_time\",\"type\":\"uint64\"}],\"name\":\"calculateNextBeaconPeriodStartTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"calculateNextBeaconPeriodStartTimeFromCurrentTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canCompleteDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canStartDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cancelDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"completeDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBeaconPeriodSeconds\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBeaconPeriodStartedAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngLockBlock\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNextDrawId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRngService\",\"outputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRngTimeout\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isBeaconPeriodOver\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngCompleted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngRequested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngTimedOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_beaconPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"setBeaconPeriodSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"setDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"_rngService\",\"type\":\"address\"}],\"name\":\"setRngService\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_rngTimeout\",\"type\":\"uint32\"}],\"name\":\"setRngTimeout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"startDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(uint32,uint64)\":{\"params\":{\"beaconPeriodStartedAt\":\"Timestamp when beacon period starts.\",\"nextDrawId\":\"Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\"}}},\"kind\":\"dev\",\"methods\":{\"beaconPeriodEndAt()\":{\"returns\":{\"_0\":\"The timestamp at which the beacon period ends.\"}},\"beaconPeriodRemainingSeconds()\":{\"returns\":{\"_0\":\"The number of seconds remaining until the beacon period can be complete.\"}},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"params\":{\"time\":\"The timestamp to use as the current time\"},\"returns\":{\"_0\":\"The timestamp at which the next beacon period would start\"}},\"calculateNextBeaconPeriodStartTimeFromCurrentTime()\":{\"returns\":{\"_0\":\"The next beacon period start time\"}},\"canCompleteDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be completed, false otherwise.\"}},\"canStartDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be started, false otherwise.\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_beaconPeriodSeconds\":\"The duration of the beacon period in seconds\",\"_beaconPeriodStart\":\"The starting timestamp of the beacon period.\",\"_drawBuffer\":\"The address of the draw buffer to push draws to\",\"_nextDrawId\":\"Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\",\"_owner\":\"Address of the DrawBeacon owner\",\"_rng\":\"The RNG service to use\"}},\"getLastRngLockBlock()\":{\"returns\":{\"_0\":\"The block number that the RNG request is locked to\"}},\"getLastRngRequestId()\":{\"returns\":{\"_0\":\"The current Request ID\"}},\"isBeaconPeriodOver()\":{\"returns\":{\"_0\":\"True if the beacon period is over, false otherwise\"}},\"isRngCompleted()\":{\"returns\":{\"_0\":\"True if a random number request has completed, false otherwise.\"}},\"isRngRequested()\":{\"returns\":{\"_0\":\"True if a random number has been requested, false otherwise.\"}},\"isRngTimedOut()\":{\"returns\":{\"_0\":\"True if a random number request has timed out, false otherwise.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setBeaconPeriodSeconds(uint32)\":{\"params\":{\"beaconPeriodSeconds\":\"The new beacon period in seconds.  Must be greater than zero.\"}},\"setDrawBuffer(address)\":{\"details\":\"All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\",\"params\":{\"newDrawBuffer\":\"DrawBuffer address\"},\"returns\":{\"_0\":\"DrawBuffer\"}},\"setRngService(address)\":{\"params\":{\"rngService\":\"The address of the new RNG service interface\"}},\"setRngTimeout(uint32)\":{\"params\":{\"rngTimeout\":\"The RNG request timeout in seconds.\"}},\"startDraw()\":{\"details\":\"The RNG-Request-Fee is expected to be held within this contract before calling this function\"},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"stateVariables\":{\"nextDrawId\":{\"details\":\"Starts at 1. This way we know that no Draw has been recorded at 0.\"},\"rngTimeout\":{\"details\":\"If the rng completes the award can still be cancelled.\"}},\"title\":\"PoolTogether V4 DrawBeacon\",\"version\":1},\"userdoc\":{\"events\":{\"BeaconPeriodSecondsUpdated(uint32)\":{\"notice\":\"Emit when the drawPeriodSeconds is set.\"},\"BeaconPeriodStarted(uint64)\":{\"notice\":\"Emit when a draw has opened.\"},\"Deployed(uint32,uint64)\":{\"notice\":\"Emit when the DrawBeacon is deployed.\"},\"DrawBufferUpdated(address)\":{\"notice\":\"Emit when a new DrawBuffer has been set.\"},\"DrawCancelled(uint32,uint32)\":{\"notice\":\"Emit when a draw has been cancelled.\"},\"DrawCompleted(uint256)\":{\"notice\":\"Emit when a draw has been completed.\"},\"DrawStarted(uint32,uint32)\":{\"notice\":\"Emit when a draw has started.\"},\"RngServiceUpdated(address)\":{\"notice\":\"Emit when a RNG service address is set.\"},\"RngTimeoutSet(uint32)\":{\"notice\":\"Emit when a draw timeout param is set.\"}},\"kind\":\"user\",\"methods\":{\"beaconPeriodEndAt()\":{\"notice\":\"Returns the timestamp at which the beacon period ends\"},\"beaconPeriodRemainingSeconds()\":{\"notice\":\"Returns the number of seconds remaining until the beacon period can be complete.\"},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"notice\":\"Calculates when the next beacon period will start.\"},\"calculateNextBeaconPeriodStartTimeFromCurrentTime()\":{\"notice\":\"Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\"},\"canCompleteDraw()\":{\"notice\":\"Returns whether a Draw can be completed.\"},\"canStartDraw()\":{\"notice\":\"Returns whether a Draw can be started.\"},\"cancelDraw()\":{\"notice\":\"Can be called by anyone to cancel the draw request if the RNG has timed out.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"completeDraw()\":{\"notice\":\"Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\"},\"constructor\":{\"notice\":\"Deploy the DrawBeacon smart contract.\"},\"getLastRngLockBlock()\":{\"notice\":\"Returns the block number that the current RNG request has been locked to.\"},\"getLastRngRequestId()\":{\"notice\":\"Returns the current RNG Request ID.\"},\"isBeaconPeriodOver()\":{\"notice\":\"Returns whether the beacon period is over\"},\"isRngCompleted()\":{\"notice\":\"Returns whether the random number request has completed.\"},\"isRngRequested()\":{\"notice\":\"Returns whether a random number has been requested\"},\"isRngTimedOut()\":{\"notice\":\"Returns whether the random number request has timed out.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBeaconPeriodSeconds(uint32)\":{\"notice\":\"Allows the owner to set the beacon period in seconds.\"},\"setDrawBuffer(address)\":{\"notice\":\"Set global DrawBuffer variable.\"},\"setRngService(address)\":{\"notice\":\"Sets the RNG service that the Prize Strategy is connected to\"},\"setRngTimeout(uint32)\":{\"notice\":\"Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\"},\"startDraw()\":{\"notice\":\"Starts the Draw process by starting random number request. The previous beacon period must have ended.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer. The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete. To create a new Draw, the user requests a new random number from the RNG service. When the random number is available, the user can create the draw using the create() method which will push the draw onto the DrawBuffer. If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/DrawBeacon.sol\":\"DrawBeacon\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/DrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\n\\n\\n/**\\n  * @title  PoolTogether V4 DrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\\n            To create a new Draw, the user requests a new random number from the RNG service.\\n            When the random number is available, the user can create the draw using the create() method\\n            which will push the draw onto the DrawBuffer.\\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\\n*/\\ncontract DrawBeacon is IDrawBeacon, Ownable {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Variables ============ */\\n\\n    /// @notice RNG contract interface\\n    RNGInterface internal rng;\\n\\n    /// @notice Current RNG Request\\n    RngRequest internal rngRequest;\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer internal drawBuffer;\\n\\n    /**\\n     * @notice RNG Request Timeout.  In fact, this is really a \\\"complete draw\\\" timeout.\\n     * @dev If the rng completes the award can still be cancelled.\\n     */\\n    uint32 internal rngTimeout;\\n\\n    /// @notice Seconds between beacon period request\\n    uint32 internal beaconPeriodSeconds;\\n\\n    /// @notice Epoch timestamp when beacon period can start\\n    uint64 internal beaconPeriodStartedAt;\\n\\n    /**\\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\\n     */\\n    uint32 internal nextDrawId;\\n\\n    /* ============ Structs ============ */\\n\\n    /**\\n     * @notice RNG Request\\n     * @param id          RNG request ID\\n     * @param lockBlock   Block number that the RNG request is locked\\n     * @param requestedAt Time when RNG is requested\\n     */\\n    struct RngRequest {\\n        uint32 id;\\n        uint32 lockBlock;\\n        uint64 requestedAt;\\n    }\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Emit when the DrawBeacon is deployed.\\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\\n     */\\n    event Deployed(\\n        uint32 nextDrawId,\\n        uint64 beaconPeriodStartedAt\\n    );\\n\\n    /* ============ Modifiers ============ */\\n\\n    modifier requireDrawNotStarted() {\\n        _requireDrawNotStarted();\\n        _;\\n    }\\n\\n    modifier requireCanStartDraw() {\\n        require(_isBeaconPeriodOver(), \\\"DrawBeacon/beacon-period-not-over\\\");\\n        require(!isRngRequested(), \\\"DrawBeacon/rng-already-requested\\\");\\n        _;\\n    }\\n\\n    modifier requireCanCompleteRngRequest() {\\n        require(isRngRequested(), \\\"DrawBeacon/rng-not-requested\\\");\\n        require(isRngCompleted(), \\\"DrawBeacon/rng-not-complete\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the DrawBeacon smart contract.\\n     * @param _owner Address of the DrawBeacon owner\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _rng The RNG service to use\\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        RNGInterface _rng,\\n        uint32 _nextDrawId,\\n        uint64 _beaconPeriodStart,\\n        uint32 _beaconPeriodSeconds,\\n        uint32 _rngTimeout\\n    ) Ownable(_owner) {\\n        require(_beaconPeriodStart > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        require(address(_rng) != address(0), \\\"DrawBeacon/rng-not-zero\\\");\\n        require(_nextDrawId >= 1, \\\"DrawBeacon/next-draw-id-gte-one\\\");\\n\\n        beaconPeriodStartedAt = _beaconPeriodStart;\\n        nextDrawId = _nextDrawId;\\n\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n        _setDrawBuffer(_drawBuffer);\\n        _setRngService(_rng);\\n        _setRngTimeout(_rngTimeout);\\n\\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\\n        emit BeaconPeriodStarted(_beaconPeriodStart);\\n    }\\n\\n    /* ============ Public Functions ============ */\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() public view override returns (bool) {\\n        return rng.isRequestComplete(rngRequest.id);\\n    }\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() public view override returns (bool) {\\n        return rngRequest.id != 0;\\n    }\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() public view override returns (bool) {\\n        if (rngRequest.requestedAt == 0) {\\n            return false;\\n        } else {\\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\\n        }\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canStartDraw() external view override returns (bool) {\\n        return _isBeaconPeriodOver() && !isRngRequested();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canCompleteDraw() external view override returns (bool) {\\n        return isRngRequested() && isRngCompleted();\\n    }\\n\\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\\n    /// @return The next beacon period start time\\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _currentTime()\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\\n        external\\n        view\\n        override\\n        returns (uint64)\\n    {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _time\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function cancelDraw() external override {\\n        require(isRngTimedOut(), \\\"DrawBeacon/rng-not-timedout\\\");\\n        uint32 requestId = rngRequest.id;\\n        uint32 lockBlock = rngRequest.lockBlock;\\n        delete rngRequest;\\n        emit DrawCancelled(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function completeDraw() external override requireCanCompleteRngRequest {\\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\\n        uint32 _nextDrawId = nextDrawId;\\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\\n        uint64 _time = _currentTime();\\n\\n        // create Draw struct\\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\\n            winningRandomNumber: randomNumber,\\n            drawId: _nextDrawId,\\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\\n            beaconPeriodSeconds: _beaconPeriodSeconds\\n        });\\n\\n        drawBuffer.pushDraw(_draw);\\n\\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\\n            _beaconPeriodStartedAt,\\n            _beaconPeriodSeconds,\\n            _time\\n        );\\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\\n        nextDrawId = _nextDrawId + 1;\\n\\n        // Reset the rngReqeust state so Beacon period can start again.\\n        delete rngRequest;\\n\\n        emit DrawCompleted(randomNumber);\\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\\n        return _beaconPeriodRemainingSeconds();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodEndAt() external view override returns (uint64) {\\n        return _beaconPeriodEndAt();\\n    }\\n\\n    function getBeaconPeriodSeconds() external view returns (uint32) {\\n        return beaconPeriodSeconds;\\n    }\\n\\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\\n        return beaconPeriodStartedAt;\\n    }\\n\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    function getNextDrawId() external view returns (uint32) {\\n        return nextDrawId;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function getLastRngLockBlock() external view override returns (uint32) {\\n        return rngRequest.lockBlock;\\n    }\\n\\n    function getLastRngRequestId() external view override returns (uint32) {\\n        return rngRequest.id;\\n    }\\n\\n    function getRngService() external view returns (RNGInterface) {\\n        return rng;\\n    }\\n\\n    function getRngTimeout() external view returns (uint32) {\\n        return rngTimeout;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function isBeaconPeriodOver() external view override returns (bool) {\\n        return _isBeaconPeriodOver();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawBuffer)\\n    {\\n        return _setDrawBuffer(newDrawBuffer);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function startDraw() external override requireCanStartDraw {\\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\\n\\n        if (feeToken != address(0) && requestFee > 0) {\\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\\n        }\\n\\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\\n        rngRequest.id = requestId;\\n        rngRequest.lockBlock = lockBlock;\\n        rngRequest.requestedAt = _currentTime();\\n\\n        emit DrawStarted(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\\n        _setRngTimeout(_rngTimeout);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngService(RNGInterface _rngService)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setRngService(_rngService);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param _rngService The address of the new RNG service interface\\n     */\\n    function _setRngService(RNGInterface _rngService) internal\\n    {\\n        rng = _rngService;\\n        emit RngServiceUpdated(_rngService);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start\\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     * @param _time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function _calculateNextBeaconPeriodStartTime(\\n        uint64 _beaconPeriodStartedAt,\\n        uint32 _beaconPeriodSeconds,\\n        uint64 _time\\n    ) internal pure returns (uint64) {\\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice returns the current time.  Used for testing.\\n     * @return The current time (block.timestamp)\\n     */\\n    function _currentTime() internal view virtual returns (uint64) {\\n        return uint64(block.timestamp);\\n    }\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends\\n     */\\n    function _beaconPeriodEndAt() internal view returns (uint64) {\\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\\n     * @return The number of seconds remaining until the prize can be awarded.\\n     */\\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\\n        uint64 endAt = _beaconPeriodEndAt();\\n        uint64 time = _currentTime();\\n\\n        if (endAt <= time) {\\n            return 0;\\n        }\\n\\n        return endAt - time;\\n    }\\n\\n    /**\\n     * @notice Returns whether the beacon period is over.\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function _isBeaconPeriodOver() internal view returns (bool) {\\n        return _beaconPeriodEndAt() <= _currentTime();\\n    }\\n\\n    /**\\n     * @notice Check to see draw is in progress.\\n     */\\n    function _requireDrawNotStarted() internal view {\\n        uint256 currentBlock = block.number;\\n\\n        require(\\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\\n            \\\"DrawBeacon/rng-in-flight\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param _newDrawBuffer  DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\\n        require(address(_newDrawBuffer) != address(0), \\\"DrawBeacon/draw-history-not-zero-address\\\");\\n\\n        require(\\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\\n            \\\"DrawBeacon/existing-draw-history-address\\\"\\n        );\\n\\n        drawBuffer = _newDrawBuffer;\\n\\n        emit DrawBufferUpdated(_newDrawBuffer);\\n\\n        return _newDrawBuffer;\\n    }\\n\\n    /**\\n     * @notice Sets the beacon period in seconds.\\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\\n        require(_beaconPeriodSeconds > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        beaconPeriodSeconds = _beaconPeriodSeconds;\\n\\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param _rngTimeout The RNG request timeout in seconds.\\n     */\\n    function _setRngTimeout(uint32 _rngTimeout) internal {\\n        require(_rngTimeout > 60, \\\"DrawBeacon/rng-timeout-gt-60-secs\\\");\\n        rngTimeout = _rngTimeout;\\n\\n        emit RngTimeoutSet(_rngTimeout);\\n    }\\n}\\n\",\"keccak256\":\"0xb12addf63f79aedc80fea67b0f36d405155f5b06a2a1cf018f6aee43aa4c26d6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3517,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rng",
                "offset": 0,
                "slot": "2",
                "type": "t_contract(RNGInterface)3314"
              },
              {
                "astId": 3521,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rngRequest",
                "offset": 0,
                "slot": "3",
                "type": "t_struct(RngRequest)3544_storage"
              },
              {
                "astId": 3525,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "drawBuffer",
                "offset": 0,
                "slot": "4",
                "type": "t_contract(IDrawBuffer)8409"
              },
              {
                "astId": 3528,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rngTimeout",
                "offset": 20,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 3531,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "beaconPeriodSeconds",
                "offset": 24,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 3534,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "beaconPeriodStartedAt",
                "offset": 0,
                "slot": "5",
                "type": "t_uint64"
              },
              {
                "astId": 3537,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "nextDrawId",
                "offset": 8,
                "slot": "5",
                "type": "t_uint32"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawBuffer)8409": {
                "encoding": "inplace",
                "label": "contract IDrawBuffer",
                "numberOfBytes": "20"
              },
              "t_contract(RNGInterface)3314": {
                "encoding": "inplace",
                "label": "contract RNGInterface",
                "numberOfBytes": "20"
              },
              "t_struct(RngRequest)3544_storage": {
                "encoding": "inplace",
                "label": "struct DrawBeacon.RngRequest",
                "members": [
                  {
                    "astId": 3539,
                    "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "id",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 3541,
                    "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "lockBlock",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 3543,
                    "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "requestedAt",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint64"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              }
            }
          },
          "userdoc": {
            "events": {
              "BeaconPeriodSecondsUpdated(uint32)": {
                "notice": "Emit when the drawPeriodSeconds is set."
              },
              "BeaconPeriodStarted(uint64)": {
                "notice": "Emit when a draw has opened."
              },
              "Deployed(uint32,uint64)": {
                "notice": "Emit when the DrawBeacon is deployed."
              },
              "DrawBufferUpdated(address)": {
                "notice": "Emit when a new DrawBuffer has been set."
              },
              "DrawCancelled(uint32,uint32)": {
                "notice": "Emit when a draw has been cancelled."
              },
              "DrawCompleted(uint256)": {
                "notice": "Emit when a draw has been completed."
              },
              "DrawStarted(uint32,uint32)": {
                "notice": "Emit when a draw has started."
              },
              "RngServiceUpdated(address)": {
                "notice": "Emit when a RNG service address is set."
              },
              "RngTimeoutSet(uint32)": {
                "notice": "Emit when a draw timeout param is set."
              }
            },
            "kind": "user",
            "methods": {
              "beaconPeriodEndAt()": {
                "notice": "Returns the timestamp at which the beacon period ends"
              },
              "beaconPeriodRemainingSeconds()": {
                "notice": "Returns the number of seconds remaining until the beacon period can be complete."
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "notice": "Calculates when the next beacon period will start."
              },
              "calculateNextBeaconPeriodStartTimeFromCurrentTime()": {
                "notice": "Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now."
              },
              "canCompleteDraw()": {
                "notice": "Returns whether a Draw can be completed."
              },
              "canStartDraw()": {
                "notice": "Returns whether a Draw can be started."
              },
              "cancelDraw()": {
                "notice": "Can be called by anyone to cancel the draw request if the RNG has timed out."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "completeDraw()": {
                "notice": "Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
              },
              "constructor": {
                "notice": "Deploy the DrawBeacon smart contract."
              },
              "getLastRngLockBlock()": {
                "notice": "Returns the block number that the current RNG request has been locked to."
              },
              "getLastRngRequestId()": {
                "notice": "Returns the current RNG Request ID."
              },
              "isBeaconPeriodOver()": {
                "notice": "Returns whether the beacon period is over"
              },
              "isRngCompleted()": {
                "notice": "Returns whether the random number request has completed."
              },
              "isRngRequested()": {
                "notice": "Returns whether a random number has been requested"
              },
              "isRngTimedOut()": {
                "notice": "Returns whether the random number request has timed out."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "notice": "Allows the owner to set the beacon period in seconds."
              },
              "setDrawBuffer(address)": {
                "notice": "Set global DrawBuffer variable."
              },
              "setRngService(address)": {
                "notice": "Sets the RNG service that the Prize Strategy is connected to"
              },
              "setRngTimeout(uint32)": {
                "notice": "Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked."
              },
              "startDraw()": {
                "notice": "Starts the Draw process by starting random number request. The previous beacon period must have ended."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer. The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete. To create a new Draw, the user requests a new random number from the RNG service. When the random number is available, the user can create the draw using the create() method which will push the draw onto the DrawBuffer. If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/DrawBuffer.sol": {
        "DrawBuffer": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "uint8",
                  "name": "_cardinality",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "DrawSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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"
            },
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getDraws",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_draw",
                  "type": "tuple"
                }
              ],
              "name": "pushDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_newDraw",
                  "type": "tuple"
                }
              ],
              "name": "setDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "details": "A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...) will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.",
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_cardinality": "Draw ring buffer cardinality.",
                  "_owner": "Address of the owner of the DrawBuffer."
                }
              },
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getDraw(uint32)": {
                "details": "Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawId": "Draw.drawId"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getDrawCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.",
                "returns": {
                  "_0": "Number of Draws held in the draw ring buffer."
                }
              },
              "getDraws(uint32[])": {
                "details": "Read multiple Draws using each drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawIds": "Array of drawIds"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw[]"
                }
              },
              "getNewestDraw()": {
                "details": "Uses the nextDrawIndex to calculate the most recently added Draw.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getOldestDraw()": {
                "details": "Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Push new draw onto draws history via authorized manager or owner.",
                "params": {
                  "draw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.",
                "params": {
                  "newDraw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 DrawBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_4418": {
                  "entryPoint": null,
                  "id": 4418,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 102,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_uint8_fromMemory": {
                  "entryPoint": 182,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:464:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "110:352:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "156:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "158:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "158:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "140:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "127:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "127:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "152:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "123:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "120:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "181:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "185:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "232:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "243:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "258:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "263:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "254:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "254:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "267:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "250:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "250:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "239:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "239:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "229:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "229:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "222:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "222:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "219:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "298:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "308:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "322:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "358:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "343:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "343:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "337:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "337:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "326:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "414:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "423:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "426:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "416:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "416:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "416:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "384:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "397:7:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "406:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "393:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "393:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:39:94"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "439:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "449:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "439:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "68:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "79:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "91:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "99:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:448:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_uint8_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xff))) { revert(0, 0) }\n        value1 := value_1\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506040516117cb3803806117cb83398101604081905261002f916100b6565b8161003981610066565b50610203805463ffffffff60401b191660ff92909216680100000000000000000291909117905550610102565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c957600080fd5b82516001600160a01b03811681146100e057600080fd5b602084015190925060ff811681146100f757600080fd5b809150509250929050565b6116ba806101116000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d0ebdbe711610066578063d0ebdbe714610209578063d7bcb86b1461022c578063e30c39781461023f578063f2fde38b1461025057600080fd5b80638da5cb5b146101b5578063c4df5fed146101c6578063caeef7ec146101ce578063d0bb78f3146101e957600080fd5b8063648b1b4f116100d3578063648b1b4f14610176578063715018a61461017e5780638200d8731461018657806383c34aaf146101a257600080fd5b8063089eb925146101055780630edb1d2e14610132578063481c6a75146101475780634e71e0c81461016c575b600080fd5b6101186101133660046113ed565b610263565b60405163ffffffff90911681526020015b60405180910390f35b61013a61032e565b6040516101299190611533565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610129565b6101746103a3565b005b61013a610431565b610174610586565b61018f61010081565b60405161ffff9091168152602001610129565b61013a6101b0366004611482565b6105fb565b6000546001600160a01b0316610154565b6101186106f6565b6102035468010000000000000000900463ffffffff16610118565b6101fc6101f7366004611378565b610798565b604051610129919061149d565b61021c61021736600461134f565b610948565b6040519015158152602001610129565b61011861023a3660046113ed565b6109bc565b6001546001600160a01b0316610154565b61017461025e36600461134f565b610ba9565b6000336102786002546001600160a01b031690565b6001600160a01b031614806102a657503361029b6000546001600160a01b031690565b6001600160a01b0316145b61031d5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61032682610ce5565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261039e90610ee7565b905090565b6001546001600160a01b031633146103fd5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610314565b600154610412906001600160a01b0316610f22565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084018190526801000000000000000090920416928201929092529060009060039061010081106104b2576104b2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061058057506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336105996000546001600160a01b031690565b6001600160a01b0316146105ef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6105f96000610f22565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915260039061066f9084610f7f565b63ffffffff16610100811061068657610686611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161074257600091505090565b6020810151600363ffffffff8216610100811061076157610761611658565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16600014610580575060400151919050565b606060008267ffffffffffffffff8111156107b5576107b561166e565b60405190808252806020026020018201604052801561080e57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816107d35790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b8481101561093e57600361088b8388888581811061087157610871611658565b90506020020160208101906108869190611482565b610f7f565b63ffffffff1661010081106108a2576108a2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b90049091166080820152835184908390811061092057610920611658565b6020026020010181905250808061093690611605565b915050610851565b5090949350505050565b60003361095d6000546001600160a01b031690565b6001600160a01b0316146109b35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b61032682610f92565b6000336109d16000546001600160a01b031690565b6001600160a01b031614610a275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610a7d9184919061107e16565b90508360038263ffffffff166101008110610a9a57610a9a611658565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610b97908790611533565b60405180910390a25050506020015190565b33610bbc6000546001600160a01b031690565b6001600160a01b031614610c125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6001600160a01b038116610c8e5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610314565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610d3c57610d3c611658565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610e18918391906111ae16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610ed6908690611533565b60405180910390a250506020015190565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152815160039061066f90849061107e565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8b838361107e565b9392505050565b6002546000906001600160a01b0390811690831681141561101b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610314565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061108983611299565b80156110a55750826000015163ffffffff168263ffffffff1611155b6110f15760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610314565b82516000906111019084906115e0565b9050836040015163ffffffff168163ffffffff16106111625760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610314565b6000611182856020015163ffffffff16866040015163ffffffff166112c1565b90506111a58163ffffffff168363ffffffff16876040015163ffffffff166112ef565b95945050505050565b60408051606081018252600080825260208201819052918101919091526111d483611299565b15806111f7575082516111e89060016115a1565b63ffffffff168263ffffffff16145b6112435760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610314565b60405180606001604052808363ffffffff168152602001611278856020015163ffffffff16866040015163ffffffff16611307565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156112ba5750815163ffffffff16155b1592915050565b6000816112d057506000610580565b610f8b60016112df8486611589565b6112e991906115c9565b83611317565b60006112ff836112df8487611589565b949350505050565b6000610f8b6112e9846001611589565b6000610f8b8284611620565b803563ffffffff8116811461032957600080fd5b803567ffffffffffffffff8116811461032957600080fd5b60006020828403121561136157600080fd5b81356001600160a01b0381168114610f8b57600080fd5b6000806020838503121561138b57600080fd5b823567ffffffffffffffff808211156113a357600080fd5b818501915085601f8301126113b757600080fd5b8135818111156113c657600080fd5b8660208260051b85010111156113db57600080fd5b60209290920196919550909350505050565b600060a082840312156113ff57600080fd5b60405160a0810181811067ffffffffffffffff8211171561143057634e487b7160e01b600052604160045260246000fd5b6040528235815261144360208401611323565b602082015261145460408401611337565b604082015261146560608401611337565b606082015261147660808401611323565b60808201529392505050565b60006020828403121561149457600080fd5b610f8b82611323565b6020808252825182820181905260009190848201906040850190845b818110156115275761151483855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a092909201916001016114b9565b50909695505050505050565b60a08101610580828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b6000821982111561159c5761159c611642565b500190565b600063ffffffff8083168185168083038211156115c0576115c0611642565b01949350505050565b6000828210156115db576115db611642565b500390565b600063ffffffff838116908316818110156115fd576115fd611642565b039392505050565b600060001982141561161957611619611642565b5060010190565b60008261163d57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220d24adc87e36960dc7264bd5ef9ac5c7908548298b076d6b21cbfb13083462bab64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x17CB CODESIZE SUB DUP1 PUSH2 0x17CB DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0xB6 JUMP JUMPDEST DUP2 PUSH2 0x39 DUP2 PUSH2 0x66 JUMP JUMPDEST POP PUSH2 0x203 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x40 SHL NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND PUSH9 0x10000000000000000 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH2 0x102 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x16BA DUP1 PUSH2 0x111 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xD7BCB86B EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x23F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x250 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B5 JUMPI DUP1 PUSH4 0xC4DF5FED EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xD0BB78F3 EQ PUSH2 0x1E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x648B1B4F GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x648B1B4F EQ PUSH2 0x176 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x83C34AAF EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x89EB925 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0xEDB1D2E EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x16C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x263 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13A PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x3A3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13A PUSH2 0x431 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x13A PUSH2 0x1B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0x5FB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x6F6 JUMP JUMPDEST PUSH2 0x203 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x118 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1378 JUMP JUMPDEST PUSH2 0x798 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x149D JUMP JUMPDEST PUSH2 0x21C PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0x948 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x23A CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x9BC JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x278 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2A6 JUMPI POP CALLER PUSH2 0x29B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x31D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xCE5 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x39E SWAP1 PUSH2 0xEE7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x412 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF22 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x4B2 JUMPI PUSH2 0x4B2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD DUP6 SWAP1 MSTORE PUSH13 0x1000000000000000000000000 DUP4 DIV AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND PUSH1 0x80 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x580 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SLOAD DUP2 MSTORE PUSH1 0x4 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x599 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x5F9 PUSH1 0x0 PUSH2 0xF22 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x742 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x761 JUMPI PUSH2 0x761 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x0 EQ PUSH2 0x580 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7B5 JUMPI PUSH2 0x7B5 PUSH2 0x166E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x80E JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x0 NOT SWAP1 SWAP3 ADD SWAP2 ADD DUP2 PUSH2 0x7D3 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x93E JUMPI PUSH1 0x3 PUSH2 0x88B DUP4 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x871 JUMPI PUSH2 0x871 PUSH2 0x1658 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x886 SWAP2 SWAP1 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x8A2 JUMPI PUSH2 0x8A2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE DUP4 MLOAD DUP5 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x920 JUMPI PUSH2 0x920 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x936 SWAP1 PUSH2 0x1605 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x851 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x95D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9D1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 ADD MLOAD SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0xA7D SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x107E AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA9A JUMPI PUSH2 0xA9A PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x60 DUP8 ADD MLOAD PUSH1 0x80 SWAP1 SWAP8 ADD MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP8 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP6 SWAP1 SWAP6 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 MUL OR SWAP1 SSTORE DUP7 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xB97 SWAP1 DUP8 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xBBC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC8E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0xD3C JUMPI PUSH2 0xD3C PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 SWAP1 SWAP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP6 DUP7 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP7 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP5 SWAP1 SWAP5 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP5 DUP5 AND SWAP5 SWAP1 SWAP5 MUL SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE SWAP1 DUP5 ADD MLOAD PUSH2 0xE18 SWAP2 DUP4 SWAP2 SWAP1 PUSH2 0x11AE AND JUMP JUMPDEST DUP1 MLOAD PUSH2 0x203 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 SWAP6 DUP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP6 AND SWAP7 DUP3 AND SWAP7 SWAP1 SWAP7 OR SWAP4 SWAP1 SWAP4 OR AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE SWAP1 DUP6 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xED6 SWAP1 DUP7 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 SWAP1 PUSH2 0x107E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP4 DUP4 PUSH2 0x107E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x101B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1089 DUP4 PUSH2 0x1299 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10A5 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x10F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x1101 SWAP1 DUP5 SWAP1 PUSH2 0x15E0 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1162 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1182 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12C1 JUMP JUMPDEST SWAP1 POP PUSH2 0x11A5 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12EF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x11D4 DUP4 PUSH2 0x1299 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x11F7 JUMPI POP DUP3 MLOAD PUSH2 0x11E8 SWAP1 PUSH1 0x1 PUSH2 0x15A1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x1243 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1278 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1307 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x12BA JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x12D0 JUMPI POP PUSH1 0x0 PUSH2 0x580 JUMP JUMPDEST PUSH2 0xF8B PUSH1 0x1 PUSH2 0x12DF DUP5 DUP7 PUSH2 0x1589 JUMP JUMPDEST PUSH2 0x12E9 SWAP2 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST DUP4 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12FF DUP4 PUSH2 0x12DF DUP5 DUP8 PUSH2 0x1589 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B PUSH2 0x12E9 DUP5 PUSH1 0x1 PUSH2 0x1589 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP3 DUP5 PUSH2 0x1620 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x13DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1430 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0x1443 PUSH1 0x20 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1454 PUSH1 0x40 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x1465 PUSH1 0x60 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1476 PUSH1 0x80 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1494 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF8B DUP3 PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1527 JUMPI PUSH2 0x1514 DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x14B9 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0x580 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x159C JUMPI PUSH2 0x159C PUSH2 0x1642 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C0 JUMPI PUSH2 0x15C0 PUSH2 0x1642 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15DB JUMPI PUSH2 0x15DB PUSH2 0x1642 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x15FD JUMPI PUSH2 0x15FD PUSH2 0x1642 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1619 JUMPI PUSH2 0x1619 PUSH2 0x1642 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x163D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD2 0x4A 0xDC DUP8 0xE3 PUSH10 0x60DC7264BD5EF9AC5C79 ADDMOD SLOAD DUP3 SWAP9 0xB0 PUSH23 0xD6B21CBFB13083462BAB64736F6C634300080600330000 ",
              "sourceMap": "1184:4988:23:-:0;;;1825:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1881:6;1648:24:19;1881:6:23;1648:9:19;:24::i;:::-;-1:-1:-1;1899:14:23::1;:41:::0;;-1:-1:-1;;;;1899:41:23::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;1184:4988:23;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:448:94:-;91:6;99;152:2;140:9;131:7;127:23;123:32;120:2;;;168:1;165;158:12;120:2;194:16;;-1:-1:-1;;;;;239:31:94;;229:42;;219:2;;285:1;282;275:12;219:2;358;343:18;;337:25;308:5;;-1:-1:-1;406:4:94;393:18;;381:31;;371:2;;426:1;423;416:12;371:2;449:7;439:17;;;110:352;;;;;:::o;:::-;1184:4988:23;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_4390": {
                  "entryPoint": null,
                  "id": 4390,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_drawIdToDrawIndex_4681": {
                  "entryPoint": 3967,
                  "id": 4681,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_getNewestDraw_4700": {
                  "entryPoint": 3815,
                  "id": 4700,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_pushDraw_4741": {
                  "entryPoint": 3301,
                  "id": 4741,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setManager_3068": {
                  "entryPoint": 3986,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 3874,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 931,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getBufferCardinality_4429": {
                  "entryPoint": null,
                  "id": 4429,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawCount_4551": {
                  "entryPoint": 1782,
                  "id": 4551,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDraw_4447": {
                  "entryPoint": 1531,
                  "id": 4447,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getDraws_4509": {
                  "entryPoint": 1944,
                  "id": 4509,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getIndex_9437": {
                  "entryPoint": 4222,
                  "id": 9437,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getNewestDraw_4564": {
                  "entryPoint": 814,
                  "id": 4564,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getOldestDraw_4604": {
                  "entryPoint": 1073,
                  "id": 4604,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isInitialized_9330": {
                  "entryPoint": 4761,
                  "id": 9330,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_9914": {
                  "entryPoint": 4801,
                  "id": 9914,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_9932": {
                  "entryPoint": 4871,
                  "id": 9932,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_9887": {
                  "entryPoint": 4847,
                  "id": 9887,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pushDraw_4621": {
                  "entryPoint": 611,
                  "id": 4621,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@push_9374": {
                  "entryPoint": 4526,
                  "id": 9374,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 1414,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setDraw_4664": {
                  "entryPoint": 2492,
                  "id": 4664,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setManager_3037": {
                  "entryPoint": 2376,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_3192": {
                  "entryPoint": 2985,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@wrap_9865": {
                  "entryPoint": 4887,
                  "id": 9865,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4943,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 4984,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptr": {
                  "entryPoint": 5101,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 5250,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 4899,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 4919,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_struct_Draw": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5277,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5427,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5513,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 5537,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5577,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 5600,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 5637,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 5664,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5698,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5720,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 5742,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9346:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:163:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "230:123:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "262:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "309:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "288:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "288:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "278:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "209:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "220:5:94",
                            "type": ""
                          }
                        ],
                        "src": "182:171:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "428:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "474:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "483:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "486:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "476:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "476:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "476:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "449:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "458:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "445:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "445:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "470:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "441:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "441:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "438:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "499:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "512:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "512:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "503:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "621:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "630:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "633:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "623:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "623:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "623:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "575:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "564:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "564:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "554:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "554:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "544:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "646:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "656:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "646:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "394:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "405:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "417:6:94",
                            "type": ""
                          }
                        ],
                        "src": "358:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "776:510:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "822:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "831:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "834:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "797:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "806:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "793:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "793:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "818:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "786:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "847:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "874:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "861:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "861:23:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "851:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "893:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "903:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "897:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "936:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "944:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "933:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "933:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "930:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "987:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "998:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "983:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "983:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "977:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1053:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1062:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1065:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1055:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1055:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1055:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1032:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1036:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1028:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1028:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1024:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1024:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1017:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1017:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1014:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1078:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1105:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1092:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1092:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1082:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1135:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1144:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1147:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1137:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1137:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1137:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1123:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1131:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1120:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1120:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1117:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1209:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1218:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1221:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1211:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1211:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1211:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1174:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1182:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1185:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1178:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1178:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1170:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1170:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1195:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1166:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1166:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1200:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1163:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1163:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1160:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1234:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1248:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1252:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1244:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1244:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1234:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1264:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1274:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1264:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "734:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "745:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "757:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "765:6:94",
                            "type": ""
                          }
                        ],
                        "src": "672:614:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1383:785:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1430:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1439:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1442:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1432:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1432:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1432:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1404:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1413:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1400:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1400:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1425:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1396:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1396:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1393:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1455:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1475:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1469:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1469:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1459:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1487:34:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1509:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1517:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1505:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1505:16:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1491:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1604:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1625:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1628:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1618:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1618:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1618:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1726:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1729:4:94",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1719:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1719:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1719:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1754:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1757:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1747:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1747:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1539:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1551:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1536:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1536:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1575:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1587:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1572:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1572:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1533:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1533:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1530:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1788:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1792:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1781:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1781:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1781:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1819:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1840:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1827:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1827:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1812:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1812:39:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1812:39:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1871:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1879:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1867:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1867:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1906:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1917:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1902:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1902:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1884:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1884:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1860:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1860:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1860:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1942:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1950:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1938:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1938:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1977:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1988:2:94",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1973:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1973:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1955:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1955:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1931:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1931:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1931:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2013:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2021:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2009:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2009:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2048:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2059:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2044:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2044:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2026:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2026:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2002:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2002:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2002:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2084:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2092:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2080:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2080:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2120:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2131:3:94",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2116:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2116:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2098:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2098:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2073:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2073:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2073:64:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2146:16:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2156:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2146:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1349:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1360:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1372:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1291:877:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2242:115:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2288:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2297:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2300:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2290:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2290:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2290:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2263:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2272:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2259:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2259:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2284:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2255:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2255:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2252:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2313:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2341:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2323:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2323:28:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2313:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2208:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2219:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2231:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2173:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2410:453:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2427:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2438:5:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2432:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2432:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2420:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2420:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2420:25:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2454:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2484:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2491:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2480:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2480:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2474:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2474:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "2458:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2506:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2516:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2510:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2546:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2551:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2542:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2542:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2562:12:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2576:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2558:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2558:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2535:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2535:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2535:45:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2589:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2621:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2628:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2617:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2617:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2611:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2593:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2643:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2653:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2647:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2691:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2696:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2687:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2687:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2707:14:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2723:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2703:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2703:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2680:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2680:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2680:47:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2747:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2752:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2743:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2743:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2773:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2780:4:94",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2769:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2769:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2763:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2763:23:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2788:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2759:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2759:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2736:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2736:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2736:56:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2812:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2817:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2808:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2808:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2838:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2845:4:94",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2834:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2834:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2828:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2828:23:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2853:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2824:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2824:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2801:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2801:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2801:56:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2394:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2401:3:94",
                            "type": ""
                          }
                        ],
                        "src": "2362:501:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2969:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2979:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2991:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3002:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2987:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2987:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2979:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3021:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3036:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3044:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3032:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3032:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3014:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3014:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3014:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2938:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2949:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2960:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2868:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3294:499:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3304:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3314:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3308:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3325:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3343:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3354:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3339:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3339:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3329:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3384:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3396:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "3407:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "3400:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3422:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3442:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3426:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3465:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3473:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3458:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3458:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3458:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3489:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3500:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3511:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3496:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3496:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3489:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3523:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3541:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3549:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3537:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3537:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3527:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3561:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3570:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3565:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3629:138:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "3672:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3666:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3666:13:94"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3681:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_Draw",
                                        "nodeType": "YulIdentifier",
                                        "src": "3643:22:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3643:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3643:42:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3698:21:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:3:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3714:4:94",
                                          "type": "",
                                          "value": "0xa0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:14:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3698:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3732:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3746:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3754:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3742:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3742:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3732:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3591:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3594:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3588:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3588:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3602:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3604:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3613:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3616:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3609:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3609:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3604:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3584:3:94",
                                "statements": []
                              },
                              "src": "3580:187:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3776:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "3784:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3776:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3263:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3274:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3285:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3099:694:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3893:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3903:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3915:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3926:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3911:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3911:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3903:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3945:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3970:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3963:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3963:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3956:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3956:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3938:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3938:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3938:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3862:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3873:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3884:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3798:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4164:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4181:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4192:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4174:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4174:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4174:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4215:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4226:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4211:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4211:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4231:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4204:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4204:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4204:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4254:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4265:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4250:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4250:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4270:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4243:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4243:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4243:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4325:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4336:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4321:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4321:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4341:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4314:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4314:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4314:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4356:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4368:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4379:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4364:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4364:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4356:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4141:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4155:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3990:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4568:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4585:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4596:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4578:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4578:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4578:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4619:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4630:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4615:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4615:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4635:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4608:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4608:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4608:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4658:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4669:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4654:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4654:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4674:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4647:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4647:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4647:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4710:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4722:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4733:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4718:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4718:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4710:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4545:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4559:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4394:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4921:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4938:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4949:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4931:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4931:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4931:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4972:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4983:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4968:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4968:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4988:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4961:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4961:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4961:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5011:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5022:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5007:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5007:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5027:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5000:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5000:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5000:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5070:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5082:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5093:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5078:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5078:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5070:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4898:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4912:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4747:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5281:165:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5298:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5309:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5291:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5291:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5291:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5332:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5343:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5328:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5328:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5348:2:94",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5321:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5321:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5321:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5371:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5382:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5367:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5367:18:94"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5387:17:94",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5360:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5360:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5360:45:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5414:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5426:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5437:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5422:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5422:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5414:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5258:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5272:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5107:339:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5625:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5642:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5653:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5635:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5635:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5635:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5676:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5687:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5672:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5672:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5692:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5665:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5665:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5665:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5715:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5726:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5711:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5711:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5731:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5704:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5704:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5704:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5786:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5797:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5782:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5782:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5802:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5775:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5775:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5775:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5820:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5832:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5843:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5828:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5828:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5820:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5602:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5616:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5451:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6032:166:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6049:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6060:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6042:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6042:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6042:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6083:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6094:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6079:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6079:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6099:2:94",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6072:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6072:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6072:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6122:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6133:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6118:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6118:18:94"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6138:18:94",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6111:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6111:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6111:46:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6166:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6178:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6189:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6174:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6174:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6166:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6009:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6023:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5858:340:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6377:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6394:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6405:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6387:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6387:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6387:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6428:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6439:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6424:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6424:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6444:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6417:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6417:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6417:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6467:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6478:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6463:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6463:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6483:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6456:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6456:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6456:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6538:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6549:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6534:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6534:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6554:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6527:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6527:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6527:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6571:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6583:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6594:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6579:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6579:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6571:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6354:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6368:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6203:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6783:168:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6800:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6811:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6793:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6793:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6793:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6834:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6845:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6830:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6830:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6850:2:94",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6823:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6823:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6823:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6873:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6884:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6869:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6869:18:94"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6889:20:94",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6862:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6862:48:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6862:48:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6919:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6931:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6942:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6927:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6927:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6919:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6760:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6774:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6609:342:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7101:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7111:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7123:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7134:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7119:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7119:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7111:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7170:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7178:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "7147:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7147:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7147:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7070:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7081:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7092:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6956:238:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7298:89:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7308:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7320:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7331:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7316:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7316:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7308:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7350:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7365:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7373:6:94",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7361:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7361:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7343:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7343:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7343:38:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7267:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7278:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7289:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7199:188:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7491:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7501:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7513:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7524:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7509:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7509:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7501:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7543:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7558:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7566:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7554:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7554:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7536:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7536:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7536:42:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7460:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7471:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7482:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7392:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7637:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7664:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7666:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7666:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7666:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7653:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "7660:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "7656:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7656:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7650:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7650:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7647:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7695:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7706:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7709:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7702:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7702:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7695:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7620:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7623:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7629:3:94",
                            "type": ""
                          }
                        ],
                        "src": "7589:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7769:181:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7779:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7789:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7783:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7808:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7823:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7826:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7819:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7819:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7812:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7838:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7853:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7856:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7849:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7849:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7842:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7893:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7895:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7895:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7895:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7874:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7883:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7887:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7879:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7879:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7871:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7871:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7868:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7924:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7935:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7940:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7931:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7931:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7924:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7752:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7755:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7761:3:94",
                            "type": ""
                          }
                        ],
                        "src": "7722:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8004:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8026:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8028:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8028:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8028:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8020:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8023:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8017:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8017:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8014:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8057:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8069:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8072:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8065:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8065:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8057:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7986:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7989:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "7995:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7955:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8133:173:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8143:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8153:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8147:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8172:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8187:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8190:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8183:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8183:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8176:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8202:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8217:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8220:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8213:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8213:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8206:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8248:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8250:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8250:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8250:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8238:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8243:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8235:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8235:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8232:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8279:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8291:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8296:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8287:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8287:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8279:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8115:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8118:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8124:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8085:221:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8358:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8449:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8451:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8451:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8451:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8374:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8381:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "8371:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8371:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8368:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8480:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8491:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8498:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8487:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8487:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "8480:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8340:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "8350:3:94",
                            "type": ""
                          }
                        ],
                        "src": "8311:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8549:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8580:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8601:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8604:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8594:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8594:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8594:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8702:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8705:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8695:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8695:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8695:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8730:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8733:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8723:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8723:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8723:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8569:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8562:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8562:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8559:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8757:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8766:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8769:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "8762:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8762:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8757:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8534:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8537:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8543:1:94",
                            "type": ""
                          }
                        ],
                        "src": "8511:266:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8814:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8831:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8834:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8824:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8824:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8824:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8928:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8931:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8921:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8921:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8921:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8952:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8955:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "8945:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8945:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8945:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8782:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9003:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9020:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9023:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9013:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9013:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9013:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9117:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9120:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9110:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9110:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9110:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9141:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9144:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9134:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9134:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9134:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8971:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9192:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9209:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9212:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9202:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9202:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9202:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9306:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9309:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9299:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9299:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9299:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9330:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9333:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9323:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9323:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9323:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9160:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_struct$_Draw_$8176_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 160)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, calldataload(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint64(add(headStart, 64)))\n        mstore(add(memPtr, 96), abi_decode_uint64(add(headStart, 96)))\n        mstore(add(memPtr, 128), abi_decode_uint32(add(headStart, 128)))\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n    }\n    function abi_encode_struct_Draw(value, pos)\n    {\n        mstore(pos, mload(value))\n        let memberValue0 := mload(add(value, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(pos, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(pos, 0x40), and(memberValue0_1, _2))\n        mstore(add(pos, 0x60), and(mload(add(value, 0x60)), _2))\n        mstore(add(pos, 0x80), and(mload(add(value, 0x80)), _1))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_Draw(mload(srcPtr), pos)\n            pos := add(pos, 0xa0)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"DRB/future-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"DRB/expired-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"DRB/must-be-contig\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        abi_encode_struct_Draw(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d0ebdbe711610066578063d0ebdbe714610209578063d7bcb86b1461022c578063e30c39781461023f578063f2fde38b1461025057600080fd5b80638da5cb5b146101b5578063c4df5fed146101c6578063caeef7ec146101ce578063d0bb78f3146101e957600080fd5b8063648b1b4f116100d3578063648b1b4f14610176578063715018a61461017e5780638200d8731461018657806383c34aaf146101a257600080fd5b8063089eb925146101055780630edb1d2e14610132578063481c6a75146101475780634e71e0c81461016c575b600080fd5b6101186101133660046113ed565b610263565b60405163ffffffff90911681526020015b60405180910390f35b61013a61032e565b6040516101299190611533565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610129565b6101746103a3565b005b61013a610431565b610174610586565b61018f61010081565b60405161ffff9091168152602001610129565b61013a6101b0366004611482565b6105fb565b6000546001600160a01b0316610154565b6101186106f6565b6102035468010000000000000000900463ffffffff16610118565b6101fc6101f7366004611378565b610798565b604051610129919061149d565b61021c61021736600461134f565b610948565b6040519015158152602001610129565b61011861023a3660046113ed565b6109bc565b6001546001600160a01b0316610154565b61017461025e36600461134f565b610ba9565b6000336102786002546001600160a01b031690565b6001600160a01b031614806102a657503361029b6000546001600160a01b031690565b6001600160a01b0316145b61031d5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61032682610ce5565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261039e90610ee7565b905090565b6001546001600160a01b031633146103fd5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610314565b600154610412906001600160a01b0316610f22565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084018190526801000000000000000090920416928201929092529060009060039061010081106104b2576104b2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061058057506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336105996000546001600160a01b031690565b6001600160a01b0316146105ef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6105f96000610f22565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915260039061066f9084610f7f565b63ffffffff16610100811061068657610686611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161074257600091505090565b6020810151600363ffffffff8216610100811061076157610761611658565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16600014610580575060400151919050565b606060008267ffffffffffffffff8111156107b5576107b561166e565b60405190808252806020026020018201604052801561080e57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816107d35790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b8481101561093e57600361088b8388888581811061087157610871611658565b90506020020160208101906108869190611482565b610f7f565b63ffffffff1661010081106108a2576108a2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b90049091166080820152835184908390811061092057610920611658565b6020026020010181905250808061093690611605565b915050610851565b5090949350505050565b60003361095d6000546001600160a01b031690565b6001600160a01b0316146109b35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b61032682610f92565b6000336109d16000546001600160a01b031690565b6001600160a01b031614610a275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610a7d9184919061107e16565b90508360038263ffffffff166101008110610a9a57610a9a611658565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610b97908790611533565b60405180910390a25050506020015190565b33610bbc6000546001600160a01b031690565b6001600160a01b031614610c125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6001600160a01b038116610c8e5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610314565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610d3c57610d3c611658565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610e18918391906111ae16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610ed6908690611533565b60405180910390a250506020015190565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152815160039061066f90849061107e565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8b838361107e565b9392505050565b6002546000906001600160a01b0390811690831681141561101b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610314565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061108983611299565b80156110a55750826000015163ffffffff168263ffffffff1611155b6110f15760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610314565b82516000906111019084906115e0565b9050836040015163ffffffff168163ffffffff16106111625760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610314565b6000611182856020015163ffffffff16866040015163ffffffff166112c1565b90506111a58163ffffffff168363ffffffff16876040015163ffffffff166112ef565b95945050505050565b60408051606081018252600080825260208201819052918101919091526111d483611299565b15806111f7575082516111e89060016115a1565b63ffffffff168263ffffffff16145b6112435760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610314565b60405180606001604052808363ffffffff168152602001611278856020015163ffffffff16866040015163ffffffff16611307565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156112ba5750815163ffffffff16155b1592915050565b6000816112d057506000610580565b610f8b60016112df8486611589565b6112e991906115c9565b83611317565b60006112ff836112df8487611589565b949350505050565b6000610f8b6112e9846001611589565b6000610f8b8284611620565b803563ffffffff8116811461032957600080fd5b803567ffffffffffffffff8116811461032957600080fd5b60006020828403121561136157600080fd5b81356001600160a01b0381168114610f8b57600080fd5b6000806020838503121561138b57600080fd5b823567ffffffffffffffff808211156113a357600080fd5b818501915085601f8301126113b757600080fd5b8135818111156113c657600080fd5b8660208260051b85010111156113db57600080fd5b60209290920196919550909350505050565b600060a082840312156113ff57600080fd5b60405160a0810181811067ffffffffffffffff8211171561143057634e487b7160e01b600052604160045260246000fd5b6040528235815261144360208401611323565b602082015261145460408401611337565b604082015261146560608401611337565b606082015261147660808401611323565b60808201529392505050565b60006020828403121561149457600080fd5b610f8b82611323565b6020808252825182820181905260009190848201906040850190845b818110156115275761151483855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a092909201916001016114b9565b50909695505050505050565b60a08101610580828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b6000821982111561159c5761159c611642565b500190565b600063ffffffff8083168185168083038211156115c0576115c0611642565b01949350505050565b6000828210156115db576115db611642565b500390565b600063ffffffff838116908316818110156115fd576115fd611642565b039392505050565b600060001982141561161957611619611642565b5060010190565b60008261163d57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220d24adc87e36960dc7264bd5ef9ac5c7908548298b076d6b21cbfb13083462bab64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xD7BCB86B EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x23F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x250 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B5 JUMPI DUP1 PUSH4 0xC4DF5FED EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xD0BB78F3 EQ PUSH2 0x1E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x648B1B4F GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x648B1B4F EQ PUSH2 0x176 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x8200D873 EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0x83C34AAF EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x89EB925 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0xEDB1D2E EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x16C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x263 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13A PUSH2 0x32E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x3A3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x13A PUSH2 0x431 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x100 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x13A PUSH2 0x1B0 CALLDATASIZE PUSH1 0x4 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0x5FB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x6F6 JUMP JUMPDEST PUSH2 0x203 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x118 JUMP JUMPDEST PUSH2 0x1FC PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1378 JUMP JUMPDEST PUSH2 0x798 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x149D JUMP JUMPDEST PUSH2 0x21C PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0x948 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x129 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x23A CALLDATASIZE PUSH1 0x4 PUSH2 0x13ED JUMP JUMPDEST PUSH2 0x9BC JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x134F JUMP JUMPDEST PUSH2 0xBA9 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x278 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2A6 JUMPI POP CALLER PUSH2 0x29B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x31D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xCE5 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x39E SWAP1 PUSH2 0xEE7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x412 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF22 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x4B2 JUMPI PUSH2 0x4B2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD DUP6 SWAP1 MSTORE PUSH13 0x1000000000000000000000000 DUP4 DIV AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND PUSH1 0x80 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x580 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SLOAD DUP2 MSTORE PUSH1 0x4 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x599 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x5F9 PUSH1 0x0 PUSH2 0xF22 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x742 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x761 JUMPI PUSH2 0x761 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x0 EQ PUSH2 0x580 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7B5 JUMPI PUSH2 0x7B5 PUSH2 0x166E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x80E JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x0 NOT SWAP1 SWAP3 ADD SWAP2 ADD DUP2 PUSH2 0x7D3 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x93E JUMPI PUSH1 0x3 PUSH2 0x88B DUP4 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x871 JUMPI PUSH2 0x871 PUSH2 0x1658 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x886 SWAP2 SWAP1 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0xF7F JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x8A2 JUMPI PUSH2 0x8A2 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x2 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD DUP3 MSTORE PUSH1 0x1 ADD SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH5 0x100000000 DUP4 DIV DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH13 0x1000000000000000000000000 DUP3 DIV SWAP1 SWAP4 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV SWAP1 SWAP2 AND PUSH1 0x80 DUP3 ADD MSTORE DUP4 MLOAD DUP5 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x920 JUMPI PUSH2 0x920 PUSH2 0x1658 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x936 SWAP1 PUSH2 0x1605 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x851 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x95D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH2 0x326 DUP3 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9D1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 ADD MLOAD SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH2 0xA7D SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x107E AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA9A JUMPI PUSH2 0xA9A PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x60 DUP8 ADD MLOAD PUSH1 0x80 SWAP1 SWAP8 ADD MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP8 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP6 SWAP1 SWAP6 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 MUL OR SWAP1 SSTORE DUP7 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xB97 SWAP1 DUP8 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xBBC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC8E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x203 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0xD3C JUMPI PUSH2 0xD3C PUSH2 0x1658 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x2 SWAP2 SWAP1 SWAP2 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 DUP2 SSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x1 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0x80 SWAP1 SWAP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP6 DUP7 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR PUSH5 0x100000000 PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 DUP4 AND MUL OR PUSH32 0xFFFFFFFFFFFFFFFF000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF AND PUSH13 0x1000000000000000000000000 SWAP2 SWAP1 SWAP7 AND MUL PUSH32 0xFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP5 SWAP1 SWAP5 OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP5 DUP5 AND SWAP5 SWAP1 SWAP5 MUL SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP3 SSTORE SWAP1 DUP5 ADD MLOAD PUSH2 0xE18 SWAP2 DUP4 SWAP2 SWAP1 PUSH2 0x11AE AND JUMP JUMPDEST DUP1 MLOAD PUSH2 0x203 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 SWAP6 DUP7 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP6 AND SWAP7 DUP3 AND SWAP7 SWAP1 SWAP7 OR SWAP4 SWAP1 SWAP4 OR AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE SWAP1 DUP6 ADD MLOAD SWAP2 MLOAD SWAP2 AND SWAP1 PUSH32 0xC6F337E5507FD1BDEBC6D79ED14168145E8C109D7B7139459692E24F06BAED17 SWAP1 PUSH2 0xED6 SWAP1 DUP7 SWAP1 PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH1 0x20 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x3 SWAP1 PUSH2 0x66F SWAP1 DUP5 SWAP1 PUSH2 0x107E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP4 DUP4 PUSH2 0x107E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x101B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1089 DUP4 PUSH2 0x1299 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10A5 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x10F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x1101 SWAP1 DUP5 SWAP1 PUSH2 0x15E0 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1162 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1182 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12C1 JUMP JUMPDEST SWAP1 POP PUSH2 0x11A5 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x12EF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x11D4 DUP4 PUSH2 0x1299 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x11F7 JUMPI POP DUP3 MLOAD PUSH2 0x11E8 SWAP1 PUSH1 0x1 PUSH2 0x15A1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x1243 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x314 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1278 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1307 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x12BA JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x12D0 JUMPI POP PUSH1 0x0 PUSH2 0x580 JUMP JUMPDEST PUSH2 0xF8B PUSH1 0x1 PUSH2 0x12DF DUP5 DUP7 PUSH2 0x1589 JUMP JUMPDEST PUSH2 0x12E9 SWAP2 SWAP1 PUSH2 0x15C9 JUMP JUMPDEST DUP4 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12FF DUP4 PUSH2 0x12DF DUP5 DUP8 PUSH2 0x1589 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B PUSH2 0x12E9 DUP5 PUSH1 0x1 PUSH2 0x1589 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF8B DUP3 DUP5 PUSH2 0x1620 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x329 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x13A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x13C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x13DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1430 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0x1443 PUSH1 0x20 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1454 PUSH1 0x40 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x1465 PUSH1 0x60 DUP5 ADD PUSH2 0x1337 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1476 PUSH1 0x80 DUP5 ADD PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1494 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF8B DUP3 PUSH2 0x1323 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1527 JUMPI PUSH2 0x1514 DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x14B9 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0x580 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x159C JUMPI PUSH2 0x159C PUSH2 0x1642 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x15C0 JUMPI PUSH2 0x15C0 PUSH2 0x1642 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x15DB JUMPI PUSH2 0x15DB PUSH2 0x1642 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x15FD JUMPI PUSH2 0x15FD PUSH2 0x1642 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1619 JUMPI PUSH2 0x1619 PUSH2 0x1642 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x163D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD2 0x4A 0xDC DUP8 0xE3 PUSH10 0x60DC7264BD5EF9AC5C79 ADDMOD SLOAD DUP3 SWAP9 0xB0 PUSH23 0xD6B21CBFB13083462BAB64736F6C634300080600330000 ",
              "sourceMap": "1184:4988:23:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4071:179;;;;;;:::i;:::-;;:::i;:::-;;;7566:10:94;7554:23;;;7536:42;;7524:2;7509:18;4071:179:23;;;;;;;;3396:136;;;:::i;:::-;;;;;;;:::i;1403:89:18:-;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;;-1:-1:-1;;;;;3032:55:94;;;3014:74;;3002:2;2987:18;1403:89:18;2969:125:94;3147:129:19;;;:::i;:::-;;3570:463:23;;;:::i;2508:94:19:-;;;:::i;1342:44:23:-;;1383:3;1342:44;;;;;7373:6:94;7361:19;;;7343:38;;7331:2;7316:18;1342:44:23;7298:89:94;2201:171:23;;;;;;:::i;:::-;;:::i;1814:85:19:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;2934:424:23;;;:::i;2041:122::-;2130:14;:26;;;;;;2041:122;;2410:486;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1744:123:18:-;;;;;;:::i;:::-;;:::i;:::-;;;3963:14:94;;3956:22;3938:41;;3926:2;3911:18;1744:123:18;3893:92:94;4288:348:23;;;;;;:::i;:::-;;:::i;2014:101:19:-;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;4071:179:23:-;4198:6;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;5653:2:94;2840:99:18;;;5635:21:94;5692:2;5672:18;;;5665:30;5731:34;5711:18;;;5704:62;5802:8;5782:18;;;5775:36;5828:19;;2840:99:18;;;;;;;;;4227:16:23::1;4237:5;4227:9;:16::i;:::-;4220:23;;2949:1:18;4071:179:23::0;;;:::o;3396:136::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3495:30:23;;;;;;;;3510:14;3495:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:30::i;:::-;3488:37;;3396:136;:::o;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;4949:2:94;4028:71:19;;;4931:21:94;4988:2;4968:18;;;4961:30;5027:33;5007:18;;;5000:61;5078:18;;4028:71:19;4921:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;3570:463:23:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3737:55:23;;;;;;;;3778:14;3737:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:38;;3833:14;;3737:55;3833:32;;;;;;:::i;:::-;3802:63;;;;;;;;3833:32;;;;;;;;;3802:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3802:63:23;;;;;;;;;-1:-1:-1;3876:129:23;;-1:-1:-1;3970:24:23;;;;;;;;3977:14;3970:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3970:24:23;;;;;;;;;3876:129;4022:4;3570:463;-1:-1:-1;;3570:463:23:o;2508:94:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4596:2:94;3819:58:19;;;4578:21:94;4635:2;4615:18;;;4608:30;4674:26;4654:18;;;4647:54;4718:18;;3819:58:19;4568:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2201:171:23:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2322:42:23;;;;;;;;2341:14;2322:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;2307:14;;2322:42;;2357:6;2322:18;:42::i;:::-;2307:58;;;;;;;;;:::i;:::-;2300:65;;;;;;;;2307:58;;;;;;;;;2300:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2300:65:23;;;;;;;;;;2201:171;-1:-1:-1;;2201:171:23:o;2934:424::-;3008:55;;;;;;;;3049:14;3008:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2990:6;;3074:61;;3123:1;3116:8;;;2934:424;:::o;3074:61::-;3170:16;;;;3201:14;:31;;;;;;;;;;:::i;:::-;;;;:41;;;;;;;;;;;;:46;;3246:1;3201:46;3197:155;;-1:-1:-1;3270:18:23;;;;2934:424;-1:-1:-1;2934:424:23:o;2410:486::-;2520:25;2561:31;2618:8;2595:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:39:23;;-1:-1:-1;;2595:39:23;;;;;;;;;;;-1:-1:-1;2644:55:23;;;;;;;;2685:14;2644:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;2561:73;;-1:-1:-1;2644:38:23;2710:157;2734:23;;;2710:157;;;2797:14;2812:43;2831:6;2839:8;;2848:5;2839:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2812:18;:43::i;:::-;2797:59;;;;;;;;;:::i;:::-;2782:74;;;;;;;;2797:59;;;;;;;;;2782:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2782:74:23;;;;;;;;;:12;;:5;;2788;;2782:12;;;;;;:::i;:::-;;;;;;:74;;;;2759:7;;;;;:::i;:::-;;;;2710:157;;;-1:-1:-1;2884:5:23;;2410:486;-1:-1:-1;;;;2410:486:23:o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4596:2:94;3819:58:19;;;4578:21:94;4635:2;4615:18;;;4608:30;4674:26;4654:18;;;4647:54;4718:18;;3819:58:19;4568:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;4288:348:23:-:0;4376:6;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4596:2:94;3819:58:19;;;4578:21:94;4635:2;4615:18;;;4608:30;4674:26;4654:18;;;4647:54;4718:18;;3819:58:19;4568:174:94;3819:58:19;4394:55:23::1;::::0;;::::1;::::0;::::1;::::0;;4435:14:::1;4394:55:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;;;;;::::1;::::0;::::1;::::0;;;;;;;4490:15;::::1;::::0;4394:55;;:38:::1;::::0;4474:32:::1;::::0;4394:55;;4490:15;4474::::1;:32;:::i;:::-;4459:47;;4540:8;4516:14;4531:5;4516:21;;;;;;;;;:::i;:::-;:32:::0;;:21:::1;::::0;;;::::1;::::0;;;::::1;:32:::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;4516:32:23;;;;;;;;::::1;::::0;;::::1;;;::::0;;;;;;::::1;;::::0;;;;;;-1:-1:-1;;;4516:32:23;;::::1;::::0;;;::::1;;::::0;;4571:15;::::1;::::0;4563:34;;;::::1;::::0;::::1;::::0;::::1;::::0;4571:15;;4563:34:::1;:::i;:::-;;;;;;;;-1:-1:-1::0;;;4614:15:23::1;;::::0;;4288:348::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4596:2:94;3819:58:19;;;4578:21:94;4635:2;4615:18;;;4608:30;4674:26;4654:18;;;4647:54;4718:18;;3819:58:19;4568:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;6405:2:94;2826:73:19::1;::::0;::::1;6387:21:94::0;6444:2;6424:18;;;6417:30;6483:34;6463:18;;;6456:62;6554:7;6534:18;;;6527:35;6579:19;;2826:73:19::1;6377:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;5825:345:23:-;5914:56;;;;;;;;5956:14;5914:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5896:6;;6016:8;;5980:14;;5914:56;5980:33;;;;;;:::i;:::-;:44;;:33;;;;;;;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5980:44:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5980:44:23;;;;;;;;;;;;;;6064:15;;;;6051:29;;:7;;6064:15;6051:12;:29;:::i;:::-;6034:46;;:14;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6104:15;;;;6096:34;;;;;;;;;6104:8;;6096:34;:::i;:::-;;;;;;;;-1:-1:-1;;6148:15:23;;;;5825:345::o;5384:217::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5574:18:23;;5542:14;;5557:36;;5574:7;;5557:16;:36::i;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4960:193:23:-;5092:6;5121:25;:7;5138;5121:16;:25::i;:::-;5114:32;4960:193;-1:-1:-1;;;4960:193:23:o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;4192:2:94;2230:79:18;;;4174:21:94;4231:2;4211:18;;;4204:30;4270:34;4250:18;;;4243:62;4341:5;4321:18;;;4314:33;4364:19;;2230:79:18;4164:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;1587:517:41:-;1667:6;1693:22;1707:7;1693:13;:22::i;:::-;:55;;;;;1730:7;:18;;;1719:29;;:7;:29;;;;1693:55;1685:83;;;;-1:-1:-1;;;1685:83:41;;5309:2:94;1685:83:41;;;5291:21:94;5348:2;5328:18;;;5321:30;5387:17;5367:18;;;5360:45;5422:18;;1685:83:41;5281:165:94;1685:83:41;1800:18;;1779;;1800:28;;1821:7;;1800:28;:::i;:::-;1779:49;;1860:7;:19;;;1846:33;;:11;:33;;;1838:62;;;;-1:-1:-1;;;1838:62:41;;6060:2:94;1838:62:41;;;6042:21:94;6099:2;6079:18;;;6072:30;6138:18;6118;;;6111:46;6174:18;;1838:62:41;6032:166:94;1838:62:41;1911:18;1932:65;1958:7;:17;;;1932:65;;1977:7;:19;;;1932:65;;:25;:65::i;:::-;1911:86;;2022:74;2050:10;2022:74;;2063:11;2022:74;;2076:7;:19;;;2022:74;;:20;:74::i;:::-;2008:89;1587:517;-1:-1:-1;;;;;1587:517:41:o;919:438::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:41;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:41;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:41;;6811:2:94;1020:91:41;;;6793:21:94;6850:2;6830:18;;;6823:30;6889:20;6869:18;;;6862:48;6927:18;;1020:91:41;6783:168:94;1020:91:41;1141:209;;;;;;;;1178:7;1141:209;;;;;;1221:63;1245:7;:17;;;1221:63;;1264:7;:19;;;1221:63;;:23;:63::i;:::-;1141:209;;;;;;1316:7;:19;;;1141:209;;;;;1122:228;;919:438;;;;:::o;598:151::-;667:4;692:7;:17;;;:22;;713:1;692:22;:49;;;;-1:-1:-1;718:18:41;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:41:o;1666:262:45:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:45;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;1872:4;:49::i;1186:208::-;1310:7;1336:51;1365:7;1341:21;1350:12;1341:6;:21;:::i;1336:51::-;1329:58;1186:208;-1:-1:-1;;;;1186:208:45:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;580:129::-;655:7;681:21;690:12;681:6;:21;:::i;14:163:94:-;81:20;;141:10;130:22;;120:33;;110:2;;167:1;164;157:12;182:171;249:20;;309:18;298:30;;288:41;;278:2;;343:1;340;333:12;358:309;417:6;470:2;458:9;449:7;445:23;441:32;438:2;;;486:1;483;476:12;438:2;525:9;512:23;-1:-1:-1;;;;;568:5:94;564:54;557:5;554:65;544:2;;633:1;630;623:12;672:614;757:6;765;818:2;806:9;797:7;793:23;789:32;786:2;;;834:1;831;824:12;786:2;874:9;861:23;903:18;944:2;936:6;933:14;930:2;;;960:1;957;950:12;930:2;998:6;987:9;983:22;973:32;;1043:7;1036:4;1032:2;1028:13;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105;1092:16;1131:2;1123:6;1120:14;1117:2;;;1147:1;1144;1137:12;1117:2;1200:7;1195:2;1185:6;1182:1;1178:14;1174:2;1170:23;1166:32;1163:45;1160:2;;;1221:1;1218;1211:12;1160:2;1252;1244:11;;;;;1274:6;;-1:-1:-1;776:510:94;;-1:-1:-1;;;;776:510:94:o;1291:877::-;1372:6;1425:3;1413:9;1404:7;1400:23;1396:33;1393:2;;;1442:1;1439;1432:12;1393:2;1475;1469:9;1517:3;1509:6;1505:16;1587:6;1575:10;1572:22;1551:18;1539:10;1536:34;1533:62;1530:2;;;-1:-1:-1;;;1625:1:94;1618:88;1729:4;1726:1;1719:15;1757:4;1754:1;1747:15;1530:2;1788;1781:22;1827:23;;1812:39;;1884:37;1917:2;1902:18;;1884:37;:::i;:::-;1879:2;1871:6;1867:15;1860:62;1955:37;1988:2;1977:9;1973:18;1955:37;:::i;:::-;1950:2;1942:6;1938:15;1931:62;2026:37;2059:2;2048:9;2044:18;2026:37;:::i;:::-;2021:2;2013:6;2009:15;2002:62;2098:38;2131:3;2120:9;2116:19;2098:38;:::i;:::-;2092:3;2080:16;;2073:64;2084:6;1383:785;-1:-1:-1;;;1383:785:94:o;2173:184::-;2231:6;2284:2;2272:9;2263:7;2259:23;2255:32;2252:2;;;2300:1;2297;2290:12;2252:2;2323:28;2341:9;2323:28;:::i;3099:694::-;3314:2;3366:21;;;3436:13;;3339:18;;;3458:22;;;3285:4;;3314:2;3537:15;;;;3511:2;3496:18;;;3285:4;3580:187;3594:6;3591:1;3588:13;3580:187;;;3643:42;3681:3;3672:6;3666:13;2438:5;2432:12;2427:3;2420:25;2491:4;2484:5;2480:16;2474:23;2516:10;2576:2;2562:12;2558:21;2551:4;2546:3;2542:14;2535:45;2628:4;2621:5;2617:16;2611:23;2589:45;;2653:18;2723:2;2707:14;2703:23;2696:4;2691:3;2687:14;2680:47;2788:2;2780:4;2773:5;2769:16;2763:23;2759:32;2752:4;2747:3;2743:14;2736:56;;2853:2;2845:4;2838:5;2834:16;2828:23;2824:32;2817:4;2812:3;2808:14;2801:56;;;2410:453;;;3643:42;3742:15;;;;3714:4;3705:14;;;;;3616:1;3609:9;3580:187;;;-1:-1:-1;3784:3:94;;3294:499;-1:-1:-1;;;;;;3294:499:94:o;6956:238::-;7134:3;7119:19;;7147:41;7123:9;7170:6;2438:5;2432:12;2427:3;2420:25;2491:4;2484:5;2480:16;2474:23;2516:10;2576:2;2562:12;2558:21;2551:4;2546:3;2542:14;2535:45;2628:4;2621:5;2617:16;2611:23;2589:45;;2653:18;2723:2;2707:14;2703:23;2696:4;2691:3;2687:14;2680:47;2788:2;2780:4;2773:5;2769:16;2763:23;2759:32;2752:4;2747:3;2743:14;2736:56;;2853:2;2845:4;2838:5;2834:16;2828:23;2824:32;2817:4;2812:3;2808:14;2801:56;;;2410:453;;;7589:128;7629:3;7660:1;7656:6;7653:1;7650:13;7647:2;;;7666:18;;:::i;:::-;-1:-1:-1;7702:9:94;;7637:80::o;7722:228::-;7761:3;7789:10;7826:2;7823:1;7819:10;7856:2;7853:1;7849:10;7887:3;7883:2;7879:12;7874:3;7871:21;7868:2;;;7895:18;;:::i;:::-;7931:13;;7769:181;-1:-1:-1;;;;7769:181:94:o;7955:125::-;7995:4;8023:1;8020;8017:8;8014:2;;;8028:18;;:::i;:::-;-1:-1:-1;8065:9:94;;8004:76::o;8085:221::-;8124:4;8153:10;8213;;;;8183;;8235:12;;;8232:2;;;8250:18;;:::i;:::-;8287:13;;8133:173;-1:-1:-1;;;8133:173:94:o;8311:195::-;8350:3;-1:-1:-1;;8374:5:94;8371:77;8368:2;;;8451:18;;:::i;:::-;-1:-1:-1;8498:1:94;8487:13;;8358:148::o;8511:266::-;8543:1;8569;8559:2;;-1:-1:-1;;;8601:1:94;8594:88;8705:4;8702:1;8695:15;8733:4;8730:1;8723:15;8559:2;-1:-1:-1;8762:9:94;;8549:228::o;8782:184::-;-1:-1:-1;;;8831:1:94;8824:88;8931:4;8928:1;8921:15;8955:4;8952:1;8945:15;8971:184;-1:-1:-1;;;9020:1:94;9013:88;9120:4;9117:1;9110:15;9144:4;9141:1;9134:15;9160:184;-1:-1:-1;;;9209:1:94;9202:88;9309:4;9306:1;9299:15;9333:4;9330:1;9323:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1163600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "MAX_CARDINALITY()": "271",
                "claimOwnership()": "54531",
                "getBufferCardinality()": "2374",
                "getDraw(uint32)": "infinite",
                "getDrawCount()": "4782",
                "getDraws(uint32[])": "infinite",
                "getNewestDraw()": "infinite",
                "getOldestDraw()": "infinite",
                "manager()": "2388",
                "owner()": "2354",
                "pendingOwner()": "2397",
                "pushDraw((uint256,uint32,uint64,uint64,uint32))": "infinite",
                "renounceOwnership()": "28180",
                "setDraw((uint256,uint32,uint64,uint64,uint32))": "infinite",
                "setManager(address)": "30536",
                "transferOwnership(address)": "27959"
              },
              "internal": {
                "_drawIdToDrawIndex(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite",
                "_getNewestDraw(struct DrawRingBufferLib.Buffer memory)": "infinite",
                "_pushDraw(struct IDrawBeacon.Draw memory)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873",
              "claimOwnership()": "4e71e0c8",
              "getBufferCardinality()": "caeef7ec",
              "getDraw(uint32)": "83c34aaf",
              "getDrawCount()": "c4df5fed",
              "getDraws(uint32[])": "d0bb78f3",
              "getNewestDraw()": "0edb1d2e",
              "getOldestDraw()": "648b1b4f",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": "089eb925",
              "renounceOwnership()": "715018a6",
              "setDraw((uint256,uint32,uint64,uint64,uint32))": "d7bcb86b",
              "setManager(address)": "d0ebdbe7",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"_cardinality\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"DrawSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\"},{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getDraws\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_draw\",\"type\":\"tuple\"}],\"name\":\"pushDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_newDraw\",\"type\":\"tuple\"}],\"name\":\"setDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"details\":\"A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...) will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.\",\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_cardinality\":\"Draw ring buffer cardinality.\",\"_owner\":\"Address of the owner of the DrawBuffer.\"}},\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getDraw(uint32)\":{\"details\":\"Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawId\":\"Draw.drawId\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getDrawCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.\",\"returns\":{\"_0\":\"Number of Draws held in the draw ring buffer.\"}},\"getDraws(uint32[])\":{\"details\":\"Read multiple Draws using each drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawIds\":\"Array of drawIds\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw[]\"}},\"getNewestDraw()\":{\"details\":\"Uses the nextDrawIndex to calculate the most recently added Draw.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getOldestDraw()\":{\"details\":\"Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Push new draw onto draws history via authorized manager or owner.\",\"params\":{\"draw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\",\"params\":{\"newDraw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 DrawBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Emit when a new draw has been created.\"}},\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"Draws ring buffer max length.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Deploy DrawBuffer smart contract.\"},\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getDraw(uint32)\":{\"notice\":\"Read a Draw from the draws ring buffer.\"},\"getDrawCount()\":{\"notice\":\"Gets the number of Draws held in the draw ring buffer.\"},\"getDraws(uint32[])\":{\"notice\":\"Read multiple Draws from the draws ring buffer.\"},\"getNewestDraw()\":{\"notice\":\"Read newest Draw from draws ring buffer.\"},\"getOldestDraw()\":{\"notice\":\"Read oldest Draw from draws ring buffer.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Push Draw onto draws ring buffer history.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Set existing Draw in draws ring buffer with new parameters.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The DrawBuffer provides historical lookups of Draws via a circular ring buffer. Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot. The Draw settings can be created by manager/owner and existing Draws can only be updated the owner. Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/DrawBuffer.sol\":\"DrawBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/DrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer provides historical lookups of Draws via a circular ring buffer.\\n            Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot.\\n            The Draw settings can be created by manager/owner and existing Draws can only be updated the owner.\\n            Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\\n    @dev    A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.\\n    @dev    All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...)\\n            will receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network.\\n*/\\ncontract DrawBuffer is IDrawBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice Draws ring buffer max length.\\n    uint16 public constant MAX_CARDINALITY = 256;\\n\\n    /// @notice Draws ring buffer array.\\n    IDrawBeacon.Draw[MAX_CARDINALITY] private drawRingBuffer;\\n\\n    /// @notice Holds ring buffer information\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Deploy DrawBuffer smart contract.\\n     * @param _owner Address of the owner of the DrawBuffer.\\n     * @param _cardinality Draw ring buffer cardinality.\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDraw(uint32 drawId) external view override returns (IDrawBeacon.Draw memory) {\\n        return drawRingBuffer[_drawIdToDrawIndex(bufferMetadata, drawId)];\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDraws(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IDrawBeacon.Draw[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory draws = new IDrawBeacon.Draw[](_drawIds.length);\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        for (uint256 index = 0; index < _drawIds.length; index++) {\\n            draws[index] = drawRingBuffer[_drawIdToDrawIndex(buffer, _drawIds[index])];\\n        }\\n\\n        return draws;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getDrawCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        if (drawRingBuffer[bufferNextIndex].timestamp != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getNewestDraw() external view override returns (IDrawBeacon.Draw memory) {\\n        return _getNewestDraw(bufferMetadata);\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function getOldestDraw() external view override returns (IDrawBeacon.Draw memory) {\\n        // oldest draw should be next available index, otherwise it's at 0\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IDrawBeacon.Draw memory draw = drawRingBuffer[buffer.nextIndex];\\n\\n        if (draw.timestamp == 0) {\\n            // if draw is not init, then use draw at 0\\n            draw = drawRingBuffer[0];\\n        }\\n\\n        return draw;\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function pushDraw(IDrawBeacon.Draw memory _draw)\\n        external\\n        override\\n        onlyManagerOrOwner\\n        returns (uint32)\\n    {\\n        return _pushDraw(_draw);\\n    }\\n\\n    /// @inheritdoc IDrawBuffer\\n    function setDraw(IDrawBeacon.Draw memory _newDraw) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_newDraw.drawId);\\n        drawRingBuffer[index] = _newDraw;\\n        emit DrawSet(_newDraw.drawId, _newDraw);\\n        return _newDraw.drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Convert a Draw.drawId to a Draws ring buffer index pointer.\\n     * @dev    The getNewestDraw.drawId() is used to calculate a Draws ID delta position.\\n     * @param _drawId Draw.drawId\\n     * @return Draws ring buffer index pointer\\n     */\\n    function _drawIdToDrawIndex(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        pure\\n        returns (uint32)\\n    {\\n        return _buffer.getIndex(_drawId);\\n    }\\n\\n    /**\\n     * @notice Read newest Draw from the draws ring buffer.\\n     * @dev    Uses the lastDrawId to calculate the most recently added Draw.\\n     * @param _buffer Draw ring buffer\\n     * @return IDrawBeacon.Draw\\n     */\\n    function _getNewestDraw(DrawRingBufferLib.Buffer memory _buffer)\\n        internal\\n        view\\n        returns (IDrawBeacon.Draw memory)\\n    {\\n        return drawRingBuffer[_buffer.getIndex(_buffer.lastDrawId)];\\n    }\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws list via authorized manager or owner.\\n     * @param _newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function _pushDraw(IDrawBeacon.Draw memory _newDraw) internal returns (uint32) {\\n        DrawRingBufferLib.Buffer memory _buffer = bufferMetadata;\\n        drawRingBuffer[_buffer.nextIndex] = _newDraw;\\n        bufferMetadata = _buffer.push(_newDraw.drawId);\\n\\n        emit DrawSet(_newDraw.drawId, _newDraw);\\n\\n        return _newDraw.drawId;\\n    }\\n}\\n\",\"keccak256\":\"0xf43efd6c3f4b3fe67b8ccbf8c69e5137ccaad68a381114afdb5f37cd820d4ccb\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 4396,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "drawRingBuffer",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(Draw)8176_storage)256_storage"
              },
              {
                "astId": 4400,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "515",
                "type": "t_struct(Buffer)9308_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Draw)8176_storage)256_storage": {
                "base": "t_struct(Draw)8176_storage",
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw[256]",
                "numberOfBytes": "16384"
              },
              "t_struct(Buffer)9308_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 9303,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 9305,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 9307,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Draw)8176_storage": {
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw",
                "members": [
                  {
                    "astId": 8167,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "winningRandomNumber",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  },
                  {
                    "astId": 8169,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "drawId",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 8171,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "timestamp",
                    "offset": 4,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 8173,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "beaconPeriodStartedAt",
                    "offset": 12,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 8175,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "beaconPeriodSeconds",
                    "offset": 20,
                    "slot": "1",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "64"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              }
            }
          },
          "userdoc": {
            "events": {
              "DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Emit when a new draw has been created."
              }
            },
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "Draws ring buffer max length."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Deploy DrawBuffer smart contract."
              },
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getDraw(uint32)": {
                "notice": "Read a Draw from the draws ring buffer."
              },
              "getDrawCount()": {
                "notice": "Gets the number of Draws held in the draw ring buffer."
              },
              "getDraws(uint32[])": {
                "notice": "Read multiple Draws from the draws ring buffer."
              },
              "getNewestDraw()": {
                "notice": "Read newest Draw from draws ring buffer."
              },
              "getOldestDraw()": {
                "notice": "Read oldest Draw from draws ring buffer."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Push Draw onto draws ring buffer history."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Set existing Draw in draws ring buffer with new parameters."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The DrawBuffer provides historical lookups of Draws via a circular ring buffer. Historical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot. The Draw settings can be created by manager/owner and existing Draws can only be updated the owner. Once a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/DrawCalculator.sol": {
        "DrawCalculator": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "_prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract PrizeDistributor",
                  "name": "prizeDistributor",
                  "type": "address"
                }
              ],
              "name": "PrizeDistributorSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "TIERS_LENGTH",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "_pickIndicesForDraws",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getNormalizedBalancesForDrawIds",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "params": {
                  "data": "The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.",
                  "drawIds": "drawId array for which to calculate prize amounts for.",
                  "user": "User for which to calculate prize amount."
                },
                "returns": {
                  "_0": "List of awardable prize amounts ordered by drawId."
                }
              },
              "constructor": {
                "params": {
                  "_drawBuffer": "The address of the draw buffer to push draws to",
                  "_prizeDistributionBuffer": "PrizeDistributionBuffer address",
                  "_ticket": "Ticket associated with this DrawCalculator"
                }
              },
              "getDrawBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "params": {
                  "drawIds": "The drawsId to consider",
                  "user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              }
            },
            "title": "PoolTogether V4 DrawCalculator",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_4839": {
                  "entryPoint": null,
                  "id": 4839,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_contract$_ITicket_$9297t_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587_fromMemory": {
                  "entryPoint": 423,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_contract_IDrawBuffer": {
                  "entryPoint": 507,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1844:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "198:443:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "244:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "253:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "256:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "246:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "246:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "246:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "219:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "228:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "215:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "215:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "240:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "211:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "211:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "208:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "269:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "288:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "282:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "282:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "273:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "345:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "307:37:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "307:44:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "307:44:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "360:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "370:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "360:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "384:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "409:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "420:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "405:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "405:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "399:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "399:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "388:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "471:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "433:37:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "433:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "433:46:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "488:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "498:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "488:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "514:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "539:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "550:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "535:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "535:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "529:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "529:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "518:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "601:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "563:37:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "563:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "563:46:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "618:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "628:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "618:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$9297t_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "148:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "159:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "171:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "179:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "187:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:627:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "820:170:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "837:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "848:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "830:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "830:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "830:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "871:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "882:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "887:2:94",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "860:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "860:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "860:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "910:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "921:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "906:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "906:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "926:22:94",
                                    "type": "",
                                    "value": "DrawCalc/dh-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "899:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "899:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "899:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "958:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "970:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "981:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "966:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "966:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "958:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "811:4:94",
                            "type": ""
                          }
                        ],
                        "src": "646:344:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1169:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1186:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1197:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1179:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1220:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1231:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1216:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1216:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1236:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1209:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1209:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1209:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1259:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1270:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1255:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1255:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1275:26:94",
                                    "type": "",
                                    "value": "DrawCalc/ticket-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1248:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1248:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1248:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1311:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1323:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1334:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1319:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1319:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1146:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1160:4:94",
                            "type": ""
                          }
                        ],
                        "src": "995:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1522:171:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1539:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1550:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1532:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1532:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1532:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1573:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1584:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1569:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1569:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1589:2:94",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1562:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1562:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1562:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1612:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1623:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1608:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1608:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1628:23:94",
                                    "type": "",
                                    "value": "DrawCalc/pdb-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1601:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1601:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1601:51:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1661:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1673:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1684:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1669:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1669:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1661:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1499:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1513:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1348:345:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1756:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1820:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1829:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1832:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1822:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1822:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1822:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1779:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1790:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1805:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1810:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1801:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1801:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1814:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1797:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1797:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1786:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1786:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1776:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1776:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1769:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1769:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1766:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_contract_IDrawBuffer",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1745:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1698:144:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_contract$_ITicket_$9297t_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IDrawBuffer(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IDrawBuffer(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IDrawBuffer(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"DrawCalc/dh-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/ticket-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/pdb-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_contract_IDrawBuffer(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e06040523480156200001157600080fd5b5060405162002202380380620022028339810160408190526200003491620001a7565b6001600160a01b038316620000905760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7469636b65742d6e6f742d7a65726f000000000000000060448201526064015b60405180910390fd5b6001600160a01b038116620000e85760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f7064622d6e6f742d7a65726f0000000000000000000000604482015260640162000087565b6001600160a01b038216620001405760405162461bcd60e51b815260206004820152601460248201527f4472617743616c632f64682d6e6f742d7a65726f000000000000000000000000604482015260640162000087565b6001600160601b0319606084811b821660a05283811b821660805282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505062000214565b600080600060608486031215620001bd57600080fd5b8351620001ca81620001fb565b6020850151909350620001dd81620001fb565b6040850151909250620001f081620001fb565b809150509250925092565b6001600160a01b03811681146200021157600080fd5b50565b60805160601c60a05160601c60c05160601c611f7f620002836000396000818160920152818161016e0152818161028c01526104b1015260008181610109015281816107dd015261087001526000818160e001528181610197015281816101d901526104200152611f7f6000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e1461014b578063bd97a2521461016c578063ce343bb614610192578063f8d0ca4c146101b957600080fd5b80630840bbdd1461008d5780634019f2d6146100de5780636cc25db7146101045780638045fbcf1461012b575b600080fd5b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b61013e6101393660046114df565b6101d3565b6040516100d59190611afc565b61015e610159366004611532565b610352565b6040516100d5929190611b0f565b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b6101c1601081565b60405160ff90911681526020016100d5565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610232929190611b74565b60006040518083038186803b15801561024a57600080fd5b505afa15801561025e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028691908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e5929190611b74565b60006040518083038186803b1580156102fd57600080fd5b505afa158015610311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033991908101906117f8565b90506103468683836105dd565b925050505b9392505050565b6060806000610363848601866115dd565b805190915086146103e05760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610457908b908b90600401611b74565b60006040518083038186803b15801561046f57600080fd5b505afa158015610483573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ab91908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161050a929190611b74565b60006040518083038186803b15801561052257600080fd5b505afa158015610536573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055e91908101906117f8565b9050600061056d8b84846105dd565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105ca8282868887610a48565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105fd576105fd611f08565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064457610644611f08565b60405190808252806020026020018201604052801561066d578160200160208202803683370190505b50905060005b838163ffffffff16101561079c57858163ffffffff168151811061069957610699611ef2565b60200260200101516040015163ffffffff16878263ffffffff16815181106106c3576106c3611ef2565b60200260200101516040015103838263ffffffff16815181106106e8576106e8611ef2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061072257610722611ef2565b60200260200101516060015163ffffffff16878263ffffffff168151811061074c5761074c611ef2565b60200260200101516040015103828263ffffffff168151811061077157610771611ef2565b67ffffffffffffffff909216602092830291909101909101528061079481611e98565b915050610673565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610816908b9087908790600401611a31565b60006040518083038186803b15801561082e57600080fd5b505afa158015610842573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261086a9190810190611924565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c9929190611bbf565b60006040518083038186803b1580156108e157600080fd5b505afa1580156108f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261091d9190810190611924565b905060008567ffffffffffffffff81111561093a5761093a611f08565b604051908082528060200260200182016040528015610963578160200160208202803683370190505b50905060005b86811015610a3a5782818151811061098357610983611ef2565b6020026020010151600014156109b85760008282815181106109a7576109a7611ef2565b602002602001018181525050610a28565b8281815181106109ca576109ca611ef2565b60200260200101518482815181106109e4576109e4611ef2565b6020026020010151670de0b6b3a76400006109ff9190611dff565b610a099190611cef565b828281518110610a1b57610a1b611ef2565b6020026020010181815250505b80610a3281611e7d565b915050610969565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6757610a67611f08565b604051908082528060200260200182016040528015610a90578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aaf57610aaf611f08565b604051908082528060200260200182016040528015610ae257816020015b6060815260200190600190039081610acd5790505b5090504260005b88518163ffffffff161015610ccf57868163ffffffff1681518110610b1057610b10611ef2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3a57610b3a611ef2565b602002602001015160400151610b509190611c9e565b67ffffffffffffffff168267ffffffffffffffff1610610bb25760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d7565b6000610bfc888363ffffffff1681518110610bcf57610bcf611ef2565b60200260200101518d8463ffffffff1681518110610bef57610bef611ef2565b6020026020010151610d02565b9050610c768a8363ffffffff1681518110610c1957610c19611ef2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4957610c49611ef2565b60200260200101518c8763ffffffff1681518110610c6957610c69611ef2565b6020026020010151610d3f565b868463ffffffff1681518110610c8e57610c8e611ef2565b60200260200101868563ffffffff1681518110610cad57610cad611ef2565b6020908102919091010191909152525080610cc781611e98565b915050610ae9565b5081604051602001610ce19190611a7c565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d2c9190611dff565b610d369190611cef565b90505b92915050565b600060606000610d4e846110c4565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610ddc5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d7565b60005b8363ffffffff168163ffffffff161015610ff4578a898263ffffffff1681518110610e0c57610e0c611ef2565b602002602001015167ffffffffffffffff1610610e6b5760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d7565b63ffffffff811615610f225788610e83600183611e35565b63ffffffff1681518110610e9957610e99611ef2565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ec357610ec3611ef2565b602002602001015167ffffffffffffffff1611610f225760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d7565b60008a8a8363ffffffff1681518110610f3d57610f3d611ef2565b6020026020010151604051602001610f6992919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f91828f896111c9565b9050601060ff82161015610fdf578360ff168160ff161115610fb1578093505b848160ff1681518110610fc657610fc6611ef2565b602002602001018051809190610fdb90611e7d565b9052505b50508080610fec90611e98565b915050610ddf565b506000806110028984611268565b905060005b8360ff16811161109057600085828151811061102557611025611ef2565b6020026020010151111561107e5784818151811061104557611045611ef2565b602002602001015182828151811061105f5761105f611ef2565b60200260200101516110719190611dff565b61107b9084611c86565b92505b8061108881611e7d565b915050611007565b50633b9aca00896101000151836110a79190611dff565b6110b19190611cef565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e8576110e8611f08565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b508351909150600190611125906002611d54565b61112f9190611e1e565b8160008151811061114257611142611ef2565b602090810291909101015260015b836020015160ff168160ff1610156111c257835160ff1682611173600184611e5a565b60ff168151811061118657611186611ef2565b6020026020010151901b828260ff16815181106111a5576111a5611ef2565b6020908102919091010152806111ba81611ebc565b915050611150565b5092915050565b80516000908190815b8160ff168160ff16101561125d576000858260ff16815181106111f7576111f7611ef2565b602002602001015190508087168189161461123c578360ff168360ff16141561122757600094505050505061034b565b6112318484611e5a565b94505050505061034b565b8361124681611ebc565b94505050808061125590611ebc565b9150506111d2565b506103468282611e5a565b60606000611277836001611cca565b60ff1667ffffffffffffffff81111561129257611292611f08565b6040519080825280602002602001820160405280156112bb578160200160208202803683370190505b50905060005b8360ff168160ff161161130d576112db858260ff16611315565b828260ff16815181106112f0576112f0611ef2565b60209081029190910101528061130581611ebc565b9150506112c1565b509392505050565b6000808360e00151836010811061132e5761132e611ef2565b602002015163ffffffff169050600061134b856000015185611360565b90506113578183611cef565b95945050505050565b600081156113a657611373600183611e1e565b6113809060ff8516611dff565b6001901b6113918360ff8616611dff565b6001901b61139f9190611e1e565b9050610d39565b506001610d39565b803573ffffffffffffffffffffffffffffffffffffffff811681146113d257600080fd5b919050565b600082601f8301126113e857600080fd5b60405161020080820182811067ffffffffffffffff8211171561140d5761140d611f08565b604052818482810187101561142157600080fd5b600092505b601083101561144f57805161143a81611f1e565b82526001929092019160209182019101611426565b509195945050505050565b60008083601f84011261146c57600080fd5b50813567ffffffffffffffff81111561148457600080fd5b6020830191508360208260051b850101111561149f57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113d257600080fd5b80516113d281611f1e565b805160ff811681146113d257600080fd5b6000806000604084860312156114f457600080fd5b6114fd846113ae565b9250602084013567ffffffffffffffff81111561151957600080fd5b6115258682870161145a565b9497909650939450505050565b60008060008060006060868803121561154a57600080fd5b611553866113ae565b9450602086013567ffffffffffffffff8082111561157057600080fd5b61157c89838a0161145a565b9096509450604088013591508082111561159557600080fd5b818801915088601f8301126115a957600080fd5b8135818111156115b857600080fd5b8960208285010111156115ca57600080fd5b9699959850939650602001949392505050565b600060208083850312156115f057600080fd5b823567ffffffffffffffff8082111561160857600080fd5b818501915085601f83011261161c57600080fd5b813561162f61162a82611c62565b611c31565b80828252858201915085850189878560051b880101111561164f57600080fd5b60005b848110156116ee5781358681111561166957600080fd5b8701603f81018c1361167a57600080fd5b8881013561168a61162a82611c62565b808282528b82019150604084018f60408560051b87010111156116ac57600080fd5b600094505b838510156116d85780356116c481611f33565b835260019490940193918c01918c016116b1565b5087525050509287019290870190600101611652565b50909998505050505050505050565b6000602080838503121561171057600080fd5b825167ffffffffffffffff81111561172757600080fd5b8301601f8101851361173857600080fd5b805161174661162a82611c62565b8181528381019083850160a0808502860187018a101561176557600080fd5b60009550855b858110156117e95781838c031215611781578687fd5b611789611be4565b835181528884015161179a81611f1e565b818a01526040848101516117ad81611f33565b908201526060848101516117c081611f33565b908201526080848101516117d381611f1e565b908201528552938701939181019160010161176b565b50919998505050505050505050565b6000602080838503121561180b57600080fd5b825167ffffffffffffffff81111561182257600080fd5b8301601f8101851361183357600080fd5b805161184161162a82611c62565b81815283810190838501610300808502860187018a101561186157600080fd5b60009550855b858110156117e95781838c03121561187d578687fd5b611885611c0d565b61188e846114ce565b815261189b8985016114ce565b8982015260406118ac8186016114c3565b9082015260606118bd8582016114c3565b9082015260806118ce8582016114c3565b9082015260a06118df8582016114c3565b9082015260c06118f08582016114a6565b9082015260e06119028d8683016113d7565b908201526102e084015161010082015285529387019391810191600101611867565b6000602080838503121561193757600080fd5b825167ffffffffffffffff81111561194e57600080fd5b8301601f8101851361195f57600080fd5b805161196d61162a82611c62565b80828252848201915084840188868560051b870101111561198d57600080fd5b600094505b838510156119b0578051835260019490940193918501918501611992565b50979650505050505050565b600081518084526020808501945080840160005b838110156119ec578151875295820195908201906001016119d0565b509495945050505050565b600081518084526020808501945080840160005b838110156119ec57815167ffffffffffffffff1687529582019590820190600101611a0b565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a6060608301856119f7565b8281036040840152611a7281856119f7565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611add8583516119bc565b94509285019290850190600101611aa3565b5092979650505050505050565b602081526000610d3660208301846119bc565b604081526000611b2260408301856119bc565b602083820381850152845180835260005b81811015611b4e578681018301518482018401528201611b33565b81811115611b5f5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb4578235611b9c81611f1e565b63ffffffff1682529183019190830190600101611b89565b509695505050505050565b604081526000611bd260408301856119f7565b828103602084015261135781856119f7565b60405160a0810167ffffffffffffffff81118282101715611c0757611c07611f08565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0757611c07611f08565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5a57611c5a611f08565b604052919050565b600067ffffffffffffffff821115611c7c57611c7c611f08565b5060051b60200190565b60008219821115611c9957611c99611edc565b500190565b600067ffffffffffffffff808316818516808303821115611cc157611cc1611edc565b01949350505050565b600060ff821660ff84168060ff03821115611ce757611ce7611edc565b019392505050565b600082611d0c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d4c578160001904821115611d3257611d32611edc565b80851615611d3f57918102915b93841c9390800290611d16565b509250929050565b6000610d3660ff841683600082611d6d57506001610d39565b81611d7a57506000610d39565b8160018114611d905760028114611d9a57611db6565b6001915050610d39565b60ff841115611dab57611dab611edc565b50506001821b610d39565b5060208310610133831016604e8410600b8410161715611dd9575081810a610d39565b611de38383611d11565b8060001904821115611df757611df7611edc565b029392505050565b6000816000190483118215151615611e1957611e19611edc565b500290565b600082821015611e3057611e30611edc565b500390565b600063ffffffff83811690831681811015611e5257611e52611edc565b039392505050565b600060ff821660ff841680821015611e7457611e74611edc565b90039392505050565b6000600019821415611e9157611e91611edc565b5060010190565b600063ffffffff80831681811415611eb257611eb2611edc565b6001019392505050565b600060ff821660ff811415611ed357611ed3611edc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f3057600080fd5b50565b67ffffffffffffffff81168114611f3057600080fdfea26469706673582212206a04045b6b8677bec4cd3b2df437ca696953dbaa7477c59c7fd66aac0be6653964736f6c63430008060033",
              "opcodes": "PUSH1 0xE0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2202 CODESIZE SUB DUP1 PUSH3 0x2202 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1A7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0x90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7469636B65742D6E6F742D7A65726F0000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xE8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7064622D6E6F742D7A65726F0000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x140 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F64682D6E6F742D7A65726F000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 DUP2 SHL DUP3 AND PUSH1 0xA0 MSTORE DUP4 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP3 SWAP1 SHL AND PUSH1 0xC0 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 DUP5 DUP3 AND SWAP2 DUP7 AND SWAP1 PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP POP POP PUSH3 0x214 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH3 0x1CA DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x1DD DUP2 PUSH3 0x1FB JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x1F0 DUP2 PUSH3 0x1FB JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x211 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH2 0x1F7F PUSH3 0x283 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0x92 ADD MSTORE DUP2 DUP2 PUSH2 0x16E ADD MSTORE DUP2 DUP2 PUSH2 0x28C ADD MSTORE PUSH2 0x4B1 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x109 ADD MSTORE DUP2 DUP2 PUSH2 0x7DD ADD MSTORE PUSH2 0x870 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH1 0xE0 ADD MSTORE DUP2 DUP2 PUSH2 0x197 ADD MSTORE DUP2 DUP2 PUSH2 0x1D9 ADD MSTORE PUSH2 0x420 ADD MSTORE PUSH2 0x1F7F PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAACA392E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xBD97A252 EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x1B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0xDE JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x12B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x14DF JUMP JUMPDEST PUSH2 0x1D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP2 SWAP1 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x15E PUSH2 0x159 CALLDATASIZE PUSH1 0x4 PUSH2 0x1532 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0F JUMP JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1C1 PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xD5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x232 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x286 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x311 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x339 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x346 DUP7 DUP4 DUP4 PUSH2 0x5DD JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x363 DUP5 DUP7 ADD DUP7 PUSH2 0x15DD JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x3E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x457 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x46F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x483 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x4AB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50A SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x522 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x536 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x55E SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x56D DUP12 DUP5 DUP5 PUSH2 0x5DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x5CA DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xA48 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5FD JUMPI PUSH2 0x5FD PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x626 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x644 JUMPI PUSH2 0x644 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x66D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x79C JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x699 JUMPI PUSH2 0x699 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6C3 JUMPI PUSH2 0x6C3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6E8 JUMPI PUSH2 0x6E8 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x722 JUMPI PUSH2 0x722 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x74C JUMPI PUSH2 0x74C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x771 JUMPI PUSH2 0x771 PUSH2 0x1EF2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0x794 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x673 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0x816 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1A31 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x842 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x86A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C9 SWAP3 SWAP2 SWAP1 PUSH2 0x1BBF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8F5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x91D SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x93A JUMPI PUSH2 0x93A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x963 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xA3A JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x983 JUMPI PUSH2 0x983 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x9B8 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9A7 JUMPI PUSH2 0x9A7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xA28 JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x9CA JUMPI PUSH2 0x9CA PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9E4 JUMPI PUSH2 0x9E4 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0x9FF SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xA09 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA1B JUMPI PUSH2 0xA1B PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xA32 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x969 JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA67 JUMPI PUSH2 0xA67 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xA90 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAF JUMPI PUSH2 0xAAF PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xAE2 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xACD JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xCCF JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB10 JUMPI PUSH2 0xB10 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB3A JUMPI PUSH2 0xB3A PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xB50 SWAP2 SWAP1 PUSH2 0x1C9E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xBB2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBFC DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBCF JUMPI PUSH2 0xBCF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBEF JUMPI PUSH2 0xBEF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD02 JUMP JUMPDEST SWAP1 POP PUSH2 0xC76 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC49 JUMPI PUSH2 0xC49 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC69 JUMPI PUSH2 0xC69 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD3F JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC8E JUMPI PUSH2 0xC8E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xCAD JUMPI PUSH2 0xCAD PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0xCC7 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAE9 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCE1 SWAP2 SWAP1 PUSH2 0x1A7C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xD2C SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xD36 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0xD4E DUP5 PUSH2 0x10C4 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xDDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFF4 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE0C JUMPI PUSH2 0xE0C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xE6B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0xF22 JUMPI DUP9 PUSH2 0xE83 PUSH1 0x1 DUP4 PUSH2 0x1E35 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE99 JUMPI PUSH2 0xE99 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEC3 JUMPI PUSH2 0xEC3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xF22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF3D JUMPI PUSH2 0xF3D PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF69 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0xF91 DUP3 DUP16 DUP10 PUSH2 0x11C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0xFDF JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0xFB1 JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFC6 JUMPI PUSH2 0xFC6 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0xFDB SWAP1 PUSH2 0x1E7D JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xFEC SWAP1 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDDF JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x1002 DUP10 DUP5 PUSH2 0x1268 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x1090 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1025 JUMPI PUSH2 0x1025 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x107E JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1045 JUMPI PUSH2 0x1045 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x105F JUMPI PUSH2 0x105F PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1071 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x107B SWAP1 DUP5 PUSH2 0x1C86 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1088 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1007 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x10A7 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x10B1 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10E8 JUMPI PUSH2 0x10E8 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1111 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x1125 SWAP1 PUSH1 0x2 PUSH2 0x1D54 JUMP JUMPDEST PUSH2 0x112F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1142 JUMPI PUSH2 0x1142 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11C2 JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x1173 PUSH1 0x1 DUP5 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1186 JUMPI PUSH2 0x1186 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11A5 JUMPI PUSH2 0x11A5 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x11BA DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1150 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11F7 JUMPI PUSH2 0x11F7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x123C JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1227 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST PUSH2 0x1231 DUP5 DUP5 PUSH2 0x1E5A JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST DUP4 PUSH2 0x1246 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1255 SWAP1 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11D2 JUMP JUMPDEST POP PUSH2 0x346 DUP3 DUP3 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1277 DUP4 PUSH1 0x1 PUSH2 0x1CCA JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1292 JUMPI PUSH2 0x1292 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x12BB JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x130D JUMPI PUSH2 0x12DB DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x1315 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12F0 JUMPI PUSH2 0x12F0 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1305 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x12C1 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x132E JUMPI PUSH2 0x132E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x134B DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x1360 JUMP JUMPDEST SWAP1 POP PUSH2 0x1357 DUP2 DUP4 PUSH2 0x1CEF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x13A6 JUMPI PUSH2 0x1373 PUSH1 0x1 DUP4 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x1380 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x1391 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x139F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST SWAP1 POP PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x140D JUMPI PUSH2 0x140D PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x144F JUMPI DUP1 MLOAD PUSH2 0x143A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x1426 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x146C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1484 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x149F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x13D2 DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP1 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14FD DUP5 PUSH2 0x13AE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1519 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1525 DUP7 DUP3 DUP8 ADD PUSH2 0x145A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x154A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1553 DUP7 PUSH2 0x13AE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1570 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x157C DUP10 DUP4 DUP11 ADD PUSH2 0x145A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x1595 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x15B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x15CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1608 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x161C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x162F PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST PUSH2 0x1C31 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x164F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x16EE JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x1669 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x167A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x16AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x16D8 JUMPI DUP1 CALLDATALOAD PUSH2 0x16C4 DUP2 PUSH2 0x1F33 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x16B1 JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1652 JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1727 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1746 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1765 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1781 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1789 PUSH2 0x1BE4 JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x179A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x17AD DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x17C0 DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x17D3 DUP2 PUSH2 0x1F1E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x176B JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x180B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1833 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1841 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1861 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x187D JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1885 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0x188E DUP5 PUSH2 0x14CE JUMP JUMPDEST DUP2 MSTORE PUSH2 0x189B DUP10 DUP6 ADD PUSH2 0x14CE JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x18AC DUP2 DUP7 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x18BD DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x18CE DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x18DF DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x18F0 DUP6 DUP3 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1902 DUP14 DUP7 DUP4 ADD PUSH2 0x13D7 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1937 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x194E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x195F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x196D PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x198D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x19B0 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1992 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x19D0 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A0B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1A60 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1A72 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1AEF JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1ADD DUP6 DUP4 MLOAD PUSH2 0x19BC JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1AA3 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xD36 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B22 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B4E JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1B33 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1B5F JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BB4 JUMPI DUP3 CALLDATALOAD PUSH2 0x1B9C DUP2 PUSH2 0x1F1E JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1B89 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1BD2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1357 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C5A JUMPI PUSH2 0x1C5A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C7C JUMPI PUSH2 0x1C7C PUSH2 0x1F08 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1C99 JUMPI PUSH2 0x1C99 PUSH2 0x1EDC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CC1 JUMPI PUSH2 0x1CC1 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D0C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x1D4C JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1D32 JUMPI PUSH2 0x1D32 PUSH2 0x1EDC JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x1D3F JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x1D16 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD36 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x1D6D JUMPI POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH2 0x1D7A JUMPI POP PUSH1 0x0 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1D90 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1D9A JUMPI PUSH2 0x1DB6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD39 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1DAB JUMPI PUSH2 0x1DAB PUSH2 0x1EDC JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1DD9 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD39 JUMP JUMPDEST PUSH2 0x1DE3 DUP4 DUP4 PUSH2 0x1D11 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1DF7 JUMPI PUSH2 0x1DF7 PUSH2 0x1EDC JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E19 JUMPI PUSH2 0x1E19 PUSH2 0x1EDC JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1E30 JUMPI PUSH2 0x1E30 PUSH2 0x1EDC JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E52 JUMPI PUSH2 0x1E52 PUSH2 0x1EDC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1E74 JUMPI PUSH2 0x1E74 PUSH2 0x1EDC JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E91 JUMPI PUSH2 0x1E91 PUSH2 0x1EDC JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x1EB2 JUMPI PUSH2 0x1EB2 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x1ED3 JUMPI PUSH2 0x1ED3 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x4045B6B8677BEC4CD3B2D DELEGATECALL CALLDATACOPY 0xCA PUSH10 0x6953DBAA7477C59C7FD6 PUSH11 0xAC0BE6653964736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "876:16272:24:-:0;;;1642:580;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1795:30:24;;1787:67;;;;-1:-1:-1;;;1787:67:24;;1197:2:94;1787:67:24;;;1179:21:94;1236:2;1216:18;;;1209:30;1275:26;1255:18;;;1248:54;1319:18;;1787:67:24;;;;;;;;;-1:-1:-1;;;;;1872:47:24;;1864:81;;;;-1:-1:-1;;;1864:81:24;;1550:2:94;1864:81:24;;;1532:21:94;1589:2;1569:18;;;1562:30;1628:23;1608:18;;;1601:51;1669:18;;1864:81:24;1522:171:94;1864:81:24;-1:-1:-1;;;;;1963:34:24;;1955:67;;;;-1:-1:-1;;;1955:67:24;;848:2:94;1955:67:24;;;830:21:94;887:2;867:18;;;860:30;926:22;906:18;;;899:50;966:18;;1955:67:24;820:170:94;1955:67:24;-1:-1:-1;;;;;;2033:16:24;;;;;;;;2059:24;;;;;;;2093:50;;;;;;2159:56;;-1:-1:-1;;;;;2093:50:24;;;;2059:24;;;;2033:16;;;2159:56;;;;;1642:580;;;876:16272;;14:627:94;171:6;179;187;240:2;228:9;219:7;215:23;211:32;208:2;;;256:1;253;246:12;208:2;288:9;282:16;307:44;345:5;307:44;:::i;:::-;420:2;405:18;;399:25;370:5;;-1:-1:-1;433:46:94;399:25;433:46;:::i;:::-;550:2;535:18;;529:25;498:7;;-1:-1:-1;563:46:94;529:25;563:46;:::i;:::-;628:7;618:17;;;198:443;;;;;:::o;1698:144::-;-1:-1:-1;;;;;1786:31:94;;1776:42;;1766:2;;1832:1;1829;1822:12;1766:2;1756:86;:::o;:::-;876:16272:24;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@TIERS_LENGTH_4768": {
                  "entryPoint": null,
                  "id": 4768,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateNumberOfUserPicks_5153": {
                  "entryPoint": 3330,
                  "id": 5153,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFraction_5686": {
                  "entryPoint": 4885,
                  "id": 5686,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFractions_5735": {
                  "entryPoint": 4712,
                  "id": 5735,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizesAwardable_5130": {
                  "entryPoint": 2632,
                  "id": 5130,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_calculateTierIndex_5592": {
                  "entryPoint": 4553,
                  "id": 5592,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_calculate_5518": {
                  "entryPoint": 3391,
                  "id": 5518,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_createBitMasks_5655": {
                  "entryPoint": 4292,
                  "id": 5655,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getNormalizedBalancesAt_5316": {
                  "entryPoint": 1501,
                  "id": 5316,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_numberOfPrizesForIndex_5771": {
                  "entryPoint": 4960,
                  "id": 5771,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculate_4932": {
                  "entryPoint": 850,
                  "id": 4932,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@drawBuffer_4756": {
                  "entryPoint": null,
                  "id": 4756,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawBuffer_4943": {
                  "entryPoint": null,
                  "id": 4943,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNormalizedBalancesForDrawIds_4996": {
                  "entryPoint": 467,
                  "id": 4996,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getPrizeDistributionBuffer_4954": {
                  "entryPoint": null,
                  "id": 4954,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_4764": {
                  "entryPoint": null,
                  "id": 4764,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@ticket_4760": {
                  "entryPoint": null,
                  "id": 4760,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 5038,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint32_dyn_calldata": {
                  "entryPoint": 5210,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_array_uint32_fromMemory": {
                  "entryPoint": 5079,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 5343,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 5426,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr": {
                  "entryPoint": 5597,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 5885,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6136,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6436,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint104_fromMemory": {
                  "entryPoint": 5286,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 5315,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8_fromMemory": {
                  "entryPoint": 5326,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint256_dyn": {
                  "entryPoint": 6588,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_array_uint64_dyn": {
                  "entryPoint": 6647,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6705,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6780,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6908,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6927,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7028,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7103,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 7217,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory_4542": {
                  "entryPoint": 7140,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_4543": {
                  "entryPoint": 7181,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "array_allocation_size_array_array_uint64_dyn_dyn": {
                  "entryPoint": 7266,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 7302,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 7326,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint8": {
                  "entryPoint": 7370,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 7407,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_helper": {
                  "entryPoint": 7441,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "checked_exp_t_uint256_t_uint8": {
                  "entryPoint": 7508,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_unsigned": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 7679,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 7710,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 7733,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint8": {
                  "entryPoint": 7770,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 7805,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint32": {
                  "entryPoint": 7832,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint8": {
                  "entryPoint": 7868,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 7900,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 7922,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 7944,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7966,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint64": {
                  "entryPoint": 7987,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:23405:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:711:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "334:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "346:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "336:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "336:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "336:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "313:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "321:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "309:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "309:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "328:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "305:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "305:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "359:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "379:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "373:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "373:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "363:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "391:13:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "401:3:94",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "395:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "413:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "435:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "443:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:15:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "417:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "521:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "523:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "523:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "476:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "461:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "461:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "500:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "512:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "497:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "497:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "458:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "458:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "455:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "559:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "563:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "552:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "552:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "552:22:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "583:17:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "594:6:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "587:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "609:17:94",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "620:6:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "613:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "663:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "672:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "675:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "665:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "665:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "665:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "653:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:15:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "638:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "638:24:94"
                              },
                              "nodeType": "YulIf",
                              "src": "635:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "688:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "697:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "692:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "754:212:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "768:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "787:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "781:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "781:10:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "772:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "828:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "804:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "804:30:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "804:30:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "854:3:94"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "859:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "847:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "847:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "847:18:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "878:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "888:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "882:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "905:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "916:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "921:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "912:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "912:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "905:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "937:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "948:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "953:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "944:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "944:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "937:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "718:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "721:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "715:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "715:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "727:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "729:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "738:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "741:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "734:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "734:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "729:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "711:3:94",
                                "statements": []
                              },
                              "src": "707:259:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "975:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "984:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "975:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "259:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "267:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "275:5:94",
                            "type": ""
                          }
                        ],
                        "src": "215:781:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1084:283:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1133:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1142:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1145:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1135:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1135:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1135:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1112:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1120:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1108:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1108:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1127:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1104:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1104:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1097:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1097:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1094:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1158:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1181:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1168:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1168:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1158:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1231:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1240:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1243:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1233:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1233:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1233:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1203:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1211:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1200:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1200:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1197:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1256:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1272:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1280:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1268:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1268:17:94"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:8:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1345:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1354:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1357:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1347:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1347:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1347:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1308:6:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1320:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1323:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1316:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1316:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1304:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1304:27:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1333:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1300:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1300:38:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1340:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1297:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1297:47:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1294:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1047:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1055:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "1063:8:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1073:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1001:366:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1432:126:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1442:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1457:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1451:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1451:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1442:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1536:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1545:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1548:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1538:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1538:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1538:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1486:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1497:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1504:28:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1493:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1493:40:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1483:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1483:51:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1476:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1476:59:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1473:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1411:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1422:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1372:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1622:77:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1632:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1647:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1641:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1641:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1632:5:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1687:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1663:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1663:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1663:30:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1601:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1612:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1563:136:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1762:102:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1772:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1787:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1781:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1781:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1842:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1851:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1854:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1844:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1844:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1844:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1816:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1827:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1834:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1823:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1823:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1813:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1813:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1806:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1806:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1803:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1741:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1752:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1704:160:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1990:388:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2036:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2045:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2048:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2038:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2038:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2038:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2011:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2020:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2007:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2007:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2032:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2003:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2003:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2000:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2061:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2090:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2071:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2071:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2061:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2109:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2140:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2151:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2136:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2136:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2123:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2123:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2113:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2198:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2207:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2210:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2200:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2200:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2200:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2170:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2178:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2167:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2164:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2223:95:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2290:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2301:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2286:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2286:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2310:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2249:69:94"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2227:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2237:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2327:18:94",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2337:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2327:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2354:18:94",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2364:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2354:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1940:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1951:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1963:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1971:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1979:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1869:509:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2540:821:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2586:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2595:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2598:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2588:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2588:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2588:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2561:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2570:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2557:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2557:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2582:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2553:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2553:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2550:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2611:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2640:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2621:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2621:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2659:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2690:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2701:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2686:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2686:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2673:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2673:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2663:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2714:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2724:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2718:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2769:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2778:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2781:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2771:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2771:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2771:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2757:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2765:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2754:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2754:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2751:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2794:95:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2861:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2872:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2857:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2857:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2881:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2820:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2820:69:94"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2798:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2808:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2898:18:94",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2908:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2898:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2925:18:94",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2935:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2925:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2952:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2968:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2968:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2956:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3029:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3038:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3031:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3031:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3031:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3015:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3025:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3012:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3012:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3009:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3054:34:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3068:9:94"
                                  },
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3079:8:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3064:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3064:24:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3058:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3136:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3145:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3148:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3138:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3138:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3138:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3115:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3119:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3111:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3111:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3126:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3107:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3107:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3100:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3100:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3097:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3161:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3188:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3175:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3175:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3165:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3218:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3227:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3230:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3220:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3220:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3220:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3206:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3214:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3203:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3203:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3200:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3284:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3293:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3296:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3286:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3286:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3257:2:94"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "3261:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3253:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3253:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3270:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3249:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3249:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3275:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3246:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3246:37:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3243:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3309:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3323:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3319:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3319:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "3309:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3339:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "3349:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3339:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2474:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2485:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2497:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2505:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2513:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2521:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2529:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2383:978:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3485:1707:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3495:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3505:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3499:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3552:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3561:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3564:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3554:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3554:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3554:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3527:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3536:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3523:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3523:23:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3548:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3519:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3519:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3516:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3577:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3604:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3591:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3591:23:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3581:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3623:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3633:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3627:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3678:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3687:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3690:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3680:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3680:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3680:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3666:6:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3674:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3663:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3663:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3660:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3703:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3717:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3728:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3713:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3713:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3707:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3783:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3792:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3795:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3785:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3785:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3785:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "3762:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3766:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3758:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3758:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3773:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3754:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3754:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3747:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3747:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3744:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3808:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3831:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3818:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3818:16:94"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3812:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3843:80:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3919:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "3870:48:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3870:52:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3854:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3854:69:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3847:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3932:16:94",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3945:3:94"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3936:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3964:3:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3969:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3957:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3957:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3957:15:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3981:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3992:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3988:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3988:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3981:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4009:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4024:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4028:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4020:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4020:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "4013:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4085:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4094:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4097:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4087:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4087:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4087:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "4054:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4062:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "4065:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "4058:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4058:10:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4050:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4050:19:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4071:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4046:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4046:28:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4043:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4043:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4040:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4110:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4119:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4114:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4174:988:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4188:36:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "4220:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4207:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4207:17:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "innerOffset",
                                        "nodeType": "YulTypedName",
                                        "src": "4192:11:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4260:16:94",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4269:1:94",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4272:1:94",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4262:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4262:12:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4262:12:94"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4243:11:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4256:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4240:2:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4240:19:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4237:2:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4289:30:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "4303:2:94"
                                        },
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4307:11:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4299:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4299:20:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "4293:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4369:16:94",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4378:1:94",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4381:1:94",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4371:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4371:12:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4371:12:94"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4350:2:94"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "4354:2:94",
                                                  "type": "",
                                                  "value": "63"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4346:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4346:11:94"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "4359:7:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "slt",
                                            "nodeType": "YulIdentifier",
                                            "src": "4342:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4342:25:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "iszero",
                                        "nodeType": "YulIdentifier",
                                        "src": "4335:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4335:33:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4332:2:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4398:35:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "4425:2:94"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4429:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4421:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4421:11:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4408:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4408:25:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "4402:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4446:82:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "4524:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                            "nodeType": "YulIdentifier",
                                            "src": "4475:48:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4475:52:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "allocate_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "4459:15:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4459:69:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulTypedName",
                                        "src": "4450:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4541:18:94",
                                    "value": {
                                      "name": "dst_2",
                                      "nodeType": "YulIdentifier",
                                      "src": "4554:5:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_3",
                                        "nodeType": "YulTypedName",
                                        "src": "4545:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4579:5:94"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4586:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4572:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4572:17:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4572:17:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4602:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4615:5:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4622:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4611:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4611:14:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4602:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4638:24:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_5",
                                          "nodeType": "YulIdentifier",
                                          "src": "4655:2:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4659:2:94",
                                          "type": "",
                                          "value": "64"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4651:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4651:11:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "src_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4642:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4720:16:94",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4729:1:94",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4732:1:94",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4722:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4722:12:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4722:12:94"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4689:2:94"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "kind": "number",
                                                      "nodeType": "YulLiteral",
                                                      "src": "4697:1:94",
                                                      "type": "",
                                                      "value": "5"
                                                    },
                                                    {
                                                      "name": "_6",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4700:2:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4693:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4693:10:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4685:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4685:19:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4706:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4681:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4681:28:94"
                                        },
                                        {
                                          "name": "dataEnd",
                                          "nodeType": "YulIdentifier",
                                          "src": "4711:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4678:2:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4678:41:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4675:2:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4749:12:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "4760:1:94",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variables": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4753:3:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4829:228:94",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "4847:32:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4873:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "calldataload",
                                              "nodeType": "YulIdentifier",
                                              "src": "4860:12:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4860:19:94"
                                          },
                                          "variables": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulTypedName",
                                              "src": "4851:5:94",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4920:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "validator_revert_uint64",
                                              "nodeType": "YulIdentifier",
                                              "src": "4896:23:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4896:30:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4896:30:94"
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4950:5:94"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4957:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mstore",
                                              "nodeType": "YulIdentifier",
                                              "src": "4943:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4943:20:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4943:20:94"
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4980:23:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4993:5:94"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5000:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4989:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4989:14:94"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "dst_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "4980:5:94"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "5020:23:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5033:5:94"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5040:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5029:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5029:14:94"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "src_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "5020:5:94"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4785:3:94"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4790:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "lt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4782:2:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4782:11:94"
                                    },
                                    "nodeType": "YulForLoop",
                                    "post": {
                                      "nodeType": "YulBlock",
                                      "src": "4794:22:94",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4796:18:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "i_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4807:3:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4812:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4803:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4803:11:94"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "i_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4796:3:94"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "pre": {
                                      "nodeType": "YulBlock",
                                      "src": "4778:3:94",
                                      "statements": []
                                    },
                                    "src": "4774:283:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5077:3:94"
                                        },
                                        {
                                          "name": "dst_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "5082:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5070:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5070:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5070:18:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5101:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5112:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5117:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5108:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5108:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "5101:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5133:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "5144:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5149:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5140:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5140:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "5133:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4140:1:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "4143:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4137:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4137:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4147:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4149:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4158:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4161:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4154:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4154:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4149:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4133:3:94",
                                "statements": []
                              },
                              "src": "4129:1033:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5171:15:94",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "5181:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5171:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3451:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3462:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3474:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3366:1826:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5325:1606:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5335:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5345:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5339:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5392:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5401:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5404:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5394:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5394:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5394:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5367:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5376:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5363:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5363:23:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5388:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5359:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5359:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5356:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5417:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5437:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5431:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5431:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5421:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5490:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5499:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5502:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5492:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5492:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5492:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5462:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5470:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5459:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5459:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5456:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5515:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5529:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5540:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5525:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5525:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5519:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5595:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5604:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5607:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5597:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5597:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5597:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5574:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5578:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5570:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5570:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5585:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5566:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5566:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5559:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5559:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5556:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5620:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5636:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5630:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5630:9:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5624:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5648:80:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "5724:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "5675:48:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5675:52:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5659:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5659:69:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "5652:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5737:16:94",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "5750:3:94"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5741:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5769:3:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5774:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5762:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5762:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5762:15:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5786:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5797:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5802:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5793:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5793:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "5786:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5814:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5829:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5833:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5825:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5825:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "5818:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5845:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5855:4:94",
                                "type": "",
                                "value": "0xa0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5849:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5914:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5923:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5926:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5916:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5916:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5916:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5882:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "5890:2:94"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5894:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "5886:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5886:11:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5878:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5878:20:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5900:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5874:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5874:29:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5905:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5871:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5871:42:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5868:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5939:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5948:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5943:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5958:12:94",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "5969:1:94"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5962:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6030:871:94",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6074:16:94",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6083:1:94"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6086:1:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6076:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6076:12:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6076:12:94"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "6055:7:94"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6064:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "6051:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6051:17:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6070:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6047:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6047:26:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6044:2:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6103:35:94",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4542",
                                        "nodeType": "YulIdentifier",
                                        "src": "6116:20:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6116:22:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "6107:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6158:5:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6171:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "6165:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6165:10:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6151:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6151:25:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6151:25:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6189:34:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6214:3:94"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6219:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6210:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6210:12:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6204:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6204:19:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6193:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6260:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6236:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6236:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6236:32:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6292:5:94"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6299:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6288:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6288:14:94"
                                        },
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6304:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6281:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6281:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6281:31:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6325:12:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6335:2:94",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "6329:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6350:34:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6375:3:94"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6380:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6371:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6371:12:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6365:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6365:19:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulTypedName",
                                        "src": "6354:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6421:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6397:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6397:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6397:32:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6453:5:94"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6460:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6449:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6449:14:94"
                                        },
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6465:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6442:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6442:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6442:31:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6486:12:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6496:2:94",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "6490:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6511:34:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6536:3:94"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6541:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6532:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6532:12:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6526:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6526:19:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulTypedName",
                                        "src": "6515:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6582:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6558:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6558:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6558:32:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6614:5:94"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6621:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6610:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6610:14:94"
                                        },
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6626:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6603:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6603:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6603:31:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6647:13:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6657:3:94",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "6651:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6673:34:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6698:3:94"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6703:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6694:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6694:12:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6688:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6688:19:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_4",
                                        "nodeType": "YulTypedName",
                                        "src": "6677:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6744:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6720:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6720:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6720:32:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6776:5:94"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6783:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6772:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6772:14:94"
                                        },
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6788:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6765:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6765:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6765:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6816:3:94"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6821:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6809:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6809:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6809:18:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6840:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6851:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6856:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6847:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6847:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "6840:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6872:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "6883:3:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6888:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6879:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6879:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "6872:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5990:3:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5995:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5987:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5987:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5999:22:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6001:18:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6012:3:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6017:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6008:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6008:11:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6001:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5983:3:94",
                                "statements": []
                              },
                              "src": "5979:922:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6910:15:94",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "6920:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6910:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5291:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5302:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5314:6:94",
                            "type": ""
                          }
                        ],
                        "src": "5197:1734:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7077:1796:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7087:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7097:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7091:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7144:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7153:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7156:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7146:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7146:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7146:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7119:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7128:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7115:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7115:23:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7140:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7111:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7111:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7108:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7169:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7189:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7183:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7183:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "7173:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7242:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7251:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7254:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7244:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7244:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7244:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7214:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7222:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7211:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7211:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7208:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7267:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7281:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7292:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7277:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7277:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "7271:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7347:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7356:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7359:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7349:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7349:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7349:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7326:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7330:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7322:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7322:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7337:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "7318:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7318:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7311:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7311:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7308:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7372:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7388:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7382:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7382:9:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "7376:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7400:80:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "7476:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "7427:48:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7427:52:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7411:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7411:69:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "7404:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7489:16:94",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "7502:3:94"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7493:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7521:3:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7526:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7514:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7514:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7514:15:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7538:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7549:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7554:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7545:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7545:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "7538:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7566:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7581:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7585:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7577:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7577:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "7570:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7597:16:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7607:6:94",
                                "type": "",
                                "value": "0x0300"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "7601:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7668:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7677:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7680:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7670:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7670:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7670:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7636:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "7644:2:94"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "7648:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "7640:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7640:11:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7632:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7632:20:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7654:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7628:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7628:29:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7659:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7625:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7625:42:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7622:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7693:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7702:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7697:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7712:12:94",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "7723:1:94"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7716:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7784:1059:94",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "7828:16:94",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7837:1:94"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7840:1:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7830:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7830:12:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7830:12:94"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "7809:7:94"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7818:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "7805:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7805:17:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "7824:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "7801:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7801:26:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "7798:2:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7857:35:94",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4543",
                                        "nodeType": "YulIdentifier",
                                        "src": "7870:20:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7870:22:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "7861:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "7912:5:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7947:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7919:27:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7919:32:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7905:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7905:47:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7905:47:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "7976:5:94"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "7983:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "7972:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7972:14:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8020:3:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8025:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8016:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8016:12:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7988:27:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7988:41:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7965:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7965:65:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7965:65:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8043:12:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8053:2:94",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "8047:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8079:5:94"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8086:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8075:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8075:14:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8124:3:94"
                                                },
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8129:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8120:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8120:12:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8091:28:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8091:42:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8068:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8068:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8068:66:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8147:12:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8157:2:94",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "8151:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8183:5:94"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8190:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8179:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8179:14:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8228:3:94"
                                                },
                                                {
                                                  "name": "_6",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8233:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8224:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8224:12:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8195:28:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8195:42:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8172:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8172:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8172:66:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8251:13:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8261:3:94",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "8255:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8288:5:94"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8295:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8284:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8284:14:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8333:3:94"
                                                },
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8338:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8329:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8329:12:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8300:28:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8300:42:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8277:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8277:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8277:66:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8356:13:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8366:3:94",
                                      "type": "",
                                      "value": "160"
                                    },
                                    "variables": [
                                      {
                                        "name": "_8",
                                        "nodeType": "YulTypedName",
                                        "src": "8360:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8393:5:94"
                                            },
                                            {
                                              "name": "_8",
                                              "nodeType": "YulIdentifier",
                                              "src": "8400:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8389:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8389:14:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8438:3:94"
                                                },
                                                {
                                                  "name": "_8",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8443:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8434:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8434:12:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8405:28:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8405:42:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8382:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8382:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8382:66:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8461:13:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8471:3:94",
                                      "type": "",
                                      "value": "192"
                                    },
                                    "variables": [
                                      {
                                        "name": "_9",
                                        "nodeType": "YulTypedName",
                                        "src": "8465:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8498:5:94"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "8505:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8494:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8494:14:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8544:3:94"
                                                },
                                                {
                                                  "name": "_9",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8549:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8540:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8540:12:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint104_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8510:29:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8510:43:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8487:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8487:67:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8487:67:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8567:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8578:3:94",
                                      "type": "",
                                      "value": "224"
                                    },
                                    "variables": [
                                      {
                                        "name": "_10",
                                        "nodeType": "YulTypedName",
                                        "src": "8571:3:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8605:5:94"
                                            },
                                            {
                                              "name": "_10",
                                              "nodeType": "YulIdentifier",
                                              "src": "8612:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8601:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8601:15:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8657:3:94"
                                                },
                                                {
                                                  "name": "_10",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8662:3:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8653:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8653:13:94"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "8668:7:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_array_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8618:34:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8618:58:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8594:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8594:83:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8594:83:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8701:5:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "8708:6:94",
                                              "type": "",
                                              "value": "0x0100"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8697:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8697:18:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8727:3:94"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "8732:3:94",
                                                  "type": "",
                                                  "value": "736"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8723:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8723:13:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8717:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8717:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8690:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8690:48:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8690:48:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8758:3:94"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "8763:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8751:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8751:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8751:18:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8782:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8793:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8798:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8789:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8789:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "8782:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8814:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "8825:3:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8830:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8821:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8821:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "8814:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7744:3:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7749:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7741:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7741:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7753:22:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7755:18:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7766:3:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7771:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7762:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7762:11:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7755:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7737:3:94",
                                "statements": []
                              },
                              "src": "7733:1110:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8852:15:94",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "8862:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "8852:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7043:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7054:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7066:6:94",
                            "type": ""
                          }
                        ],
                        "src": "6936:1937:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8984:795:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8994:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9004:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8998:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9051:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9060:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9063:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9053:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9053:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9053:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9026:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9035:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "9022:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9022:23:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9047:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9018:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9018:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9015:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9076:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9096:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9090:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9090:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "9080:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9149:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9158:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9161:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9151:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9151:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9151:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9121:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9129:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9118:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9118:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9115:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9174:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9188:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9199:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9184:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9184:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "9178:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9254:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9263:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9266:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9256:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9256:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9256:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9233:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9237:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9229:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9229:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9244:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9225:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9225:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9218:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9218:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9215:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9279:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9295:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9289:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9289:9:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "9283:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9307:80:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "9383:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "9334:48:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9334:52:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9318:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9318:69:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "9311:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9396:16:94",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "9409:3:94"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9400:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9428:3:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9433:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9421:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9421:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9421:15:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9445:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9456:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9461:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9452:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9452:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "9445:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9473:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9488:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9492:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9484:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9484:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "9477:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9549:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9558:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9561:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9551:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9551:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9551:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9518:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9526:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "9529:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "9522:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9522:10:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9514:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9514:19:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9535:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9510:28:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "9540:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9507:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9507:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9504:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9574:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9583:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9578:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9638:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9659:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9670:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9664:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9664:10:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9652:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9652:23:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9652:23:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9688:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9699:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9704:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9695:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9695:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "9688:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9720:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "9731:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9736:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9727:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9727:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "9720:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9604:1:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9607:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9601:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9601:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9611:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9613:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9622:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9625:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9618:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9618:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9613:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9597:3:94",
                                "statements": []
                              },
                              "src": "9593:156:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9758:15:94",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "9768:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "9758:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8950:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "8961:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8973:6:94",
                            "type": ""
                          }
                        ],
                        "src": "8878:901:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9845:374:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9855:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9875:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9869:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9869:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "9859:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9897:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9902:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9890:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9890:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9890:19:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9918:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9928:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9922:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9941:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9952:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9957:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9948:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9948:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "9941:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9969:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9987:5:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9994:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9983:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9983:14:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "9973:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10006:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10015:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10010:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10074:120:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10095:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "10106:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10100:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10100:13:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10088:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10088:26:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10088:26:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10127:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10138:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10143:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10134:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10134:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10127:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10159:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10173:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10181:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10169:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10169:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10159:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10036:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10039:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10033:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10033:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10047:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10049:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10058:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10061:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10054:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10054:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10049:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10029:3:94",
                                "statements": []
                              },
                              "src": "10025:169:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10203:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10210:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10203:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint256_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9822:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "9829:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "9837:3:94",
                            "type": ""
                          }
                        ],
                        "src": "9784:435:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10284:399:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10294:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10314:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10308:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10308:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10298:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10336:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10341:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10329:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10329:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10329:19:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10357:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10367:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10361:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10380:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10391:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10396:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10387:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10387:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "10380:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10408:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10426:5:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10433:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10422:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10422:14:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10412:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10445:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10454:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10449:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10513:145:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10534:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10549:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "10543:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10543:13:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10558:18:94",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "10539:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10539:38:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10527:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10527:51:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10527:51:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10591:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10602:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10607:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10598:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10598:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10591:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10623:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10637:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10645:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10633:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10633:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10623:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10475:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10478:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10472:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10472:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10486:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10488:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10497:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10500:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10493:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10493:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10488:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10468:3:94",
                                "statements": []
                              },
                              "src": "10464:194:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10667:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10674:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10667:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10261:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10268:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10276:3:94",
                            "type": ""
                          }
                        ],
                        "src": "10224:459:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10807:145:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10824:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10837:2:94",
                                            "type": "",
                                            "value": "96"
                                          },
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "10841:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "10833:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10833:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10850:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10829:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10829:88:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10817:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10817:101:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10817:101:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10927:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10938:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10943:2:94",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10934:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10934:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10927:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10783:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10788:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10799:3:94",
                            "type": ""
                          }
                        ],
                        "src": "10688:264:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11210:326:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11227:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11242:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11250:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11238:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11238:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11220:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11220:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11220:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11314:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11325:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11310:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11310:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11330:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11303:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11303:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11303:30:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11342:69:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11384:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11396:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11407:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11392:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11392:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11356:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11356:55:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11346:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11431:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11442:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11427:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11427:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11451:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11459:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11447:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11447:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11420:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11420:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11420:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11479:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11515:6:94"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11523:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11487:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11487:43:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11479:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11163:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "11174:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "11182:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11190:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11201:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10957:579:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11742:702:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11752:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11762:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11756:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11773:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11791:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11802:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11787:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11787:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11777:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11821:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11832:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11814:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11814:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11814:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11844:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "11855:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "11848:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11870:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11890:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11884:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11884:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "11874:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11913:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11921:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11906:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11906:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11906:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11937:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11948:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11959:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11944:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11944:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "11937:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11971:53:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11993:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12008:1:94",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "12011:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "12004:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12004:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11989:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11989:30:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12021:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11985:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11985:39:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11975:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12033:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12051:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12059:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12047:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12047:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "12037:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12071:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12080:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "12075:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12139:276:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12160:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12173:6:94"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12181:9:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "12169:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12169:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "12193:66:94",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12165:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12165:95:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12153:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12153:108:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12153:108:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12274:61:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "12319:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "12313:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12313:13:94"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "12328:6:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_array_uint256_dyn",
                                        "nodeType": "YulIdentifier",
                                        "src": "12284:28:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12284:51:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "12274:6:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12348:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "12362:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12370:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12358:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12358:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12348:6:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12386:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12397:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12402:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12393:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12393:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "12386:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12101:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12104:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12098:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12098:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "12112:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12114:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "12123:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12126:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12119:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12119:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "12114:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "12094:3:94",
                                "statements": []
                              },
                              "src": "12090:325:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12424:14:94",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "12432:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12424:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11711:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11722:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11733:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11541:903:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12600:110:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12617:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12628:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12610:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12610:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12610:21:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12640:64:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12677:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12689:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12700:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12685:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12685:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12648:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12648:56:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12640:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12569:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12580:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12591:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12449:261:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12912:652:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12929:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12940:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12922:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12922:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12922:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12952:70:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12995:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13007:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13018:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13003:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13003:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12966:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12966:56:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12956:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13031:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13041:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13035:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13063:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13074:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13059:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13059:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13083:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13091:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13079:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13079:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13052:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13052:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13052:50:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13111:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13131:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13125:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13125:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "13115:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13154:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13162:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13147:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13147:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13147:22:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13178:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13187:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13182:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13247:87:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13276:6:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13284:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13272:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13272:14:94"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13288:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13268:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13268:23:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value1",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13307:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13315:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "13303:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "13303:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13319:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13299:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13299:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "13293:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13293:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13261:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13261:63:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13261:63:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13208:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13211:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13205:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13205:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13219:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13221:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "13230:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13233:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13226:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13226:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13221:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13201:3:94",
                                "statements": []
                              },
                              "src": "13197:137:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13368:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13397:6:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13405:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13393:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13393:19:94"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13414:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13389:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13389:28:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13419:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13382:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13382:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13382:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13349:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13352:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13346:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13346:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13343:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13440:118:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13456:6:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "13472:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13480:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "13468:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13468:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13485:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13464:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13464:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13452:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13452:101:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13555:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13448:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13448:110:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13440:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12873:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12884:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12892:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12903:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12715:849:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13728:534:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13738:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13748:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13742:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13759:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13777:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13788:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13773:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13773:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13763:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13807:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13818:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13800:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13800:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13800:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13830:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "13841:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "13834:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13863:6:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13871:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13856:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13856:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13856:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13887:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13898:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13909:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13894:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13894:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "13887:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13921:20:94",
                              "value": {
                                "name": "value0",
                                "nodeType": "YulIdentifier",
                                "src": "13935:6:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "13925:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13950:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13959:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13954:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14018:218:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14032:33:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14058:6:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14045:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14045:20:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "14036:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "14102:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "14078:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14078:30:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14078:30:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14128:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "14137:5:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "14144:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "14133:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14133:22:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14121:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14121:35:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14121:35:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14169:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14180:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14185:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14176:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14176:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14169:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14201:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14215:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14223:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14211:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14211:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14201:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13980:1:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13983:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13977:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13977:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13991:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13993:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14002:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14005:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13998:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13998:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13993:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13973:3:94",
                                "statements": []
                              },
                              "src": "13969:267:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14245:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14253:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14245:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13689:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "13700:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13708:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13719:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13569:693:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14492:234:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14509:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14520:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14502:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14502:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14502:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14532:69:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14574:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14586:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14597:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14582:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14582:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14546:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14546:55:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14536:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14621:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14632:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14617:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14617:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14641:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14649:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "14637:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14637:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14610:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14610:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14610:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14669:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14705:6:94"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14713:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14677:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14677:43:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14669:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14453:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14464:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14472:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14483:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14267:459:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14858:144:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14868:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14880:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14891:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14876:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14876:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14868:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14910:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14921:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14903:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14903:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14903:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14948:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14959:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14944:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14944:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14968:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14976:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14964:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14964:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14937:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14937:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14937:59:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14819:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14830:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14838:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14849:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14731:271:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15128:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15138:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15150:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15161:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15146:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15146:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15138:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15180:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15195:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15203:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15191:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15191:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15173:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15173:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15173:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15097:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15108:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15119:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15007:246:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15392:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15402:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15414:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15425:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15410:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15410:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15402:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15444:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15459:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15467:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15455:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15455:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15437:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15437:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15437:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15361:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15372:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15383:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15258:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15639:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15649:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15661:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15672:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15657:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15657:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15649:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15691:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15706:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15714:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15702:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15702:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15684:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15684:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15684:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15608:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15619:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15630:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15522:242:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15943:171:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15960:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15971:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15953:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15953:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15953:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15994:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16005:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15990:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15990:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16010:2:94",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15983:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15983:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15983:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16033:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16044:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16029:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16029:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16049:23:94",
                                    "type": "",
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16022:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16022:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16022:51:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16082:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16094:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16105:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16090:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16090:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16082:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15920:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15934:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15769:345:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16293:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16310:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16321:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16303:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16303:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16303:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16344:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16355:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16340:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16340:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16360:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16333:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16333:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16333:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16383:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16394:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16379:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16379:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16399:34:94",
                                    "type": "",
                                    "value": "DrawCalc/invalid-pick-indices-le"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16372:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16372:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16372:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16454:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16465:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16450:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16450:18:94"
                                  },
                                  {
                                    "hexValue": "6e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16470:6:94",
                                    "type": "",
                                    "value": "ngth"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16443:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16443:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16443:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16486:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16498:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16509:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16494:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16494:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16486:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16270:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16284:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16119:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16698:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16715:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16726:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16708:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16708:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16708:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16749:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16760:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16745:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16745:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16765:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16738:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16738:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16738:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16788:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16799:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16784:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16784:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16804:33:94",
                                    "type": "",
                                    "value": "DrawCalc/exceeds-max-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16777:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16777:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16777:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16847:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16859:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16870:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16855:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16855:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16847:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16675:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16689:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16524:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17058:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17075:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17086:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17068:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17068:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17068:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17109:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17120:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17105:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17105:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17125:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17098:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17098:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17098:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17148:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17159:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17144:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17144:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17164:26:94",
                                    "type": "",
                                    "value": "DrawCalc/picks-ascending"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17137:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17137:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17137:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17200:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17212:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17223:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17208:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17208:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17200:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17035:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17049:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16884:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17411:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17428:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17439:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17421:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17421:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17421:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17462:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17473:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17458:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17458:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17478:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17451:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17451:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17451:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17501:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17512:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17497:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17497:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17517:34:94",
                                    "type": "",
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17490:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17490:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17490:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17561:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17573:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17584:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17569:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17569:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17561:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17388:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17402:4:94",
                            "type": ""
                          }
                        ],
                        "src": "17237:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17695:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17705:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17717:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17728:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17713:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17713:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17705:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17747:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "17762:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17770:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "17758:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17758:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17740:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17740:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17740:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17664:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17675:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17686:4:94",
                            "type": ""
                          }
                        ],
                        "src": "17598:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17833:207:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17843:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17859:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17853:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17853:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "17843:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17871:35:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "17893:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17901:4:94",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17889:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17889:17:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "17875:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17981:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "17983:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17983:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17983:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17924:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17936:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17921:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17921:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17960:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17972:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17957:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17957:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "17918:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17918:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "17915:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18019:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18023:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18012:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18012:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18012:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory_4542",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "17822:6:94",
                            "type": ""
                          }
                        ],
                        "src": "17787:253:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18091:209:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18101:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18117:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18111:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18111:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18101:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18129:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18151:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18159:6:94",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18147:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18147:19:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18133:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18241:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18243:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18243:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18243:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18184:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18196:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18181:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18181:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18220:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18232:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18217:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18217:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18178:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18178:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18175:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18279:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18283:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18272:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18272:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18272:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory_4543",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18080:6:94",
                            "type": ""
                          }
                        ],
                        "src": "18045:255:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18350:289:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18360:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18376:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18370:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18370:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18360:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18388:117:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18410:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "18426:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18432:2:94",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "18422:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18422:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18437:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "18418:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18418:86:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18406:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18406:99:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18392:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18580:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18582:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18582:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18582:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18523:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18535:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18520:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18520:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18559:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18571:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18556:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18556:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18517:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18517:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18514:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18618:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18622:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18611:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18611:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18611:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18330:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18339:6:94",
                            "type": ""
                          }
                        ],
                        "src": "18305:334:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18722:114:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18766:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18768:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18768:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18768:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "18738:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18746:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18735:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18735:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18732:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18797:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18813:1:94",
                                        "type": "",
                                        "value": "5"
                                      },
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "18816:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "18809:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18809:14:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18825:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18805:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18805:25:94"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "18797:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "18702:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18713:4:94",
                            "type": ""
                          }
                        ],
                        "src": "18644:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18889:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18916:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "18918:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18918:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18918:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18905:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "18912:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "18908:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18908:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18902:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18902:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18899:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18947:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18958:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18961:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18954:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18954:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "18947:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "18872:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "18875:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "18881:3:94",
                            "type": ""
                          }
                        ],
                        "src": "18841:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19021:189:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19031:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19041:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19035:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19068:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19083:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19086:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19079:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19079:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19072:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19098:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19113:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19116:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19109:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19109:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19102:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19153:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19155:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19155:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19155:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19134:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19143:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19147:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19139:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19139:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19131:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19131:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "19128:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19184:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19195:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19200:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19191:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19191:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19184:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19004:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19007:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19013:3:94",
                            "type": ""
                          }
                        ],
                        "src": "18974:236:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19261:158:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19271:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19286:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19289:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19282:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19282:12:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19275:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19303:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19318:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19321:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19314:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19314:12:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19307:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19362:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19364:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19364:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19364:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19341:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19350:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19356:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19346:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19346:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19338:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19338:23:94"
                              },
                              "nodeType": "YulIf",
                              "src": "19335:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19393:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19404:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19409:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19400:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19400:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19393:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19244:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19247:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19253:3:94",
                            "type": ""
                          }
                        ],
                        "src": "19215:204:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19470:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19501:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19522:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19525:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19515:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19515:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19515:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19623:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19626:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19616:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19616:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19616:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19651:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19654:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19644:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19644:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19644:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19490:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19483:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19483:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "19480:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19678:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19687:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19690:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "19683:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19683:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "19678:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19455:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19458:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "19464:1:94",
                            "type": ""
                          }
                        ],
                        "src": "19424:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19767:418:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19777:16:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19792:1:94",
                                "type": "",
                                "value": "1"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19781:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19802:16:94",
                              "value": {
                                "name": "power_1",
                                "nodeType": "YulIdentifier",
                                "src": "19811:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "19802:5:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19827:13:94",
                              "value": {
                                "name": "_base",
                                "nodeType": "YulIdentifier",
                                "src": "19835:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "base",
                                  "nodeType": "YulIdentifier",
                                  "src": "19827:4:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19891:288:94",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "19996:22:94",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x11",
                                              "nodeType": "YulIdentifier",
                                              "src": "19998:16:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "19998:18:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "19998:18:94"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "19911:4:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "19921:66:94",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                            },
                                            {
                                              "name": "base",
                                              "nodeType": "YulIdentifier",
                                              "src": "19989:4:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "div",
                                            "nodeType": "YulIdentifier",
                                            "src": "19917:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "19917:77:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "19908:2:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19908:87:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "19905:2:94"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "20057:29:94",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "20059:25:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "power",
                                                "nodeType": "YulIdentifier",
                                                "src": "20072:5:94"
                                              },
                                              {
                                                "name": "base",
                                                "nodeType": "YulIdentifier",
                                                "src": "20079:4:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "20068:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20068:16:94"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "power",
                                              "nodeType": "YulIdentifier",
                                              "src": "20059:5:94"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20038:8:94"
                                        },
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20048:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "20034:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20034:22:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "20031:2:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20099:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20111:4:94"
                                        },
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20117:4:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mul",
                                        "nodeType": "YulIdentifier",
                                        "src": "20107:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20107:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "base",
                                        "nodeType": "YulIdentifier",
                                        "src": "20099:4:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20135:34:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20151:7:94"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20160:8:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shr",
                                        "nodeType": "YulIdentifier",
                                        "src": "20147:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20147:22:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20135:8:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "19860:8:94"
                                  },
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19870:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19857:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19857:21:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "19879:3:94",
                                "statements": []
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "19853:3:94",
                                "statements": []
                              },
                              "src": "19849:330:94"
                            }
                          ]
                        },
                        "name": "checked_exp_helper",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "_base",
                            "nodeType": "YulTypedName",
                            "src": "19731:5:94",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "19738:8:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "19751:5:94",
                            "type": ""
                          },
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "19758:4:94",
                            "type": ""
                          }
                        ],
                        "src": "19703:482:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20258:72:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20268:56:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20298:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20308:8:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20318:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20304:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20304:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_unsigned",
                                  "nodeType": "YulIdentifier",
                                  "src": "20277:20:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20277:47:94"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "20268:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_t_uint256_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20229:4:94",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20235:8:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20248:5:94",
                            "type": ""
                          }
                        ],
                        "src": "20190:140:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20394:807:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20432:52:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20446:10:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20455:1:94",
                                      "type": "",
                                      "value": "1"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20446:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20469:5:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "20414:8:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20407:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20407:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "20404:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20517:52:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20531:10:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20540:1:94",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20531:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20554:5:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20503:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20496:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20496:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "20493:2:94"
                            },
                            {
                              "cases": [
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20605:52:94",
                                    "statements": [
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20619:10:94",
                                        "value": {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20628:1:94",
                                          "type": "",
                                          "value": "1"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20619:5:94"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20642:5:94"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20598:59:94",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20603:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                },
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20673:123:94",
                                    "statements": [
                                      {
                                        "body": {
                                          "nodeType": "YulBlock",
                                          "src": "20708:22:94",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "panic_error_0x11",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "20710:16:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "20710:18:94"
                                              },
                                              "nodeType": "YulExpressionStatement",
                                              "src": "20710:18:94"
                                            }
                                          ]
                                        },
                                        "condition": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20693:8:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20703:3:94",
                                              "type": "",
                                              "value": "255"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "gt",
                                            "nodeType": "YulIdentifier",
                                            "src": "20690:2:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20690:17:94"
                                        },
                                        "nodeType": "YulIf",
                                        "src": "20687:2:94"
                                      },
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20743:25:94",
                                        "value": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20756:8:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20766:1:94",
                                              "type": "",
                                              "value": "1"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "20752:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20752:16:94"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20743:5:94"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20781:5:94"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20666:130:94",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20671:1:94",
                                    "type": "",
                                    "value": "2"
                                  }
                                }
                              ],
                              "expression": {
                                "name": "base",
                                "nodeType": "YulIdentifier",
                                "src": "20585:4:94"
                              },
                              "nodeType": "YulSwitch",
                              "src": "20578:218:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20894:70:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20908:28:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20921:4:94"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20927:8:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "exp",
                                        "nodeType": "YulIdentifier",
                                        "src": "20917:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20917:19:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20908:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20949:5:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20818:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20824:2:94",
                                            "type": "",
                                            "value": "11"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20815:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20815:12:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20832:8:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20842:2:94",
                                            "type": "",
                                            "value": "78"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20829:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20829:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20811:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20811:35:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20855:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20861:3:94",
                                            "type": "",
                                            "value": "307"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20852:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20852:13:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20870:8:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20880:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20867:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20867:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20848:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20848:36:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "20808:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20808:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "20805:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20973:57:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "21015:4:94"
                                  },
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "21021:8:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_helper",
                                  "nodeType": "YulIdentifier",
                                  "src": "20996:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20996:34:94"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20977:7:94",
                                  "type": ""
                                },
                                {
                                  "name": "base_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20986:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21135:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21137:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21137:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21137:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21045:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21058:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      },
                                      {
                                        "name": "base_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21126:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "div",
                                      "nodeType": "YulIdentifier",
                                      "src": "21054:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21054:79:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21042:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21042:92:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21039:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21166:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21179:7:94"
                                  },
                                  {
                                    "name": "base_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21188:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21175:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21175:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "21166:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_unsigned",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20365:4:94",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20371:8:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20384:5:94",
                            "type": ""
                          }
                        ],
                        "src": "20335:866:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21258:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21377:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21379:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21379:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21379:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21289:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "21282:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21282:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "21275:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21275:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "21297:1:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "21304:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21372:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "21300:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21300:74:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "21294:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21294:81:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21271:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21271:105:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21268:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21408:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21423:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21426:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21419:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21419:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "21408:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21237:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21240:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "21246:7:94",
                            "type": ""
                          }
                        ],
                        "src": "21206:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21488:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21510:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21512:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21512:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21512:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21504:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21507:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21501:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21501:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21498:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21541:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21553:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21556:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21549:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21549:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21541:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21470:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21473:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21479:4:94",
                            "type": ""
                          }
                        ],
                        "src": "21439:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21617:173:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21627:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21637:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21631:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21656:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21671:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21674:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21667:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21667:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21660:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21686:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21701:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21704:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21697:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21697:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21690:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21732:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21734:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21734:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21734:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21722:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21727:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21719:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21719:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21716:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21763:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21775:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21780:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21771:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21771:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21763:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21599:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21602:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21608:4:94",
                            "type": ""
                          }
                        ],
                        "src": "21569:221:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21842:148:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21852:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21867:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21870:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21863:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21863:12:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21856:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21884:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21899:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21902:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21895:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21895:12:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21888:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21932:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21934:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21934:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21934:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21922:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21927:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21919:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21919:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21916:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21963:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21975:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21980:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21971:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21971:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21963:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21824:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21827:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21833:4:94",
                            "type": ""
                          }
                        ],
                        "src": "21795:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22042:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22133:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22135:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22135:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22135:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22058:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22065:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22055:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22055:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22052:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22164:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22175:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22182:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22171:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22171:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22164:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22024:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22034:3:94",
                            "type": ""
                          }
                        ],
                        "src": "21995:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22241:155:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22251:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22261:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22255:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22280:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22299:5:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22306:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22295:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22295:14:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22284:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22337:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22339:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22339:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22339:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22324:7:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22333:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22321:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22321:15:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22318:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22368:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22379:7:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22388:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22375:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22375:15:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22368:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22223:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22233:3:94",
                            "type": ""
                          }
                        ],
                        "src": "22195:201:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22446:130:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22456:31:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22475:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22482:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22471:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22471:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22460:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22517:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22519:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22519:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22519:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22502:7:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22511:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22499:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22499:17:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22496:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22548:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22559:7:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22568:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22555:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22555:15:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22548:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22428:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22438:3:94",
                            "type": ""
                          }
                        ],
                        "src": "22401:175:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22613:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22630:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22633:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22623:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22623:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22623:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22727:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22730:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22720:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22720:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22720:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22751:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22754:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22744:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22744:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22744:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22581:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22802:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22819:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22822:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22812:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22812:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22812:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22916:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22919:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22909:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22909:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22909:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22940:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22943:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22933:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22933:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22933:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22770:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22991:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23008:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23011:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23001:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23001:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23001:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23105:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23108:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23098:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23098:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23098:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23129:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23132:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "23122:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23122:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23122:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22959:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23192:77:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23247:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23256:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23259:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23249:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23249:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23249:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23215:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23226:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23233:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23222:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23222:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23212:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23212:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23205:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23205:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "23202:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23181:5:94",
                            "type": ""
                          }
                        ],
                        "src": "23148:121:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23318:85:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23381:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23390:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23393:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23383:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23383:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23383:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23341:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23352:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23359:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23348:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23348:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23338:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23338:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23331:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23331:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "23328:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23307:5:94",
                            "type": ""
                          }
                        ],
                        "src": "23274:129:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint32_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let memPtr := mload(64)\n        let _1 := 512\n        let newFreePtr := add(memPtr, _1)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        let src := offset\n        if gt(add(offset, _1), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := mload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _2 := 0x20\n            dst := add(dst, _2)\n            src := add(src, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_array_uint32_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint104_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint8_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint32_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset_1)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_4))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, shl(5, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, _2) { revert(0, 0) }\n            let _5 := add(_3, innerOffset)\n            if iszero(slt(add(_5, 63), dataEnd)) { revert(0, 0) }\n            let _6 := calldataload(add(_5, _1))\n            let dst_2 := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_6))\n            let dst_3 := dst_2\n            mstore(dst_2, _6)\n            dst_2 := add(dst_2, _1)\n            let src_1 := add(_5, 64)\n            if gt(add(add(_5, shl(5, _6)), 64), dataEnd) { revert(0, 0) }\n            let i_1 := 0\n            for { } lt(i_1, _6) { i_1 := add(i_1, 1) }\n            {\n                let value := calldataload(src_1)\n                validator_revert_uint64(value)\n                mstore(dst_2, value)\n                dst_2 := add(dst_2, _1)\n                src_1 := add(src_1, _1)\n            }\n            mstore(dst, dst_3)\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0xa0\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_4542()\n            mstore(value, mload(src))\n            let value_1 := mload(add(src, _1))\n            validator_revert_uint32(value_1)\n            mstore(add(value, _1), value_1)\n            let _5 := 64\n            let value_2 := mload(add(src, _5))\n            validator_revert_uint64(value_2)\n            mstore(add(value, _5), value_2)\n            let _6 := 96\n            let value_3 := mload(add(src, _6))\n            validator_revert_uint64(value_3)\n            mstore(add(value, _6), value_3)\n            let _7 := 128\n            let value_4 := mload(add(src, _7))\n            validator_revert_uint32(value_4)\n            mstore(add(value, _7), value_4)\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        let _4 := 0x0300\n        if gt(add(add(_2, mul(_3, _4)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        let i_1 := i\n        for { } lt(i_1, _3) { i_1 := add(i_1, 1) }\n        {\n            if slt(sub(dataEnd, src), _4) { revert(i, i) }\n            let value := allocate_memory_4543()\n            mstore(value, abi_decode_uint8_fromMemory(src))\n            mstore(add(value, _1), abi_decode_uint8_fromMemory(add(src, _1)))\n            let _5 := 64\n            mstore(add(value, _5), abi_decode_uint32_fromMemory(add(src, _5)))\n            let _6 := 96\n            mstore(add(value, _6), abi_decode_uint32_fromMemory(add(src, _6)))\n            let _7 := 128\n            mstore(add(value, _7), abi_decode_uint32_fromMemory(add(src, _7)))\n            let _8 := 160\n            mstore(add(value, _8), abi_decode_uint32_fromMemory(add(src, _8)))\n            let _9 := 192\n            mstore(add(value, _9), abi_decode_uint104_fromMemory(add(src, _9)))\n            let _10 := 224\n            mstore(add(value, _10), abi_decode_array_uint32_fromMemory(add(src, _10), dataEnd))\n            mstore(add(value, 0x0100), mload(add(src, 736)))\n            mstore(dst, value)\n            dst := add(dst, _1)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let dst := allocate_memory(array_allocation_size_array_array_uint64_dyn_dyn(_3))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _1)\n        let src := add(_2, _1)\n        if gt(add(add(_2, shl(5, _3)), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_encode_array_uint256_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_array_uint64_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), 0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000))\n        end := add(pos, 20)\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_address_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), 96)\n        let tail_1 := abi_encode_array_uint64_dyn(value1, add(headStart, 96))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value2, tail_1)\n    }\n    function abi_encode_tuple_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__to_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let tail_2 := add(add(headStart, shl(5, length)), 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0))\n            tail_2 := abi_encode_array_uint256_dyn(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, _1)\n            pos := add(pos, _1)\n        }\n        tail := tail_2\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_uint256_dyn(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n        let _1 := 32\n        mstore(add(headStart, _1), sub(tail_1, headStart))\n        let length := mload(value1)\n        mstore(tail_1, length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(tail_1, i), _1), mload(add(add(value1, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(tail_1, length), _1), 0)\n        }\n        tail := add(add(tail_1, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_array$_t_uint32_$dyn_calldata_ptr__to_t_array$_t_uint32_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 64)\n        let srcPtr := value0\n        let i := 0\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            let value := calldataload(srcPtr)\n            validator_revert_uint32(value)\n            mstore(pos, and(value, 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint64_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/draw-expired\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"DrawCalc/invalid-pick-indices-le\")\n        mstore(add(headStart, 96), \"ngth\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawCalc/exceeds-max-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"DrawCalc/picks-ascending\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"DrawCalc/insufficient-user-picks\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function allocate_memory_4542() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_4543() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0120)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_array_array_uint64_dyn_dyn(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(shl(5, length), 0x20)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if gt(x_1, sub(0xff, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_exp_helper(_base, exponent) -> power, base\n    {\n        let power_1 := 1\n        power := power_1\n        base := _base\n        for { } gt(exponent, power_1) { }\n        {\n            if gt(base, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base)) { panic_error_0x11() }\n            if and(exponent, power_1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(power_1, exponent)\n        }\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent)\n        if gt(power_1, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint8(x, y) -> diff\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let _1 := 0xffffffff\n        let value_1 := and(value, _1)\n        if eq(value_1, _1) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function increment_t_uint8(value) -> ret\n    {\n        let value_1 := and(value, 0xff)\n        if eq(value_1, 0xff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint64(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "4756": [
                  {
                    "length": 32,
                    "start": 224
                  },
                  {
                    "length": 32,
                    "start": 407
                  },
                  {
                    "length": 32,
                    "start": 473
                  },
                  {
                    "length": 32,
                    "start": 1056
                  }
                ],
                "4760": [
                  {
                    "length": 32,
                    "start": 265
                  },
                  {
                    "length": 32,
                    "start": 2013
                  },
                  {
                    "length": 32,
                    "start": 2160
                  }
                ],
                "4764": [
                  {
                    "length": 32,
                    "start": 146
                  },
                  {
                    "length": 32,
                    "start": 366
                  },
                  {
                    "length": 32,
                    "start": 652
                  },
                  {
                    "length": 32,
                    "start": 1201
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e1461014b578063bd97a2521461016c578063ce343bb614610192578063f8d0ca4c146101b957600080fd5b80630840bbdd1461008d5780634019f2d6146100de5780636cc25db7146101045780638045fbcf1461012b575b600080fd5b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b61013e6101393660046114df565b6101d3565b6040516100d59190611afc565b61015e610159366004611532565b610352565b6040516100d5929190611b0f565b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b6101c1601081565b60405160ff90911681526020016100d5565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610232929190611b74565b60006040518083038186803b15801561024a57600080fd5b505afa15801561025e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028691908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e5929190611b74565b60006040518083038186803b1580156102fd57600080fd5b505afa158015610311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033991908101906117f8565b90506103468683836105dd565b925050505b9392505050565b6060806000610363848601866115dd565b805190915086146103e05760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610457908b908b90600401611b74565b60006040518083038186803b15801561046f57600080fd5b505afa158015610483573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ab91908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161050a929190611b74565b60006040518083038186803b15801561052257600080fd5b505afa158015610536573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055e91908101906117f8565b9050600061056d8b84846105dd565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105ca8282868887610a48565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105fd576105fd611f08565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064457610644611f08565b60405190808252806020026020018201604052801561066d578160200160208202803683370190505b50905060005b838163ffffffff16101561079c57858163ffffffff168151811061069957610699611ef2565b60200260200101516040015163ffffffff16878263ffffffff16815181106106c3576106c3611ef2565b60200260200101516040015103838263ffffffff16815181106106e8576106e8611ef2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061072257610722611ef2565b60200260200101516060015163ffffffff16878263ffffffff168151811061074c5761074c611ef2565b60200260200101516040015103828263ffffffff168151811061077157610771611ef2565b67ffffffffffffffff909216602092830291909101909101528061079481611e98565b915050610673565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610816908b9087908790600401611a31565b60006040518083038186803b15801561082e57600080fd5b505afa158015610842573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261086a9190810190611924565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c9929190611bbf565b60006040518083038186803b1580156108e157600080fd5b505afa1580156108f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261091d9190810190611924565b905060008567ffffffffffffffff81111561093a5761093a611f08565b604051908082528060200260200182016040528015610963578160200160208202803683370190505b50905060005b86811015610a3a5782818151811061098357610983611ef2565b6020026020010151600014156109b85760008282815181106109a7576109a7611ef2565b602002602001018181525050610a28565b8281815181106109ca576109ca611ef2565b60200260200101518482815181106109e4576109e4611ef2565b6020026020010151670de0b6b3a76400006109ff9190611dff565b610a099190611cef565b828281518110610a1b57610a1b611ef2565b6020026020010181815250505b80610a3281611e7d565b915050610969565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6757610a67611f08565b604051908082528060200260200182016040528015610a90578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aaf57610aaf611f08565b604051908082528060200260200182016040528015610ae257816020015b6060815260200190600190039081610acd5790505b5090504260005b88518163ffffffff161015610ccf57868163ffffffff1681518110610b1057610b10611ef2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3a57610b3a611ef2565b602002602001015160400151610b509190611c9e565b67ffffffffffffffff168267ffffffffffffffff1610610bb25760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d7565b6000610bfc888363ffffffff1681518110610bcf57610bcf611ef2565b60200260200101518d8463ffffffff1681518110610bef57610bef611ef2565b6020026020010151610d02565b9050610c768a8363ffffffff1681518110610c1957610c19611ef2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4957610c49611ef2565b60200260200101518c8763ffffffff1681518110610c6957610c69611ef2565b6020026020010151610d3f565b868463ffffffff1681518110610c8e57610c8e611ef2565b60200260200101868563ffffffff1681518110610cad57610cad611ef2565b6020908102919091010191909152525080610cc781611e98565b915050610ae9565b5081604051602001610ce19190611a7c565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d2c9190611dff565b610d369190611cef565b90505b92915050565b600060606000610d4e846110c4565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610ddc5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d7565b60005b8363ffffffff168163ffffffff161015610ff4578a898263ffffffff1681518110610e0c57610e0c611ef2565b602002602001015167ffffffffffffffff1610610e6b5760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d7565b63ffffffff811615610f225788610e83600183611e35565b63ffffffff1681518110610e9957610e99611ef2565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ec357610ec3611ef2565b602002602001015167ffffffffffffffff1611610f225760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d7565b60008a8a8363ffffffff1681518110610f3d57610f3d611ef2565b6020026020010151604051602001610f6992919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f91828f896111c9565b9050601060ff82161015610fdf578360ff168160ff161115610fb1578093505b848160ff1681518110610fc657610fc6611ef2565b602002602001018051809190610fdb90611e7d565b9052505b50508080610fec90611e98565b915050610ddf565b506000806110028984611268565b905060005b8360ff16811161109057600085828151811061102557611025611ef2565b6020026020010151111561107e5784818151811061104557611045611ef2565b602002602001015182828151811061105f5761105f611ef2565b60200260200101516110719190611dff565b61107b9084611c86565b92505b8061108881611e7d565b915050611007565b50633b9aca00896101000151836110a79190611dff565b6110b19190611cef565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e8576110e8611f08565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b508351909150600190611125906002611d54565b61112f9190611e1e565b8160008151811061114257611142611ef2565b602090810291909101015260015b836020015160ff168160ff1610156111c257835160ff1682611173600184611e5a565b60ff168151811061118657611186611ef2565b6020026020010151901b828260ff16815181106111a5576111a5611ef2565b6020908102919091010152806111ba81611ebc565b915050611150565b5092915050565b80516000908190815b8160ff168160ff16101561125d576000858260ff16815181106111f7576111f7611ef2565b602002602001015190508087168189161461123c578360ff168360ff16141561122757600094505050505061034b565b6112318484611e5a565b94505050505061034b565b8361124681611ebc565b94505050808061125590611ebc565b9150506111d2565b506103468282611e5a565b60606000611277836001611cca565b60ff1667ffffffffffffffff81111561129257611292611f08565b6040519080825280602002602001820160405280156112bb578160200160208202803683370190505b50905060005b8360ff168160ff161161130d576112db858260ff16611315565b828260ff16815181106112f0576112f0611ef2565b60209081029190910101528061130581611ebc565b9150506112c1565b509392505050565b6000808360e00151836010811061132e5761132e611ef2565b602002015163ffffffff169050600061134b856000015185611360565b90506113578183611cef565b95945050505050565b600081156113a657611373600183611e1e565b6113809060ff8516611dff565b6001901b6113918360ff8616611dff565b6001901b61139f9190611e1e565b9050610d39565b506001610d39565b803573ffffffffffffffffffffffffffffffffffffffff811681146113d257600080fd5b919050565b600082601f8301126113e857600080fd5b60405161020080820182811067ffffffffffffffff8211171561140d5761140d611f08565b604052818482810187101561142157600080fd5b600092505b601083101561144f57805161143a81611f1e565b82526001929092019160209182019101611426565b509195945050505050565b60008083601f84011261146c57600080fd5b50813567ffffffffffffffff81111561148457600080fd5b6020830191508360208260051b850101111561149f57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113d257600080fd5b80516113d281611f1e565b805160ff811681146113d257600080fd5b6000806000604084860312156114f457600080fd5b6114fd846113ae565b9250602084013567ffffffffffffffff81111561151957600080fd5b6115258682870161145a565b9497909650939450505050565b60008060008060006060868803121561154a57600080fd5b611553866113ae565b9450602086013567ffffffffffffffff8082111561157057600080fd5b61157c89838a0161145a565b9096509450604088013591508082111561159557600080fd5b818801915088601f8301126115a957600080fd5b8135818111156115b857600080fd5b8960208285010111156115ca57600080fd5b9699959850939650602001949392505050565b600060208083850312156115f057600080fd5b823567ffffffffffffffff8082111561160857600080fd5b818501915085601f83011261161c57600080fd5b813561162f61162a82611c62565b611c31565b80828252858201915085850189878560051b880101111561164f57600080fd5b60005b848110156116ee5781358681111561166957600080fd5b8701603f81018c1361167a57600080fd5b8881013561168a61162a82611c62565b808282528b82019150604084018f60408560051b87010111156116ac57600080fd5b600094505b838510156116d85780356116c481611f33565b835260019490940193918c01918c016116b1565b5087525050509287019290870190600101611652565b50909998505050505050505050565b6000602080838503121561171057600080fd5b825167ffffffffffffffff81111561172757600080fd5b8301601f8101851361173857600080fd5b805161174661162a82611c62565b8181528381019083850160a0808502860187018a101561176557600080fd5b60009550855b858110156117e95781838c031215611781578687fd5b611789611be4565b835181528884015161179a81611f1e565b818a01526040848101516117ad81611f33565b908201526060848101516117c081611f33565b908201526080848101516117d381611f1e565b908201528552938701939181019160010161176b565b50919998505050505050505050565b6000602080838503121561180b57600080fd5b825167ffffffffffffffff81111561182257600080fd5b8301601f8101851361183357600080fd5b805161184161162a82611c62565b81815283810190838501610300808502860187018a101561186157600080fd5b60009550855b858110156117e95781838c03121561187d578687fd5b611885611c0d565b61188e846114ce565b815261189b8985016114ce565b8982015260406118ac8186016114c3565b9082015260606118bd8582016114c3565b9082015260806118ce8582016114c3565b9082015260a06118df8582016114c3565b9082015260c06118f08582016114a6565b9082015260e06119028d8683016113d7565b908201526102e084015161010082015285529387019391810191600101611867565b6000602080838503121561193757600080fd5b825167ffffffffffffffff81111561194e57600080fd5b8301601f8101851361195f57600080fd5b805161196d61162a82611c62565b80828252848201915084840188868560051b870101111561198d57600080fd5b600094505b838510156119b0578051835260019490940193918501918501611992565b50979650505050505050565b600081518084526020808501945080840160005b838110156119ec578151875295820195908201906001016119d0565b509495945050505050565b600081518084526020808501945080840160005b838110156119ec57815167ffffffffffffffff1687529582019590820190600101611a0b565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a6060608301856119f7565b8281036040840152611a7281856119f7565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611add8583516119bc565b94509285019290850190600101611aa3565b5092979650505050505050565b602081526000610d3660208301846119bc565b604081526000611b2260408301856119bc565b602083820381850152845180835260005b81811015611b4e578681018301518482018401528201611b33565b81811115611b5f5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb4578235611b9c81611f1e565b63ffffffff1682529183019190830190600101611b89565b509695505050505050565b604081526000611bd260408301856119f7565b828103602084015261135781856119f7565b60405160a0810167ffffffffffffffff81118282101715611c0757611c07611f08565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0757611c07611f08565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5a57611c5a611f08565b604052919050565b600067ffffffffffffffff821115611c7c57611c7c611f08565b5060051b60200190565b60008219821115611c9957611c99611edc565b500190565b600067ffffffffffffffff808316818516808303821115611cc157611cc1611edc565b01949350505050565b600060ff821660ff84168060ff03821115611ce757611ce7611edc565b019392505050565b600082611d0c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d4c578160001904821115611d3257611d32611edc565b80851615611d3f57918102915b93841c9390800290611d16565b509250929050565b6000610d3660ff841683600082611d6d57506001610d39565b81611d7a57506000610d39565b8160018114611d905760028114611d9a57611db6565b6001915050610d39565b60ff841115611dab57611dab611edc565b50506001821b610d39565b5060208310610133831016604e8410600b8410161715611dd9575081810a610d39565b611de38383611d11565b8060001904821115611df757611df7611edc565b029392505050565b6000816000190483118215151615611e1957611e19611edc565b500290565b600082821015611e3057611e30611edc565b500390565b600063ffffffff83811690831681811015611e5257611e52611edc565b039392505050565b600060ff821660ff841680821015611e7457611e74611edc565b90039392505050565b6000600019821415611e9157611e91611edc565b5060010190565b600063ffffffff80831681811415611eb257611eb2611edc565b6001019392505050565b600060ff821660ff811415611ed357611ed3611edc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f3057600080fd5b50565b67ffffffffffffffff81168114611f3057600080fdfea26469706673582212206a04045b6b8677bec4cd3b2df437ca696953dbaa7477c59c7fd66aac0be6653964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAACA392E GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xBD97A252 EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0xF8D0CA4C EQ PUSH2 0x1B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x4019F2D6 EQ PUSH2 0xDE JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x8045FBCF EQ PUSH2 0x12B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x13E PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x14DF JUMP JUMPDEST PUSH2 0x1D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP2 SWAP1 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x15E PUSH2 0x159 CALLDATASIZE PUSH1 0x4 PUSH2 0x1532 JUMP JUMPDEST PUSH2 0x352 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B0F JUMP JUMPDEST PUSH32 0x0 PUSH2 0xB4 JUMP JUMPDEST PUSH2 0xB4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1C1 PUSH1 0x10 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xD5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD0BB78F3 DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x232 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x24A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x25E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x286 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2E5 SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x311 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x339 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x346 DUP7 DUP4 DUP4 PUSH2 0x5DD JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH2 0x363 DUP5 DUP7 ADD DUP7 PUSH2 0x15DD JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP DUP7 EQ PUSH2 0x3E0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E76616C69642D7069636B2D696E64696365732D6C65 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E67746800000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD0BB78F300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0xD0BB78F3 SWAP1 PUSH2 0x457 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x46F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x483 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x4AB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x16FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD30A5DAF DUP11 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50A SWAP3 SWAP2 SWAP1 PUSH2 0x1B74 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x522 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x536 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x55E SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x17F8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x56D DUP12 DUP5 DUP5 PUSH2 0x5DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000 PUSH1 0x60 DUP15 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH2 0x5CA DUP3 DUP3 DUP7 DUP9 DUP8 PUSH2 0xA48 JUMP JUMPDEST SWAP7 POP SWAP7 POP POP POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x60 SWAP1 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5FD JUMPI PUSH2 0x5FD PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x626 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x644 JUMPI PUSH2 0x644 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x66D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x79C JUMPI DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x699 JUMPI PUSH2 0x699 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6C3 JUMPI PUSH2 0x6C3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP4 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x6E8 JUMPI PUSH2 0x6E8 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP6 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x722 JUMPI PUSH2 0x722 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP8 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x74C JUMPI PUSH2 0x74C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD SUB DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x771 JUMPI PUSH2 0x771 PUSH2 0x1EF2 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE DUP1 PUSH2 0x794 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x673 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x68C7FD5700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH32 0x0 AND SWAP1 PUSH4 0x68C7FD57 SWAP1 PUSH2 0x816 SWAP1 DUP12 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x1A31 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x842 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x86A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E6D536A DUP6 DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8C9 SWAP3 SWAP2 SWAP1 PUSH2 0x1BBF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8F5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x91D SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1924 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x93A JUMPI PUSH2 0x93A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x963 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xA3A JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x983 JUMPI PUSH2 0x983 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 EQ ISZERO PUSH2 0x9B8 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9A7 JUMPI PUSH2 0x9A7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0xA28 JUMP JUMPDEST DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x9CA JUMPI PUSH2 0x9CA PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x9E4 JUMPI PUSH2 0x9E4 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xDE0B6B3A7640000 PUSH2 0x9FF SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xA09 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA1B JUMPI PUSH2 0xA1B PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0xA32 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x969 JUMP JUMPDEST POP SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP8 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA67 JUMPI PUSH2 0xA67 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xA90 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP9 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAAF JUMPI PUSH2 0xAAF PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xAE2 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xACD JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xCCF JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB10 JUMPI PUSH2 0xB10 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xA0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xB3A JUMPI PUSH2 0xB3A PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0xB50 SWAP2 SWAP1 PUSH2 0x1C9E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xBB2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D657870697265640000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBFC DUP9 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBCF JUMPI PUSH2 0xBCF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP14 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xBEF JUMPI PUSH2 0xBEF PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD02 JUMP JUMPDEST SWAP1 POP PUSH2 0xC76 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP14 DUP13 DUP7 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC49 JUMPI PUSH2 0xC49 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP13 DUP8 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC69 JUMPI PUSH2 0xC69 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xD3F JUMP JUMPDEST DUP7 DUP5 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xC8E JUMPI PUSH2 0xC8E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP7 DUP6 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xCAD JUMPI PUSH2 0xCAD PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD SWAP2 SWAP1 SWAP2 MSTORE MSTORE POP DUP1 PUSH2 0xCC7 DUP2 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xAE9 JUMP JUMPDEST POP DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCE1 SWAP2 SWAP1 PUSH2 0x1A7C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP DUP3 SWAP5 POP POP POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0xD2C SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0xD36 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0x0 PUSH2 0xD4E DUP5 PUSH2 0x10C4 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x10 DUP1 DUP3 MSTORE PUSH2 0x220 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP SWAP1 SWAP2 PUSH1 0x0 SWAP2 PUSH1 0x20 DUP3 ADD PUSH2 0x200 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xDDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F657863656564732D6D61782D757365722D7069636B7300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFF4 JUMPI DUP11 DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE0C JUMPI PUSH2 0xE0C PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND LT PUSH2 0xE6B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F696E73756666696369656E742D757365722D7069636B73 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND ISZERO PUSH2 0xF22 JUMPI DUP9 PUSH2 0xE83 PUSH1 0x1 DUP4 PUSH2 0x1E35 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xE99 JUMPI PUSH2 0xE99 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP10 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xEC3 JUMPI PUSH2 0xEC3 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xF22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F7069636B732D617363656E64696E670000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3D7 JUMP JUMPDEST PUSH1 0x0 DUP11 DUP11 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0xF3D JUMPI PUSH2 0xF3D PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF69 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH2 0xF91 DUP3 DUP16 DUP10 PUSH2 0x11C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0xFF DUP3 AND LT ISZERO PUSH2 0xFDF JUMPI DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT ISZERO PUSH2 0xFB1 JUMPI DUP1 SWAP4 POP JUMPDEST DUP5 DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0xFC6 JUMPI PUSH2 0xFC6 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP1 MLOAD DUP1 SWAP2 SWAP1 PUSH2 0xFDB SWAP1 PUSH2 0x1E7D JUMP JUMPDEST SWAP1 MSTORE POP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xFEC SWAP1 PUSH2 0x1E98 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDDF JUMP JUMPDEST POP PUSH1 0x0 DUP1 PUSH2 0x1002 DUP10 DUP5 PUSH2 0x1268 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 GT PUSH2 0x1090 JUMPI PUSH1 0x0 DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1025 JUMPI PUSH2 0x1025 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD GT ISZERO PUSH2 0x107E JUMPI DUP5 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1045 JUMPI PUSH2 0x1045 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x105F JUMPI PUSH2 0x105F PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1071 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x107B SWAP1 DUP5 PUSH2 0x1C86 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP1 PUSH2 0x1088 DUP2 PUSH2 0x1E7D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1007 JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP10 PUSH2 0x100 ADD MLOAD DUP4 PUSH2 0x10A7 SWAP2 SWAP1 PUSH2 0x1DFF JUMP JUMPDEST PUSH2 0x10B1 SWAP2 SWAP1 PUSH2 0x1CEF JUMP JUMPDEST SWAP14 SWAP4 SWAP13 POP SWAP3 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10E8 JUMPI PUSH2 0x10E8 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1111 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP4 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 SWAP1 PUSH2 0x1125 SWAP1 PUSH1 0x2 PUSH2 0x1D54 JUMP JUMPDEST PUSH2 0x112F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1142 JUMPI PUSH2 0x1142 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 JUMPDEST DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11C2 JUMPI DUP4 MLOAD PUSH1 0xFF AND DUP3 PUSH2 0x1173 PUSH1 0x1 DUP5 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1186 JUMPI PUSH2 0x1186 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 SHL DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11A5 JUMPI PUSH2 0x11A5 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x11BA DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1150 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x125D JUMPI PUSH1 0x0 DUP6 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x11F7 JUMPI PUSH2 0x11F7 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP8 AND DUP2 DUP10 AND EQ PUSH2 0x123C JUMPI DUP4 PUSH1 0xFF AND DUP4 PUSH1 0xFF AND EQ ISZERO PUSH2 0x1227 JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST PUSH2 0x1231 DUP5 DUP5 PUSH2 0x1E5A JUMP JUMPDEST SWAP5 POP POP POP POP POP PUSH2 0x34B JUMP JUMPDEST DUP4 PUSH2 0x1246 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0x1255 SWAP1 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11D2 JUMP JUMPDEST POP PUSH2 0x346 DUP3 DUP3 PUSH2 0x1E5A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x1277 DUP4 PUSH1 0x1 PUSH2 0x1CCA JUMP JUMPDEST PUSH1 0xFF AND PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1292 JUMPI PUSH2 0x1292 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x12BB JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 PUSH1 0xFF AND DUP2 PUSH1 0xFF AND GT PUSH2 0x130D JUMPI PUSH2 0x12DB DUP6 DUP3 PUSH1 0xFF AND PUSH2 0x1315 JUMP JUMPDEST DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x12F0 JUMPI PUSH2 0x12F0 PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1305 DUP2 PUSH2 0x1EBC JUMP JUMPDEST SWAP2 POP POP PUSH2 0x12C1 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0xE0 ADD MLOAD DUP4 PUSH1 0x10 DUP2 LT PUSH2 0x132E JUMPI PUSH2 0x132E PUSH2 0x1EF2 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x134B DUP6 PUSH1 0x0 ADD MLOAD DUP6 PUSH2 0x1360 JUMP JUMPDEST SWAP1 POP PUSH2 0x1357 DUP2 DUP4 PUSH2 0x1CEF JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO PUSH2 0x13A6 JUMPI PUSH2 0x1373 PUSH1 0x1 DUP4 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x1380 SWAP1 PUSH1 0xFF DUP6 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x1391 DUP4 PUSH1 0xFF DUP7 AND PUSH2 0x1DFF JUMP JUMPDEST PUSH1 0x1 SWAP1 SHL PUSH2 0x139F SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST SWAP1 POP PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x13E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x140D JUMPI PUSH2 0x140D PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x144F JUMPI DUP1 MLOAD PUSH2 0x143A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x1426 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x146C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1484 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x149F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x13D2 DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP1 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x13D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x14F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14FD DUP5 PUSH2 0x13AE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1519 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1525 DUP7 DUP3 DUP8 ADD PUSH2 0x145A JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x154A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1553 DUP7 PUSH2 0x13AE JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1570 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x157C DUP10 DUP4 DUP11 ADD PUSH2 0x145A JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x1595 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x15A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x15B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x15CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x15F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1608 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x161C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x162F PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST PUSH2 0x1C31 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP6 DUP3 ADD SWAP2 POP DUP6 DUP6 ADD DUP10 DUP8 DUP6 PUSH1 0x5 SHL DUP9 ADD ADD GT ISZERO PUSH2 0x164F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x16EE JUMPI DUP2 CALLDATALOAD DUP7 DUP2 GT ISZERO PUSH2 0x1669 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 ADD PUSH1 0x3F DUP2 ADD DUP13 SGT PUSH2 0x167A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 DUP2 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP12 DUP3 ADD SWAP2 POP PUSH1 0x40 DUP5 ADD DUP16 PUSH1 0x40 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x16AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x16D8 JUMPI DUP1 CALLDATALOAD PUSH2 0x16C4 DUP2 PUSH2 0x1F33 JUMP JUMPDEST DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP13 ADD SWAP2 DUP13 ADD PUSH2 0x16B1 JUMP JUMPDEST POP DUP8 MSTORE POP POP POP SWAP3 DUP8 ADD SWAP3 SWAP1 DUP8 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1652 JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1727 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1746 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH1 0xA0 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1765 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x1781 JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1789 PUSH2 0x1BE4 JUMP JUMPDEST DUP4 MLOAD DUP2 MSTORE DUP9 DUP5 ADD MLOAD PUSH2 0x179A DUP2 PUSH2 0x1F1E JUMP JUMPDEST DUP2 DUP11 ADD MSTORE PUSH1 0x40 DUP5 DUP2 ADD MLOAD PUSH2 0x17AD DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP5 DUP2 ADD MLOAD PUSH2 0x17C0 DUP2 PUSH2 0x1F33 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP5 DUP2 ADD MLOAD PUSH2 0x17D3 DUP2 PUSH2 0x1F1E JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x176B JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x180B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1833 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1841 PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP4 DUP2 ADD SWAP1 DUP4 DUP6 ADD PUSH2 0x300 DUP1 DUP6 MUL DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1861 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP DUP6 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x17E9 JUMPI DUP2 DUP4 DUP13 SUB SLT ISZERO PUSH2 0x187D JUMPI DUP7 DUP8 REVERT JUMPDEST PUSH2 0x1885 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0x188E DUP5 PUSH2 0x14CE JUMP JUMPDEST DUP2 MSTORE PUSH2 0x189B DUP10 DUP6 ADD PUSH2 0x14CE JUMP JUMPDEST DUP10 DUP3 ADD MSTORE PUSH1 0x40 PUSH2 0x18AC DUP2 DUP7 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x60 PUSH2 0x18BD DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0x80 PUSH2 0x18CE DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 PUSH2 0x18DF DUP6 DUP3 ADD PUSH2 0x14C3 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 PUSH2 0x18F0 DUP6 DUP3 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 PUSH2 0x1902 DUP14 DUP7 DUP4 ADD PUSH2 0x13D7 JUMP JUMPDEST SWAP1 DUP3 ADD MSTORE PUSH2 0x2E0 DUP5 ADD MLOAD PUSH2 0x100 DUP3 ADD MSTORE DUP6 MSTORE SWAP4 DUP8 ADD SWAP4 SWAP2 DUP2 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1937 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x194E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x195F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x196D PUSH2 0x162A DUP3 PUSH2 0x1C62 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE DUP5 DUP3 ADD SWAP2 POP DUP5 DUP5 ADD DUP9 DUP7 DUP6 PUSH1 0x5 SHL DUP8 ADD ADD GT ISZERO PUSH2 0x198D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP5 POP JUMPDEST DUP4 DUP6 LT ISZERO PUSH2 0x19B0 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP5 SWAP1 SWAP5 ADD SWAP4 SWAP2 DUP6 ADD SWAP2 DUP6 ADD PUSH2 0x1992 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x19D0 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x19EC JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A0B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1A60 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1A72 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 ADD DUP2 DUP5 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x40 DUP7 ADD SWAP2 POP PUSH1 0x40 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD SWAP3 POP DUP4 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1AEF JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x1ADD DUP6 DUP4 MLOAD PUSH2 0x19BC JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1AA3 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xD36 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B22 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19BC JUMP JUMPDEST PUSH1 0x20 DUP4 DUP3 SUB DUP2 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B4E JUMPI DUP7 DUP2 ADD DUP4 ADD MLOAD DUP5 DUP3 ADD DUP5 ADD MSTORE DUP3 ADD PUSH2 0x1B33 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x1B5F JUMPI PUSH1 0x0 DUP4 DUP4 DUP7 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP5 PUSH1 0x40 DUP5 ADD DUP4 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BB4 JUMPI DUP3 CALLDATALOAD PUSH2 0x1B9C DUP2 PUSH2 0x1F1E JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 DUP4 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1B89 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1BD2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x19F7 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1357 DUP2 DUP6 PUSH2 0x19F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C07 JUMPI PUSH2 0x1C07 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1C5A JUMPI PUSH2 0x1C5A PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C7C JUMPI PUSH2 0x1C7C PUSH2 0x1F08 JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1C99 JUMPI PUSH2 0x1C99 PUSH2 0x1EDC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CC1 JUMPI PUSH2 0x1CC1 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1CE7 JUMPI PUSH2 0x1CE7 PUSH2 0x1EDC JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D0C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x1D4C JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1D32 JUMPI PUSH2 0x1D32 PUSH2 0x1EDC JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x1D3F JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x1D16 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD36 PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x1D6D JUMPI POP PUSH1 0x1 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH2 0x1D7A JUMPI POP PUSH1 0x0 PUSH2 0xD39 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1D90 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1D9A JUMPI PUSH2 0x1DB6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD39 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1DAB JUMPI PUSH2 0x1DAB PUSH2 0x1EDC JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD39 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x1DD9 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD39 JUMP JUMPDEST PUSH2 0x1DE3 DUP4 DUP4 PUSH2 0x1D11 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x1DF7 JUMPI PUSH2 0x1DF7 PUSH2 0x1EDC JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1E19 JUMPI PUSH2 0x1E19 PUSH2 0x1EDC JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1E30 JUMPI PUSH2 0x1E30 PUSH2 0x1EDC JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1E52 JUMPI PUSH2 0x1E52 PUSH2 0x1EDC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1E74 JUMPI PUSH2 0x1E74 PUSH2 0x1EDC JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E91 JUMPI PUSH2 0x1E91 PUSH2 0x1EDC JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0x1EB2 JUMPI PUSH2 0x1EB2 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x1ED3 JUMPI PUSH2 0x1ED3 PUSH2 0x1EDC JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F30 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x4045B6B8677BEC4CD3B2D DELEGATECALL CALLDATACOPY 0xCA PUSH10 0x6953DBAA7477C59C7FD6 PUSH11 0xAC0BE6653964736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "876:16272:24:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1176:65;;;;;;;;15203:42:94;15191:55;;;15173:74;;15161:2;15146:18;1176:65:24;;;;;;;;3663:104;3750:10;3663:104;;1061:31;;;;;4030:481;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2320:1301::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3809:179::-;3958:23;3809:179;;961:39;;;;;1287;;1324:2;1287:39;;;;;17770:4:94;17758:17;;;17740:36;;17728:2;17713:18;1287:39:24;17695:87:94;4030:481:24;4178:16;4210:32;4245:10;:19;;;4265:8;;4245:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4245:29:24;;;;;;;;;;;;:::i;:::-;4210:64;;4284:71;4358:23;:58;;;4417:8;;4358:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4358:68:24;;;;;;;;;;;;:::i;:::-;4284:142;;4444:60;4469:5;4476:6;4484:19;4444:24;:60::i;:::-;4437:67;;;;4030:481;;;;;;:::o;2320:1301::-;2481:16;;2523:29;2555:47;;;;2566:20;2555:47;:::i;:::-;2620:18;;2523:79;;-1:-1:-1;2620:37:24;;2612:86;;;;-1:-1:-1;;;2612:86:24;;16321:2:94;2612:86:24;;;16303:21:94;16360:2;16340:18;;;16333:30;16399:34;16379:18;;;16372:62;16470:6;16450:18;;;16443:34;16494:19;;2612:86:24;;;;;;;;;2818:29;;;;;2784:31;;2818:19;:10;:19;;;;:29;;2838:8;;;;2818:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2818:29:24;;;;;;;;;;;;:::i;:::-;2784:63;;2943:71;3017:23;:58;;;3076:8;;3017:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3017:68:24;;;;;;;;;;;;:::i;:::-;2943:142;;3194:29;3226:59;3251:5;3258;3265:19;3226:24;:59::i;:::-;3379:23;;10850:66:94;10837:2;10833:15;;;10829:88;3379:23:24;;;10817:101:94;3194:91:24;;-1:-1:-1;3341:25:24;;10934:12:94;;3379:23:24;;;;;;;;;;;;3369:34;;;;;;3341:62;;3421:193;3464:12;3494:17;3529:5;3552:11;3581:19;3421:25;:193::i;:::-;3414:200;;;;;;;;;2320:1301;;;;;;;;:::o;7654:1699::-;7913:13;;7863:16;;7891:19;7913:13;7986:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7986:25:24;;7936:75;;8021:45;8082:11;8069:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8069:25:24;;8021:73;;8175:8;8170:366;8193:11;8189:1;:15;;;8170:366;;;8332:19;8352:1;8332:22;;;;;;;;;;:::i;:::-;;;;;;;:43;;;8310:65;;:6;8317:1;8310:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:65;8253:31;8285:1;8253:34;;;;;;;;;;:::i;:::-;;;;;;:122;;;;;;;;;;;8470:19;8490:1;8470:22;;;;;;;;;;:::i;:::-;;;;;;;:41;;;8448:63;;:6;8455:1;8448:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:63;8393:29;8423:1;8393:32;;;;;;;;;;:::i;:::-;:118;;;;:32;;;;;;;;;;;:118;8206:3;;;;:::i;:::-;;;;8170:366;;;-1:-1:-1;8574:149:24;;;;;8546:25;;8574:32;:6;:32;;;;:149;;8620:5;;8639:31;;8684:29;;8574:149;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8574:149:24;;;;;;;;;;;;:::i;:::-;8546:177;;8734:30;8767:6;:37;;;8818:31;8863:29;8767:135;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8767:135:24;;;;;;;;;;;;:::i;:::-;8734:168;;8913:35;8965:11;8951:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8951:26:24;;8913:64;;9050:9;9045:266;9069:11;9065:1;:15;9045:266;;;9104:13;9118:1;9104:16;;;;;;;;:::i;:::-;;;;;;;9124:1;9104:21;9101:200;;;9168:1;9144:18;9163:1;9144:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;9101:200;;;9270:13;9284:1;9270:16;;;;;;;;:::i;:::-;;;;;;;9245:8;9254:1;9245:11;;;;;;;;:::i;:::-;;;;;;;9259:7;9245:21;;;;:::i;:::-;9244:42;;;;:::i;:::-;9220:18;9239:1;9220:21;;;;;;;;:::i;:::-;;;;;;:66;;;;;9101:200;9082:3;;;;:::i;:::-;;;;9045:266;;;-1:-1:-1;9328:18:24;7654:1699;-1:-1:-1;;;;;;;;;7654:1699:24:o;5045:1499::-;5365:32;5399:24;5444:33;5494:23;:30;5480:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5480:45:24;;5444:81;;5535:31;5585:23;:30;5569:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5535:81:24;-1:-1:-1;5651:15:24;5627:14;5739:707;5778:6;:13;5766:9;:25;;;5739:707;;;5869:19;5889:9;5869:30;;;;;;;;;;:::i;:::-;;;;;;;:45;;;5839:75;;:6;5846:9;5839:17;;;;;;;;;;:::i;:::-;;;;;;;:27;;;:75;;;;:::i;:::-;5829:85;;:7;:85;;;5821:119;;;;-1:-1:-1;;;5821:119:24;;15971:2:94;5821:119:24;;;15953:21:94;16010:2;15990:18;;;15983:30;16049:23;16029:18;;;16022:51;16090:18;;5821:119:24;15943:171:94;5821:119:24;5955:21;5979:141;6024:19;6044:9;6024:30;;;;;;;;;;:::i;:::-;;;;;;;6072:23;6096:9;6072:34;;;;;;;;;;:::i;:::-;;;;;;;5979:27;:141::i;:::-;5955:165;;6192:243;6220:6;6227:9;6220:17;;;;;;;;;;:::i;:::-;;;;;;;:37;;;6275:14;6192:243;;6307:17;6342:20;6363:9;6342:31;;;;;;;;;;:::i;:::-;;;;;;;6391:19;6411:9;6391:30;;;;;;;;;;:::i;:::-;;;;;;;6192:10;:243::i;:::-;6136:16;6153:9;6136:27;;;;;;;;;;:::i;:::-;;;;;;6165:12;6178:9;6165:23;;;;;;;;;;:::i;:::-;;;;;;;;;;6135:300;;;;;-1:-1:-1;5793:11:24;;;;:::i;:::-;;;;5739:707;;;;6480:12;6469:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;6455:38;;6521:16;6503:34;;5425:1119;;;5045:1499;;;;;;;;:::o;7005:293::-;7189:6;7283:7;7247:18;:32;;;7222:57;;:22;:57;;;;:::i;:::-;7221:69;;;;:::i;:::-;7207:84;;7005:293;;;;;:::o;9847:2707::-;10112:13;10127:28;10229:22;10254:35;10270:18;10254:15;:35::i;:::-;10327:13;;10383:46;;;10397:31;10383:46;;;;;;;;;10229:60;;-1:-1:-1;10327:13:24;;10299:18;;10383:46;;;;;;;;;;-1:-1:-1;10383:46:24;10351:78;;10440:25;10516:18;:34;;;10501:49;;:11;:49;;;;10480:127;;;;-1:-1:-1;;;10480:127:24;;16726:2:94;10480:127:24;;;16708:21:94;16765:2;16745:18;;;16738:30;16804:33;16784:18;;;16777:61;16855:18;;10480:127:24;16698:181:94;10480:127:24;10721:12;10716:937;10747:11;10739:19;;:5;:19;;;10716:937;;;10807:15;10791:6;10798:5;10791:13;;;;;;;;;;:::i;:::-;;;;;;;:31;;;10783:76;;;;-1:-1:-1;;;10783:76:24;;17439:2:94;10783:76:24;;;17421:21:94;;;17458:18;;;17451:30;17517:34;17497:18;;;17490:62;17569:18;;10783:76:24;17411:182:94;10783:76:24;10878:9;;;;10874:118;;10931:6;10938:9;10946:1;10938:5;:9;:::i;:::-;10931:17;;;;;;;;;;:::i;:::-;;;;;;;10915:33;;:6;10922:5;10915:13;;;;;;;;;;:::i;:::-;;;;;;;:33;;;10907:70;;;;-1:-1:-1;;;10907:70:24;;17086:2:94;10907:70:24;;;17068:21:94;17125:2;17105:18;;;17098:30;17164:26;17144:18;;;17137:54;17208:18;;10907:70:24;17058:174:94;10907:70:24;11069:28;11146:17;11165:6;11172:5;11165:13;;;;;;;;;;:::i;:::-;;;;;;;11135:44;;;;;;;;14903:25:94;;;14976:18;14964:31;14959:2;14944:18;;14937:59;14891:2;14876:18;;14858:144;11135:44:24;;;;;;;;;;;;;11125:55;;;;;;11100:94;;11069:125;;11209:16;11228:132;11265:20;11303;11341:5;11228:19;:132::i;:::-;11209:151;-1:-1:-1;1324:2:24;11429:25;;;;11425:218;;;11491:19;11478:32;;:10;:32;;;11474:111;;;11556:10;11534:32;;11474:111;11602:12;11615:10;11602:24;;;;;;;;;;:::i;:::-;;;;;;:26;;;;;;;;:::i;:::-;;;-1:-1:-1;11425:218:24;10769:884;;10760:7;;;;;:::i;:::-;;;;10716:937;;;;11720:21;11755:36;11794:103;11836:18;11868:19;11794:28;:103::i;:::-;11755:142;;11995:23;11977:360;12055:19;12036:38;;:15;:38;11977:360;;12166:1;12134:12;12147:15;12134:29;;;;;;;;:::i;:::-;;;;;;;:33;12130:197;;;12283:12;12296:15;12283:29;;;;;;;;:::i;:::-;;;;;;;12224:19;12244:15;12224:36;;;;;;;;:::i;:::-;;;;;;;:88;;;;:::i;:::-;12187:125;;;;:::i;:::-;;;12130:197;12088:17;;;;:::i;:::-;;;;11977:360;;;;12507:3;12479:18;:24;;;12463:13;:40;;;;:::i;:::-;12462:48;;;;:::i;:::-;12454:56;12535:12;;-1:-1:-1;9847:2707:24;;-1:-1:-1;;;;;;;;;;;9847:2707:24:o;14120:621::-;14262:16;14294:22;14333:18;:35;;;14319:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14319:50:24;-1:-1:-1;14395:31:24;;14294:75;;-1:-1:-1;14430:1:24;;14392:34;;:1;:34;:::i;:::-;14391:40;;;;:::i;:::-;14379:5;14385:1;14379:8;;;;;;;;:::i;:::-;;;;;;;;;;:52;14465:1;14442:270;14480:18;:35;;;14468:47;;:9;:47;;;14442:270;;;14670:31;;14646:55;;:5;14652:13;14664:1;14652:9;:13;:::i;:::-;14646:20;;;;;;;;;;:::i;:::-;;;;;;;:55;;14627:5;14633:9;14627:16;;;;;;;;;;:::i;:::-;;;;;;;;;;:74;14517:11;;;;:::i;:::-;;;;14442:270;;;-1:-1:-1;14729:5:24;14120:621;-1:-1:-1;;14120:621:24:o;12947:932::-;13193:13;;13115:5;;;;;13255:571;13295:11;13282:24;;:10;:24;;;13255:571;;;13336:12;13351:6;13358:10;13351:18;;;;;;;;;;:::i;:::-;;;;;;;13336:33;;13446:4;13423:20;:27;13413:4;13389:21;:28;13388:63;13384:362;;13583:15;13568:30;;:11;:30;;;13564:168;;;13629:1;13622:8;;;;;;;;13564:168;13684:29;13698:15;13684:11;:29;:::i;:::-;13677:36;;;;;;;;13564:168;13798:17;;;;:::i;:::-;;;;13322:504;13308:12;;;;;:::i;:::-;;;;13255:571;;;-1:-1:-1;13843:29:24;13857:15;13843:11;:29;:::i;15933:577::-;16113:16;16141:43;16214:23;:19;16236:1;16214:23;:::i;:::-;16187:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16187:60:24;;16141:106;;16263:7;16258:202;16281:19;16276:24;;:1;:24;;;16258:202;;16353:96;16398:18;16434:1;16353:96;;:27;:96::i;:::-;16321:26;16348:1;16321:29;;;;;;;;;;:::i;:::-;;;;;;;;;;:128;16302:3;;;;:::i;:::-;;;;16258:202;;;-1:-1:-1;16477:26:24;15933:577;-1:-1:-1;;;15933:577:24:o;15081:::-;15258:7;15326:21;15350:18;:24;;;15375:15;15350:41;;;;;;;:::i;:::-;;;;;15326:65;;;;15455:30;15488:107;15525:18;:31;;;15570:15;15488:23;:107::i;:::-;15455:140;-1:-1:-1;15613:38:24;15455:140;15613:13;:38;:::i;:::-;15606:45;15081:577;-1:-1:-1;;;;;15081:577:24:o;16806:340::-;16932:7;16959:19;;16955:185;;17068:19;17086:1;17068:15;:19;:::i;:::-;17051:37;;;;;;:::i;:::-;17046:1;:42;;17008:31;17024:15;17008:31;;;;:::i;:::-;17003:1;:36;;17001:89;;;;:::i;:::-;16994:96;;;;16955:185;-1:-1:-1;17128:1:24;17121:8;;14:196:94;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:781::-;275:5;328:3;321:4;313:6;309:17;305:27;295:2;;346:1;343;336:12;295:2;379;373:9;401:3;443:2;435:6;431:15;512:6;500:10;497:22;476:18;464:10;461:34;458:62;455:2;;;523:18;;:::i;:::-;559:2;552:22;594:6;620;641:15;;;638:24;-1:-1:-1;635:2:94;;;675:1;672;665:12;635:2;697:1;688:10;;707:259;721:4;718:1;715:11;707:259;;;787:3;781:10;804:30;828:5;804:30;:::i;:::-;847:18;;741:1;734:9;;;;;888:4;912:12;;;;944;707:259;;;-1:-1:-1;984:6:94;;285:711;-1:-1:-1;;;;;285:711:94:o;1001:366::-;1063:8;1073:6;1127:3;1120:4;1112:6;1108:17;1104:27;1094:2;;1145:1;1142;1135:12;1094:2;-1:-1:-1;1168:20:94;;1211:18;1200:30;;1197:2;;;1243:1;1240;1233:12;1197:2;1280:4;1272:6;1268:17;1256:29;;1340:3;1333:4;1323:6;1320:1;1316:14;1308:6;1304:27;1300:38;1297:47;1294:2;;;1357:1;1354;1347:12;1294:2;1084:283;;;;;:::o;1372:186::-;1451:13;;1504:28;1493:40;;1483:51;;1473:2;;1548:1;1545;1538:12;1563:136;1641:13;;1663:30;1641:13;1663:30;:::i;1704:160::-;1781:13;;1834:4;1823:16;;1813:27;;1803:2;;1854:1;1851;1844:12;1869:509;1963:6;1971;1979;2032:2;2020:9;2011:7;2007:23;2003:32;2000:2;;;2048:1;2045;2038:12;2000:2;2071:29;2090:9;2071:29;:::i;:::-;2061:39;;2151:2;2140:9;2136:18;2123:32;2178:18;2170:6;2167:30;2164:2;;;2210:1;2207;2200:12;2164:2;2249:69;2310:7;2301:6;2290:9;2286:22;2249:69;:::i;:::-;1990:388;;2337:8;;-1:-1:-1;2223:95:94;;-1:-1:-1;;;;1990:388:94:o;2383:978::-;2497:6;2505;2513;2521;2529;2582:2;2570:9;2561:7;2557:23;2553:32;2550:2;;;2598:1;2595;2588:12;2550:2;2621:29;2640:9;2621:29;:::i;:::-;2611:39;;2701:2;2690:9;2686:18;2673:32;2724:18;2765:2;2757:6;2754:14;2751:2;;;2781:1;2778;2771:12;2751:2;2820:69;2881:7;2872:6;2861:9;2857:22;2820:69;:::i;:::-;2908:8;;-1:-1:-1;2794:95:94;-1:-1:-1;2996:2:94;2981:18;;2968:32;;-1:-1:-1;3012:16:94;;;3009:2;;;3041:1;3038;3031:12;3009:2;3079:8;3068:9;3064:24;3054:34;;3126:7;3119:4;3115:2;3111:13;3107:27;3097:2;;3148:1;3145;3138:12;3097:2;3188;3175:16;3214:2;3206:6;3203:14;3200:2;;;3230:1;3227;3220:12;3200:2;3275:7;3270:2;3261:6;3257:2;3253:15;3249:24;3246:37;3243:2;;;3296:1;3293;3286:12;3243:2;2540:821;;;;-1:-1:-1;2540:821:94;;-1:-1:-1;3327:2:94;3319:11;;3349:6;2540:821;-1:-1:-1;;;2540:821:94:o;3366:1826::-;3474:6;3505:2;3548;3536:9;3527:7;3523:23;3519:32;3516:2;;;3564:1;3561;3554:12;3516:2;3604:9;3591:23;3633:18;3674:2;3666:6;3663:14;3660:2;;;3690:1;3687;3680:12;3660:2;3728:6;3717:9;3713:22;3703:32;;3773:7;3766:4;3762:2;3758:13;3754:27;3744:2;;3795:1;3792;3785:12;3744:2;3831;3818:16;3854:69;3870:52;3919:2;3870:52;:::i;:::-;3854:69;:::i;:::-;3945:3;3969:2;3964:3;3957:15;3997:2;3992:3;3988:12;3981:19;;4028:2;4024;4020:11;4076:7;4071:2;4065;4062:1;4058:10;4054:2;4050:19;4046:28;4043:41;4040:2;;;4097:1;4094;4087:12;4040:2;4119:1;4129:1033;4143:2;4140:1;4137:9;4129:1033;;;4220:3;4207:17;4256:2;4243:11;4240:19;4237:2;;;4272:1;4269;4262:12;4237:2;4299:20;;4354:2;4346:11;;4342:25;-1:-1:-1;4332:2:94;;4381:1;4378;4371:12;4332:2;4429;4425;4421:11;4408:25;4459:69;4475:52;4524:2;4475:52;:::i;4459:69::-;4554:5;4586:2;4579:5;4572:17;4622:2;4615:5;4611:14;4602:23;;4659:2;4655;4651:11;4711:7;4706:2;4700;4697:1;4693:10;4689:2;4685:19;4681:28;4678:41;4675:2;;;4732:1;4729;4722:12;4675:2;4760:1;4749:12;;4774:283;4790:2;4785:3;4782:11;4774:283;;;4873:5;4860:19;4896:30;4920:5;4896:30;:::i;:::-;4943:20;;4812:1;4803:11;;;;;4989:14;;;;5029;;4774:283;;;-1:-1:-1;5070:18:94;;-1:-1:-1;;;5108:12:94;;;;5140;;;;4161:1;4154:9;4129:1033;;;-1:-1:-1;5181:5:94;;3485:1707;-1:-1:-1;;;;;;;;;3485:1707:94:o;5197:1734::-;5314:6;5345:2;5388;5376:9;5367:7;5363:23;5359:32;5356:2;;;5404:1;5401;5394:12;5356:2;5437:9;5431:16;5470:18;5462:6;5459:30;5456:2;;;5502:1;5499;5492:12;5456:2;5525:22;;5578:4;5570:13;;5566:27;-1:-1:-1;5556:2:94;;5607:1;5604;5597:12;5556:2;5636;5630:9;5659:69;5675:52;5724:2;5675:52;:::i;5659:69::-;5762:15;;;5793:12;;;;5825:11;;;5855:4;5886:11;;;5878:20;;5874:29;;5871:42;-1:-1:-1;5868:2:94;;;5926:1;5923;5916:12;5868:2;5948:1;5939:10;;5969:1;5979:922;5995:2;5990:3;5987:11;5979:922;;;6070:2;6064:3;6055:7;6051:17;6047:26;6044:2;;;6086:1;6083;6076:12;6044:2;6116:22;;:::i;:::-;6171:3;6165:10;6158:5;6151:25;6219:2;6214:3;6210:12;6204:19;6236:32;6260:7;6236:32;:::i;:::-;6288:14;;;6281:31;6335:2;6371:12;;;6365:19;6397:32;6365:19;6397:32;:::i;:::-;6449:14;;;6442:31;6496:2;6532:12;;;6526:19;6558:32;6526:19;6558:32;:::i;:::-;6610:14;;;6603:31;6657:3;6694:12;;;6688:19;6720:32;6688:19;6720:32;:::i;:::-;6772:14;;;6765:31;6809:18;;6847:12;;;;6879;;;;6017:1;6008:11;5979:922;;;-1:-1:-1;6920:5:94;;5325:1606;-1:-1:-1;;;;;;;;;5325:1606:94:o;6936:1937::-;7066:6;7097:2;7140;7128:9;7119:7;7115:23;7111:32;7108:2;;;7156:1;7153;7146:12;7108:2;7189:9;7183:16;7222:18;7214:6;7211:30;7208:2;;;7254:1;7251;7244:12;7208:2;7277:22;;7330:4;7322:13;;7318:27;-1:-1:-1;7308:2:94;;7359:1;7356;7349:12;7308:2;7388;7382:9;7411:69;7427:52;7476:2;7427:52;:::i;7411:69::-;7514:15;;;7545:12;;;;7577:11;;;7607:6;7640:11;;;7632:20;;7628:29;;7625:42;-1:-1:-1;7622:2:94;;;7680:1;7677;7670:12;7622:2;7702:1;7693:10;;7723:1;7733:1110;7749:2;7744:3;7741:11;7733:1110;;;7824:2;7818:3;7809:7;7805:17;7801:26;7798:2;;;7840:1;7837;7830:12;7798:2;7870:22;;:::i;:::-;7919:32;7947:3;7919:32;:::i;:::-;7912:5;7905:47;7988:41;8025:2;8020:3;8016:12;7988:41;:::i;:::-;7983:2;7976:5;7972:14;7965:65;8053:2;8091:42;8129:2;8124:3;8120:12;8091:42;:::i;:::-;8075:14;;;8068:66;8157:2;8195:42;8224:12;;;8195:42;:::i;:::-;8179:14;;;8172:66;8261:3;8300:42;8329:12;;;8300:42;:::i;:::-;8284:14;;;8277:66;8366:3;8405:42;8434:12;;;8405:42;:::i;:::-;8389:14;;;8382:66;8471:3;8510:43;8540:12;;;8510:43;:::i;:::-;8494:14;;;8487:67;8578:3;8618:58;8668:7;8653:13;;;8618:58;:::i;:::-;8601:15;;;8594:83;8732:3;8723:13;;8717:20;8708:6;8697:18;;8690:48;8751:18;;8789:12;;;;8821;;;;7771:1;7762:11;7733:1110;;8878:901;8973:6;9004:2;9047;9035:9;9026:7;9022:23;9018:32;9015:2;;;9063:1;9060;9053:12;9015:2;9096:9;9090:16;9129:18;9121:6;9118:30;9115:2;;;9161:1;9158;9151:12;9115:2;9184:22;;9237:4;9229:13;;9225:27;-1:-1:-1;9215:2:94;;9266:1;9263;9256:12;9215:2;9295;9289:9;9318:69;9334:52;9383:2;9334:52;:::i;9318:69::-;9409:3;9433:2;9428:3;9421:15;9461:2;9456:3;9452:12;9445:19;;9492:2;9488;9484:11;9540:7;9535:2;9529;9526:1;9522:10;9518:2;9514:19;9510:28;9507:41;9504:2;;;9561:1;9558;9551:12;9504:2;9583:1;9574:10;;9593:156;9607:2;9604:1;9601:9;9593:156;;;9664:10;;9652:23;;9625:1;9618:9;;;;;9695:12;;;;9727;;9593:156;;;-1:-1:-1;9768:5:94;8984:795;-1:-1:-1;;;;;;;8984:795:94:o;9784:435::-;9837:3;9875:5;9869:12;9902:6;9897:3;9890:19;9928:4;9957:2;9952:3;9948:12;9941:19;;9994:2;9987:5;9983:14;10015:1;10025:169;10039:6;10036:1;10033:13;10025:169;;;10100:13;;10088:26;;10134:12;;;;10169:15;;;;10061:1;10054:9;10025:169;;;-1:-1:-1;10210:3:94;;9845:374;-1:-1:-1;;;;;9845:374:94:o;10224:459::-;10276:3;10314:5;10308:12;10341:6;10336:3;10329:19;10367:4;10396:2;10391:3;10387:12;10380:19;;10433:2;10426:5;10422:14;10454:1;10464:194;10478:6;10475:1;10472:13;10464:194;;;10543:13;;10558:18;10539:38;10527:51;;10598:12;;;;10633:15;;;;10500:1;10493:9;10464:194;;10957:579;11250:42;11242:6;11238:55;11227:9;11220:74;11330:2;11325;11314:9;11310:18;11303:30;11201:4;11356:55;11407:2;11396:9;11392:18;11384:6;11356:55;:::i;:::-;11459:9;11451:6;11447:22;11442:2;11431:9;11427:18;11420:50;11487:43;11523:6;11515;11487:43;:::i;:::-;11479:51;11210:326;-1:-1:-1;;;;;;11210:326:94:o;11541:903::-;11733:4;11762:2;11802;11791:9;11787:18;11832:2;11821:9;11814:21;11855:6;11890;11884:13;11921:6;11913;11906:22;11959:2;11948:9;11944:18;11937:25;;12021:2;12011:6;12008:1;12004:14;11993:9;11989:30;11985:39;11971:53;;12059:2;12051:6;12047:15;12080:1;12090:325;12104:6;12101:1;12098:13;12090:325;;;12193:66;12181:9;12173:6;12169:22;12165:95;12160:3;12153:108;12284:51;12328:6;12319;12313:13;12284:51;:::i;:::-;12274:61;-1:-1:-1;12393:12:94;;;;12358:15;;;;12126:1;12119:9;12090:325;;;-1:-1:-1;12432:6:94;;11742:702;-1:-1:-1;;;;;;;11742:702:94:o;12449:261::-;12628:2;12617:9;12610:21;12591:4;12648:56;12700:2;12689:9;12685:18;12677:6;12648:56;:::i;12715:849::-;12940:2;12929:9;12922:21;12903:4;12966:56;13018:2;13007:9;13003:18;12995:6;12966:56;:::i;:::-;13041:2;13091:9;13083:6;13079:22;13074:2;13063:9;13059:18;13052:50;13131:6;13125:13;13162:6;13154;13147:22;13187:1;13197:137;13211:6;13208:1;13205:13;13197:137;;;13303:14;;;13299:23;;13293:30;13272:14;;;13268:23;;13261:63;13226:10;;13197:137;;;13352:6;13349:1;13346:13;13343:2;;;13419:1;13414:2;13405:6;13397;13393:19;13389:28;13382:39;13343:2;-1:-1:-1;13480:2:94;13468:15;-1:-1:-1;;13464:88:94;13452:101;;;;13448:110;;12912:652;-1:-1:-1;;;;12912:652:94:o;13569:693::-;13748:2;13800:21;;;13773:18;;;13856:22;;;13719:4;;13935:6;13909:2;13894:18;;13719:4;13969:267;13983:6;13980:1;13977:13;13969:267;;;14058:6;14045:20;14078:30;14102:5;14078:30;:::i;:::-;14144:10;14133:22;14121:35;;14211:15;;;;14176:12;;;;14005:1;13998:9;13969:267;;;-1:-1:-1;14253:3:94;13728:534;-1:-1:-1;;;;;;13728:534:94:o;14267:459::-;14520:2;14509:9;14502:21;14483:4;14546:55;14597:2;14586:9;14582:18;14574:6;14546:55;:::i;:::-;14649:9;14641:6;14637:22;14632:2;14621:9;14617:18;14610:50;14677:43;14713:6;14705;14677:43;:::i;17787:253::-;17859:2;17853:9;17901:4;17889:17;;17936:18;17921:34;;17957:22;;;17918:62;17915:2;;;17983:18;;:::i;:::-;18019:2;18012:22;17833:207;:::o;18045:255::-;18117:2;18111:9;18159:6;18147:19;;18196:18;18181:34;;18217:22;;;18178:62;18175:2;;;18243:18;;:::i;18305:334::-;18376:2;18370:9;18432:2;18422:13;;-1:-1:-1;;18418:86:94;18406:99;;18535:18;18520:34;;18556:22;;;18517:62;18514:2;;;18582:18;;:::i;:::-;18618:2;18611:22;18350:289;;-1:-1:-1;18350:289:94:o;18644:192::-;18713:4;18746:18;18738:6;18735:30;18732:2;;;18768:18;;:::i;:::-;-1:-1:-1;18813:1:94;18809:14;18825:4;18805:25;;18722:114::o;18841:128::-;18881:3;18912:1;18908:6;18905:1;18902:13;18899:2;;;18918:18;;:::i;:::-;-1:-1:-1;18954:9:94;;18889:80::o;18974:236::-;19013:3;19041:18;19086:2;19083:1;19079:10;19116:2;19113:1;19109:10;19147:3;19143:2;19139:12;19134:3;19131:21;19128:2;;;19155:18;;:::i;:::-;19191:13;;19021:189;-1:-1:-1;;;;19021:189:94:o;19215:204::-;19253:3;19289:4;19286:1;19282:12;19321:4;19318:1;19314:12;19356:3;19350:4;19346:14;19341:3;19338:23;19335:2;;;19364:18;;:::i;:::-;19400:13;;19261:158;-1:-1:-1;;;19261:158:94:o;19424:274::-;19464:1;19490;19480:2;;-1:-1:-1;;;19522:1:94;19515:88;19626:4;19623:1;19616:15;19654:4;19651:1;19644:15;19480:2;-1:-1:-1;19683:9:94;;19470:228::o;19703:482::-;19792:1;19835:5;19792:1;19849:330;19870:7;19860:8;19857:21;19849:330;;;19989:4;-1:-1:-1;;19917:77:94;19911:4;19908:87;19905:2;;;19998:18;;:::i;:::-;20048:7;20038:8;20034:22;20031:2;;;20068:16;;;;20031:2;20147:22;;;;20107:15;;;;19849:330;;;19853:3;19767:418;;;;;:::o;20190:140::-;20248:5;20277:47;20318:4;20308:8;20304:19;20298:4;20384:5;20414:8;20404:2;;-1:-1:-1;20455:1:94;20469:5;;20404:2;20503:4;20493:2;;-1:-1:-1;20540:1:94;20554:5;;20493:2;20585:4;20603:1;20598:59;;;;20671:1;20666:130;;;;20578:218;;20598:59;20628:1;20619:10;;20642:5;;;20666:130;20703:3;20693:8;20690:17;20687:2;;;20710:18;;:::i;:::-;-1:-1:-1;;20766:1:94;20752:16;;20781:5;;20578:218;;20880:2;20870:8;20867:16;20861:3;20855:4;20852:13;20848:36;20842:2;20832:8;20829:16;20824:2;20818:4;20815:12;20811:35;20808:77;20805:2;;;-1:-1:-1;20917:19:94;;;20949:5;;20805:2;20996:34;21021:8;21015:4;20996:34;:::i;:::-;21126:6;-1:-1:-1;;21054:79:94;21045:7;21042:92;21039:2;;;21137:18;;:::i;:::-;21175:20;;20394:807;-1:-1:-1;;;20394:807:94:o;21206:228::-;21246:7;21372:1;-1:-1:-1;;21300:74:94;21297:1;21294:81;21289:1;21282:9;21275:17;21271:105;21268:2;;;21379:18;;:::i;:::-;-1:-1:-1;21419:9:94;;21258:176::o;21439:125::-;21479:4;21507:1;21504;21501:8;21498:2;;;21512:18;;:::i;:::-;-1:-1:-1;21549:9:94;;21488:76::o;21569:221::-;21608:4;21637:10;21697;;;;21667;;21719:12;;;21716:2;;;21734:18;;:::i;:::-;21771:13;;21617:173;-1:-1:-1;;;21617:173:94:o;21795:195::-;21833:4;21870;21867:1;21863:12;21902:4;21899:1;21895:12;21927:3;21922;21919:12;21916:2;;;21934:18;;:::i;:::-;21971:13;;;21842:148;-1:-1:-1;;;21842:148:94:o;21995:195::-;22034:3;-1:-1:-1;;22058:5:94;22055:77;22052:2;;;22135:18;;:::i;:::-;-1:-1:-1;22182:1:94;22171:13;;22042:148::o;22195:201::-;22233:3;22261:10;22306:2;22299:5;22295:14;22333:2;22324:7;22321:15;22318:2;;;22339:18;;:::i;:::-;22388:1;22375:15;;22241:155;-1:-1:-1;;;22241:155:94:o;22401:175::-;22438:3;22482:4;22475:5;22471:16;22511:4;22502:7;22499:17;22496:2;;;22519:18;;:::i;:::-;22568:1;22555:15;;22446:130;-1:-1:-1;;22446:130:94:o;22581:184::-;-1:-1:-1;;;22630:1:94;22623:88;22730:4;22727:1;22720:15;22754:4;22751:1;22744:15;22770:184;-1:-1:-1;;;22819:1:94;22812:88;22919:4;22916:1;22909:15;22943:4;22940:1;22933:15;22959:184;-1:-1:-1;;;23008:1:94;23001:88;23108:4;23105:1;23098:15;23132:4;23129:1;23122:15;23148:121;23233:10;23226:5;23222:22;23215:5;23212:33;23202:2;;23259:1;23256;23249:12;23202:2;23192:77;:::o;23274:129::-;23359:18;23352:5;23348:30;23341:5;23338:41;23328:2;;23393:1;23390;23383:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1612600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "TIERS_LENGTH()": "270",
                "calculate(address,uint32[],bytes)": "infinite",
                "drawBuffer()": "infinite",
                "getDrawBuffer()": "infinite",
                "getNormalizedBalancesForDrawIds(address,uint32[])": "infinite",
                "getPrizeDistributionBuffer()": "infinite",
                "prizeDistributionBuffer()": "infinite",
                "ticket()": "infinite"
              },
              "internal": {
                "_calculate(uint256,uint256,bytes32,uint64[] memory,struct IPrizeDistributionBuffer.PrizeDistribution memory)": "infinite",
                "_calculateNumberOfUserPicks(struct IPrizeDistributionBuffer.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFraction(struct IPrizeDistributionBuffer.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFractions(struct IPrizeDistributionBuffer.PrizeDistribution memory,uint8)": "infinite",
                "_calculatePrizesAwardable(uint256[] memory,bytes32,struct IDrawBeacon.Draw memory[] memory,uint64[] memory[] memory,struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory)": "infinite",
                "_calculateTierIndex(uint256,uint256,uint256[] memory)": "infinite",
                "_createBitMasks(struct IPrizeDistributionBuffer.PrizeDistribution memory)": "infinite",
                "_getNormalizedBalancesAt(address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory)": "infinite",
                "_numberOfPrizesForIndex(uint8,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "TIERS_LENGTH()": "f8d0ca4c",
              "calculate(address,uint32[],bytes)": "aaca392e",
              "drawBuffer()": "ce343bb6",
              "getDrawBuffer()": "4019f2d6",
              "getNormalizedBalancesForDrawIds(address,uint32[])": "8045fbcf",
              "getPrizeDistributionBuffer()": "bd97a252",
              "prizeDistributionBuffer()": "0840bbdd",
              "ticket()": "6cc25db7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"_prizeDistributionBuffer\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"prizeDistributionBuffer\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract PrizeDistributor\",\"name\":\"prizeDistributor\",\"type\":\"address\"}],\"name\":\"PrizeDistributorSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"TIERS_LENGTH\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"_pickIndicesForDraws\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getNormalizedBalancesForDrawIds\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"params\":{\"data\":\"The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\",\"drawIds\":\"drawId array for which to calculate prize amounts for.\",\"user\":\"User for which to calculate prize amount.\"},\"returns\":{\"_0\":\"List of awardable prize amounts ordered by drawId.\"}},\"constructor\":{\"params\":{\"_drawBuffer\":\"The address of the draw buffer to push draws to\",\"_prizeDistributionBuffer\":\"PrizeDistributionBuffer address\",\"_ticket\":\"Ticket associated with this DrawCalculator\"}},\"getDrawBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"params\":{\"drawIds\":\"The drawsId to consider\",\"user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}}},\"title\":\"PoolTogether V4 DrawCalculator\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is initialized\"},\"PrizeDistributorSet(address)\":{\"notice\":\"Emitted when the prizeDistributor is set/updated\"}},\"kind\":\"user\",\"methods\":{\"TIERS_LENGTH()\":{\"notice\":\"The tiers array length\"},\"calculate(address,uint32[],bytes)\":{\"notice\":\"Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\"},\"constructor\":{\"notice\":\"Constructor for DrawCalculator\"},\"drawBuffer()\":{\"notice\":\"DrawBuffer address\"},\"getDrawBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"notice\":\"Returns a users balances expressed as a fraction of the total supply over time.\"},\"getPrizeDistributionBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"prizeDistributionBuffer()\":{\"notice\":\"The stored history of draw settings.  Stored as ring buffer.\"},\"ticket()\":{\"notice\":\"Ticket associated with DrawCalculator\"}},\"notice\":\"The DrawCalculator calculates a user's prize by matching a winning random number against their picks. A users picks are generated deterministically based on their address and balance of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc... A user with a higher average weighted balance (during each draw period) will be given a large number of picks to choose from, and thus a higher chance to match the winning numbers.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/DrawCalculator.sol\":\"DrawCalculator\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/DrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 DrawCalculator\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawCalculator calculates a user's prize by matching a winning random number against\\n            their picks. A users picks are generated deterministically based on their address and balance\\n            of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\\n            A user with a higher average weighted balance (during each draw period) will be given a large number of\\n            picks to choose from, and thus a higher chance to match the winning numbers.\\n*/\\ncontract DrawCalculator is IDrawCalculator {\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice Ticket associated with DrawCalculator\\n    ITicket public immutable ticket;\\n\\n    /// @notice The stored history of draw settings.  Stored as ring buffer.\\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\\n\\n    /// @notice The tiers array length\\n    uint8 public constant TIERS_LENGTH = 16;\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Constructor for DrawCalculator\\n    /// @param _ticket Ticket associated with this DrawCalculator\\n    /// @param _drawBuffer The address of the draw buffer to push draws to\\n    /// @param _prizeDistributionBuffer PrizeDistributionBuffer address\\n    constructor(\\n        ITicket _ticket,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionBuffer _prizeDistributionBuffer\\n    ) {\\n        require(address(_ticket) != address(0), \\\"DrawCalc/ticket-not-zero\\\");\\n        require(address(_prizeDistributionBuffer) != address(0), \\\"DrawCalc/pdb-not-zero\\\");\\n        require(address(_drawBuffer) != address(0), \\\"DrawCalc/dh-not-zero\\\");\\n\\n        ticket = _ticket;\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionBuffer = _prizeDistributionBuffer;\\n\\n        emit Deployed(_ticket, _drawBuffer, _prizeDistributionBuffer);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawCalculator\\n    function calculate(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _pickIndicesForDraws\\n    ) external view override returns (uint256[] memory, bytes memory) {\\n        uint64[][] memory pickIndices = abi.decode(_pickIndicesForDraws, (uint64 [][]));\\n        require(pickIndices.length == _drawIds.length, \\\"DrawCalc/invalid-pick-indices-length\\\");\\n\\n        // READ list of IDrawBeacon.Draw using the drawIds from drawBuffer\\n        IDrawBeacon.Draw[] memory draws = drawBuffer.getDraws(_drawIds);\\n\\n        // READ list of IPrizeDistributionBuffer.PrizeDistribution using the drawIds\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\\n            .getPrizeDistributions(_drawIds);\\n\\n        // The userBalances are fractions representing their portion of the liquidity for a draw.\\n        uint256[] memory userBalances = _getNormalizedBalancesAt(_user, draws, _prizeDistributions);\\n\\n        // The users address is hashed once.\\n        bytes32 _userRandomNumber = keccak256(abi.encodePacked(_user));\\n\\n        return _calculatePrizesAwardable(\\n                userBalances,\\n                _userRandomNumber,\\n                draws,\\n                pickIndices,\\n                _prizeDistributions\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getDrawBuffer() external view override returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getPrizeDistributionBuffer()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer)\\n    {\\n        return prizeDistributionBuffer;\\n    }\\n\\n    /// @inheritdoc IDrawCalculator\\n    function getNormalizedBalancesForDrawIds(address _user, uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        IDrawBeacon.Draw[] memory _draws = drawBuffer.getDraws(_drawIds);\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions = prizeDistributionBuffer\\n            .getPrizeDistributions(_drawIds);\\n\\n        return _getNormalizedBalancesAt(_user, _draws, _prizeDistributions);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates the prizes awardable for each Draw passed.\\n     * @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\\n     * @param _userRandomNumber       Random number of the user to consider over draws\\n     * @param _draws                  List of Draws\\n     * @param _pickIndicesForDraws    Pick indices for each Draw\\n     * @param _prizeDistributions     PrizeDistribution for each Draw\\n\\n     */\\n    function _calculatePrizesAwardable(\\n        uint256[] memory _normalizedUserBalances,\\n        bytes32 _userRandomNumber,\\n        IDrawBeacon.Draw[] memory _draws,\\n        uint64[][] memory _pickIndicesForDraws,\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory prizesAwardable, bytes memory prizeCounts) {\\n        \\n        uint256[] memory _prizesAwardable = new uint256[](_normalizedUserBalances.length);\\n        uint256[][] memory _prizeCounts = new uint256[][](_normalizedUserBalances.length);\\n\\n        uint64 timeNow = uint64(block.timestamp);\\n\\n\\n\\n        // calculate prizes awardable for each Draw passed\\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\\n\\n            require(timeNow < _draws[drawIndex].timestamp + _prizeDistributions[drawIndex].expiryDuration, \\\"DrawCalc/draw-expired\\\");\\n\\n            uint64 totalUserPicks = _calculateNumberOfUserPicks(\\n                _prizeDistributions[drawIndex],\\n                _normalizedUserBalances[drawIndex]\\n            );\\n\\n            (_prizesAwardable[drawIndex], _prizeCounts[drawIndex]) = _calculate(\\n                _draws[drawIndex].winningRandomNumber,\\n                totalUserPicks,\\n                _userRandomNumber,\\n                _pickIndicesForDraws[drawIndex],\\n                _prizeDistributions[drawIndex]\\n            );\\n        }\\n        prizeCounts = abi.encode(_prizeCounts);\\n        prizesAwardable = _prizesAwardable;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\\n     * @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\\n     * @param _prizeDistribution The PrizeDistribution to consider\\n     * @param _normalizedUserBalance The normalized user balances to consider\\n     * @return The number of picks a user gets for a Draw\\n     */\\n    function _calculateNumberOfUserPicks(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint256 _normalizedUserBalance\\n    ) internal pure returns (uint64) {\\n        return uint64((_normalizedUserBalance * _prizeDistribution.numberOfPicks) / 1 ether);\\n    }\\n\\n    /**\\n     * @notice Calculates the normalized balance of a user against the total supply for timestamps\\n     * @param _user The user to consider\\n     * @param _draws The draws we are looking at\\n     * @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\\n     * @return An array of normalized balances\\n     */\\n    function _getNormalizedBalancesAt(\\n        address _user,\\n        IDrawBeacon.Draw[] memory _draws,\\n        IPrizeDistributionBuffer.PrizeDistribution[] memory _prizeDistributions\\n    ) internal view returns (uint256[] memory) {\\n        uint256 drawsLength = _draws.length;\\n        uint64[] memory _timestampsWithStartCutoffTimes = new uint64[](drawsLength);\\n        uint64[] memory _timestampsWithEndCutoffTimes = new uint64[](drawsLength);\\n\\n        // generate timestamps with draw cutoff offsets included\\n        for (uint32 i = 0; i < drawsLength; i++) {\\n            unchecked {\\n                _timestampsWithStartCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].startTimestampOffset;\\n                _timestampsWithEndCutoffTimes[i] =\\n                    _draws[i].timestamp - _prizeDistributions[i].endTimestampOffset;\\n            }\\n        }\\n\\n        uint256[] memory balances = ticket.getAverageBalancesBetween(\\n            _user,\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory totalSupplies = ticket.getAverageTotalSuppliesBetween(\\n            _timestampsWithStartCutoffTimes,\\n            _timestampsWithEndCutoffTimes\\n        );\\n\\n        uint256[] memory normalizedBalances = new uint256[](drawsLength);\\n\\n        // divide balances by total supplies (normalize)\\n        for (uint256 i = 0; i < drawsLength; i++) {\\n            if(totalSupplies[i] == 0){\\n                normalizedBalances[i] = 0;\\n            }\\n            else {\\n                normalizedBalances[i] = (balances[i] * 1 ether) / totalSupplies[i];\\n            }\\n        }\\n\\n        return normalizedBalances;\\n    }\\n\\n    /**\\n     * @notice Calculates the prize amount for a PrizeDistribution over given picks\\n     * @param _winningRandomNumber Draw's winningRandomNumber\\n     * @param _totalUserPicks      number of picks the user gets for the Draw\\n     * @param _userRandomNumber    users randomNumber for that draw\\n     * @param _picks               users picks for that draw\\n     * @param _prizeDistribution   PrizeDistribution for that draw\\n     * @return prize (if any), prizeCounts (if any)\\n     */\\n    function _calculate(\\n        uint256 _winningRandomNumber,\\n        uint256 _totalUserPicks,\\n        bytes32 _userRandomNumber,\\n        uint64[] memory _picks,\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\\n    ) internal pure returns (uint256 prize, uint256[] memory prizeCounts) {\\n        \\n        // create bitmasks for the PrizeDistribution\\n        uint256[] memory masks = _createBitMasks(_prizeDistribution);\\n        uint32 picksLength = uint32(_picks.length);\\n        uint256[] memory _prizeCounts = new uint256[](_prizeDistribution.tiers.length);\\n\\n        uint8 maxWinningTierIndex = 0;\\n\\n        require(\\n            picksLength <= _prizeDistribution.maxPicksPerUser,\\n            \\\"DrawCalc/exceeds-max-user-picks\\\"\\n        );\\n\\n        // for each pick, find number of matching numbers and calculate prize distributions index\\n        for (uint32 index = 0; index < picksLength; index++) {\\n            require(_picks[index] < _totalUserPicks, \\\"DrawCalc/insufficient-user-picks\\\");\\n\\n            if (index > 0) {\\n                require(_picks[index] > _picks[index - 1], \\\"DrawCalc/picks-ascending\\\");\\n            }\\n\\n            // hash the user random number with the pick value\\n            uint256 randomNumberThisPick = uint256(\\n                keccak256(abi.encode(_userRandomNumber, _picks[index]))\\n            );\\n\\n            uint8 tiersIndex = _calculateTierIndex(\\n                randomNumberThisPick,\\n                _winningRandomNumber,\\n                masks\\n            );\\n\\n            // there is prize for this tier index\\n            if (tiersIndex < TIERS_LENGTH) {\\n                if (tiersIndex > maxWinningTierIndex) {\\n                    maxWinningTierIndex = tiersIndex;\\n                }\\n                _prizeCounts[tiersIndex]++;\\n            }\\n        }\\n\\n        // now calculate prizeFraction given prizeCounts\\n        uint256 prizeFraction = 0;\\n        uint256[] memory prizeTiersFractions = _calculatePrizeTierFractions(\\n            _prizeDistribution,\\n            maxWinningTierIndex\\n        );\\n\\n        // multiple the fractions by the prizeCounts and add them up\\n        for (\\n            uint256 prizeCountIndex = 0;\\n            prizeCountIndex <= maxWinningTierIndex;\\n            prizeCountIndex++\\n        ) {\\n            if (_prizeCounts[prizeCountIndex] > 0) {\\n                prizeFraction +=\\n                    prizeTiersFractions[prizeCountIndex] *\\n                    _prizeCounts[prizeCountIndex];\\n            }\\n        }\\n\\n        // return the absolute amount of prize awardable\\n        // div by 1e9 as prize tiers are base 1e9\\n        prize = (prizeFraction * _prizeDistribution.prize) / 1e9; \\n        prizeCounts = _prizeCounts;\\n    }\\n\\n    ///@notice Calculates the tier index given the random numbers and masks\\n    ///@param _randomNumberThisPick users random number for this Pick\\n    ///@param _winningRandomNumber The winning number for this draw\\n    ///@param _masks The pre-calculate bitmasks for the prizeDistributions\\n    ///@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)\\n    function _calculateTierIndex(\\n        uint256 _randomNumberThisPick,\\n        uint256 _winningRandomNumber,\\n        uint256[] memory _masks\\n    ) internal pure returns (uint8) {\\n        uint8 numberOfMatches = 0;\\n        uint8 masksLength = uint8(_masks.length);\\n\\n        // main number matching loop\\n        for (uint8 matchIndex = 0; matchIndex < masksLength; matchIndex++) {\\n            uint256 mask = _masks[matchIndex];\\n\\n            if ((_randomNumberThisPick & mask) != (_winningRandomNumber & mask)) {\\n                // there are no more sequential matches since this comparison is not a match\\n                if (masksLength == numberOfMatches) {\\n                    return 0;\\n                } else {\\n                    return masksLength - numberOfMatches;\\n                }\\n            }\\n\\n            // else there was a match\\n            numberOfMatches++;\\n        }\\n\\n        return masksLength - numberOfMatches;\\n    }\\n\\n    /**\\n     * @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\\n     * @param _prizeDistribution The PrizeDistribution to use to calculate the masks\\n     * @return An array of bitmasks\\n     */\\n    function _createBitMasks(IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution)\\n        internal\\n        pure\\n        returns (uint256[] memory)\\n    {\\n        uint256[] memory masks = new uint256[](_prizeDistribution.matchCardinality);\\n        masks[0] =  (2**_prizeDistribution.bitRangeSize) - 1;\\n\\n        for (uint8 maskIndex = 1; maskIndex < _prizeDistribution.matchCardinality; maskIndex++) {\\n            // shift mask bits to correct position and insert in result mask array\\n            masks[maskIndex] = masks[maskIndex - 1] << _prizeDistribution.bitRangeSize;\\n        }\\n\\n        return masks;\\n    }\\n\\n    /**\\n     * @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param _prizeTierIndex Index of the prize tiers array to calculate\\n     * @return returns the fraction of the total prize (fixed point 9 number)\\n     */\\n    function _calculatePrizeTierFraction(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint256 _prizeTierIndex\\n    ) internal pure returns (uint256) {\\n         // get the prize fraction at that index\\n        uint256 prizeFraction = _prizeDistribution.tiers[_prizeTierIndex];\\n\\n        // calculate number of prizes for that index\\n        uint256 numberOfPrizesForIndex = _numberOfPrizesForIndex(\\n            _prizeDistribution.bitRangeSize,\\n            _prizeTierIndex\\n        );\\n\\n        return prizeFraction / numberOfPrizesForIndex;\\n    }\\n\\n    /**\\n     * @notice Generates an array of prize tiers fractions\\n     * @param _prizeDistribution prizeDistribution struct for Draw\\n     * @param maxWinningTierIndex Max length of the prize tiers array\\n     * @return returns an array of prize tiers fractions\\n     */\\n    function _calculatePrizeTierFractions(\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution,\\n        uint8 maxWinningTierIndex\\n    ) internal pure returns (uint256[] memory) {\\n        uint256[] memory prizeDistributionFractions = new uint256[](\\n            maxWinningTierIndex + 1\\n        );\\n\\n        for (uint8 i = 0; i <= maxWinningTierIndex; i++) {\\n            prizeDistributionFractions[i] = _calculatePrizeTierFraction(\\n                _prizeDistribution,\\n                i\\n            );\\n        }\\n\\n        return prizeDistributionFractions;\\n    }\\n\\n    /**\\n     * @notice Calculates the number of prizes for a given prizeDistributionIndex\\n     * @param _bitRangeSize Bit range size for Draw\\n     * @param _prizeTierIndex Index of the prize tier array to calculate\\n     * @return returns the fraction of the total prize (base 1e18)\\n     */\\n    function _numberOfPrizesForIndex(uint8 _bitRangeSize, uint256 _prizeTierIndex)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_prizeTierIndex > 0) {\\n            return ( 1 << _bitRangeSize * _prizeTierIndex ) - ( 1 << _bitRangeSize * (_prizeTierIndex - 1) );\\n        } else {\\n            return 1;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x8e01b6d3a6bf05606fdfdeec93c4445c0639a8966d88f182163d4d14a6510c82\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is initialized"
              },
              "PrizeDistributorSet(address)": {
                "notice": "Emitted when the prizeDistributor is set/updated"
              }
            },
            "kind": "user",
            "methods": {
              "TIERS_LENGTH()": {
                "notice": "The tiers array length"
              },
              "calculate(address,uint32[],bytes)": {
                "notice": "Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor."
              },
              "constructor": {
                "notice": "Constructor for DrawCalculator"
              },
              "drawBuffer()": {
                "notice": "DrawBuffer address"
              },
              "getDrawBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "notice": "Returns a users balances expressed as a fraction of the total supply over time."
              },
              "getPrizeDistributionBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "prizeDistributionBuffer()": {
                "notice": "The stored history of draw settings.  Stored as ring buffer."
              },
              "ticket()": {
                "notice": "Ticket associated with DrawCalculator"
              }
            },
            "notice": "The DrawCalculator calculates a user's prize by matching a winning random number against their picks. A users picks are generated deterministically based on their address and balance of tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc... A user with a higher average weighted balance (during each draw period) will be given a large number of picks to choose from, and thus a higher chance to match the winning numbers.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol": {
        "PrizeDistributionBuffer": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "uint8",
                  "name": "_cardinality",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "cardinality",
                  "type": "uint8"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "PrizeDistributionSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "getPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getPrizeDistributions",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "pushPrizeDistribution",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "setPrizeDistribution",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(uint8)": {
                "params": {
                  "cardinality": "The maximum number of records in the buffer before they begin to expire."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_cardinality": "Cardinality of the `bufferMetadata`",
                  "_owner": "Address of the PrizeDistributionBuffer owner"
                }
              },
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getNewestPrizeDistribution()": {
                "details": "Uses nextDrawIndex to calculate the most recently added PrizeDistribution.",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getOldestPrizeDistribution()": {
                "details": "Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getPrizeDistribution(uint32)": {
                "params": {
                  "drawId": "drawId"
                },
                "returns": {
                  "_0": "prizeDistribution"
                }
              },
              "getPrizeDistributionCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.",
                "returns": {
                  "_0": "Number of PrizeDistributions stored in the prize distributions ring buffer."
                }
              },
              "getPrizeDistributions(uint32[])": {
                "params": {
                  "drawIds": "drawIds to get PrizeDistribution for"
                },
                "returns": {
                  "_0": "prizeDistributionList"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Only callable by the owner or manager",
                "params": {
                  "drawId": "Draw ID linked to PrizeDistribution parameters",
                  "prizeDistribution": "PrizeDistribution parameters struct"
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.",
                "returns": {
                  "_0": "drawId"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "stateVariables": {
              "MAX_CARDINALITY": {
                "details": "even with daily draws, 256 will give us over 8 months of history."
              },
              "TIERS_CEILING": {
                "details": "It's fixed point 9 because 1e9 is the largest \"1\" that fits into 2**32"
              }
            },
            "title": "PoolTogether V4 PrizeDistributionBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_5831": {
                  "entryPoint": null,
                  "id": 5831,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 162,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_uint8_fromMemory": {
                  "entryPoint": 242,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:653:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "110:352:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "156:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "158:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "158:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "140:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "127:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "127:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "152:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "123:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "120:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "181:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "185:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "232:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "243:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "258:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "263:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "254:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "254:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "267:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "250:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "250:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "239:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "239:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "229:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "229:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "222:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "222:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "219:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "298:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "308:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "322:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "358:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "343:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "343:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "337:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "337:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "326:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "414:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "423:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "426:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "416:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "416:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "416:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "384:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "397:7:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "406:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "393:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "393:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:39:94"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "439:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "449:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "439:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "68:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "79:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "91:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "99:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:448:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "564:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "574:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "586:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "597:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "582:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "582:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "616:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "631:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "639:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "627:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "627:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "609:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "609:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "609:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "533:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "544:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "555:4:94",
                            "type": ""
                          }
                        ],
                        "src": "467:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_uint8_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xff))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620020b2380380620020b28339810160408190526200003491620000f2565b816200004081620000a2565b50610403805463ffffffff60401b191660ff8316680100000000000000008102919091179091556040519081527f7da7688769fade6088b3de366e63c95090bc5b0db6e9b43f043dee741d7544fe9060200160405180910390a1505062000141565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200010657600080fd5b82516001600160a01b03811681146200011e57600080fd5b602084015190925060ff811681146200013657600080fd5b809150509250929050565b611f6180620001516000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101f3578063d30a5daf14610206578063e30c397814610226578063f2fde38b1461023757600080fd5b8063715018a6146101ac5780638da5cb5b146101b4578063caeef7ec146101c5578063ce336ce9146101e057600080fd5b806324c21446116100d357806324c21446146101555780633cd8e2d51461015d578063481c6a751461017d5780634e71e0c8146101a257600080fd5b80631124e1dc146100fa57806321e98ad9146101225780632439093a1461013f575b600080fd5b61010d610108366004611822565b61024a565b60405190151581526020015b60405180910390f35b61012a610317565b60405163ffffffff9091168152602001610119565b61014761039e565b604051610119929190611adb565b610147610671565b61017061016b366004611805565b610804565b6040516101199190611acc565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610119565b6101aa610852565b005b6101aa6108e0565b6000546001600160a01b031661018a565b6104035468010000000000000000900463ffffffff1661012a565b61012a6101ee366004611822565b610955565b61010d610201366004611760565b610a84565b610219610214366004611790565b610afd565b60405161011991906119b9565b6001546001600160a01b031661018a565b6101aa610245366004611760565b610c08565b60003361025f6002546001600160a01b031690565b6001600160a01b0316148061028d5750336102826000546001600160a01b031690565b6001600160a01b0316145b6103045760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8383610d44565b90505b92915050565b604080516060810182526104035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161036357600091505090565b6020810151600363ffffffff8216610100811061038257610382611c7d565b6004020154610100900460ff1615610311575060400151919050565b6103a66116cd565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009160039061010081106103fb576103fb611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116104bf5750505092845250505060039190910154602090910152815190935063ffffffff166105275760009150509091565b825160ff1661065f5760408051610120810182526003805460ff8082168452610100820416602084015263ffffffff62010000820481168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a08401526cffffffffffffffffffffffffff72010000000000000000000000000000000000009091041660c083015282516102008101938490529192909160e0840191600490601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105ea575050509284525050506003919091015460209182015282015182519194509061064e906001611b16565b6106589190611b76565b9150509091565b6040810151815161064e906001611b16565b6106796116cd565b604080516060810182526104035463ffffffff808216808452640100000000830482166020850152680100000000000000009092048116938301939093526000926003916106ca9184919061119916565b63ffffffff1661010081106106e1576106e1611c7d565b8251604080516101208101825260049390930293909301805460ff8082168552610100820416602085015262010000810463ffffffff9081168587015266010000000000008204811660608601526a01000000000000000000008204811660808601526e01000000000000000000000000000082041660a0850152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c084015283516102008101948590529093919291849160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116107aa57905050505050508152602001600382015481525050915092509250509091565b61080c6116cd565b604080516060810182526104035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261031190836112c9565b6001546001600160a01b031633146108ac5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102fb565b6001546108c1906001600160a01b031661140f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108f36000546001600160a01b031690565b6001600160a01b0316146109495760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b610953600061140f565b565b60003361096a6000546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff80821683526401000000008204811660208401526801000000000000000090910481169282019290925290600090610a0f908390879061119916565b90508360038263ffffffff166101008110610a2c57610a2c611c7d565b60040201610a3a8282611cc3565b9050508463ffffffff167f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f685604051610a739190611a08565b60405180910390a250929392505050565b600033610a996000546001600160a01b031690565b6001600160a01b031614610aef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6103118261146c565b919050565b60408051606081810183526104035463ffffffff8082168452640100000000820481166020850152680100000000000000009091041692820192909252829060008267ffffffffffffffff811115610b5757610b57611c93565b604051908082528060200260200182016040528015610b9057816020015b610b7d6116cd565b815260200190600190039081610b755790505b50905060005b83811015610bfe57610bce83888884818110610bb457610bb4611c7d565b9050602002016020810190610bc99190611805565b6112c9565b828281518110610be057610be0611c7d565b60200260200101819052508080610bf690611c04565b915050610b96565b5095945050505050565b33610c1b6000546001600160a01b031690565b6001600160a01b031614610c715760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6001600160a01b038116610ced5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102fb565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6000808363ffffffff1611610d9b5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d69642d67742d30000000000000000000000060448201526064016102fb565b6000610dad6040840160208501611883565b60ff1611610dfd5760405162461bcd60e51b815260206004820152601e60248201527f4472617743616c632f6d6174636843617264696e616c6974792d67742d30000060448201526064016102fb565b610e0d6040830160208401611883565b610e1c9060ff16610100611b3e565b61ffff16610e2d6020840184611883565b60ff161115610e7e5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f62697452616e676553697a652d746f6f2d6c617267650060448201526064016102fb565b6000610e8d6020840184611883565b60ff1611610edd5760405162461bcd60e51b815260206004820152601a60248201527f4472617743616c632f62697452616e676553697a652d67742d3000000000000060448201526064016102fb565b6000610eef60a0840160808501611805565b63ffffffff1611610f425760405162461bcd60e51b815260206004820152601d60248201527f4472617743616c632f6d61785069636b73506572557365722d67742d3000000060448201526064016102fb565b6000610f5460c0840160a08501611805565b63ffffffff1611610fa75760405162461bcd60e51b815260206004820152601c60248201527f4472617743616c632f6578706972794475726174696f6e2d67742d300000000060448201526064016102fb565b60006010815b818110156110075760008560e0018260108110610fcc57610fcc611c7d565b602002016020810190610fdf9190611805565b63ffffffff169050610ff18185611afe565b9350508080610fff90611c04565b915050610fad565b50633b9aca0082111561105c5760405162461bcd60e51b815260206004820152601660248201527f4472617743616c632f74696572732d67742d313030250000000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290859060039061010081106110b1576110b1611c7d565b600402016110bf8282611cc3565b506110cc90508187611558565b80516104038054602084015160409485015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009094169582169590951792909217169290921790559051908716907f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f690611185908890611a08565b60405180910390a250600195945050505050565b60006111a483611643565b80156111c05750826000015163ffffffff168263ffffffff1611155b61120c5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064016102fb565b825160009061121c908490611b76565b9050836040015163ffffffff168163ffffffff161061127d5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016102fb565b600061129d856020015163ffffffff16866040015163ffffffff1661166b565b90506112c08163ffffffff168363ffffffff16876040015163ffffffff16611699565b95945050505050565b6112d16116cd565b60036112dd8484611199565b63ffffffff1661010081106112f4576112f4611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113b857905050505050508152602001600382015481525050905092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156114f55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102fb565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604080516060810182526000808252602082018190529181019190915261157e83611643565b15806115a157508251611592906001611b16565b63ffffffff168263ffffffff16145b6115ed5760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016102fb565b60405180606001604052808363ffffffff168152602001611622856020015163ffffffff16866040015163ffffffff166116b1565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156116645750815163ffffffff16155b1592915050565b60008161167a57506000610311565b61030e60016116898486611afe565b6116939190611b5f565b836116c1565b60006116a9836116898487611afe565b949350505050565b600061030e611693846001611afe565b600061030e8284611c3d565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e08101611713611720565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b8035610af881611eec565b8035610af881611f0a565b8035610af881611f1c565b60006020828403121561177257600080fd5b81356001600160a01b038116811461178957600080fd5b9392505050565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208260051b85010111156117f357600080fd5b60209290920196919550909350505050565b60006020828403121561181757600080fd5b813561178981611f0a565b60008082840361032081121561183757600080fd5b833561184281611f0a565b92506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561187557600080fd5b506020830190509250929050565b60006020828403121561189557600080fd5b813561178981611f1c565b8060005b60108110156118d35781356118b881611f0a565b63ffffffff16845260209384019391909101906001016118a4565b50505050565b8060005b60108110156118d357815163ffffffff168452602093840193909101906001016118dd565b60ff815116825260ff6020820151166020830152604081015161192d604084018263ffffffff169052565b506060810151611945606084018263ffffffff169052565b50608081015161195d608084018263ffffffff169052565b5060a081015161197560a084018263ffffffff169052565b5060c081015161199660c08401826cffffffffffffffffffffffffff169052565b5060e08101516119a960e08401826118d9565b5061010001516102e09190910152565b6020808252825182820181905260009190848201906040850190845b818110156119fc576119e8838551611902565b9284019261030092909201916001016119d5565b50909695505050505050565b61030081018235611a1881611f1c565b60ff168252611a2960208401611755565b60ff166020830152611a3d6040840161174a565b63ffffffff166040830152611a546060840161174a565b63ffffffff166060830152611a6b6080840161174a565b63ffffffff166080830152611a8260a0840161174a565b63ffffffff1660a0830152611a9960c0840161173f565b6cffffffffffffffffffffffffff1660c0830152611abd60e08084019085016118a0565b6102e092830135919092015290565b61030081016103118284611902565b6103208101611aea8285611902565b63ffffffff83166103008301529392505050565b60008219821115611b1157611b11611c51565b500190565b600063ffffffff808316818516808303821115611b3557611b35611c51565b01949350505050565b600061ffff80841680611b5357611b53611c67565b92169190910492915050565b600082821015611b7157611b71611c51565b500390565b600063ffffffff83811690831681811015611b9357611b93611c51565b039392505050565b81816000805b6010811015611bfc578335611bb581611f0a565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611bf457600091506001830192505b600101611ba1565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c3657611c36611c51565b5060010190565b600082611c4c57611c4c611c67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561031181611eec565b6000813561031181611f0a565b8135611cce81611f1c565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611d0b81611f1c565b61ff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000841617178455505050611d84611d4d60408401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff1660109190911b65ffffffff000016178255565b611dce611d9360608401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff1660309190911b69ffffffff00000000000016178255565b611e1c611ddd60808401611cb6565b82547fffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff1660509190911b6dffffffff0000000000000000000016178255565b611e6e611e2b60a08401611cb6565b82547fffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff1660709190911b71ffffffff000000000000000000000000000016178255565b611ecd611e7d60c08401611ca9565b82547fff00000000000000000000000000ffffffffffffffffffffffffffffffffffff1660909190911b7effffffffffffffffffffffffff00000000000000000000000000000000000016178255565b611edd60e0830160018301611b9b565b6102e082013560038201555050565b6cffffffffffffffffffffffffff81168114611f0757600080fd5b50565b63ffffffff81168114611f0757600080fd5b60ff81168114611f0757600080fdfea26469706673582212208ae8d6d492eb3bd8f7c57c03c8534092542c241148344b2fb5acb1e8e53f761f64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x20B2 CODESIZE SUB DUP1 PUSH3 0x20B2 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0xF2 JUMP JUMPDEST DUP2 PUSH3 0x40 DUP2 PUSH3 0xA2 JUMP JUMPDEST POP PUSH2 0x403 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x40 SHL NOT AND PUSH1 0xFF DUP4 AND PUSH9 0x10000000000000000 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x7DA7688769FADE6088B3DE366E63C95090BC5B0DB6E9B43F043DEE741D7544FE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP PUSH3 0x141 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x106 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x136 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1F61 DUP1 PUSH3 0x151 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1F3 JUMPI DUP1 PUSH4 0xD30A5DAF EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x226 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xCE336CE9 EQ PUSH2 0x1E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x24C21446 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x24C21446 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x3CD8E2D5 EQ PUSH2 0x15D JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1124E1DC EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x21E98AD9 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x2439093A EQ PUSH2 0x13F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12A PUSH2 0x317 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x147 PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP3 SWAP2 SWAP1 PUSH2 0x1ADB JUMP JUMPDEST PUSH2 0x147 PUSH2 0x671 JUMP JUMPDEST PUSH2 0x170 PUSH2 0x16B CALLDATASIZE PUSH1 0x4 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1ACC JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x852 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1AA PUSH2 0x8E0 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x403 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x12A JUMP JUMPDEST PUSH2 0x12A PUSH2 0x1EE CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x955 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x201 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x219 PUSH2 0x214 CALLDATASIZE PUSH1 0x4 PUSH2 0x1790 JUMP JUMPDEST PUSH2 0xAFD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x19B9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xC08 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x25F PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x28D JUMPI POP CALLER PUSH2 0x282 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x304 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E DUP4 DUP4 PUSH2 0xD44 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x363 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x311 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A6 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x3FB JUMPI PUSH2 0x3FB PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x4BF JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE DUP2 MLOAD SWAP1 SWAP4 POP PUSH4 0xFFFFFFFF AND PUSH2 0x527 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST DUP3 MLOAD PUSH1 0xFF AND PUSH2 0x65F JUMPI PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH4 0xFFFFFFFF PUSH3 0x10000 DUP3 DIV DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH19 0x1000000000000000000000000000000000000 SWAP1 SWAP2 DIV AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x4 SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x5EA JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP3 ADD MLOAD DUP3 MLOAD SWAP2 SWAP5 POP SWAP1 PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x658 SWAP2 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x679 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 PUSH1 0x3 SWAP2 PUSH2 0x6CA SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x6E1 JUMPI PUSH2 0x6E1 PUSH2 0x1C7D JUMP JUMPDEST DUP3 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP4 SWAP1 SWAP4 MUL SWAP4 SWAP1 SWAP4 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP6 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP6 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP6 DUP8 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP7 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP6 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP5 ADD MSTORE DUP4 MLOAD PUSH2 0x200 DUP2 ADD SWAP5 DUP6 SWAP1 MSTORE SWAP1 SWAP4 SWAP2 SWAP3 SWAP2 DUP5 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x7AA JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP2 POP SWAP3 POP SWAP3 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x80C PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x311 SWAP1 DUP4 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x8AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x8C1 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x140F JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x8F3 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x949 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x953 PUSH1 0x0 PUSH2 0x140F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x96A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV DUP2 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH2 0xA0F SWAP1 DUP4 SWAP1 DUP8 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA2C JUMPI PUSH2 0xA2C PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0xA3A DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST SWAP1 POP POP DUP5 PUSH4 0xFFFFFFFF AND PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xA73 SWAP2 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP SWAP3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA99 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAEF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x311 DUP3 PUSH2 0x146C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP5 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB57 JUMPI PUSH2 0xB57 PUSH2 0x1C93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB90 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xB7D PUSH2 0x16CD JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xB75 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBFE JUMPI PUSH2 0xBCE DUP4 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xBB4 JUMPI PUSH2 0xBB4 PUSH2 0x1C7D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xBC9 SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x12C9 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBE0 JUMPI PUSH2 0xBE0 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0xBF6 SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xB96 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0xC1B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH4 0xFFFFFFFF AND GT PUSH2 0xD9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D69642D67742D300000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDAD PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xDFD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D6174636843617264696E616C6974792D67742D300000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0xE0D PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH2 0xE1C SWAP1 PUSH1 0xFF AND PUSH2 0x100 PUSH2 0x1B3E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0xE2D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT ISZERO PUSH2 0xE7E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D746F6F2D6C6172676500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE8D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xEDD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D67742D30000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEEF PUSH1 0xA0 DUP5 ADD PUSH1 0x80 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xF42 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D61785069636B73506572557365722D67742D30000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF54 PUSH1 0xC0 DUP5 ADD PUSH1 0xA0 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xFA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6578706972794475726174696F6E2D67742D3000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1007 JUMPI PUSH1 0x0 DUP6 PUSH1 0xE0 ADD DUP3 PUSH1 0x10 DUP2 LT PUSH2 0xFCC JUMPI PUSH2 0xFCC PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xFDF SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xFF1 DUP2 DUP6 PUSH2 0x1AFE JUMP JUMPDEST SWAP4 POP POP DUP1 DUP1 PUSH2 0xFFF SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xFAD JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP3 GT ISZERO PUSH2 0x105C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F74696572732D67742D3130302500000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP6 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x10B1 JUMPI PUSH2 0x10B1 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0x10BF DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST POP PUSH2 0x10CC SWAP1 POP DUP2 DUP8 PUSH2 0x1558 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x403 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP5 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP5 AND SWAP6 DUP3 AND SWAP6 SWAP1 SWAP6 OR SWAP3 SWAP1 SWAP3 OR AND SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 DUP8 AND SWAP1 PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 SWAP1 PUSH2 0x1185 SWAP1 DUP9 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11A4 DUP4 PUSH2 0x1643 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x11C0 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x120C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x121C SWAP1 DUP5 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x129D DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x166B JUMP JUMPDEST SWAP1 POP PUSH2 0x12C0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1699 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x12D1 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x3 PUSH2 0x12DD DUP5 DUP5 PUSH2 0x1199 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x12F4 JUMPI PUSH2 0x12F4 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x13B8 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x14F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x157E DUP4 PUSH2 0x1643 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x15A1 JUMPI POP DUP3 MLOAD PUSH2 0x1592 SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x15ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1622 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x16B1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x1664 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x167A JUMPI POP PUSH1 0x0 PUSH2 0x311 JUMP JUMPDEST PUSH2 0x30E PUSH1 0x1 PUSH2 0x1689 DUP5 DUP7 PUSH2 0x1AFE JUMP JUMPDEST PUSH2 0x1693 SWAP2 SWAP1 PUSH2 0x1B5F JUMP JUMPDEST DUP4 PUSH2 0x16C1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16A9 DUP4 PUSH2 0x1689 DUP5 DUP8 PUSH2 0x1AFE JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E PUSH2 0x1693 DUP5 PUSH1 0x1 PUSH2 0x1AFE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E DUP3 DUP5 PUSH2 0x1C3D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xE0 DUP2 ADD PUSH2 0x1713 PUSH2 0x1720 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1EEC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1772 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1789 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x17DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x17F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1817 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x320 DUP2 SLT ISZERO PUSH2 0x1837 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1842 DUP2 PUSH2 0x1F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 DUP3 ADD SLT ISZERO PUSH2 0x1875 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1895 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F1C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 CALLDATALOAD PUSH2 0x18B8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18A4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18DD JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x192D PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x1945 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0x195D PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0x1975 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0x1996 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x19A9 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0x18D9 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x19FC JUMPI PUSH2 0x19E8 DUP4 DUP6 MLOAD PUSH2 0x1902 JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH2 0x300 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19D5 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD DUP3 CALLDATALOAD PUSH2 0x1A18 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF AND DUP3 MSTORE PUSH2 0x1A29 PUSH1 0x20 DUP5 ADD PUSH2 0x1755 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1A3D PUSH1 0x40 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1A54 PUSH1 0x60 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A6B PUSH1 0x80 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1A82 PUSH1 0xA0 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0x1A99 PUSH1 0xC0 DUP5 ADD PUSH2 0x173F JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x1ABD PUSH1 0xE0 DUP1 DUP5 ADD SWAP1 DUP6 ADD PUSH2 0x18A0 JUMP JUMPDEST PUSH2 0x2E0 SWAP3 DUP4 ADD CALLDATALOAD SWAP2 SWAP1 SWAP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x311 DUP3 DUP5 PUSH2 0x1902 JUMP JUMPDEST PUSH2 0x320 DUP2 ADD PUSH2 0x1AEA DUP3 DUP6 PUSH2 0x1902 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND PUSH2 0x300 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1B11 JUMPI PUSH2 0x1B11 PUSH2 0x1C51 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1B35 JUMPI PUSH2 0x1B35 PUSH2 0x1C51 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1B53 JUMPI PUSH2 0x1B53 PUSH2 0x1C67 JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1B71 JUMPI PUSH2 0x1B71 PUSH2 0x1C51 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1B93 JUMPI PUSH2 0x1B93 PUSH2 0x1C51 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP2 DUP2 PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1BFC JUMPI DUP4 CALLDATALOAD PUSH2 0x1BB5 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP4 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x3 DUP6 SWAP1 SHL DUP2 DUP2 SHL DUP1 NOT SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP2 AND SWAP1 SHL AND OR DUP4 SSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1C DUP3 GT ISZERO PUSH2 0x1BF4 JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x1 DUP4 ADD SWAP3 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1BA1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1C36 JUMPI PUSH2 0x1C36 PUSH2 0x1C51 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1C4C JUMPI PUSH2 0x1C4C PUSH2 0x1C67 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1EEC JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1CCE DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1D0B DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH2 0xFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000 DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH2 0x1D84 PUSH2 0x1D4D PUSH1 0x40 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFF AND PUSH1 0x10 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFF0000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1DCE PUSH2 0x1D93 PUSH1 0x60 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH10 0xFFFFFFFF000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E1C PUSH2 0x1DDD PUSH1 0x80 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFF AND PUSH1 0x50 SWAP2 SWAP1 SWAP2 SHL PUSH14 0xFFFFFFFF00000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E6E PUSH2 0x1E2B PUSH1 0xA0 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x70 SWAP2 SWAP1 SWAP2 SHL PUSH18 0xFFFFFFFF0000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1ECD PUSH2 0x1E7D PUSH1 0xC0 DUP5 ADD PUSH2 0x1CA9 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFF00000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x90 SWAP2 SWAP1 SWAP2 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1EDD PUSH1 0xE0 DUP4 ADD PUSH1 0x1 DUP4 ADD PUSH2 0x1B9B JUMP JUMPDEST PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH1 0x3 DUP3 ADD SSTORE POP POP JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 0xE8 0xD6 0xD4 SWAP3 0xEB EXTCODESIZE 0xD8 0xF7 0xC5 PUSH29 0x3C8534092542C241148344B2FB5ACB1E8E53F761F64736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "904:8038:25:-:0;;;2191:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2247:6;1648:24:19;2247:6:25;1648:9:19;:24::i;:::-;-1:-1:-1;2265:14:25::1;:41:::0;;-1:-1:-1;;;;2265:41:25::1;;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;2321:22:::1;::::0;609:36:94;;;2321:22:25::1;::::0;597:2:94;582:18;2321:22:25::1;;;;;;;2191:159:::0;;904:8038;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:448:94:-;91:6;99;152:2;140:9;131:7;127:23;123:32;120:2;;;168:1;165;158:12;120:2;194:16;;-1:-1:-1;;;;;239:31:94;;229:42;;219:2;;285:1;282;275:12;219:2;358;343:18;;337:25;308:5;;-1:-1:-1;406:4:94;393:18;;381:31;;371:2;;426:1;423;416:12;371:2;449:7;439:17;;;110:352;;;;;:::o;564:87::-;904:8038:25;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_getPrizeDistribution_6144": {
                  "entryPoint": 4809,
                  "id": 6144,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_pushPrizeDistribution_6274": {
                  "entryPoint": 3396,
                  "id": 6274,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_setManager_3068": {
                  "entryPoint": 5228,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 5135,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 2130,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getBufferCardinality_5842": {
                  "entryPoint": null,
                  "id": 5842,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getIndex_9437": {
                  "entryPoint": 4505,
                  "id": 9437,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getNewestPrizeDistribution_5992": {
                  "entryPoint": 1649,
                  "id": 5992,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@getOldestPrizeDistribution_6062": {
                  "entryPoint": 926,
                  "id": 6062,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@getPrizeDistributionCount_5963": {
                  "entryPoint": 791,
                  "id": 5963,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeDistribution_5858": {
                  "entryPoint": 2052,
                  "id": 5858,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeDistributions_5921": {
                  "entryPoint": 2813,
                  "id": 5921,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isInitialized_9330": {
                  "entryPoint": 5699,
                  "id": 9330,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_9914": {
                  "entryPoint": 5739,
                  "id": 9914,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_9932": {
                  "entryPoint": 5809,
                  "id": 9932,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_9887": {
                  "entryPoint": 5785,
                  "id": 9887,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pushPrizeDistribution_6082": {
                  "entryPoint": 586,
                  "id": 6082,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@push_9374": {
                  "entryPoint": 5464,
                  "id": 9374,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 2272,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 2692,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setPrizeDistribution_6124": {
                  "entryPoint": 2389,
                  "id": 6124,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@transferOwnership_3192": {
                  "entryPoint": 3080,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@wrap_9865": {
                  "entryPoint": 5825,
                  "id": 9865,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 5984,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 6032,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 6149,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_struct$_PrizeDistribution_$8506_calldata_ptr": {
                  "entryPoint": 6178,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint8": {
                  "entryPoint": 6275,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint104": {
                  "entryPoint": 5951,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 5962,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 5973,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint32": {
                  "entryPoint": 6361,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_array_uint32_calldata": {
                  "entryPoint": 6304,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_struct_PrizeDistribution": {
                  "entryPoint": 6402,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6585,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_calldata_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6664,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6860,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$8506_memory_ptr_t_uint32__fromStack_reversed": {
                  "entryPoint": 6875,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_uint104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_uint8": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "checked_add_t_uint256": {
                  "entryPoint": 6910,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 6934,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint16": {
                  "entryPoint": 6974,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 7007,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 7030,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_array_to_storage_from_array_uint32_calldata_to_array_uint": {
                  "entryPoint": 7067,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 7172,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 7229,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 7249,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 7271,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 7293,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 7315,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "read_from_calldatat_uint104": {
                  "entryPoint": 7337,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "read_from_calldatat_uint32": {
                  "entryPoint": 7350,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "update_storage_value_offset_0t_struct$_PrizeDistribution_$8506_calldata_ptr_to_t_struct$_PrizeDistribution_$8506_storage": {
                  "entryPoint": 7363,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offset_10t_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offset_2t_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offsett_uint104_to_uint104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offsett_uint32_to_t_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offsett_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "validator_revert_uint104": {
                  "entryPoint": 7916,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7946,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint8": {
                  "entryPoint": 7964,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:19368:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:85:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "136:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "111:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "111:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "111:31:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:134:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:84:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "211:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "233:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "220:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "220:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "211:5:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "273:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "249:30:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "180:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "191:5:94",
                            "type": ""
                          }
                        ],
                        "src": "153:132:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "337:83:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "347:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "369:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "356:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "347:5:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "408:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "385:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "385:29:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "385:29:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "316:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "327:5:94",
                            "type": ""
                          }
                        ],
                        "src": "290:130:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "495:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "541:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "550:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "553:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "543:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "543:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "543:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "516:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "525:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "512:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "512:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "537:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "508:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "508:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "505:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "566:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "592:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "579:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "579:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "570:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "688:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "697:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "700:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "690:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "690:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "690:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "624:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "635:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "642:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "631:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "631:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "621:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "621:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "614:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "614:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "611:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "713:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "723:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "713:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "461:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "472:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "484:6:94",
                            "type": ""
                          }
                        ],
                        "src": "425:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "843:510:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "889:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "898:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "901:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "891:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "891:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "891:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "864:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "860:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "860:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "885:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "853:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "914:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "941:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "928:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "928:23:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "918:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "960:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "970:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "964:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1015:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1024:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1027:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1017:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1017:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1017:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1003:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1011:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1000:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1000:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "997:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1040:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1054:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1065:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1044:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1120:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1129:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1132:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1122:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1122:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1122:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1099:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1103:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1095:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1095:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1110:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1091:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1091:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1084:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1084:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1081:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1145:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1172:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1159:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1159:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1149:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1190:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1198:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1276:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1285:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1288:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1278:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1278:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1278:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1241:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1249:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1252:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1245:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1245:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1237:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1237:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1262:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1267:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1230:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1230:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1227:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1301:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1315:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1319:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1311:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1301:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1331:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1341:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1331:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "801:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "812:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "824:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "832:6:94",
                            "type": ""
                          }
                        ],
                        "src": "739:614:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1427:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1473:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1482:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1485:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1475:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1475:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1475:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1448:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1457:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1444:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1444:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1469:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1440:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1440:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1437:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1498:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1524:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1511:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1511:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1502:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1567:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1543:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1543:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1543:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1582:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1592:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1582:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1393:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1404:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1416:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1358:245:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1731:349:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1741:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1755:7:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1764:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1751:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1751:23:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1745:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1799:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1808:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1811:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1801:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1801:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1801:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1790:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1794:3:94",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1786:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1786:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1783:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1824:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1850:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1837:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1837:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1828:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1869:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1869:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1869:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1908:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1918:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1908:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2021:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2030:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2033:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2023:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2023:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2023:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1943:2:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1947:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1939:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1939:75:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2016:3:94",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1935:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1935:85:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1932:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2046:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2060:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2071:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2056:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2056:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2046:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_struct$_PrizeDistribution_$8506_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1689:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1700:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1712:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1720:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1608:472:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2153:175:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2199:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2208:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2211:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2201:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2201:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2201:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2174:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2183:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2170:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2170:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2195:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2166:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2166:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2163:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2224:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2250:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2237:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2237:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2228:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2292:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2269:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2269:29:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2269:29:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2307:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2317:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2119:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2130:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2142:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2085:243:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2391:380:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2401:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "2408:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "2401:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2420:19:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2434:5:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2424:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2448:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2457:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2452:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2514:251:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "2528:35:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2556:6:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2543:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2543:20:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "2532:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2600:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "2576:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2576:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2576:32:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2628:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "2637:7:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2646:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "2633:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2633:24:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2621:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2621:37:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2621:37:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "2671:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "2681:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "2675:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2698:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2709:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2714:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2705:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2705:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2698:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2730:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2744:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2752:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2740:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2740:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2730:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2478:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2481:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2475:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2475:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2487:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2489:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2498:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2501:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2494:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2494:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2489:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2471:3:94",
                                "statements": []
                              },
                              "src": "2467:298:94"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2375:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2382:3:94",
                            "type": ""
                          }
                        ],
                        "src": "2333:438:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2825:293:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2835:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "2842:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "2835:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2854:19:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2868:5:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2858:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2882:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2891:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2886:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2948:164:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2969:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2984:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "2978:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2978:13:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2993:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "2974:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2974:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2962:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2962:43:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2962:43:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "3018:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "3028:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "3022:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3045:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3056:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3061:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3052:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3052:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3045:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3077:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3091:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3099:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3087:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3087:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3077:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2912:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2915:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2909:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2909:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2921:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2923:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2932:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2935:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2928:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2928:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2923:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2905:3:94",
                                "statements": []
                              },
                              "src": "2901:211:94"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2809:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2816:3:94",
                            "type": ""
                          }
                        ],
                        "src": "2776:342:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3184:854:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3201:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3216:5:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3210:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3210:12:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3224:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3206:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3206:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3194:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3194:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3194:36:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3250:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3255:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3246:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3246:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3276:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3283:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3272:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3272:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3266:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3266:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3291:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3262:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3262:34:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3239:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3239:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3239:58:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3306:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3336:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3343:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3332:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3332:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3326:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3326:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "3310:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3376:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3394:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3399:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3390:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3390:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3358:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3358:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3358:47:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3414:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3453:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3418:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3486:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3506:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3511:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3502:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3502:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3468:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3468:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3468:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3526:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3558:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3565:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3554:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3554:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3548:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3548:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3530:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3598:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3618:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3623:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3614:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3614:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3580:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3580:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3580:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3638:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3670:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3677:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3666:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3666:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3660:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3660:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3642:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3710:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3730:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3735:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3726:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3726:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3692:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3692:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3692:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3750:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3782:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3789:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3778:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3778:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3772:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3772:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3754:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3823:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3843:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3848:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3839:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3839:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "3804:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3804:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3804:50:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3863:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3895:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3902:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3891:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3891:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3885:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3885:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3867:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "3941:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3961:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3966:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3957:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3957:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3917:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3917:55:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3917:55:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3992:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3997:6:94",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3988:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3988:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4016:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4023:6:94",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4012:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4012:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4006:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4006:25:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3981:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3981:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3981:51:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3168:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3175:3:94",
                            "type": ""
                          }
                        ],
                        "src": "3123:915:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4087:69:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4104:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4113:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4120:28:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4109:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4109:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4097:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4097:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4097:53:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4071:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4078:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4043:113:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4204:51:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4221:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4230:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4237:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4226:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4226:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4214:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4214:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4214:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4188:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4195:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4161:94:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4302:33:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4311:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4320:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4327:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4316:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4316:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4304:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4304:29:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4304:29:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4286:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4293:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4260:75:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4441:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4451:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4463:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4474:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4459:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4459:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4451:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4493:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4508:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4516:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4504:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4504:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4486:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4486:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4486:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4410:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4421:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4432:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4340:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4792:514:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4802:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4812:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4806:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4823:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4841:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4852:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4837:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4837:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4827:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4871:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4882:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4864:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4864:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4864:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4894:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "4905:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "4898:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4920:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4940:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4934:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4934:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4924:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4963:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4971:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4956:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4956:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4956:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4987:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4998:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5009:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4994:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4994:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4987:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5021:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5039:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5047:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5035:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5035:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "5025:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5059:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5068:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5063:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5127:153:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "5183:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "5177:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5177:13:94"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5192:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeDistribution",
                                        "nodeType": "YulIdentifier",
                                        "src": "5141:35:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5141:55:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5141:55:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5209:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5220:3:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5225:6:94",
                                          "type": "",
                                          "value": "0x0300"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5216:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5216:16:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5209:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5245:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "5259:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5267:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5255:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5255:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "5245:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5089:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5092:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5086:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5086:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5100:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5102:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5111:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5114:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5107:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5107:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5102:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5082:3:94",
                                "statements": []
                              },
                              "src": "5078:202:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5289:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "5297:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5289:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4761:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4772:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4783:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4571:735:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5406:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5416:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5428:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5439:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5424:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5424:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5416:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5458:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "5483:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5476:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5476:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5469:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5469:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5451:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5451:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5451:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5375:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5386:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5397:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5311:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5677:176:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5694:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5705:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5687:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5687:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5687:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5728:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5739:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5724:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5724:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5744:2:94",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5717:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5717:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5717:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5767:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5778:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5763:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5763:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f62697452616e676553697a652d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5783:28:94",
                                    "type": "",
                                    "value": "DrawCalc/bitRangeSize-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5756:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5756:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5756:56:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5821:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5833:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5844:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5829:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5829:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5821:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5654:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5668:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5503:350:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6032:172:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6049:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6060:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6042:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6042:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6042:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6083:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6094:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6079:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6079:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6099:2:94",
                                    "type": "",
                                    "value": "22"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6072:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6072:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6072:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6122:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6133:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6118:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6118:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f74696572732d67742d31303025",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6138:24:94",
                                    "type": "",
                                    "value": "DrawCalc/tiers-gt-100%"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6111:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6111:52:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6111:52:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6172:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6184:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6195:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6180:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6180:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6172:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6009:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6023:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5858:346:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6383:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6400:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6411:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6393:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6393:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6393:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6434:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6445:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6430:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6430:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6450:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6423:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6423:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6423:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6473:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6484:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6469:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6469:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6489:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6462:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6462:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6462:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6544:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6555:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6540:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6540:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6560:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6533:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6533:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6533:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6575:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6587:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6598:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6583:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6583:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6575:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6360:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6374:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6209:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6787:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6804:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6815:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6797:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6797:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6797:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6838:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6849:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6834:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6834:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6854:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6827:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6827:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6827:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6877:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6888:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6873:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6873:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f62697452616e676553697a652d746f6f2d6c61726765",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6893:33:94",
                                    "type": "",
                                    "value": "DrawCalc/bitRangeSize-too-large"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6866:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6866:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6866:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6936:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6948:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6959:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6944:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6944:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6936:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6764:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6778:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6613:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7147:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7164:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7175:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7157:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7157:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7157:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7198:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7209:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7194:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7194:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7214:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7187:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7187:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7187:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7237:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7248:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7233:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7233:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7253:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7226:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7226:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7226:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7289:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7301:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7312:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7297:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7297:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7289:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7124:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7138:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6973:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7500:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7517:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7528:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7510:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7510:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7510:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7551:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7562:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7547:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7547:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7567:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7540:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7540:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7540:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7590:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7601:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7586:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7586:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6d61785069636b73506572557365722d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7606:31:94",
                                    "type": "",
                                    "value": "DrawCalc/maxPicksPerUser-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7579:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7579:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7579:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7647:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7659:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7670:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7655:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7655:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7647:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7477:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7491:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7326:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7858:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7875:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7886:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7868:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7868:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7868:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7909:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7920:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7905:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7905:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7925:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7898:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7898:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7898:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7948:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7959:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7944:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7944:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7964:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7937:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7937:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7937:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8007:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8019:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8030:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8015:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8015:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8007:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7835:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7849:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7684:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8218:165:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8235:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8246:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8228:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8228:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8228:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8269:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8280:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8265:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8265:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8285:2:94",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8258:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8258:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8258:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8308:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8319:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8304:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8304:18:94"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8324:17:94",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8297:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8297:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8297:45:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8351:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8363:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8374:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8359:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8359:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8351:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8195:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8209:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8044:339:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8562:171:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8579:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8590:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8572:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8572:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8572:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8613:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8624:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8609:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8609:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8629:2:94",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8602:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8602:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8602:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8652:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8663:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8648:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d69642d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8668:23:94",
                                    "type": "",
                                    "value": "DrawCalc/draw-id-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8641:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8641:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8641:51:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8701:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8713:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8724:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8709:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8709:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8701:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8539:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8553:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8388:345:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8912:178:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8929:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8940:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8922:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8922:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8922:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8963:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8974:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8959:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8959:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8979:2:94",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8952:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8952:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8952:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9002:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9013:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8998:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8998:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6578706972794475726174696f6e2d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9018:30:94",
                                    "type": "",
                                    "value": "DrawCalc/expiryDuration-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8991:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8991:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8991:58:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9058:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9070:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9081:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9066:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9066:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9058:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8889:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8903:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8738:352:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9269:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9286:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9297:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9279:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9279:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9279:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9320:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9331:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9316:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9316:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9336:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9309:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9309:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9309:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9359:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9370:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9355:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9355:18:94"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6d6174636843617264696e616c6974792d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9375:32:94",
                                    "type": "",
                                    "value": "DrawCalc/matchCardinality-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9348:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9348:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9348:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9417:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9429:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9440:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9425:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9425:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9417:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9246:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9260:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9095:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9628:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9645:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9656:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9638:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9638:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9638:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9679:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9690:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9675:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9675:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9695:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9668:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9668:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9668:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9718:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9729:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9714:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9714:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9734:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9707:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9707:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9707:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9789:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9800:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9785:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9785:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9805:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9778:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9778:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9778:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9823:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9835:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9846:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9831:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9831:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9823:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9605:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9619:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9454:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10035:166:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10052:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10063:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10045:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10045:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10045:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10086:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10097:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10082:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10082:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10102:2:94",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10075:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10075:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10075:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10125:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10136:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10121:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10121:18:94"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10141:18:94",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10114:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10114:46:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10169:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10181:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10192:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10177:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10177:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10169:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10012:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10026:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9861:340:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10380:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10397:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10408:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10390:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10390:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10390:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10431:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10442:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10427:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10427:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10447:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10420:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10420:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10420:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10470:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10481:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10466:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10466:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10486:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10459:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10459:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10459:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10541:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10552:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10537:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10537:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10557:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10530:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10530:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10530:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10574:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10586:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10597:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10582:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10582:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10574:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10357:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10371:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10206:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10786:168:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10803:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10814:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10796:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10796:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10796:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10837:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10848:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10833:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10833:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10853:2:94",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10826:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10826:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10826:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10876:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10887:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10872:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10872:18:94"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10892:20:94",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10865:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10865:48:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10865:48:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10922:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10934:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10945:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10930:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10930:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10922:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10763:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10777:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10612:342:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11132:1042:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11142:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11154:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11165:3:94",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11150:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11150:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11142:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11178:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11204:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11191:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11191:20:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "11182:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11243:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11220:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11220:29:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11220:29:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11265:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11280:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11287:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11276:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11276:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11258:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11258:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11258:35:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11302:50:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11338:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11346:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11334:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11334:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11317:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11317:35:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11306:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11378:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11391:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11402:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11387:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11387:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11361:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11361:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11361:47:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11417:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11454:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11462:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11450:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11450:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11432:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11432:36:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11421:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11495:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11508:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11519:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11504:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11504:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11477:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11477:48:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11477:48:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11534:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11571:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11579:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11567:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11567:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11549:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11549:36:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "11538:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11612:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11625:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11636:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11621:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11621:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11594:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11594:48:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11594:48:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11651:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11688:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11696:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11684:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11684:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11666:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11666:36:94"
                              },
                              "variables": [
                                {
                                  "name": "value_4",
                                  "nodeType": "YulTypedName",
                                  "src": "11655:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "11729:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11742:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11753:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11738:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11738:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11711:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11711:48:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11711:48:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11768:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11805:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11813:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11801:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11801:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11783:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11783:36:94"
                              },
                              "variables": [
                                {
                                  "name": "value_5",
                                  "nodeType": "YulTypedName",
                                  "src": "11772:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "11846:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11859:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11870:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11855:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11855:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11828:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11828:48:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11828:48:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11885:52:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11923:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11931:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11919:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11919:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "11900:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11900:37:94"
                              },
                              "variables": [
                                {
                                  "name": "value_6",
                                  "nodeType": "YulTypedName",
                                  "src": "11889:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_6",
                                    "nodeType": "YulIdentifier",
                                    "src": "11965:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11989:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11974:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "11946:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11946:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11946:49:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12041:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12049:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12037:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12037:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12060:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12071:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12056:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12056:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "12004:32:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12004:73:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12004:73:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12086:16:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12096:6:94",
                                "type": "",
                                "value": "0x02e0"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12090:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12122:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12133:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12118:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12118:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "12155:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "12163:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "12151:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12151:15:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "12138:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12138:29:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12111:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12111:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12111:57:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_calldata_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11101:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11112:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11123:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10959:1215:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12350:106:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12360:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12372:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12383:3:94",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12368:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12368:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12360:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12432:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12440:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12396:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12396:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12396:54:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12319:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12330:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12341:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12179:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12658:167:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12668:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12680:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12691:3:94",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12676:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12676:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12668:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12740:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12748:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12704:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12704:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12704:54:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12778:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12789:3:94",
                                        "type": "",
                                        "value": "768"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12774:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12774:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12799:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12807:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12795:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12795:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12767:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12767:52:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12767:52:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$8506_memory_ptr_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12619:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12630:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12638:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12649:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12461:364:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12929:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12939:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12951:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12962:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12947:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12947:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12939:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12981:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12996:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13004:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12992:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12992:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12974:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12974:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12974:42:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12898:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12909:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12920:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12830:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13075:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13102:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13104:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13104:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13104:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13091:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "13098:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "13094:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13094:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13088:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13088:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13085:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13133:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13144:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13147:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13140:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13140:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13133:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13058:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13061:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13067:3:94",
                            "type": ""
                          }
                        ],
                        "src": "13027:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13207:181:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13217:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13227:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13221:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13246:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13261:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13264:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13257:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13257:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13250:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13276:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13291:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13294:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13287:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13287:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13280:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13331:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13333:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13333:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13333:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13312:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13321:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13325:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13317:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13317:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13309:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13309:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13306:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13362:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13373:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13378:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13369:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13369:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13362:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13190:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13193:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13199:3:94",
                            "type": ""
                          }
                        ],
                        "src": "13160:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13438:142:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13448:16:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13458:6:94",
                                "type": "",
                                "value": "0xffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13452:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13473:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13488:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13491:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13484:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13484:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13477:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13518:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "13520:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13520:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13520:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13513:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13506:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13506:11:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13503:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13549:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "13562:1:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13565:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13558:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13558:10:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13570:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "13554:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13554:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "13549:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint16",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13423:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13426:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13432:1:94",
                            "type": ""
                          }
                        ],
                        "src": "13393:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13634:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13656:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13658:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13658:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13658:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13650:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13653:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13647:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13647:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13644:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13687:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13699:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13702:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13695:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13695:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13687:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13616:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13619:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13625:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13585:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13763:173:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13773:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13783:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13777:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13802:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13817:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13820:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13813:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13813:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13806:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13832:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13847:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13850:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13843:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13843:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13836:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13878:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13880:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13880:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13880:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13868:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13873:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13865:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13865:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13862:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13909:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13921:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13926:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13917:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13917:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13909:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13745:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13748:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13754:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13715:221:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14030:798:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14040:19:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "14054:5:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "14044:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14068:23:94",
                              "value": {
                                "name": "slot",
                                "nodeType": "YulIdentifier",
                                "src": "14087:4:94"
                              },
                              "variables": [
                                {
                                  "name": "elementSlot",
                                  "nodeType": "YulTypedName",
                                  "src": "14072:11:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14100:22:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14121:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "elementOffset",
                                  "nodeType": "YulTypedName",
                                  "src": "14104:13:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14131:22:94",
                              "value": {
                                "name": "elementOffset",
                                "nodeType": "YulIdentifier",
                                "src": "14140:13:94"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14135:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14209:613:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14223:35:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14251:6:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14238:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14238:20:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "14227:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14295:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "14271:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14271:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14271:32:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14316:20:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "14326:10:94",
                                      "type": "",
                                      "value": "0xffffffff"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "14320:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14349:28:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "14365:11:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14359:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14359:18:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "14353:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14390:38:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14411:1:94",
                                          "type": "",
                                          "value": "3"
                                        },
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14414:13:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "14407:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14407:21:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "shiftBits",
                                        "nodeType": "YulTypedName",
                                        "src": "14394:9:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14441:30:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "shiftBits",
                                          "nodeType": "YulIdentifier",
                                          "src": "14457:9:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14468:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "14453:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14453:18:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "mask",
                                        "nodeType": "YulTypedName",
                                        "src": "14445:4:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "14491:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14511:2:94"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "mask",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "14519:4:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "not",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "14515:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "14515:9:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "14507:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14507:18:94"
                                            },
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "shiftBits",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "14535:9:94"
                                                    },
                                                    {
                                                      "arguments": [
                                                        {
                                                          "name": "value_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "14550:7:94"
                                                        },
                                                        {
                                                          "name": "_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "14559:2:94"
                                                        }
                                                      ],
                                                      "functionName": {
                                                        "name": "and",
                                                        "nodeType": "YulIdentifier",
                                                        "src": "14546:3:94"
                                                      },
                                                      "nodeType": "YulFunctionCall",
                                                      "src": "14546:16:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "14531:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "14531:32:94"
                                                },
                                                {
                                                  "name": "mask",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14565:4:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "14527:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14527:43:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "or",
                                            "nodeType": "YulIdentifier",
                                            "src": "14504:2:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14504:67:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14484:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14484:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14484:88:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14585:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14599:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14607:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14595:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14595:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14585:6:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14623:38:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14644:13:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14659:1:94",
                                          "type": "",
                                          "value": "4"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14640:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14640:21:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "elementOffset",
                                        "nodeType": "YulIdentifier",
                                        "src": "14623:13:94"
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "14711:101:94",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "14729:18:94",
                                          "value": {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14746:1:94",
                                            "type": "",
                                            "value": "0"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementOffset",
                                              "nodeType": "YulIdentifier",
                                              "src": "14729:13:94"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "14764:34:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "elementSlot",
                                                "nodeType": "YulIdentifier",
                                                "src": "14783:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "14796:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "14779:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14779:19:94"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementSlot",
                                              "nodeType": "YulIdentifier",
                                              "src": "14764:11:94"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14680:13:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14695:2:94",
                                          "type": "",
                                          "value": "28"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "14677:2:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14677:21:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "14674:2:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14173:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14176:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14170:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14170:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14182:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14184:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14193:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14196:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14189:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14189:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14184:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14166:3:94",
                                "statements": []
                              },
                              "src": "14162:660:94"
                            }
                          ]
                        },
                        "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "14013:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14019:5:94",
                            "type": ""
                          }
                        ],
                        "src": "13941:887:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14880:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14971:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14973:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14973:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14973:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14896:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14903:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "14893:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14893:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14890:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15002:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15013:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15020:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15009:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15009:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "15002:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14862:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "14872:3:94",
                            "type": ""
                          }
                        ],
                        "src": "14833:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15071:74:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15094:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "15096:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15096:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15096:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15091:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "15084:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15084:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15081:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15125:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15134:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15137:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "15130:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15130:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "15125:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15056:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15059:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "15065:1:94",
                            "type": ""
                          }
                        ],
                        "src": "15033:112:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15182:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15199:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15202:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15192:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15192:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15192:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15296:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15299:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15289:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15289:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15289:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15320:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15323:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15313:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15313:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15313:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15150:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15371:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15388:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15391:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15381:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15381:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15381:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15485:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15488:4:94",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15478:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15478:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15478:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15509:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15512:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15502:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15502:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15502:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15339:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15560:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15577:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15580:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15570:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15570:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15570:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15674:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15677:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15667:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15667:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15667:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15698:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15701:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15691:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15691:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15691:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15528:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15749:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15766:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15769:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15759:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15759:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15759:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15863:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15866:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15856:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15856:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15856:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15887:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15890:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15880:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15880:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15880:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15717:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15967:115:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15977:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "16003:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "15990:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15990:17:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "15981:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16041:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "16016:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16016:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16016:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16056:20:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "16071:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "returnValue",
                                  "nodeType": "YulIdentifier",
                                  "src": "16056:11:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "read_from_calldatat_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "ptr",
                            "nodeType": "YulTypedName",
                            "src": "15943:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "returnValue",
                            "nodeType": "YulTypedName",
                            "src": "15951:11:94",
                            "type": ""
                          }
                        ],
                        "src": "15906:176:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16147:114:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16157:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "16183:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16170:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16170:17:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "16161:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16220:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "16196:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16196:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16196:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16235:20:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "16250:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "returnValue",
                                  "nodeType": "YulIdentifier",
                                  "src": "16235:11:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "read_from_calldatat_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "ptr",
                            "nodeType": "YulTypedName",
                            "src": "16123:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "returnValue",
                            "nodeType": "YulTypedName",
                            "src": "16131:11:94",
                            "type": ""
                          }
                        ],
                        "src": "16087:174:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16413:1189:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16423:34:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16451:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16438:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16438:19:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16427:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16489:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "16466:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16466:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16466:31:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16506:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16520:7:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16529:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "16516:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16516:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16510:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16543:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16559:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16553:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16553:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16547:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16580:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "16593:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16597:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16589:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16589:75:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "16666:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "16586:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16586:83:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16573:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16573:97:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16573:97:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16679:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16711:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16718:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16707:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16707:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16694:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16694:28:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16683:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "16754:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "16731:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16731:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16731:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16778:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "16794:2:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "16798:66:94",
                                                "type": "",
                                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "16790:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "16790:75:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "16867:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "or",
                                          "nodeType": "YulIdentifier",
                                          "src": "16787:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16787:83:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "16880:1:94",
                                                "type": "",
                                                "value": "8"
                                              },
                                              {
                                                "name": "value_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "16883:7:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "16876:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "16876:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16893:5:94",
                                            "type": "",
                                            "value": "65280"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16872:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16872:27:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "16784:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16784:116:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16771:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16771:130:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16771:130:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16958:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "16995:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17002:2:94",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "16991:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16991:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "16964:26:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16964:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_2t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "16910:47:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16910:97:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16910:97:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17064:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17101:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17108:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17097:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17097:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17070:26:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17070:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint32_to_t_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17016:47:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17016:97:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17016:97:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17171:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17208:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17215:3:94",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17204:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17204:15:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17177:26:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17177:43:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_10t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17122:48:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17122:99:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17122:99:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17276:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17313:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17320:3:94",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17309:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17309:15:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17282:26:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17282:43:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17230:45:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17230:96:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17230:96:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17383:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17421:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17428:3:94",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17417:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17417:15:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "17389:27:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17389:44:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint104_to_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "17335:47:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17335:99:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17335:99:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "17510:4:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17516:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17506:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17506:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "17524:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17531:3:94",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17520:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17520:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                                  "nodeType": "YulIdentifier",
                                  "src": "17443:62:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17443:93:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17443:93:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "17556:4:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17562:1:94",
                                        "type": "",
                                        "value": "3"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17552:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17552:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17583:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17590:3:94",
                                            "type": "",
                                            "value": "736"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17579:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17579:15:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "17566:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17566:29:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17545:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17545:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17545:51:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_0t_struct$_PrizeDistribution_$8506_calldata_ptr_to_t_struct$_PrizeDistribution_$8506_storage",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "16396:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16402:5:94",
                            "type": ""
                          }
                        ],
                        "src": "16266:1336:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17682:192:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17692:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17708:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17702:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17702:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17696:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17729:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "17742:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17746:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17738:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17738:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "17823:2:94",
                                                "type": "",
                                                "value": "80"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "17827:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "17819:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "17819:14:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17835:30:94",
                                            "type": "",
                                            "value": "0xffffffff00000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17815:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17815:51:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "17735:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17735:132:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17722:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17722:146:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17722:146:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_10t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "17665:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "17671:5:94",
                            "type": ""
                          }
                        ],
                        "src": "17607:267:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17951:201:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17961:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17977:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17971:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17971:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17965:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17998:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18011:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18015:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18007:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18007:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18092:3:94",
                                                "type": "",
                                                "value": "112"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18097:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18088:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18088:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18105:38:94",
                                            "type": "",
                                            "value": "0xffffffff0000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18084:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18084:60:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18004:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18004:141:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17991:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17991:155:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17991:155:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "17934:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "17940:5:94",
                            "type": ""
                          }
                        ],
                        "src": "17879:273:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18231:227:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18241:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18257:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18251:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18251:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18245:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18278:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18291:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18295:66:94",
                                            "type": "",
                                            "value": "0xff00000000000000000000000000ffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18287:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18287:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18372:3:94",
                                                "type": "",
                                                "value": "144"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18377:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18368:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18368:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18385:64:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff000000000000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18364:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18364:86:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18284:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18284:167:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18271:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18271:181:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18271:181:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint104_to_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18214:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18220:5:94",
                            "type": ""
                          }
                        ],
                        "src": "18157:301:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18537:176:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18547:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18563:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18557:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18557:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18551:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18584:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18597:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18601:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18593:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18593:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18678:2:94",
                                                "type": "",
                                                "value": "16"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18682:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18674:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18674:14:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18690:14:94",
                                            "type": "",
                                            "value": "0xffffffff0000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18670:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18670:35:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18590:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18590:116:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18577:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18577:130:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18577:130:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_2t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18520:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18526:5:94",
                            "type": ""
                          }
                        ],
                        "src": "18463:250:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18792:184:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18802:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18818:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18812:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18812:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18806:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18839:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18852:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18856:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18848:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18848:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18933:2:94",
                                                "type": "",
                                                "value": "48"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18937:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18929:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18929:14:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18945:22:94",
                                            "type": "",
                                            "value": "0xffffffff000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18925:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18925:43:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18845:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18845:124:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18832:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18832:138:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18832:138:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint32_to_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18775:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18781:5:94",
                            "type": ""
                          }
                        ],
                        "src": "18718:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19026:95:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19099:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19108:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19111:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19101:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19101:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19101:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19049:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19060:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19067:28:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19056:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19056:40:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19046:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19046:51:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19039:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19039:59:94"
                              },
                              "nodeType": "YulIf",
                              "src": "19036:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19015:5:94",
                            "type": ""
                          }
                        ],
                        "src": "18981:140:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19170:77:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19225:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19234:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19237:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19227:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19227:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19227:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19193:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19204:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19211:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19200:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19200:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19190:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19190:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19183:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19183:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "19180:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19159:5:94",
                            "type": ""
                          }
                        ],
                        "src": "19126:121:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19295:71:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19344:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19353:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19356:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19346:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19346:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19346:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19318:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19329:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19336:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19325:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19325:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19315:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19315:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19308:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19308:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "19305:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19284:5:94",
                            "type": ""
                          }
                        ],
                        "src": "19252:114:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint104(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint104(value)\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint8(value)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32t_struct$_PrizeDistribution_$8506_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 800) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        if slt(add(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), 768) { revert(0, 0) }\n        value1 := add(headStart, 32)\n    }\n    function abi_decode_tuple_t_uint8(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint8(value)\n        value0 := value\n    }\n    function abi_encode_array_uint32_calldata(value, pos)\n    {\n        pos := pos\n        let srcPtr := value\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value_1 := calldataload(srcPtr)\n            validator_revert_uint32(value_1)\n            mstore(pos, and(value_1, 0xffffffff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_array_uint32(value, pos)\n    {\n        pos := pos\n        let srcPtr := value\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_struct_PrizeDistribution(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xff))\n        let memberValue0 := mload(add(value, 0x40))\n        abi_encode_uint32(memberValue0, add(pos, 0x40))\n        let memberValue0_1 := mload(add(value, 0x60))\n        abi_encode_uint32(memberValue0_1, add(pos, 0x60))\n        let memberValue0_2 := mload(add(value, 0x80))\n        abi_encode_uint32(memberValue0_2, add(pos, 0x80))\n        let memberValue0_3 := mload(add(value, 0xa0))\n        abi_encode_uint32(memberValue0_3, add(pos, 0xa0))\n        let memberValue0_4 := mload(add(value, 0xc0))\n        abi_encode_uint104(memberValue0_4, add(pos, 0xc0))\n        let memberValue0_5 := mload(add(value, 0xe0))\n        abi_encode_array_uint32(memberValue0_5, add(pos, 0xe0))\n        mstore(add(pos, 0x02e0), mload(add(value, 0x0100)))\n    }\n    function abi_encode_uint104(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffffffffffffff))\n    }\n    function abi_encode_uint32(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffff))\n    }\n    function abi_encode_uint8(value, pos)\n    { mstore(pos, and(value, 0xff)) }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_PrizeDistribution(mload(srcPtr), pos)\n            pos := add(pos, 0x0300)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 26)\n        mstore(add(headStart, 64), \"DrawCalc/bitRangeSize-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"DrawCalc/tiers-gt-100%\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"DrawCalc/bitRangeSize-too-large\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"DrawCalc/maxPicksPerUser-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"DRB/future-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"DrawCalc/draw-id-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"DrawCalc/expiryDuration-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"DrawCalc/matchCardinality-gt-0\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 16)\n        mstore(add(headStart, 64), \"DRB/expired-draw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"DRB/must-be-contig\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$8506_calldata_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        let value := calldataload(value0)\n        validator_revert_uint8(value)\n        mstore(headStart, and(value, 0xff))\n        let value_1 := abi_decode_uint8(add(value0, 0x20))\n        abi_encode_uint8(value_1, add(headStart, 0x20))\n        let value_2 := abi_decode_uint32(add(value0, 0x40))\n        abi_encode_uint32(value_2, add(headStart, 0x40))\n        let value_3 := abi_decode_uint32(add(value0, 0x60))\n        abi_encode_uint32(value_3, add(headStart, 0x60))\n        let value_4 := abi_decode_uint32(add(value0, 0x80))\n        abi_encode_uint32(value_4, add(headStart, 0x80))\n        let value_5 := abi_decode_uint32(add(value0, 0xa0))\n        abi_encode_uint32(value_5, add(headStart, 0xa0))\n        let value_6 := abi_decode_uint104(add(value0, 0xc0))\n        abi_encode_uint104(value_6, add(headStart, 0xc0))\n        abi_encode_array_uint32_calldata(add(value0, 0xe0), add(headStart, 0xe0))\n        let _1 := 0x02e0\n        mstore(add(headStart, _1), calldataload(add(value0, _1)))\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PrizeDistribution(value0, headStart)\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$8506_memory_ptr_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 800)\n        abi_encode_struct_PrizeDistribution(value0, headStart)\n        mstore(add(headStart, 768), and(value1, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint16(x, y) -> r\n    {\n        let _1 := 0xffff\n        let y_1 := and(y, _1)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function copy_array_to_storage_from_array_uint32_calldata_to_array_uint(slot, value)\n    {\n        let srcPtr := value\n        let elementSlot := slot\n        let elementOffset := 0\n        let i := elementOffset\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value_1 := calldataload(srcPtr)\n            validator_revert_uint32(value_1)\n            let _1 := 0xffffffff\n            let _2 := sload(elementSlot)\n            let shiftBits := shl(3, elementOffset)\n            let mask := shl(shiftBits, _1)\n            sstore(elementSlot, or(and(_2, not(mask)), and(shl(shiftBits, and(value_1, _1)), mask)))\n            srcPtr := add(srcPtr, 32)\n            elementOffset := add(elementOffset, 4)\n            if gt(elementOffset, 28)\n            {\n                elementOffset := 0\n                elementSlot := add(elementSlot, 1)\n            }\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function read_from_calldatat_uint104(ptr) -> returnValue\n    {\n        let value := calldataload(ptr)\n        validator_revert_uint104(value)\n        returnValue := value\n    }\n    function read_from_calldatat_uint32(ptr) -> returnValue\n    {\n        let value := calldataload(ptr)\n        validator_revert_uint32(value)\n        returnValue := value\n    }\n    function update_storage_value_offset_0t_struct$_PrizeDistribution_$8506_calldata_ptr_to_t_struct$_PrizeDistribution_$8506_storage(slot, value)\n    {\n        let value_1 := calldataload(value)\n        validator_revert_uint8(value_1)\n        let _1 := and(value_1, 0xff)\n        let _2 := sload(slot)\n        sstore(slot, or(and(_2, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00), _1))\n        let value_2 := calldataload(add(value, 32))\n        validator_revert_uint8(value_2)\n        sstore(slot, or(or(and(_2, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000), _1), and(shl(8, value_2), 65280)))\n        update_storage_value_offset_2t_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 64)))\n        update_storage_value_offsett_uint32_to_t_uint32(slot, read_from_calldatat_uint32(add(value, 96)))\n        update_storage_value_offset_10t_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 128)))\n        update_storage_value_offsett_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 160)))\n        update_storage_value_offsett_uint104_to_uint104(slot, read_from_calldatat_uint104(add(value, 192)))\n        copy_array_to_storage_from_array_uint32_calldata_to_array_uint(add(slot, 1), add(value, 224))\n        sstore(add(slot, 3), calldataload(add(value, 736)))\n    }\n    function update_storage_value_offset_10t_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff), and(shl(80, value), 0xffffffff00000000000000000000)))\n    }\n    function update_storage_value_offsett_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff), and(shl(112, value), 0xffffffff0000000000000000000000000000)))\n    }\n    function update_storage_value_offsett_uint104_to_uint104(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xff00000000000000000000000000ffffffffffffffffffffffffffffffffffff), and(shl(144, value), 0xffffffffffffffffffffffffff000000000000000000000000000000000000)))\n    }\n    function update_storage_value_offset_2t_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff), and(shl(16, value), 0xffffffff0000)))\n    }\n    function update_storage_value_offsett_uint32_to_t_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff), and(shl(48, value), 0xffffffff000000000000)))\n    }\n    function validator_revert_uint104(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101f3578063d30a5daf14610206578063e30c397814610226578063f2fde38b1461023757600080fd5b8063715018a6146101ac5780638da5cb5b146101b4578063caeef7ec146101c5578063ce336ce9146101e057600080fd5b806324c21446116100d357806324c21446146101555780633cd8e2d51461015d578063481c6a751461017d5780634e71e0c8146101a257600080fd5b80631124e1dc146100fa57806321e98ad9146101225780632439093a1461013f575b600080fd5b61010d610108366004611822565b61024a565b60405190151581526020015b60405180910390f35b61012a610317565b60405163ffffffff9091168152602001610119565b61014761039e565b604051610119929190611adb565b610147610671565b61017061016b366004611805565b610804565b6040516101199190611acc565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610119565b6101aa610852565b005b6101aa6108e0565b6000546001600160a01b031661018a565b6104035468010000000000000000900463ffffffff1661012a565b61012a6101ee366004611822565b610955565b61010d610201366004611760565b610a84565b610219610214366004611790565b610afd565b60405161011991906119b9565b6001546001600160a01b031661018a565b6101aa610245366004611760565b610c08565b60003361025f6002546001600160a01b031690565b6001600160a01b0316148061028d5750336102826000546001600160a01b031690565b6001600160a01b0316145b6103045760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8383610d44565b90505b92915050565b604080516060810182526104035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161036357600091505090565b6020810151600363ffffffff8216610100811061038257610382611c7d565b6004020154610100900460ff1615610311575060400151919050565b6103a66116cd565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009160039061010081106103fb576103fb611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116104bf5750505092845250505060039190910154602090910152815190935063ffffffff166105275760009150509091565b825160ff1661065f5760408051610120810182526003805460ff8082168452610100820416602084015263ffffffff62010000820481168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a08401526cffffffffffffffffffffffffff72010000000000000000000000000000000000009091041660c083015282516102008101938490529192909160e0840191600490601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105ea575050509284525050506003919091015460209182015282015182519194509061064e906001611b16565b6106589190611b76565b9150509091565b6040810151815161064e906001611b16565b6106796116cd565b604080516060810182526104035463ffffffff808216808452640100000000830482166020850152680100000000000000009092048116938301939093526000926003916106ca9184919061119916565b63ffffffff1661010081106106e1576106e1611c7d565b8251604080516101208101825260049390930293909301805460ff8082168552610100820416602085015262010000810463ffffffff9081168587015266010000000000008204811660608601526a01000000000000000000008204811660808601526e01000000000000000000000000000082041660a0850152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c084015283516102008101948590529093919291849160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116107aa57905050505050508152602001600382015481525050915092509250509091565b61080c6116cd565b604080516060810182526104035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261031190836112c9565b6001546001600160a01b031633146108ac5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102fb565b6001546108c1906001600160a01b031661140f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108f36000546001600160a01b031690565b6001600160a01b0316146109495760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b610953600061140f565b565b60003361096a6000546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff80821683526401000000008204811660208401526801000000000000000090910481169282019290925290600090610a0f908390879061119916565b90508360038263ffffffff166101008110610a2c57610a2c611c7d565b60040201610a3a8282611cc3565b9050508463ffffffff167f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f685604051610a739190611a08565b60405180910390a250929392505050565b600033610a996000546001600160a01b031690565b6001600160a01b031614610aef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6103118261146c565b919050565b60408051606081810183526104035463ffffffff8082168452640100000000820481166020850152680100000000000000009091041692820192909252829060008267ffffffffffffffff811115610b5757610b57611c93565b604051908082528060200260200182016040528015610b9057816020015b610b7d6116cd565b815260200190600190039081610b755790505b50905060005b83811015610bfe57610bce83888884818110610bb457610bb4611c7d565b9050602002016020810190610bc99190611805565b6112c9565b828281518110610be057610be0611c7d565b60200260200101819052508080610bf690611c04565b915050610b96565b5095945050505050565b33610c1b6000546001600160a01b031690565b6001600160a01b031614610c715760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6001600160a01b038116610ced5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102fb565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6000808363ffffffff1611610d9b5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d69642d67742d30000000000000000000000060448201526064016102fb565b6000610dad6040840160208501611883565b60ff1611610dfd5760405162461bcd60e51b815260206004820152601e60248201527f4472617743616c632f6d6174636843617264696e616c6974792d67742d30000060448201526064016102fb565b610e0d6040830160208401611883565b610e1c9060ff16610100611b3e565b61ffff16610e2d6020840184611883565b60ff161115610e7e5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f62697452616e676553697a652d746f6f2d6c617267650060448201526064016102fb565b6000610e8d6020840184611883565b60ff1611610edd5760405162461bcd60e51b815260206004820152601a60248201527f4472617743616c632f62697452616e676553697a652d67742d3000000000000060448201526064016102fb565b6000610eef60a0840160808501611805565b63ffffffff1611610f425760405162461bcd60e51b815260206004820152601d60248201527f4472617743616c632f6d61785069636b73506572557365722d67742d3000000060448201526064016102fb565b6000610f5460c0840160a08501611805565b63ffffffff1611610fa75760405162461bcd60e51b815260206004820152601c60248201527f4472617743616c632f6578706972794475726174696f6e2d67742d300000000060448201526064016102fb565b60006010815b818110156110075760008560e0018260108110610fcc57610fcc611c7d565b602002016020810190610fdf9190611805565b63ffffffff169050610ff18185611afe565b9350508080610fff90611c04565b915050610fad565b50633b9aca0082111561105c5760405162461bcd60e51b815260206004820152601660248201527f4472617743616c632f74696572732d67742d313030250000000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290859060039061010081106110b1576110b1611c7d565b600402016110bf8282611cc3565b506110cc90508187611558565b80516104038054602084015160409485015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009094169582169590951792909217169290921790559051908716907f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f690611185908890611a08565b60405180910390a250600195945050505050565b60006111a483611643565b80156111c05750826000015163ffffffff168263ffffffff1611155b61120c5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064016102fb565b825160009061121c908490611b76565b9050836040015163ffffffff168163ffffffff161061127d5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016102fb565b600061129d856020015163ffffffff16866040015163ffffffff1661166b565b90506112c08163ffffffff168363ffffffff16876040015163ffffffff16611699565b95945050505050565b6112d16116cd565b60036112dd8484611199565b63ffffffff1661010081106112f4576112f4611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113b857905050505050508152602001600382015481525050905092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156114f55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102fb565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604080516060810182526000808252602082018190529181019190915261157e83611643565b15806115a157508251611592906001611b16565b63ffffffff168263ffffffff16145b6115ed5760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016102fb565b60405180606001604052808363ffffffff168152602001611622856020015163ffffffff16866040015163ffffffff166116b1565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156116645750815163ffffffff16155b1592915050565b60008161167a57506000610311565b61030e60016116898486611afe565b6116939190611b5f565b836116c1565b60006116a9836116898487611afe565b949350505050565b600061030e611693846001611afe565b600061030e8284611c3d565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e08101611713611720565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b8035610af881611eec565b8035610af881611f0a565b8035610af881611f1c565b60006020828403121561177257600080fd5b81356001600160a01b038116811461178957600080fd5b9392505050565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208260051b85010111156117f357600080fd5b60209290920196919550909350505050565b60006020828403121561181757600080fd5b813561178981611f0a565b60008082840361032081121561183757600080fd5b833561184281611f0a565b92506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561187557600080fd5b506020830190509250929050565b60006020828403121561189557600080fd5b813561178981611f1c565b8060005b60108110156118d35781356118b881611f0a565b63ffffffff16845260209384019391909101906001016118a4565b50505050565b8060005b60108110156118d357815163ffffffff168452602093840193909101906001016118dd565b60ff815116825260ff6020820151166020830152604081015161192d604084018263ffffffff169052565b506060810151611945606084018263ffffffff169052565b50608081015161195d608084018263ffffffff169052565b5060a081015161197560a084018263ffffffff169052565b5060c081015161199660c08401826cffffffffffffffffffffffffff169052565b5060e08101516119a960e08401826118d9565b5061010001516102e09190910152565b6020808252825182820181905260009190848201906040850190845b818110156119fc576119e8838551611902565b9284019261030092909201916001016119d5565b50909695505050505050565b61030081018235611a1881611f1c565b60ff168252611a2960208401611755565b60ff166020830152611a3d6040840161174a565b63ffffffff166040830152611a546060840161174a565b63ffffffff166060830152611a6b6080840161174a565b63ffffffff166080830152611a8260a0840161174a565b63ffffffff1660a0830152611a9960c0840161173f565b6cffffffffffffffffffffffffff1660c0830152611abd60e08084019085016118a0565b6102e092830135919092015290565b61030081016103118284611902565b6103208101611aea8285611902565b63ffffffff83166103008301529392505050565b60008219821115611b1157611b11611c51565b500190565b600063ffffffff808316818516808303821115611b3557611b35611c51565b01949350505050565b600061ffff80841680611b5357611b53611c67565b92169190910492915050565b600082821015611b7157611b71611c51565b500390565b600063ffffffff83811690831681811015611b9357611b93611c51565b039392505050565b81816000805b6010811015611bfc578335611bb581611f0a565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611bf457600091506001830192505b600101611ba1565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c3657611c36611c51565b5060010190565b600082611c4c57611c4c611c67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561031181611eec565b6000813561031181611f0a565b8135611cce81611f1c565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611d0b81611f1c565b61ff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000841617178455505050611d84611d4d60408401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff1660109190911b65ffffffff000016178255565b611dce611d9360608401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff1660309190911b69ffffffff00000000000016178255565b611e1c611ddd60808401611cb6565b82547fffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff1660509190911b6dffffffff0000000000000000000016178255565b611e6e611e2b60a08401611cb6565b82547fffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff1660709190911b71ffffffff000000000000000000000000000016178255565b611ecd611e7d60c08401611ca9565b82547fff00000000000000000000000000ffffffffffffffffffffffffffffffffffff1660909190911b7effffffffffffffffffffffffff00000000000000000000000000000000000016178255565b611edd60e0830160018301611b9b565b6102e082013560038201555050565b6cffffffffffffffffffffffffff81168114611f0757600080fd5b50565b63ffffffff81168114611f0757600080fd5b60ff81168114611f0757600080fdfea26469706673582212208ae8d6d492eb3bd8f7c57c03c8534092542c241148344b2fb5acb1e8e53f761f64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1F3 JUMPI DUP1 PUSH4 0xD30A5DAF EQ PUSH2 0x206 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x226 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1AC JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0xCAEEF7EC EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0xCE336CE9 EQ PUSH2 0x1E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x24C21446 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x24C21446 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x3CD8E2D5 EQ PUSH2 0x15D JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1124E1DC EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x21E98AD9 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x2439093A EQ PUSH2 0x13F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x108 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12A PUSH2 0x317 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x147 PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP3 SWAP2 SWAP1 PUSH2 0x1ADB JUMP JUMPDEST PUSH2 0x147 PUSH2 0x671 JUMP JUMPDEST PUSH2 0x170 PUSH2 0x16B CALLDATASIZE PUSH1 0x4 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1ACC JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x852 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1AA PUSH2 0x8E0 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x403 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x12A JUMP JUMPDEST PUSH2 0x12A PUSH2 0x1EE CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x955 JUMP JUMPDEST PUSH2 0x10D PUSH2 0x201 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x219 PUSH2 0x214 CALLDATASIZE PUSH1 0x4 PUSH2 0x1790 JUMP JUMPDEST PUSH2 0xAFD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x19B9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1AA PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0x1760 JUMP JUMPDEST PUSH2 0xC08 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x25F PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x28D JUMPI POP CALLER PUSH2 0x282 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x304 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E DUP4 DUP4 PUSH2 0xD44 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH2 0x363 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x3 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x100 DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x311 JUMPI POP PUSH1 0x40 ADD MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3A6 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x3FB JUMPI PUSH2 0x3FB PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x4BF JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE DUP2 MLOAD SWAP1 SWAP4 POP PUSH4 0xFFFFFFFF AND PUSH2 0x527 JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST DUP3 MLOAD PUSH1 0xFF AND PUSH2 0x65F JUMPI PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH4 0xFFFFFFFF PUSH3 0x10000 DUP3 DIV DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH19 0x1000000000000000000000000000000000000 SWAP1 SWAP2 DIV AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x4 SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x5EA JUMPI POP POP POP SWAP3 DUP5 MSTORE POP POP POP PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD SLOAD PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP3 ADD MLOAD DUP3 MLOAD SWAP2 SWAP5 POP SWAP1 PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x658 SWAP2 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP2 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0x64E SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH2 0x679 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH5 0x100000000 DUP4 DIV DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP2 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 PUSH1 0x3 SWAP2 PUSH2 0x6CA SWAP2 DUP5 SWAP2 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x6E1 JUMPI PUSH2 0x6E1 PUSH2 0x1C7D JUMP JUMPDEST DUP3 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP4 SWAP1 SWAP4 MUL SWAP4 SWAP1 SWAP4 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP6 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP6 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP6 DUP8 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP7 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP6 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP5 ADD MSTORE DUP4 MLOAD PUSH2 0x200 DUP2 ADD SWAP5 DUP6 SWAP1 MSTORE SWAP1 SWAP4 SWAP2 SWAP3 SWAP2 DUP5 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x7AA JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP2 POP SWAP3 POP SWAP3 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH2 0x80C PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x311 SWAP1 DUP4 PUSH2 0x12C9 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x8AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x8C1 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x140F JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x8F3 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x949 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x953 PUSH1 0x0 PUSH2 0x140F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x96A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV DUP2 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x0 SWAP1 PUSH2 0xA0F SWAP1 DUP4 SWAP1 DUP8 SWAP1 PUSH2 0x1199 AND JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x3 DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0xA2C JUMPI PUSH2 0xA2C PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0xA3A DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST SWAP1 POP POP DUP5 PUSH4 0xFFFFFFFF AND PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xA73 SWAP2 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP SWAP3 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA99 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xAEF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0x311 DUP3 PUSH2 0x146C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP5 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP2 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP3 SWAP1 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB57 JUMPI PUSH2 0xB57 PUSH2 0x1C93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xB90 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xB7D PUSH2 0x16CD JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xB75 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBFE JUMPI PUSH2 0xBCE DUP4 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xBB4 JUMPI PUSH2 0xBB4 PUSH2 0x1C7D JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xBC9 SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH2 0x12C9 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xBE0 JUMPI PUSH2 0xBE0 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0xBF6 SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xB96 JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0xC1B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH4 0xFFFFFFFF AND GT PUSH2 0xD9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F647261772D69642D67742D300000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDAD PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xDFD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D6174636843617264696E616C6974792D67742D300000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH2 0xE0D PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x1883 JUMP JUMPDEST PUSH2 0xE1C SWAP1 PUSH1 0xFF AND PUSH2 0x100 PUSH2 0x1B3E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH2 0xE2D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT ISZERO PUSH2 0xE7E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D746F6F2D6C6172676500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE8D PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1883 JUMP JUMPDEST PUSH1 0xFF AND GT PUSH2 0xEDD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F62697452616E676553697A652D67742D30000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEEF PUSH1 0xA0 DUP5 ADD PUSH1 0x80 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xF42 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6D61785069636B73506572557365722D67742D30000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF54 PUSH1 0xC0 DUP5 ADD PUSH1 0xA0 DUP6 ADD PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0xFA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F6578706972794475726174696F6E2D67742D3000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x10 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1007 JUMPI PUSH1 0x0 DUP6 PUSH1 0xE0 ADD DUP3 PUSH1 0x10 DUP2 LT PUSH2 0xFCC JUMPI PUSH2 0xFCC PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xFDF SWAP2 SWAP1 PUSH2 0x1805 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xFF1 DUP2 DUP6 PUSH2 0x1AFE JUMP JUMPDEST SWAP4 POP POP DUP1 DUP1 PUSH2 0xFFF SWAP1 PUSH2 0x1C04 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xFAD JUMP JUMPDEST POP PUSH4 0x3B9ACA00 DUP3 GT ISZERO PUSH2 0x105C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4472617743616C632F74696572732D67742D3130302500000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH2 0x403 SLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 MSTORE PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD DUP2 SWAP1 MSTORE PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP6 SWAP1 PUSH1 0x3 SWAP1 PUSH2 0x100 DUP2 LT PUSH2 0x10B1 JUMPI PUSH2 0x10B1 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x4 MUL ADD PUSH2 0x10BF DUP3 DUP3 PUSH2 0x1CC3 JUMP JUMPDEST POP PUSH2 0x10CC SWAP1 POP DUP2 DUP8 PUSH2 0x1558 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x403 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP5 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND PUSH9 0x10000000000000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFF SWAP3 DUP3 AND PUSH5 0x100000000 MUL PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000 SWAP1 SWAP5 AND SWAP6 DUP3 AND SWAP6 SWAP1 SWAP6 OR SWAP3 SWAP1 SWAP3 OR AND SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE SWAP1 MLOAD SWAP1 DUP8 AND SWAP1 PUSH32 0x2D81DA839B2F3DB2ED762907F74DF3ACECDC30461DBA4813694C225BA911E1F6 SWAP1 PUSH2 0x1185 SWAP1 DUP9 SWAP1 PUSH2 0x1A08 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11A4 DUP4 PUSH2 0x1643 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x11C0 JUMPI POP DUP3 PUSH1 0x0 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST PUSH2 0x120C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6675747572652D647261770000000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST DUP3 MLOAD PUSH1 0x0 SWAP1 PUSH2 0x121C SWAP1 DUP5 SWAP1 PUSH2 0x1B76 JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x10 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F657870697265642D6472617700000000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x129D DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x166B JUMP JUMPDEST SWAP1 POP PUSH2 0x12C0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x1699 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x12D1 PUSH2 0x16CD JUMP JUMPDEST PUSH1 0x3 PUSH2 0x12DD DUP5 DUP5 PUSH2 0x1199 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x100 DUP2 LT PUSH2 0x12F4 JUMPI PUSH2 0x12F4 PUSH2 0x1C7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP3 SWAP1 SWAP3 MUL SWAP3 SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP1 DUP3 AND DUP5 MSTORE PUSH2 0x100 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x10000 DUP2 DIV PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP7 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH11 0x100000000000000000000 DUP3 DIV DUP2 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH15 0x10000000000000000000000000000 DUP3 DIV AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH19 0x1000000000000000000000000000000000000 SWAP1 DIV PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE DUP3 MLOAD PUSH2 0x200 DUP2 ADD SWAP4 DUP5 SWAP1 MSTORE SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0xE0 DUP5 ADD SWAP2 PUSH1 0x1 DUP5 ADD SWAP1 PUSH1 0x10 SWAP1 DUP3 PUSH1 0x0 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x13B8 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x14F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x157E DUP4 PUSH2 0x1643 JUMP JUMPDEST ISZERO DUP1 PUSH2 0x15A1 JUMPI POP DUP3 MLOAD PUSH2 0x1592 SWAP1 PUSH1 0x1 PUSH2 0x1B16 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND EQ JUMPDEST PUSH2 0x15ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4452422F6D7573742D62652D636F6E7469670000000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1622 DUP6 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x16B1 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x0 EQ DUP1 ISZERO PUSH2 0x1664 JUMPI POP DUP2 MLOAD PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST ISZERO SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x167A JUMPI POP PUSH1 0x0 PUSH2 0x311 JUMP JUMPDEST PUSH2 0x30E PUSH1 0x1 PUSH2 0x1689 DUP5 DUP7 PUSH2 0x1AFE JUMP JUMPDEST PUSH2 0x1693 SWAP2 SWAP1 PUSH2 0x1B5F JUMP JUMPDEST DUP4 PUSH2 0x16C1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16A9 DUP4 PUSH2 0x1689 DUP5 DUP8 PUSH2 0x1AFE JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E PUSH2 0x1693 DUP5 PUSH1 0x1 PUSH2 0x1AFE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30E DUP3 DUP5 PUSH2 0x1C3D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xE0 DUP2 ADD PUSH2 0x1713 PUSH2 0x1720 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1EEC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAF8 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1772 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1789 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x17A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x17BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x17CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x17DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x17F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1817 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x320 DUP2 SLT ISZERO PUSH2 0x1837 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1842 DUP2 PUSH2 0x1F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 DUP3 ADD SLT ISZERO PUSH2 0x1875 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1895 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1789 DUP2 PUSH2 0x1F1C JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 CALLDATALOAD PUSH2 0x18B8 DUP2 PUSH2 0x1F0A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18A4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x18D3 JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x18DD JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x192D PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x1945 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0x195D PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0x1975 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0x1996 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x19A9 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0x18D9 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x19FC JUMPI PUSH2 0x19E8 DUP4 DUP6 MLOAD PUSH2 0x1902 JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH2 0x300 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19D5 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD DUP3 CALLDATALOAD PUSH2 0x1A18 DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF AND DUP3 MSTORE PUSH2 0x1A29 PUSH1 0x20 DUP5 ADD PUSH2 0x1755 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1A3D PUSH1 0x40 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1A54 PUSH1 0x60 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A6B PUSH1 0x80 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x1A82 PUSH1 0xA0 DUP5 ADD PUSH2 0x174A JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0x1A99 PUSH1 0xC0 DUP5 ADD PUSH2 0x173F JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x1ABD PUSH1 0xE0 DUP1 DUP5 ADD SWAP1 DUP6 ADD PUSH2 0x18A0 JUMP JUMPDEST PUSH2 0x2E0 SWAP3 DUP4 ADD CALLDATALOAD SWAP2 SWAP1 SWAP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x311 DUP3 DUP5 PUSH2 0x1902 JUMP JUMPDEST PUSH2 0x320 DUP2 ADD PUSH2 0x1AEA DUP3 DUP6 PUSH2 0x1902 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND PUSH2 0x300 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1B11 JUMPI PUSH2 0x1B11 PUSH2 0x1C51 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1B35 JUMPI PUSH2 0x1B35 PUSH2 0x1C51 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFFF DUP1 DUP5 AND DUP1 PUSH2 0x1B53 JUMPI PUSH2 0x1B53 PUSH2 0x1C67 JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1B71 JUMPI PUSH2 0x1B71 PUSH2 0x1C51 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x1B93 JUMPI PUSH2 0x1B93 PUSH2 0x1C51 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP2 DUP2 PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1BFC JUMPI DUP4 CALLDATALOAD PUSH2 0x1BB5 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP4 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x3 DUP6 SWAP1 SHL DUP2 DUP2 SHL DUP1 NOT SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP2 AND SWAP1 SHL AND OR DUP4 SSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1C DUP3 GT ISZERO PUSH2 0x1BF4 JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x1 DUP4 ADD SWAP3 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1BA1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1C36 JUMPI PUSH2 0x1C36 PUSH2 0x1C51 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1C4C JUMPI PUSH2 0x1C4C PUSH2 0x1C67 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1EEC JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x311 DUP2 PUSH2 0x1F0A JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1CCE DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH1 0xFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1D0B DUP2 PUSH2 0x1F1C JUMP JUMPDEST PUSH2 0xFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000 DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH2 0x1D84 PUSH2 0x1D4D PUSH1 0x40 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFF AND PUSH1 0x10 SWAP2 SWAP1 SWAP2 SHL PUSH6 0xFFFFFFFF0000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1DCE PUSH2 0x1D93 PUSH1 0x60 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFF AND PUSH1 0x30 SWAP2 SWAP1 SWAP2 SHL PUSH10 0xFFFFFFFF000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E1C PUSH2 0x1DDD PUSH1 0x80 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFF AND PUSH1 0x50 SWAP2 SWAP1 SWAP2 SHL PUSH14 0xFFFFFFFF00000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1E6E PUSH2 0x1E2B PUSH1 0xA0 DUP5 ADD PUSH2 0x1CB6 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x70 SWAP2 SWAP1 SWAP2 SHL PUSH18 0xFFFFFFFF0000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1ECD PUSH2 0x1E7D PUSH1 0xC0 DUP5 ADD PUSH2 0x1CA9 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFF00000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x90 SWAP2 SWAP1 SWAP2 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1EDD PUSH1 0xE0 DUP4 ADD PUSH1 0x1 DUP4 ADD PUSH2 0x1B9B JUMP JUMPDEST PUSH2 0x2E0 DUP3 ADD CALLDATALOAD PUSH1 0x3 DUP3 ADD SSTORE POP POP JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1F07 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 0xE8 0xD6 0xD4 SWAP3 0xEB EXTCODESIZE 0xD8 0xF7 0xC5 PUSH29 0x3C8534092542C241148344B2FB5ACB1E8E53F761F64736F6C63430008 MOD STOP CALLER ",
              "sourceMap": "904:8038:25:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5884:268;;;;;;:::i;:::-;;:::i;:::-;;;5476:14:94;;5469:22;5451:41;;5439:2;5424:18;5884:268:25;;;;;;;;3640:539;;;:::i;:::-;;;13004:10:94;12992:23;;;12974:42;;12962:2;12947:18;3640:539:25;12929:93:94;4645:1188:25;;;:::i;:::-;;;;;;;;:::i;4230:364::-;;;:::i;2630:235::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1403:89:18:-;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;;-1:-1:-1;;;;;4504:55:94;;;4486:74;;4474:2;4459:18;1403:89:18;4441:125:94;3147:129:19;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;2457:122:25;2546:14;:26;;;;;;2457:122;;6203:461;;;;;;:::i;:::-;;:::i;1744:123:18:-;;;;;;:::i;:::-;;:::i;2916:673:25:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2014:101:19:-;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;5884:268:25:-;6071:4;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;9656:2:94;2840:99:18;;;9638:21:94;9695:2;9675:18;;;9668:30;9734:34;9714:18;;;9707:62;9805:8;9785:18;;;9778:36;9831:19;;2840:99:18;;;;;;;;;6094:51:25::1;6117:7;6126:18;6094:22;:51::i;:::-;6087:58;;2949:1:18;5884:268:25::0;;;;:::o;3640:539::-;3727:55;;;;;;;;3768:14;3727:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3709:6;;3793:61;;3842:1;3835:8;;;3640:539;:::o;3793:61::-;3889:16;;;;4002:27;:44;;;;;;;;;;:::i;:::-;;;;:61;;;;;;:66;3998:175;;-1:-1:-1;4091:18:25;;;;3640:539;-1:-1:-1;3640:539:25:o;4645:1188::-;4747:67;;:::i;:::-;4845:55;;;;;;;;4886:14;4845:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4816:13;;5001:27;;4845:55;5001:45;;;;;;:::i;:::-;4981:65;;;;;;;;5001:45;;;;;;;;;4981:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5001:45;;4981:65;;;;;;;;;;;-1:-1:-1;4981:65:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4981:65:25;;;-1:-1:-1;;;4981:65:25;;;;;;;;;;;5149:17;;4981:65;;-1:-1:-1;5149:22:25;;5145:682;;5196:1;5187:10;;4835:998;4645:1188;;:::o;5145:682::-;5283:30;;:35;;5279:548;;5469:50;;;;;;;;5489:27;5469:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5489:27;;5469:50;;;;5489:30;;5469:50;;5489:30;5517:1;5469:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5469:50:25;;;-1:-1:-1;;;5469:50:25;;;;;;;;;;;5568:16;;;5543:17;;5469:50;;-1:-1:-1;5568:16:25;5543:21;;5563:1;5543:21;:::i;:::-;5542:42;;;;:::i;:::-;5533:51;;4835:998;4645:1188;;:::o;5279:548::-;5798:18;;;;5773:17;;:21;;5793:1;5773:21;:::i;4230:364::-;4332:67;;:::i;:::-;4430:55;;;;;;;;4471:14;4430:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4401:13;;4504:27;;4532:34;;4430:55;;;4532:15;:34;:::i;:::-;4504:63;;;;;;;;;:::i;:::-;4569:17;;4496:91;;;;;;;;4504:63;;;;;;;;;4496:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4504:63;;4569:17;;4496:91;4504:63;;4496:91;;;;;;;;;;;-1:-1:-1;4496:91:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4230:364;;:::o;2630:235::-;2740:49;;:::i;:::-;2812:46;;;;;;;;2834:14;2812:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2850:7;2812:21;:46::i;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;7886:2:94;4028:71:19;;;7868:21:94;7925:2;7905:18;;;7898:30;7964:33;7944:18;;;7937:61;8015:18;;4028:71:19;7858:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7175:2:94;3819:58:19;;;7157:21:94;7214:2;7194:18;;;7187:30;7253:26;7233:18;;;7226:54;7297:18;;3819:58:19;7147:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;6203:461:25:-;6380:6;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7175:2:94;3819:58:19;;;7157:21:94;7214:2;7194:18;;;7187:30;7253:26;7233:18;;;7226:54;7297:18;;3819:58:19;7147:174:94;3819:58:19;6398:55:25::1;::::0;;::::1;::::0;::::1;::::0;;6439:14:::1;6398:55:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;:38:::1;::::0;6478:24:::1;::::0;6398:55;;6494:7;;6478:15:::1;:24;:::i;:::-;6463:39;;6549:18;6512:27;6540:5;6512:34;;;;;;;;;:::i;:::-;;;;:55;::::0;:34;:55:::1;:::i;:::-;;;;6604:7;6583:49;;;6613:18;6583:49;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;6650:7:25;;6203:461;-1:-1:-1;;;6203:461:25:o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7175:2:94;3819:58:19;;;7157:21:94;7214:2;7194:18;;;7187:30;7253:26;7233:18;;;7226:54;7297:18;;3819:58:19;7147:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;3887:1:19:-;1744:123:18::0;;;:::o;2916:673:25:-;3155:55;;;3039:51;3155:55;;;;;3196:14;3155:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;3130:8;;3106:21;3130:8;3306:93;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;3220:179;;3415:9;3410:136;3434:13;3430:1;:17;3410:136;;;3493:42;3515:6;3523:8;;3532:1;3523:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3493:21;:42::i;:::-;3468:19;3488:1;3468:22;;;;;;;;:::i;:::-;;;;;;:67;;;;3449:3;;;;;:::i;:::-;;;;3410:136;;;-1:-1:-1;3563:19:25;2916:673;-1:-1:-1;;;;;2916:673:25:o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7175:2:94;3819:58:19;;;7157:21:94;7214:2;7194:18;;;7187:30;7253:26;7233:18;;;7226:54;7297:18;;3819:58:19;7147:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;10408:2:94;2826:73:19::1;::::0;::::1;10390:21:94::0;10447:2;10427:18;;;10420:30;10486:34;10466:18;;;10459:62;10557:7;10537:18;;;10530:35;10582:19;;2826:73:19::1;10380:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;7342:1598:25:-;7502:4;7536:1;7526:7;:11;;;7518:45;;;;-1:-1:-1;;;7518:45:25;;8590:2:94;7518:45:25;;;8572:21:94;8629:2;8609:18;;;8602:30;8668:23;8648:18;;;8641:51;8709:18;;7518:45:25;8562:171:94;7518:45:25;7619:1;7581:35;;;;;;;;:::i;:::-;:39;;;7573:82;;;;-1:-1:-1;;;7573:82:25;;9297:2:94;7573:82:25;;;9279:21:94;9336:2;9316:18;;;9309:30;9375:32;9355:18;;;9348:60;9425:18;;7573:82:25;9269:180:94;7573:82:25;7727:35;;;;;;;;:::i;:::-;7721:41;;;;:3;:41;:::i;:::-;7686:76;;:31;;;;:18;:31;:::i;:::-;:76;;;;7665:154;;;;-1:-1:-1;;;7665:154:25;;6815:2:94;7665:154:25;;;6797:21:94;6854:2;6834:18;;;6827:30;6893:33;6873:18;;;6866:61;6944:18;;7665:154:25;6787:181:94;7665:154:25;7872:1;7838:31;;;;:18;:31;:::i;:::-;:35;;;7830:74;;;;-1:-1:-1;;;7830:74:25;;5705:2:94;7830:74:25;;;5687:21:94;5744:2;5724:18;;;5717:30;5783:28;5763:18;;;5756:56;5829:18;;7830:74:25;5677:176:94;7830:74:25;7959:1;7922:34;;;;;;;;:::i;:::-;:38;;;7914:80;;;;-1:-1:-1;;;7914:80:25;;7528:2:94;7914:80:25;;;7510:21:94;7567:2;7547:18;;;7540:30;7606:31;7586:18;;;7579:59;7655:18;;7914:80:25;7500:179:94;7914:80:25;8048:1;8012:33;;;;;;;;:::i;:::-;:37;;;8004:78;;;;-1:-1:-1;;;8004:78:25;;8940:2:94;8004:78:25;;;8922:21:94;8979:2;8959:18;;;8952:30;9018;8998:18;;;8991:58;9066:18;;8004:78:25;8912:178:94;8004:78:25;8153:21;8210:31;8153:21;8252:160;8284:11;8276:5;:19;8252:160;;;8320:12;8335:18;:24;;8360:5;8335:31;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;8320:46;;;-1:-1:-1;8380:21:25;8320:46;8380:21;;:::i;:::-;;;8306:106;8297:7;;;;;:::i;:::-;;;;8252:160;;;;1446:3;8501:13;:30;;8493:65;;;;-1:-1:-1;;;8493:65:25;;6060:2:94;8493:65:25;;;6042:21:94;6099:2;6079:18;;;6072:30;6138:24;6118:18;;;6111:52;6180:18;;8493:65:25;6032:172:94;8493:65:25;8569:55;;;;;;;;8610:14;8569:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8741:18;;8693:27;;8569:55;8693:45;;;;;;:::i;:::-;;;;:66;;:45;:66;:::i;:::-;-1:-1:-1;8826:20:25;;-1:-1:-1;8826:6:25;8838:7;8826:11;:20::i;:::-;8809:37;;:14;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8862:49;;;;;;;;;;8892:18;;8862:49;:::i;:::-;;;;;;;;-1:-1:-1;8929:4:25;;7342:1598;-1:-1:-1;;;;;7342:1598:25:o;1587:517:41:-;1667:6;1693:22;1707:7;1693:13;:22::i;:::-;:55;;;;;1730:7;:18;;;1719:29;;:7;:29;;;;1693:55;1685:83;;;;-1:-1:-1;;;1685:83:41;;8246:2:94;1685:83:41;;;8228:21:94;8285:2;8265:18;;;8258:30;8324:17;8304:18;;;8297:45;8359:18;;1685:83:41;8218:165:94;1685:83:41;1800:18;;1779;;1800:28;;1821:7;;1800:28;:::i;:::-;1779:49;;1860:7;:19;;;1846:33;;:11;:33;;;1838:62;;;;-1:-1:-1;;;1838:62:41;;10063:2:94;1838:62:41;;;10045:21:94;10102:2;10082:18;;;10075:30;10141:18;10121;;;10114:46;10177:18;;1838:62:41;10035:166:94;1838:62:41;1911:18;1932:65;1958:7;:17;;;1932:65;;1977:7;:19;;;1932:65;;:25;:65::i;:::-;1911:86;;2022:74;2050:10;2022:74;;2063:11;2022:74;;2076:7;:19;;;2022:74;;:20;:74::i;:::-;2008:89;1587:517;-1:-1:-1;;;;;1587:517:41:o;6879:268:25:-;7014:49;;:::i;:::-;7086:27;7114:25;:7;7131;7114:16;:25::i;:::-;7086:54;;;;;;;;;:::i;:::-;7079:61;;;;;;;;7086:54;;;;;;;;;7079:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7086:54;;7079:61;;;;;;;;;;;-1:-1:-1;7079:61:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6879:268;;;;:::o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;6411:2:94;2230:79:18;;;6393:21:94;6450:2;6430:18;;;6423:30;6489:34;6469:18;;;6462:62;6560:5;6540:18;;;6533:33;6583:19;;2230:79:18;6383:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;919:438:41:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:41;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:41;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:41;;10814:2:94;1020:91:41;;;10796:21:94;10853:2;10833:18;;;10826:30;10892:20;10872:18;;;10865:48;10930:18;;1020:91:41;10786:168:94;1020:91:41;1141:209;;;;;;;;1178:7;1141:209;;;;;;1221:63;1245:7;:17;;;1221:63;;1264:7;:19;;;1221:63;;:23;:63::i;:::-;1141:209;;;;;;1316:7;:19;;;1141:209;;;;;1122:228;;919:438;;;;:::o;598:151::-;667:4;692:7;:17;;;:22;;713:1;692:22;:49;;;;-1:-1:-1;718:18:41;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:41:o;1666:262:45:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:45;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;1872:4;:49::i;1186:208::-;1310:7;1336:51;1365:7;1341:21;1350:12;1341:6;:21;:::i;1336:51::-;1329:58;1186:208;-1:-1:-1;;;;1186:208:45:o;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;580:129::-;655:7;681:21;690:12;681:6;:21;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:134:94:-;82:20;;111:31;82:20;111:31;:::i;153:132::-;220:20;;249:30;220:20;249:30;:::i;290:130::-;356:20;;385:29;356:20;385:29;:::i;425:309::-;484:6;537:2;525:9;516:7;512:23;508:32;505:2;;;553:1;550;543:12;505:2;592:9;579:23;-1:-1:-1;;;;;635:5:94;631:54;624:5;621:65;611:2;;700:1;697;690:12;611:2;723:5;495:239;-1:-1:-1;;;495:239:94:o;739:614::-;824:6;832;885:2;873:9;864:7;860:23;856:32;853:2;;;901:1;898;891:12;853:2;941:9;928:23;970:18;1011:2;1003:6;1000:14;997:2;;;1027:1;1024;1017:12;997:2;1065:6;1054:9;1050:22;1040:32;;1110:7;1103:4;1099:2;1095:13;1091:27;1081:2;;1132:1;1129;1122:12;1081:2;1172;1159:16;1198:2;1190:6;1187:14;1184:2;;;1214:1;1211;1204:12;1184:2;1267:7;1262:2;1252:6;1249:1;1245:14;1241:2;1237:23;1233:32;1230:45;1227:2;;;1288:1;1285;1278:12;1227:2;1319;1311:11;;;;;1341:6;;-1:-1:-1;843:510:94;;-1:-1:-1;;;;843:510:94:o;1358:245::-;1416:6;1469:2;1457:9;1448:7;1444:23;1440:32;1437:2;;;1485:1;1482;1475:12;1437:2;1524:9;1511:23;1543:30;1567:5;1543:30;:::i;1608:472::-;1712:6;1720;1764:9;1755:7;1751:23;1794:3;1790:2;1786:12;1783:2;;;1811:1;1808;1801:12;1783:2;1850:9;1837:23;1869:30;1893:5;1869:30;:::i;:::-;1918:5;-1:-1:-1;2016:3:94;1947:66;1939:75;;1935:85;1932:2;;;2033:1;2030;2023:12;1932:2;;2071;2060:9;2056:18;2046:28;;1731:349;;;;;:::o;2085:243::-;2142:6;2195:2;2183:9;2174:7;2170:23;2166:32;2163:2;;;2211:1;2208;2201:12;2163:2;2250:9;2237:23;2269:29;2292:5;2269:29;:::i;2333:438::-;2434:5;2457:1;2467:298;2481:4;2478:1;2475:11;2467:298;;;2556:6;2543:20;2576:32;2600:7;2576:32;:::i;:::-;2646:10;2633:24;2621:37;;2681:4;2705:12;;;;2740:15;;;;;2501:1;2494:9;2467:298;;;2471:3;;2391:380;;:::o;2776:342::-;2868:5;2891:1;2901:211;2915:4;2912:1;2909:11;2901:211;;;2978:13;;2993:10;2974:30;2962:43;;3028:4;3052:12;;;;3087:15;;;;2935:1;2928:9;2901:211;;3123:915;3224:4;3216:5;3210:12;3206:23;3201:3;3194:36;3291:4;3283;3276:5;3272:16;3266:23;3262:34;3255:4;3250:3;3246:14;3239:58;3343:4;3336:5;3332:16;3326:23;3358:47;3399:4;3394:3;3390:14;3376:12;4237:10;4226:22;4214:35;;4204:51;3358:47;;3453:4;3446:5;3442:16;3436:23;3468:49;3511:4;3506:3;3502:14;3486;4237:10;4226:22;4214:35;;4204:51;3468:49;;3565:4;3558:5;3554:16;3548:23;3580:49;3623:4;3618:3;3614:14;3598;4237:10;4226:22;4214:35;;4204:51;3580:49;;3677:4;3670:5;3666:16;3660:23;3692:49;3735:4;3730:3;3726:14;3710;4237:10;4226:22;4214:35;;4204:51;3692:49;;3789:4;3782:5;3778:16;3772:23;3804:50;3848:4;3843:3;3839:14;3823;4120:28;4109:40;4097:53;;4087:69;3804:50;;3902:4;3895:5;3891:16;3885:23;3917:55;3966:4;3961:3;3957:14;3941;3917:55;:::i;:::-;-1:-1:-1;4023:6:94;4012:18;4006:25;3997:6;3988:16;;;;3981:51;3184:854::o;4571:735::-;4812:2;4864:21;;;4934:13;;4837:18;;;4956:22;;;4783:4;;4812:2;5035:15;;;;5009:2;4994:18;;;4783:4;5078:202;5092:6;5089:1;5086:13;5078:202;;;5141:55;5192:3;5183:6;5177:13;5141:55;:::i;:::-;5255:15;;;;5225:6;5216:16;;;;;5114:1;5107:9;5078:202;;;-1:-1:-1;5297:3:94;;4792:514;-1:-1:-1;;;;;;4792:514:94:o;10959:1215::-;11165:3;11150:19;;11191:20;;11220:29;11191:20;11220:29;:::i;:::-;11287:4;11276:16;11258:35;;11317;11346:4;11334:17;;11317:35;:::i;:::-;4327:4;4316:16;11402:4;11387:20;;4304:29;11432:36;11462:4;11450:17;;11432:36;:::i;:::-;4237:10;4226:22;11519:4;11504:20;;4214:35;11549:36;11579:4;11567:17;;11549:36;:::i;:::-;4237:10;4226:22;11636:4;11621:20;;4214:35;11666:36;11696:4;11684:17;;11666:36;:::i;:::-;4237:10;4226:22;11753:4;11738:20;;4214:35;11783:36;11813:4;11801:17;;11783:36;:::i;:::-;4237:10;4226:22;11870:4;11855:20;;4214:35;11900:37;11931:4;11919:17;;11900:37;:::i;:::-;4120:28;4109:40;11989:4;11974:20;;4097:53;12004:73;12071:4;12056:20;;;;12037:17;;12004:73;:::i;:::-;12096:6;12151:15;;;12138:29;12118:18;;;;12111:57;11132:1042;:::o;12179:277::-;12383:3;12368:19;;12396:54;12372:9;12432:6;12396:54;:::i;12461:364::-;12691:3;12676:19;;12704:54;12680:9;12740:6;12704:54;:::i;:::-;12807:10;12799:6;12795:23;12789:3;12778:9;12774:19;12767:52;12658:167;;;;;:::o;13027:128::-;13067:3;13098:1;13094:6;13091:1;13088:13;13085:2;;;13104:18;;:::i;:::-;-1:-1:-1;13140:9:94;;13075:80::o;13160:228::-;13199:3;13227:10;13264:2;13261:1;13257:10;13294:2;13291:1;13287:10;13325:3;13321:2;13317:12;13312:3;13309:21;13306:2;;;13333:18;;:::i;:::-;13369:13;;13207:181;-1:-1:-1;;;;13207:181:94:o;13393:187::-;13432:1;13458:6;13491:2;13488:1;13484:10;13513:3;13503:2;;13520:18;;:::i;:::-;13558:10;;13554:20;;;;;13438:142;-1:-1:-1;;13438:142:94:o;13585:125::-;13625:4;13653:1;13650;13647:8;13644:2;;;13658:18;;:::i;:::-;-1:-1:-1;13695:9:94;;13634:76::o;13715:221::-;13754:4;13783:10;13843;;;;13813;;13865:12;;;13862:2;;;13880:18;;:::i;:::-;13917:13;;13763:173;-1:-1:-1;;;13763:173:94:o;13941:887::-;14054:5;14087:4;14121:1;14140:13;14162:660;14176:4;14173:1;14170:11;14162:660;;;14251:6;14238:20;14271:32;14295:7;14271:32;:::i;:::-;14359:18;;14326:10;14411:1;14407:21;;;14453:18;;;14515:9;;14507:18;;;14546:16;;;;14531:32;;14527:43;14504:67;14484:88;;14607:2;14595:15;;;;;14659:1;14640:21;;;;14695:2;14677:21;;14674:2;;;14746:1;14729:18;;14796:1;14783:11;14779:19;14764:34;;14674:2;14196:1;14189:9;14162:660;;;14166:3;;;;14030:798;;:::o;14833:195::-;14872:3;14903:66;14896:5;14893:77;14890:2;;;14973:18;;:::i;:::-;-1:-1:-1;15020:1:94;15009:13;;14880:148::o;15033:112::-;15065:1;15091;15081:2;;15096:18;;:::i;:::-;-1:-1:-1;15130:9:94;;15071:74::o;15150:184::-;-1:-1:-1;;;15199:1:94;15192:88;15299:4;15296:1;15289:15;15323:4;15320:1;15313:15;15339:184;-1:-1:-1;;;15388:1:94;15381:88;15488:4;15485:1;15478:15;15512:4;15509:1;15502:15;15528:184;-1:-1:-1;;;15577:1:94;15570:88;15677:4;15674:1;15667:15;15701:4;15698:1;15691:15;15717:184;-1:-1:-1;;;15766:1:94;15759:88;15866:4;15863:1;15856:15;15890:4;15887:1;15880:15;15906:176;15951:11;16003:3;15990:17;16016:31;16041:5;16016:31;:::i;16087:174::-;16131:11;16183:3;16170:17;16196:30;16220:5;16196:30;:::i;16266:1336::-;16451:5;16438:19;16466:31;16489:7;16466:31;:::i;:::-;16529:4;16520:7;16516:18;16506:28;;16559:4;16553:11;16666:2;16597:66;16593:2;16589:75;16586:83;16580:4;16573:97;16718:2;16711:5;16707:14;16694:28;16731:31;16754:7;16731:31;:::i;:::-;16893:5;16883:7;16880:1;16876:15;16872:27;16867:2;16798:66;16794:2;16790:75;16787:83;16784:116;16778:4;16771:130;;;;16910:97;16964:42;17002:2;16995:5;16991:14;16964:42;:::i;:::-;18557:11;;18601:66;18593:75;18678:2;18674:14;;;;18690;18670:35;18590:116;18577:130;;18537:176;16910:97;17016;17070:42;17108:2;17101:5;17097:14;17070:42;:::i;:::-;18812:11;;18856:66;18848:75;18933:2;18929:14;;;;18945:22;18925:43;18845:124;18832:138;;18792:184;17016:97;17122:99;17177:43;17215:3;17208:5;17204:15;17177:43;:::i;:::-;17702:11;;17746:66;17738:75;17823:2;17819:14;;;;17835:30;17815:51;17735:132;17722:146;;17682:192;17122:99;17230:96;17282:43;17320:3;17313:5;17309:15;17282:43;:::i;:::-;17971:11;;18015:66;18007:75;18092:3;18088:15;;;;18105:38;18084:60;18004:141;17991:155;;17951:201;17230:96;17335:99;17389:44;17428:3;17421:5;17417:15;17389:44;:::i;:::-;18251:11;;18295:66;18287:75;18372:3;18368:15;;;;18385:64;18364:86;18284:167;18271:181;;18231:227;17335:99;17443:93;17531:3;17524:5;17520:15;17516:1;17510:4;17506:12;17443:93;:::i;:::-;17590:3;17583:5;17579:15;17566:29;17562:1;17556:4;17552:12;17545:51;16413:1189;;:::o;18981:140::-;19067:28;19060:5;19056:40;19049:5;19046:51;19036:2;;19111:1;19108;19101:12;19036:2;19026:95;:::o;19126:121::-;19211:10;19204:5;19200:22;19193:5;19190:33;19180:2;;19237:1;19234;19227:12;19252:114;19336:4;19329:5;19325:16;19318:5;19315:27;19305:2;;19356:1;19353;19346:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1606600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54530",
                "getBufferCardinality()": "2385",
                "getNewestPrizeDistribution()": "infinite",
                "getOldestPrizeDistribution()": "infinite",
                "getPrizeDistribution(uint32)": "infinite",
                "getPrizeDistributionCount()": "4710",
                "getPrizeDistributions(uint32[])": "infinite",
                "manager()": "2387",
                "owner()": "2376",
                "pendingOwner()": "2397",
                "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "renounceOwnership()": "28158",
                "setManager(address)": "30521",
                "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "transferOwnership(address)": "27959"
              },
              "internal": {
                "_getPrizeDistribution(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite",
                "_pushPrizeDistribution(uint32,struct IPrizeDistributionBuffer.PrizeDistribution calldata)": "infinite"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "getBufferCardinality()": "caeef7ec",
              "getNewestPrizeDistribution()": "24c21446",
              "getOldestPrizeDistribution()": "2439093a",
              "getPrizeDistribution(uint32)": "3cd8e2d5",
              "getPrizeDistributionCount()": "21e98ad9",
              "getPrizeDistributions(uint32[])": "d30a5daf",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "1124e1dc",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "ce336ce9",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"_cardinality\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"cardinality\",\"type\":\"uint8\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"PrizeDistributionSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"getPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getPrizeDistributions\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"pushPrizeDistribution\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"setPrizeDistribution\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(uint8)\":{\"params\":{\"cardinality\":\"The maximum number of records in the buffer before they begin to expire.\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_cardinality\":\"Cardinality of the `bufferMetadata`\",\"_owner\":\"Address of the PrizeDistributionBuffer owner\"}},\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getNewestPrizeDistribution()\":{\"details\":\"Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getOldestPrizeDistribution()\":{\"details\":\"Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getPrizeDistribution(uint32)\":{\"params\":{\"drawId\":\"drawId\"},\"returns\":{\"_0\":\"prizeDistribution\"}},\"getPrizeDistributionCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.\",\"returns\":{\"_0\":\"Number of PrizeDistributions stored in the prize distributions ring buffer.\"}},\"getPrizeDistributions(uint32[])\":{\"params\":{\"drawIds\":\"drawIds to get PrizeDistribution for\"},\"returns\":{\"_0\":\"prizeDistributionList\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Only callable by the owner or manager\",\"params\":{\"drawId\":\"Draw ID linked to PrizeDistribution parameters\",\"prizeDistribution\":\"PrizeDistribution parameters struct\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.\",\"returns\":{\"_0\":\"drawId\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"stateVariables\":{\"MAX_CARDINALITY\":{\"details\":\"even with daily draws, 256 will give us over 8 months of history.\"},\"TIERS_CEILING\":{\"details\":\"It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\"}},\"title\":\"PoolTogether V4 PrizeDistributionBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(uint8)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Emit when PrizeDistribution is set.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Constructor for PrizeDistributionBuffer\"},\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getNewestPrizeDistribution()\":{\"notice\":\"Read newest PrizeDistribution from prize distributions ring buffer.\"},\"getOldestPrizeDistribution()\":{\"notice\":\"Read oldest PrizeDistribution from prize distributions ring buffer.\"},\"getPrizeDistribution(uint32)\":{\"notice\":\"Gets the PrizeDistributionBuffer for a drawId\"},\"getPrizeDistributionCount()\":{\"notice\":\"Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\"},\"getPrizeDistributions(uint32[])\":{\"notice\":\"Gets PrizeDistribution list from array of drawIds\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Adds new PrizeDistribution record to ring buffer storage.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to validate the incoming parameters.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":\"PrizeDistributionBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 5805,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "prizeDistributionRingBuffer",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(PrizeDistribution)8506_storage)256_storage"
              },
              {
                "astId": 5809,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "1027",
                "type": "t_struct(Buffer)9308_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeDistribution)8506_storage)256_storage": {
                "base": "t_struct(PrizeDistribution)8506_storage",
                "encoding": "inplace",
                "label": "struct IPrizeDistributionBuffer.PrizeDistribution[256]",
                "numberOfBytes": "32768"
              },
              "t_array(t_uint32)16_storage": {
                "base": "t_uint32",
                "encoding": "inplace",
                "label": "uint32[16]",
                "numberOfBytes": "64"
              },
              "t_struct(Buffer)9308_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 9303,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 9305,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 9307,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(PrizeDistribution)8506_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeDistributionBuffer.PrizeDistribution",
                "members": [
                  {
                    "astId": 8487,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "bitRangeSize",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 8489,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "matchCardinality",
                    "offset": 1,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 8491,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "startTimestampOffset",
                    "offset": 2,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 8493,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "endTimestampOffset",
                    "offset": 6,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 8495,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "maxPicksPerUser",
                    "offset": 10,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 8497,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "expiryDuration",
                    "offset": 14,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 8499,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "numberOfPicks",
                    "offset": 18,
                    "slot": "0",
                    "type": "t_uint104"
                  },
                  {
                    "astId": 8503,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "tiers",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_uint32)16_storage"
                  },
                  {
                    "astId": 8505,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "prize",
                    "offset": 0,
                    "slot": "3",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "128"
              },
              "t_uint104": {
                "encoding": "inplace",
                "label": "uint104",
                "numberOfBytes": "13"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(uint8)": {
                "notice": "Emitted when the contract is deployed."
              },
              "PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Emit when PrizeDistribution is set."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Constructor for PrizeDistributionBuffer"
              },
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getNewestPrizeDistribution()": {
                "notice": "Read newest PrizeDistribution from prize distributions ring buffer."
              },
              "getOldestPrizeDistribution()": {
                "notice": "Read oldest PrizeDistribution from prize distributions ring buffer."
              },
              "getPrizeDistribution(uint32)": {
                "notice": "Gets the PrizeDistributionBuffer for a drawId"
              },
              "getPrizeDistributionCount()": {
                "notice": "Gets the number of PrizeDistributions stored in the prize distributions ring buffer."
              },
              "getPrizeDistributions(uint32[])": {
                "notice": "Gets PrizeDistribution list from array of drawIds"
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Adds new PrizeDistribution record to ring buffer storage."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to validate the incoming parameters.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/PrizeDistributor.sol": {
        "PrizeDistributor": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IERC20",
                  "name": "_token",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "_drawCalculator",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "payout",
                  "type": "uint256"
                }
              ],
              "name": "ClaimedDraw",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculator",
                  "name": "calculator",
                  "type": "address"
                }
              ],
              "name": "DrawCalculatorSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "ERC20Withdrawn",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "TokenSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "_data",
                  "type": "bytes"
                }
              ],
              "name": "claim",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDrawPayoutBalanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "_newCalculator",
                  "type": "address"
                }
              ],
              "name": "setDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "_erc20Token",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawERC20",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "details": "The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \"optimal\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.",
                "params": {
                  "data": "The data to pass to the draw calculator",
                  "drawIds": "Draw IDs from global DrawBuffer reference",
                  "user": "Address of user to claim awards for. Does NOT need to be msg.sender"
                },
                "returns": {
                  "_0": "Total claim payout. May include calcuations from multiple draws."
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_drawCalculator": "DrawCalculator address",
                  "_owner": "Owner address",
                  "_token": "Token address"
                }
              },
              "getDrawCalculator()": {
                "returns": {
                  "_0": "IDrawCalculator"
                }
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "params": {
                  "drawId": "Draw ID",
                  "user": "User address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setDrawCalculator(address)": {
                "params": {
                  "newCalculator": "DrawCalculator address"
                },
                "returns": {
                  "_0": "New DrawCalculator address"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawERC20(address,address,uint256)": {
                "details": "Only callable by contract owner.",
                "params": {
                  "amount": "Amount of tokens to transfer.",
                  "to": "Recipient of the tokens.",
                  "token": "ERC20 token to transfer."
                },
                "returns": {
                  "_0": "true if operation is successful."
                }
              }
            },
            "title": "PoolTogether V4 PrizeDistributor",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_6347": {
                  "entryPoint": null,
                  "id": 6347,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_setDrawCalculator_6631": {
                  "entryPoint": 343,
                  "id": 6631,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 263,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$663t_contract$_IDrawCalculator_$8482_fromMemory": {
                  "entryPoint": 505,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 589,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1476:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "167:404:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "213:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "222:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "225:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "215:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "215:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "215:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "188:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "197:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "184:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "184:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "209:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "180:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "180:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "177:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "238:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "257:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "251:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "251:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "242:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "301:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "276:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "316:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "326:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "316:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "340:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "365:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "376:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "361:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "361:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "355:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "355:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "344:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "414:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "389:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "389:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "389:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "431:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "441:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "457:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "482:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "493:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "478:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "478:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "472:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "472:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "461:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "506:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "548:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "558:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "548:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$663t_contract$_IDrawCalculator_$8482_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "117:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "128:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "140:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "148:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "156:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:557:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "750:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "767:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "778:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "760:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "760:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "760:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "801:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "812:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "797:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "797:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "790:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "790:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "790:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "840:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "851:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "836:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "836:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "856:32:94",
                                    "type": "",
                                    "value": "PrizeDistributor/calc-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "829:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "829:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "829:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "898:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "910:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "921:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "906:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "906:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "898:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "727:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "741:4:94",
                            "type": ""
                          }
                        ],
                        "src": "576:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1109:229:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1126:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1137:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1119:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1119:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1119:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1160:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1171:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1156:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1156:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1176:2:94",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1149:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1149:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1149:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1199:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1210:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1195:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1195:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1215:34:94",
                                    "type": "",
                                    "value": "PrizeDistributor/token-not-zero-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1188:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1188:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1188:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1270:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1281:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1266:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1266:18:94"
                                  },
                                  {
                                    "hexValue": "61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1286:9:94",
                                    "type": "",
                                    "value": "address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1259:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1259:37:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1259:37:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1305:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1317:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1328:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1313:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1313:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1305:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1086:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1100:4:94",
                            "type": ""
                          }
                        ],
                        "src": "935:403:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1388:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1452:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1461:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1464:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1454:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1454:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1454:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1411:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1422:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1437:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1442:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1433:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1433:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1446:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1429:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1429:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1418:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1418:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1408:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1408:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1401:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1401:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1398:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1377:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1343:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$663t_contract$_IDrawCalculator_$8482_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"PrizeDistributor/calc-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"PrizeDistributor/token-not-zero-\")\n        mstore(add(headStart, 96), \"address\")\n        tail := add(headStart, 128)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620014b5380380620014b58339810160408190526200003491620001f9565b82620000408162000107565b506200004c8162000157565b6001600160a01b038216620000b85760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d6044820152666164647265737360c81b60648201526084015b60405180910390fd5b6001600160601b0319606083901b166080526040516001600160a01b038316907fa07c91c183e42229e705a9795a1c06d76528b673788b849597364528c96eefb790600090a250505062000266565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116620001af5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401620000af565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b6000806000606084860312156200020f57600080fd5b83516200021c816200024d565b60208501519093506200022f816200024d565b604085015190925062000242816200024d565b809150509250925092565b6001600160a01b03811681146200026357600080fd5b50565b60805160601c61122a6200028b6000396000818160d00152610a5f015261122a6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063715018a611610081578063bb7d4e2d1161005b578063bb7d4e2d14610198578063e30c3978146101ab578063f2fde38b146101bc57600080fd5b8063715018a61461015e5780638da5cb5b14610166578063b7f892d11461017757600080fd5b806344004cc1116100b257806344004cc11461011e578063454a8140146101415780634e71e0c81461015457600080fd5b806321df0da7146100ce5780632d680cfa1461010d575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f0565b61013161012c366004610fb9565b6101cf565b6040519015158152602001610104565b6100f061014f366004610dbf565b6103a3565b61015c61041f565b005b61015c6104ad565b6000546001600160a01b03166100f0565b61018a610185366004610e90565b610522565b604051908152602001610104565b61018a6101a6366004610ddc565b610551565b6001546001600160a01b03166100f0565b61015c6101ca366004610dbf565b610787565b6000336101e46000546001600160a01b031690565b6001600160a01b03161461023f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b6001600160a01b0383166102bb5760405162461bcd60e51b815260206004820152602b60248201527f5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a60448201527f65726f2d616464726573730000000000000000000000000000000000000000006064820152608401610236565b6001600160a01b0384166103375760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d60448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610236565b61034b6001600160a01b03851684846108c3565b826001600160a01b0316846001600160a01b03167fbfed55bdcd242e3dd0f60ddd7d1e87c67f61c34cd9527b3e6455d841b10253628460405161039091815260200190565b60405180910390a35060015b9392505050565b6000336103b86000546001600160a01b031690565b6001600160a01b03161461040e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61041782610948565b50805b919050565b6001546001600160a01b031633146104795760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610236565b60015461048e906001600160a01b03166109f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104c06000546001600160a01b031690565b6001600160a01b0316146105165760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61052060006109f5565b565b6001600160a01b038216600090815260036020908152604080832063ffffffff8516845290915281205461039c565b6002546040517faaca392e000000000000000000000000000000000000000000000000000000008152600091829182916001600160a01b03169063aaca392e906105a7908b908b908b908b908b90600401611031565b60006040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105fb9190810190610ec5565b50805190915060005b8181101561076f576000898983818110610620576106206111b0565b90506020020160208101906106359190610ffa565b9050600084838151811061064b5761064b6111b0565b6020908102919091018101516001600160a01b038e16600090815260038352604080822063ffffffff8716835290935291822054909250908183116106d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a654469737472696275746f722f7a65726f2d7061796f7574000000006044820152606401610236565b506001600160a01b038d16600090815260036020908152604080832063ffffffff87168452909152902082905580820361070c8189611119565b97508363ffffffff168e6001600160a01b03167fda18d31fbb73ed04b84307ef1bc6602e02c855af9f65b53ed10ba43e8d35b7dd8360405161075091815260200190565b60405180910390a350505050808061076790611161565b915050610604565b5061077a8984610a52565b5090979650505050505050565b3361079a6000546001600160a01b031690565b6001600160a01b0316146107f05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b6001600160a01b03811661086c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610236565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610943908490610a8a565b505050565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401610236565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a866001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001683836108c3565b5050565b6000610adf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b6f9092919063ffffffff16565b8051909150156109435780806020019051810190610afd9190610f97565b6109435760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610236565b6060610b7e8484600085610b86565b949350505050565b606082471015610bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610236565b843b610c4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610236565b600080866001600160a01b03168587604051610c689190611015565b60006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5091509150610cba828286610cc5565b979650505050505050565b60608315610cd457508161039c565b825115610ce45782518084602001fd5b8160405162461bcd60e51b815260040161023691906110b5565b60008083601f840112610d1057600080fd5b50813567ffffffffffffffff811115610d2857600080fd5b602083019150836020828501011115610d4057600080fd5b9250929050565b600082601f830112610d5857600080fd5b815167ffffffffffffffff811115610d7257610d726111c6565b610d856020601f19601f840116016110e8565b818152846020838601011115610d9a57600080fd5b610b7e826020830160208701611131565b803563ffffffff8116811461041a57600080fd5b600060208284031215610dd157600080fd5b813561039c816111dc565b600080600080600060608688031215610df457600080fd5b8535610dff816111dc565b9450602086013567ffffffffffffffff80821115610e1c57600080fd5b818801915088601f830112610e3057600080fd5b813581811115610e3f57600080fd5b8960208260051b8501011115610e5457600080fd5b602083019650809550506040880135915080821115610e7257600080fd5b50610e7f88828901610cfe565b969995985093965092949392505050565b60008060408385031215610ea357600080fd5b8235610eae816111dc565b9150610ebc60208401610dab565b90509250929050565b60008060408385031215610ed857600080fd5b825167ffffffffffffffff80821115610ef057600080fd5b818501915085601f830112610f0457600080fd5b8151602082821115610f1857610f186111c6565b8160051b610f278282016110e8565b8381528281019086840183880185018c1015610f4257600080fd5b600097505b85881015610f65578051835260019790970196918401918401610f47565b509289015192975091945050505080821115610f8057600080fd5b50610f8d85828601610d47565b9150509250929050565b600060208284031215610fa957600080fd5b8151801515811461039c57600080fd5b600080600060608486031215610fce57600080fd5b8335610fd9816111dc565b92506020840135610fe9816111dc565b929592945050506040919091013590565b60006020828403121561100c57600080fd5b61039c82610dab565b60008251611027818460208701611131565b9190910192915050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b888110156110815763ffffffff61106e85610dab565b1682529282019290820190600101611058565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b60208152600082518060208401526110d4816040850160208701611131565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611111576111116111c6565b604052919050565b6000821982111561112c5761112c61119a565b500190565b60005b8381101561114c578181015183820152602001611134565b8381111561115b576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156111935761119361119a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f157600080fd5b5056fea2646970667358221220557022f639c475f0a583feb3258b78028a01cf2cd04f9eae9505f728e63d29d964736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x14B5 CODESIZE SUB DUP1 PUSH3 0x14B5 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1F9 JUMP JUMPDEST DUP3 PUSH3 0x40 DUP2 PUSH3 0x107 JUMP JUMPDEST POP PUSH3 0x4C DUP2 PUSH3 0x157 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0xB8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F746F6B656E2D6E6F742D7A65726F2D PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x61646472657373 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP4 SWAP1 SHL AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xA07C91C183E42229E705A9795A1C06D76528B673788B849597364528C96EEFB7 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP PUSH3 0x266 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x1AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F63616C632D6E6F742D7A65726F0000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0xAF JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xFF37EAFDC3779D387D79DCF458FDC36536D857426F03A53204694F8FBB0D8A6B SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH3 0x21C DUP2 PUSH3 0x24D JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x22F DUP2 PUSH3 0x24D JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x242 DUP2 PUSH3 0x24D JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x263 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x122A PUSH3 0x28B PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xD0 ADD MSTORE PUSH2 0xA5F ADD MSTORE PUSH2 0x122A PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xBB7D4E2D GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xBB7D4E2D EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0xB7F892D1 EQ PUSH2 0x177 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x44004CC1 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x44004CC1 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0x454A8140 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x154 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x2D680CFA EQ PUSH2 0x10D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x131 PUSH2 0x12C CALLDATASIZE PUSH1 0x4 PUSH2 0xFB9 JUMP JUMPDEST PUSH2 0x1CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0xF0 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x41F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15C PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0x522 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x1A6 CALLDATASIZE PUSH1 0x4 PUSH2 0xDDC JUMP JUMPDEST PUSH2 0x551 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x787 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1E4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x23F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F726563697069656E742D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x65726F2D61646472657373000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x337 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F45524332302D6E6F742D7A65726F2D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6164647265737300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x34B PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 DUP5 PUSH2 0x8C3 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xBFED55BDCD242E3DD0F60DDD7D1E87C67F61C34CD9527B3E6455D841B1025362 DUP5 PUSH1 0x40 MLOAD PUSH2 0x390 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x3B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x40E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x417 DUP3 PUSH2 0x948 JUMP JUMPDEST POP DUP1 JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x479 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x48E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x4C0 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x516 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x520 PUSH1 0x0 PUSH2 0x9F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x39C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH32 0xAACA392E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xAACA392E SWAP1 PUSH2 0x5A7 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1031 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5D3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5FB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0xEC5 JUMP JUMPDEST POP DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x76F JUMPI PUSH1 0x0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x620 JUMPI PUSH2 0x620 PUSH2 0x11B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x635 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x64B JUMPI PUSH2 0x64B PUSH2 0x11B0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 DUP3 KECCAK256 SLOAD SWAP1 SWAP3 POP SWAP1 DUP2 DUP4 GT PUSH2 0x6D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F7A65726F2D7061796F757400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP3 SWAP1 SSTORE DUP1 DUP3 SUB PUSH2 0x70C DUP2 DUP10 PUSH2 0x1119 JUMP JUMPDEST SWAP8 POP DUP4 PUSH4 0xFFFFFFFF AND DUP15 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDA18D31FBB73ED04B84307EF1BC6602E02C855AF9F65B53ED10BA43E8D35B7DD DUP4 PUSH1 0x40 MLOAD PUSH2 0x750 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP DUP1 DUP1 PUSH2 0x767 SWAP1 PUSH2 0x1161 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x604 JUMP JUMPDEST POP PUSH2 0x77A DUP10 DUP5 PUSH2 0xA52 JUMP JUMPDEST POP SWAP1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x79A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x86C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0x943 SWAP1 DUP5 SWAP1 PUSH2 0xA8A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x99E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F63616C632D6E6F742D7A65726F0000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xFF37EAFDC3779D387D79DCF458FDC36536D857426F03A53204694F8FBB0D8A6B SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xA86 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP4 DUP4 PUSH2 0x8C3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADF DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB6F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x943 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xAFD SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xB7E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0xB86 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0xBFE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xCA5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCAA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCBA DUP3 DUP3 DUP7 PUSH2 0xCC5 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0xCD4 JUMPI POP DUP2 PUSH2 0x39C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0xCE4 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xD10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xD40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD72 JUMPI PUSH2 0xD72 PUSH2 0x11C6 JUMP JUMPDEST PUSH2 0xD85 PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x10E8 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xD9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x39C DUP2 PUSH2 0x11DC JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xDF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0xDFF DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP7 POP DUP1 SWAP6 POP POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xE72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE7F DUP9 DUP3 DUP10 ADD PUSH2 0xCFE JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEA3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0xEAE DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP2 POP PUSH2 0xEBC PUSH1 0x20 DUP5 ADD PUSH2 0xDAB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xED8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xEF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xF04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP3 DUP3 GT ISZERO PUSH2 0xF18 JUMPI PUSH2 0xF18 PUSH2 0x11C6 JUMP JUMPDEST DUP2 PUSH1 0x5 SHL PUSH2 0xF27 DUP3 DUP3 ADD PUSH2 0x10E8 JUMP JUMPDEST DUP4 DUP2 MSTORE DUP3 DUP2 ADD SWAP1 DUP7 DUP5 ADD DUP4 DUP9 ADD DUP6 ADD DUP13 LT ISZERO PUSH2 0xF42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP8 POP JUMPDEST DUP6 DUP9 LT ISZERO PUSH2 0xF65 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP8 SWAP1 SWAP8 ADD SWAP7 SWAP2 DUP5 ADD SWAP2 DUP5 ADD PUSH2 0xF47 JUMP JUMPDEST POP SWAP3 DUP10 ADD MLOAD SWAP3 SWAP8 POP SWAP2 SWAP5 POP POP POP POP DUP1 DUP3 GT ISZERO PUSH2 0xF80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xF8D DUP6 DUP3 DUP7 ADD PUSH2 0xD47 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xFCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xFD9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0xFE9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x100C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x39C DUP3 PUSH2 0xDAB JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1027 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP7 SWAP1 PUSH1 0x80 DUP5 ADD DUP4 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0x1081 JUMPI PUSH4 0xFFFFFFFF PUSH2 0x106E DUP6 PUSH2 0xDAB JUMP JUMPDEST AND DUP3 MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1058 JUMP JUMPDEST POP DUP5 DUP2 SUB PUSH1 0x40 DUP7 ADD MSTORE DUP6 DUP2 MSTORE DUP6 DUP8 DUP4 DUP4 ADD CALLDATACOPY PUSH1 0x0 DUP2 DUP8 ADD DUP4 ADD MSTORE PUSH1 0x1F SWAP1 SWAP6 ADD PUSH1 0x1F NOT AND SWAP1 SWAP5 ADD SWAP1 SWAP4 ADD SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x10D4 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1111 PUSH2 0x11C6 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x112C JUMPI PUSH2 0x112C PUSH2 0x119A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x114C JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1134 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x115B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1193 JUMPI PUSH2 0x1193 PUSH2 0x119A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SSTORE PUSH17 0x22F639C475F0A583FEB3258B78028A01CF 0x2C 0xD0 0x4F SWAP15 0xAE SWAP6 SDIV 0xF7 0x28 0xE6 RETURNDATASIZE 0x29 0xD9 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1034:4740:26:-:0;;;1736:320;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1850:6;1648:24:19;1850:6:26;1648:9:19;:24::i;:::-;-1:-1:-1;1868:35:26::1;1887:15:::0;1868:18:::1;:35::i;:::-;-1:-1:-1::0;;;;;1921:29:26;::::1;1913:81;;;::::0;-1:-1:-1;;;1913:81:26;;1137:2:94;1913:81:26::1;::::0;::::1;1119:21:94::0;1176:2;1156:18;;;1149:30;1215:34;1195:18;;;1188:62;-1:-1:-1;;;1266:18:94;;;1259:37;1313:19;;1913:81:26::1;;;;;;;;;-1:-1:-1::0;;;;;;2004:14:26::1;::::0;;;;::::1;::::0;2033:16:::1;::::0;-1:-1:-1;;;;;2004:14:26;::::1;::::0;2033:16:::1;::::0;;;::::1;1736:320:::0;;;1034:4740;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5246:256:26:-;-1:-1:-1;;;;;5333:37:26;;5325:80;;;;-1:-1:-1;;;5325:80:26;;778:2:94;5325:80:26;;;760:21:94;817:2;797:18;;;790:30;856:32;836:18;;;829:60;906:18;;5325:80:26;750:180:94;5325:80:26;5415:14;:31;;-1:-1:-1;;;;;;5415:31:26;-1:-1:-1;;;;;5415:31:26;;;;;;;;5462:33;;;;-1:-1:-1;;5462:33:26;5246:256;:::o;14:557:94:-;140:6;148;156;209:2;197:9;188:7;184:23;180:32;177:2;;;225:1;222;215:12;177:2;257:9;251:16;276:31;301:5;276:31;:::i;:::-;376:2;361:18;;355:25;326:5;;-1:-1:-1;389:33:94;355:25;389:33;:::i;:::-;493:2;478:18;;472:25;441:7;;-1:-1:-1;506:33:94;472:25;506:33;:::i;:::-;558:7;548:17;;;167:404;;;;;:::o;1343:131::-;-1:-1:-1;;;;;1418:31:94;;1408:42;;1398:2;;1464:1;1461;1454:12;1398:2;1388:86;:::o;:::-;1034:4740:26;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_awardPayout_6647": {
                  "entryPoint": 2642,
                  "id": 6647,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 2698,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_getDrawPayoutBalanceOf_6584": {
                  "entryPoint": null,
                  "id": 6584,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_setDrawCalculator_6631": {
                  "entryPoint": 2376,
                  "id": 6631,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawPayoutBalanceOf_6602": {
                  "entryPoint": null,
                  "id": 6602,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 2549,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 1055,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claim_6454": {
                  "entryPoint": 1361,
                  "id": 6454,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@functionCallWithValue_1412": {
                  "entryPoint": 2950,
                  "id": 1412,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1342": {
                  "entryPoint": 2927,
                  "id": 1342,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getDrawCalculator_6520": {
                  "entryPoint": null,
                  "id": 6520,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawPayoutBalanceOf_6537": {
                  "entryPoint": 1314,
                  "id": 6537,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getToken_6548": {
                  "entryPoint": null,
                  "id": 6548,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1271": {
                  "entryPoint": null,
                  "id": 1271,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 1197,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 2243,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setDrawCalculator_6568": {
                  "entryPoint": 931,
                  "id": 6568,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_3192": {
                  "entryPoint": 1927,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1547": {
                  "entryPoint": 3269,
                  "id": 1547,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawERC20_6509": {
                  "entryPoint": 463,
                  "id": 6509,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_bytes_calldata": {
                  "entryPoint": 3326,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_bytes_fromMemory": {
                  "entryPoint": 3399,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 3519,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 3548,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint32": {
                  "entryPoint": 3728,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory": {
                  "entryPoint": 3781,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 3991,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IDrawCalculator_$8482": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IERC20_$663t_addresst_uint256": {
                  "entryPoint": 4025,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 4090,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 3499,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 4117,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4145,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculator_$8482__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4277,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 4328,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4377,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 4401,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 4449,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4506,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 4528,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 4550,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 4572,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:13801:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "86:275:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "135:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "144:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "147:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "137:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "137:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "137:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "114:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "122:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "110:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "110:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "106:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "106:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "99:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "99:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "96:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "160:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "183:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "170:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "170:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "160:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "233:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "242:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "245:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "235:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "235:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "235:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "205:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "213:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "202:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "202:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "199:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "258:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "274:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "282:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "270:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "270:17:94"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "258:8:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "339:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "348:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "351:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "341:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "341:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "341:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "310:6:94"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "318:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "306:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "306:19:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "327:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:30:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "334:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "299:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "299:39:94"
                              },
                              "nodeType": "YulIf",
                              "src": "296:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "49:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "57:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "65:8:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "75:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:347:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "429:492:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "478:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "487:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "490:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "480:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "480:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "480:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "457:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "465:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "453:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "453:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "472:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "449:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "449:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "442:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "442:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "439:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "503:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "519:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "513:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "513:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "507:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "565:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "567:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "567:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "567:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "541:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "545:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "538:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "538:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "535:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "596:129:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "639:2:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "643:4:94",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "635:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "635:13:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "650:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "631:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "631:86:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "719:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "627:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "627:97:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "611:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "611:114:94"
                              },
                              "variables": [
                                {
                                  "name": "array_1",
                                  "nodeType": "YulTypedName",
                                  "src": "600:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "741:7:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "750:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "734:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "734:19:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "801:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "810:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "813:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "803:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "803:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "803:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "776:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "784:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "772:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "772:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "789:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "768:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "768:26:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "796:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "765:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "765:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "762:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "852:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "860:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "848:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "848:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "array_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "871:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "880:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:18:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "887:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "826:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "826:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "826:64:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "899:16:94",
                              "value": {
                                "name": "array_1",
                                "nodeType": "YulIdentifier",
                                "src": "908:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "899:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "403:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "411:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "419:5:94",
                            "type": ""
                          }
                        ],
                        "src": "366:555:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "974:115:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "984:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1006:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "993:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "993:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "984:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1067:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1076:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1079:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1069:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1069:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1069:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1035:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1046:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1053:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1042:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1042:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1032:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1032:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1025:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1025:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1022:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "953:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "964:5:94",
                            "type": ""
                          }
                        ],
                        "src": "926:163:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1164:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1210:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1219:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1222:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1212:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1212:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1212:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1185:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1194:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1181:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1181:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1206:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1177:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1177:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1174:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1235:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1261:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1248:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1248:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1239:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1305:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1280:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1280:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1280:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1320:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1330:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1320:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1130:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1141:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1153:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1094:247:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1503:879:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1549:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1558:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1561:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1551:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1551:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1551:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1524:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1533:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1520:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1520:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1545:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1516:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1516:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1513:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1574:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1600:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1587:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1587:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1578:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1644:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1619:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1619:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1619:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1659:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1669:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1659:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1683:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1714:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1725:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1697:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1697:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1687:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1738:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1748:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1742:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1793:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1805:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1795:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1795:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1795:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1781:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1789:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1778:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1778:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1775:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1818:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1832:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1843:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1828:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1828:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1822:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1898:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1907:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1910:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1900:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1900:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1900:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1877:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1881:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1873:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1873:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1888:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1869:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1869:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1859:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1923:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1950:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1937:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1937:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1927:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1980:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1989:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1992:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1982:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1982:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1982:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1968:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1976:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1965:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1965:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1962:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2054:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2063:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2066:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2056:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2056:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2056:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2019:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2030:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2023:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2023:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2015:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2015:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2040:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2011:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2011:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2045:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2008:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2008:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2005:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2079:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2093:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2097:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2089:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2089:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2079:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2109:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2119:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2109:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2134:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2167:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2178:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2163:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2163:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2150:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2150:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2138:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2211:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2220:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2223:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2213:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2213:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2213:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2197:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2207:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2194:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2194:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2191:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2236:86:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2292:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2303:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2288:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2288:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2314:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2262:25:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2262:60:94"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2240:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2250:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2331:18:94",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "2341:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2331:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2358:18:94",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "2368:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2358:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1437:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1448:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1460:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1468:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1476:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1484:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1492:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1346:1036:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2473:233:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2519:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2528:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2531:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2521:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2521:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2521:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2494:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2503:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2490:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2490:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2515:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2486:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2486:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2483:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2544:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2570:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2557:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2557:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2548:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2614:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2589:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2589:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2589:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2629:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2639:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2629:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2653:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2685:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2696:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2681:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2681:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2663:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2663:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2653:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2431:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2442:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2454:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2462:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2387:319:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2843:1019:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2889:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2898:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2901:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2891:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2891:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2891:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2864:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2873:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2860:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2860:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2885:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2856:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2856:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2853:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2914:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2934:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2928:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2928:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2918:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2953:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2963:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2957:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3008:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3017:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3020:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3010:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3010:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3010:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2996:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3004:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2993:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2993:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2990:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3033:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3047:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3058:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3043:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3043:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3037:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3113:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3122:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3125:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3115:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3115:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3115:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3092:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3096:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3088:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3088:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3103:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3084:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3084:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3077:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3077:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3074:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3138:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3154:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3148:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3148:9:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3142:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3166:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3176:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3170:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3203:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "3205:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3205:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3205:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3195:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3199:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3192:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3192:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3189:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3234:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3248:1:94",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3251:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "3244:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3244:10:94"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3238:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3263:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulIdentifier",
                                        "src": "3294:2:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3298:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3290:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3290:11:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3274:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3274:28:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3267:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3311:16:94",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3324:3:94"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3315:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3343:3:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3348:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3336:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3336:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3336:15:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3360:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3371:3:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3376:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3367:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3367:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3360:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3388:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3403:2:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3407:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3399:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3399:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "3392:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3456:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3465:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3468:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3458:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3458:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3458:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3433:2:94"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "3437:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3429:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3429:11:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3442:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3425:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3425:20:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3447:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3422:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3422:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3419:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3481:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3490:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3485:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3545:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3566:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "3577:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3571:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3571:10:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3559:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3559:23:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3559:23:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3595:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3606:3:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3611:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3602:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3602:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "3595:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3627:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "3638:3:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3643:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3634:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3634:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "3627:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3511:1:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3514:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3508:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3508:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3518:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3520:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3529:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3532:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3525:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3525:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3520:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3504:3:94",
                                "statements": []
                              },
                              "src": "3500:156:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3665:15:94",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "3675:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3665:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3689:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3715:9:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3726:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3711:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3711:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3705:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3705:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3693:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3759:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3768:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3771:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3761:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3761:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3761:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3745:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3755:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3742:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3742:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3739:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3784:72:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3826:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3837:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3822:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3822:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3848:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3794:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3794:62:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3784:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2801:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2812:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2824:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2832:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2711:1151:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3945:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3991:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4000:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4003:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3993:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3993:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3993:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3966:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3975:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3962:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3962:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3987:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3958:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3958:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3955:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4016:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4035:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4029:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4029:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4020:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4098:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4107:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4110:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4100:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4100:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4100:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4067:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4088:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "4081:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4081:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4074:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4074:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4057:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4057:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4054:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4123:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4133:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4123:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3911:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3922:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3934:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3867:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4243:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4289:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4298:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4301:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4291:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4291:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4291:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4264:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4273:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4260:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4260:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4285:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4256:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4256:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4253:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4314:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4340:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4327:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4327:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4318:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4384:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4359:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4359:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4399:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4409:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4399:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IDrawCalculator_$8482",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4209:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4220:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4232:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4149:271:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4543:352:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4589:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4598:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4601:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4591:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4591:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4591:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4564:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4573:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4560:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4560:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4585:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4556:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4556:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4553:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4614:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4640:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4627:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4627:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4618:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4684:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4659:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4659:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4659:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4699:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4709:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4699:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4723:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4755:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4766:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4751:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4751:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4738:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4738:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4727:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4804:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4779:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4779:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4779:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4821:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4831:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4821:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4847:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4874:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4885:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4870:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4870:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4857:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4857:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4847:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IERC20_$663t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4493:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4504:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4516:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4524:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4532:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4425:470:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4969:115:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5015:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5024:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5027:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5017:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5017:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5017:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4990:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4999:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4986:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4986:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5011:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4982:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4982:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4979:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5040:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5068:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5050:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5050:28:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5040:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4935:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4946:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4958:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4900:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5226:137:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5236:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5256:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5250:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5250:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5240:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5298:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5306:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5294:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5294:17:94"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5313:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5318:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5272:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5272:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5272:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5334:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5345:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5350:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5341:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5341:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5334:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5202:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5207:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5218:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5089:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5469:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5479:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5491:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5502:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5487:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5487:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5479:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5521:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5536:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5544:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5532:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5532:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5514:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5514:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5514:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5438:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5449:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5460:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5368:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5842:842:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5852:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5870:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5881:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5866:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5866:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5856:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5900:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5915:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5923:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5911:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5911:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5893:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5893:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5893:74:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5976:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5986:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5980:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6008:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6019:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6004:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6004:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6024:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5997:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5997:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5997:30:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6036:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "6047:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "6040:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6069:6:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6077:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6062:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6062:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6062:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6093:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6104:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6115:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6100:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6100:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "6093:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6128:20:94",
                              "value": {
                                "name": "value1",
                                "nodeType": "YulIdentifier",
                                "src": "6142:6:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6132:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6157:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6166:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "6161:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6225:149:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6246:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6273:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "abi_decode_uint32",
                                                "nodeType": "YulIdentifier",
                                                "src": "6255:17:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6255:25:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "6282:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "6251:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6251:42:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6239:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6239:55:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6239:55:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6307:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6318:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6323:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6314:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6314:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6307:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6339:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "6353:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6361:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6349:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6349:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6339:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "6187:1:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6190:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6184:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6184:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6198:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6200:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "6209:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6212:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6205:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6205:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "6200:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "6180:3:94",
                                "statements": []
                              },
                              "src": "6176:198:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6394:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6405:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6390:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6390:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6414:3:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6419:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6410:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6410:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6383:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6383:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6383:47:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "6446:3:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6451:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6439:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6439:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6439:19:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6484:3:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6489:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6480:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6480:12:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "6494:6:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6502:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "6467:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6467:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6467:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "pos",
                                            "nodeType": "YulIdentifier",
                                            "src": "6533:3:94"
                                          },
                                          {
                                            "name": "value4",
                                            "nodeType": "YulIdentifier",
                                            "src": "6538:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "6529:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6529:16:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6547:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6525:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6525:25:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6552:1:94",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6518:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6518:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6518:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6563:115:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6579:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value4",
                                                "nodeType": "YulIdentifier",
                                                "src": "6592:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6600:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6588:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6588:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6605:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "6584:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6584:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6575:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6575:98:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6675:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6571:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6571:107:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6563:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5779:9:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5790:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5798:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5806:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5814:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5822:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5833:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5599:1085:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6818:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6828:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6840:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6851:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6836:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6836:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6828:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6870:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6885:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6893:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6881:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6881:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6863:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6863:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6863:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6957:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6968:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6953:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6953:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6973:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6946:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6946:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6946:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6779:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6790:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6798:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6809:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6689:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7086:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7096:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7108:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7119:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7104:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7104:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7096:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7138:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7163:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7156:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7156:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7149:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7149:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7131:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7131:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7131:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7055:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7066:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7077:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6991:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7308:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7318:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7330:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7341:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7326:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7326:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7318:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7360:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7375:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7383:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7371:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7371:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7353:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7353:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7353:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculator_$8482__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7277:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7288:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7299:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7183:250:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7553:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7563:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7575:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7586:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7571:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7571:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7563:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7605:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7620:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7628:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7616:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7616:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7598:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7598:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7598:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7522:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7533:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7544:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7438:240:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7804:321:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7821:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7832:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7814:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7814:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7814:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7844:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7864:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7858:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7858:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7848:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7891:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7902:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7887:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7887:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7907:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7880:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7880:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7880:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7949:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7957:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7945:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7945:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7966:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7977:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7962:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7962:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7982:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7923:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7923:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7923:66:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7998:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8014:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "8033:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "8041:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "8029:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "8029:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8046:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "8025:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8025:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8010:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8010:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8116:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8006:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8006:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7998:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7773:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7784:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7795:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7683:442:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8304:178:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8321:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8332:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8314:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8314:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8314:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8355:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8366:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8351:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8351:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8371:2:94",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8344:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8344:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8344:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8394:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8405:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8390:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8390:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f7a65726f2d7061796f7574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8410:30:94",
                                    "type": "",
                                    "value": "PrizeDistributor/zero-payout"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8383:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8383:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8383:58:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8450:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8462:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8473:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8458:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8458:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8450:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8281:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8295:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8130:352:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8661:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8678:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8689:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8671:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8671:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8671:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8712:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8723:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8708:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8708:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8728:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8701:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8701:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8701:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8751:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8762:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8747:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8747:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8767:32:94",
                                    "type": "",
                                    "value": "PrizeDistributor/calc-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8740:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8740:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8740:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8809:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8821:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8832:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8817:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8817:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8809:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8638:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8652:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8487:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9020:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9037:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9048:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9030:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9030:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9030:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9071:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9082:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9067:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9067:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9087:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9060:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9060:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9060:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9110:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9121:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9106:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9106:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9126:34:94",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9099:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9099:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9099:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9181:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9192:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9177:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9177:18:94"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9197:8:94",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9170:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9170:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9170:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9215:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9227:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9238:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9223:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9223:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9215:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8997:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9011:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8846:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9427:229:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9444:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9455:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9437:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9437:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9437:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9478:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9489:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9474:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9474:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9494:2:94",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9467:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9467:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9467:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9517:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9528:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9513:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9513:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9533:34:94",
                                    "type": "",
                                    "value": "PrizeDistributor/ERC20-not-zero-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9506:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9506:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9506:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9588:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9599:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9584:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9584:18:94"
                                  },
                                  {
                                    "hexValue": "61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9604:9:94",
                                    "type": "",
                                    "value": "address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9577:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9577:37:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9577:37:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9623:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9635:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9646:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9631:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9631:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9623:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9404:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9418:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9253:403:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9835:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9852:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9863:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9845:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9845:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9845:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9886:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9897:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9882:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9882:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9902:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9875:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9875:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9875:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9925:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9936:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9921:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9921:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9941:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9914:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9914:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9914:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9977:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9989:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10000:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9985:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9985:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9977:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9812:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9826:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9661:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10188:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10205:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10216:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10198:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10198:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10198:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10239:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10250:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10235:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10235:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10255:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10228:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10228:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10228:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10278:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10289:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10274:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10274:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10294:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10267:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10267:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10267:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10337:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10349:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10360:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10345:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10345:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10337:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10165:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10179:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10014:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10548:233:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10565:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10576:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10558:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10558:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10558:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10599:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10610:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10595:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10595:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10615:2:94",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10588:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10588:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10588:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10638:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10649:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10634:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10634:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10654:34:94",
                                    "type": "",
                                    "value": "PrizeDistributor/recipient-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10627:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10627:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10627:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10709:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10720:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10705:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10705:18:94"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10725:13:94",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10698:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10698:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10698:41:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10748:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10760:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10771:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10756:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10756:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10748:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10525:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10539:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10374:407:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10960:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10977:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10988:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10970:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10970:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10970:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11011:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11022:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11007:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11007:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11027:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11000:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11000:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11000:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11050:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11061:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11046:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11046:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11066:31:94",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11039:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11039:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11039:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11107:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11119:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11130:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11115:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11115:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11107:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10937:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10951:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10786:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11318:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11335:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11346:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11328:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11328:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11328:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11369:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11380:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11365:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11365:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11385:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11358:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11358:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11358:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11408:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11419:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11404:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11404:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11424:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11397:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11397:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11397:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11479:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11490:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11475:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11475:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11495:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11468:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11468:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11468:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11512:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11524:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11535:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11520:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11520:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11512:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11295:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11309:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11144:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11724:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11741:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11752:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11734:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11734:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11775:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11786:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11771:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11771:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11791:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11764:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11764:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11764:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11814:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11825:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11810:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11810:18:94"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11830:34:94",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11803:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11803:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11803:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11885:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11896:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11881:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11881:18:94"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11901:12:94",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11874:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11874:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11874:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11923:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11935:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11946:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11931:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11931:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11923:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11701:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11715:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11550:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12062:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12072:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12084:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12095:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12080:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12080:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12072:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12114:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12125:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12107:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12107:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12107:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12031:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12042:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12053:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11961:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12188:289:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12198:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12214:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12208:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12208:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "12198:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12226:117:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "12248:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "12264:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12270:2:94",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "12260:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12260:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12275:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12256:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12256:86:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12244:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12244:99:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "12230:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12418:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "12420:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12420:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12420:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12361:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12373:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12358:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12358:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12397:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12409:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12394:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12394:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "12355:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12355:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12352:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12456:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "12460:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12449:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12449:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12449:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "12168:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "12177:6:94",
                            "type": ""
                          }
                        ],
                        "src": "12143:334:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12530:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12557:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12559:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12559:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12559:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12546:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12553:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12549:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12549:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12543:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12543:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12540:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12588:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12599:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12602:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12595:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12595:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12588:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12513:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12516:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12522:3:94",
                            "type": ""
                          }
                        ],
                        "src": "12482:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12668:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12678:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12687:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "12682:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12747:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "12772:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "12777:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12768:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12768:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12791:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12796:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "12787:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12787:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "12781:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12781:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12761:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12761:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12761:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12708:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12711:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12705:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12705:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "12719:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12721:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "12730:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12733:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12726:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12726:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "12721:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "12701:3:94",
                                "statements": []
                              },
                              "src": "12697:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12836:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "12849:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "12854:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12845:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12845:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12863:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12838:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12838:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12838:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12825:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12828:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12822:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12822:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12819:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "12646:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "12651:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "12656:6:94",
                            "type": ""
                          }
                        ],
                        "src": "12615:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12925:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13016:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13018:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13018:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13018:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "12941:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12948:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12938:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12938:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "12935:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13047:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "13058:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13065:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13054:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13054:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "13047:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "12907:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "12917:3:94",
                            "type": ""
                          }
                        ],
                        "src": "12878:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13110:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13127:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13130:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13120:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13120:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13120:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13224:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13227:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13217:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13217:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13217:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13248:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13251:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13241:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13241:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13241:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13078:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13299:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13316:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13319:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13309:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13309:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13309:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13413:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13416:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13406:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13406:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13406:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13437:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13440:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13430:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13430:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13430:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13267:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13488:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13505:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13508:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13498:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13498:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13498:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13602:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13605:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13595:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13595:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13595:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13626:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13629:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13619:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13619:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13619:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13456:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13690:109:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13777:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13786:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13789:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13779:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13779:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13779:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "13713:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "13724:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13731:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13720:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13720:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "13710:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13710:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13703:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13703:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13700:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "13679:5:94",
                            "type": ""
                          }
                        ],
                        "src": "13645:154:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_bytes_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_bytes_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        if gt(_1, 0xffffffffffffffff) { panic_error_0x41() }\n        let array_1 := allocate_memory(add(and(add(_1, 0x1f), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), 0x20))\n        mstore(array_1, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(array_1, 0x20), _1)\n        array := array_1\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_2, 32)\n        value2 := length\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_decode_tuple_t_addresst_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let _4 := 0x20\n        if gt(_3, _1) { panic_error_0x41() }\n        let _5 := shl(5, _3)\n        let dst := allocate_memory(add(_5, _4))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _4)\n        let src := add(_2, _4)\n        if gt(add(add(_2, _5), _4), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _4)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n        let offset_1 := mload(add(headStart, _4))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_bytes_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IDrawCalculator_$8482(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IERC20_$663t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        let _1 := 32\n        mstore(add(headStart, _1), 96)\n        let pos := tail_1\n        mstore(tail_1, value2)\n        pos := add(headStart, 128)\n        let srcPtr := value1\n        let i := 0\n        for { } lt(i, value2) { i := add(i, 1) }\n        {\n            mstore(pos, and(abi_decode_uint32(srcPtr), 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        mstore(add(headStart, 64), sub(pos, headStart))\n        mstore(pos, value4)\n        calldatacopy(add(pos, _1), value3, value4)\n        mstore(add(add(pos, value4), _1), 0)\n        tail := add(add(pos, and(add(value4, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawCalculator_$8482__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizeDistributor/zero-payout\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"PrizeDistributor/calc-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"PrizeDistributor/ERC20-not-zero-\")\n        mstore(add(headStart, 96), \"address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"PrizeDistributor/recipient-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "6299": [
                  {
                    "length": 32,
                    "start": 208
                  },
                  {
                    "length": 32,
                    "start": 2655
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c8063715018a611610081578063bb7d4e2d1161005b578063bb7d4e2d14610198578063e30c3978146101ab578063f2fde38b146101bc57600080fd5b8063715018a61461015e5780638da5cb5b14610166578063b7f892d11461017757600080fd5b806344004cc1116100b257806344004cc11461011e578063454a8140146101415780634e71e0c81461015457600080fd5b806321df0da7146100ce5780632d680cfa1461010d575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f0565b61013161012c366004610fb9565b6101cf565b6040519015158152602001610104565b6100f061014f366004610dbf565b6103a3565b61015c61041f565b005b61015c6104ad565b6000546001600160a01b03166100f0565b61018a610185366004610e90565b610522565b604051908152602001610104565b61018a6101a6366004610ddc565b610551565b6001546001600160a01b03166100f0565b61015c6101ca366004610dbf565b610787565b6000336101e46000546001600160a01b031690565b6001600160a01b03161461023f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b6001600160a01b0383166102bb5760405162461bcd60e51b815260206004820152602b60248201527f5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a60448201527f65726f2d616464726573730000000000000000000000000000000000000000006064820152608401610236565b6001600160a01b0384166103375760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d60448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610236565b61034b6001600160a01b03851684846108c3565b826001600160a01b0316846001600160a01b03167fbfed55bdcd242e3dd0f60ddd7d1e87c67f61c34cd9527b3e6455d841b10253628460405161039091815260200190565b60405180910390a35060015b9392505050565b6000336103b86000546001600160a01b031690565b6001600160a01b03161461040e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61041782610948565b50805b919050565b6001546001600160a01b031633146104795760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610236565b60015461048e906001600160a01b03166109f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104c06000546001600160a01b031690565b6001600160a01b0316146105165760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61052060006109f5565b565b6001600160a01b038216600090815260036020908152604080832063ffffffff8516845290915281205461039c565b6002546040517faaca392e000000000000000000000000000000000000000000000000000000008152600091829182916001600160a01b03169063aaca392e906105a7908b908b908b908b908b90600401611031565b60006040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105fb9190810190610ec5565b50805190915060005b8181101561076f576000898983818110610620576106206111b0565b90506020020160208101906106359190610ffa565b9050600084838151811061064b5761064b6111b0565b6020908102919091018101516001600160a01b038e16600090815260038352604080822063ffffffff8716835290935291822054909250908183116106d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a654469737472696275746f722f7a65726f2d7061796f7574000000006044820152606401610236565b506001600160a01b038d16600090815260036020908152604080832063ffffffff87168452909152902082905580820361070c8189611119565b97508363ffffffff168e6001600160a01b03167fda18d31fbb73ed04b84307ef1bc6602e02c855af9f65b53ed10ba43e8d35b7dd8360405161075091815260200190565b60405180910390a350505050808061076790611161565b915050610604565b5061077a8984610a52565b5090979650505050505050565b3361079a6000546001600160a01b031690565b6001600160a01b0316146107f05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b6001600160a01b03811661086c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610236565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610943908490610a8a565b505050565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401610236565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a866001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001683836108c3565b5050565b6000610adf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b6f9092919063ffffffff16565b8051909150156109435780806020019051810190610afd9190610f97565b6109435760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610236565b6060610b7e8484600085610b86565b949350505050565b606082471015610bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610236565b843b610c4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610236565b600080866001600160a01b03168587604051610c689190611015565b60006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5091509150610cba828286610cc5565b979650505050505050565b60608315610cd457508161039c565b825115610ce45782518084602001fd5b8160405162461bcd60e51b815260040161023691906110b5565b60008083601f840112610d1057600080fd5b50813567ffffffffffffffff811115610d2857600080fd5b602083019150836020828501011115610d4057600080fd5b9250929050565b600082601f830112610d5857600080fd5b815167ffffffffffffffff811115610d7257610d726111c6565b610d856020601f19601f840116016110e8565b818152846020838601011115610d9a57600080fd5b610b7e826020830160208701611131565b803563ffffffff8116811461041a57600080fd5b600060208284031215610dd157600080fd5b813561039c816111dc565b600080600080600060608688031215610df457600080fd5b8535610dff816111dc565b9450602086013567ffffffffffffffff80821115610e1c57600080fd5b818801915088601f830112610e3057600080fd5b813581811115610e3f57600080fd5b8960208260051b8501011115610e5457600080fd5b602083019650809550506040880135915080821115610e7257600080fd5b50610e7f88828901610cfe565b969995985093965092949392505050565b60008060408385031215610ea357600080fd5b8235610eae816111dc565b9150610ebc60208401610dab565b90509250929050565b60008060408385031215610ed857600080fd5b825167ffffffffffffffff80821115610ef057600080fd5b818501915085601f830112610f0457600080fd5b8151602082821115610f1857610f186111c6565b8160051b610f278282016110e8565b8381528281019086840183880185018c1015610f4257600080fd5b600097505b85881015610f65578051835260019790970196918401918401610f47565b509289015192975091945050505080821115610f8057600080fd5b50610f8d85828601610d47565b9150509250929050565b600060208284031215610fa957600080fd5b8151801515811461039c57600080fd5b600080600060608486031215610fce57600080fd5b8335610fd9816111dc565b92506020840135610fe9816111dc565b929592945050506040919091013590565b60006020828403121561100c57600080fd5b61039c82610dab565b60008251611027818460208701611131565b9190910192915050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b888110156110815763ffffffff61106e85610dab565b1682529282019290820190600101611058565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b60208152600082518060208401526110d4816040850160208701611131565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611111576111116111c6565b604052919050565b6000821982111561112c5761112c61119a565b500190565b60005b8381101561114c578181015183820152602001611134565b8381111561115b576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156111935761119361119a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f157600080fd5b5056fea2646970667358221220557022f639c475f0a583feb3258b78028a01cf2cd04f9eae9505f728e63d29d964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xBB7D4E2D GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xBB7D4E2D EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0xB7F892D1 EQ PUSH2 0x177 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x44004CC1 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x44004CC1 EQ PUSH2 0x11E JUMPI DUP1 PUSH4 0x454A8140 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x154 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x2D680CFA EQ PUSH2 0x10D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x131 PUSH2 0x12C CALLDATASIZE PUSH1 0x4 PUSH2 0xFB9 JUMP JUMPDEST PUSH2 0x1CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0xF0 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x41F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15C PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0x522 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x18A PUSH2 0x1A6 CALLDATASIZE PUSH1 0x4 PUSH2 0xDDC JUMP JUMPDEST PUSH2 0x551 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF0 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0xDBF JUMP JUMPDEST PUSH2 0x787 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1E4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x23F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F726563697069656E742D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x65726F2D61646472657373000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x337 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F45524332302D6E6F742D7A65726F2D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6164647265737300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x34B PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP5 DUP5 PUSH2 0x8C3 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xBFED55BDCD242E3DD0F60DDD7D1E87C67F61C34CD9527B3E6455D841B1025362 DUP5 PUSH1 0x40 MLOAD PUSH2 0x390 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x3B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x40E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x417 DUP3 PUSH2 0x948 JUMP JUMPDEST POP DUP1 JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x479 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x48E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9F5 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x4C0 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x516 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH2 0x520 PUSH1 0x0 PUSH2 0x9F5 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH2 0x39C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x40 MLOAD PUSH32 0xAACA392E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xAACA392E SWAP1 PUSH2 0x5A7 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x1031 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5D3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x5FB SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0xEC5 JUMP JUMPDEST POP DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x76F JUMPI PUSH1 0x0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x620 JUMPI PUSH2 0x620 PUSH2 0x11B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x635 SWAP2 SWAP1 PUSH2 0xFFA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x64B JUMPI PUSH2 0x64B PUSH2 0x11B0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP4 MSTORE SWAP1 SWAP4 MSTORE SWAP2 DUP3 KECCAK256 SLOAD SWAP1 SWAP3 POP SWAP1 DUP2 DUP4 GT PUSH2 0x6D2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F7A65726F2D7061796F757400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH4 0xFFFFFFFF DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP3 SWAP1 SSTORE DUP1 DUP3 SUB PUSH2 0x70C DUP2 DUP10 PUSH2 0x1119 JUMP JUMPDEST SWAP8 POP DUP4 PUSH4 0xFFFFFFFF AND DUP15 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDA18D31FBB73ED04B84307EF1BC6602E02C855AF9F65B53ED10BA43E8D35B7DD DUP4 PUSH1 0x40 MLOAD PUSH2 0x750 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP DUP1 DUP1 PUSH2 0x767 SWAP1 PUSH2 0x1161 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x604 JUMP JUMPDEST POP PUSH2 0x77A DUP10 DUP5 PUSH2 0xA52 JUMP JUMPDEST POP SWAP1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x79A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x86C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0x943 SWAP1 DUP5 SWAP1 PUSH2 0xA8A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x99E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A654469737472696275746F722F63616C632D6E6F742D7A65726F0000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0xFF37EAFDC3779D387D79DCF458FDC36536D857426F03A53204694F8FBB0D8A6B SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xA86 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP4 DUP4 PUSH2 0x8C3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADF DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB6F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x943 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xAFD SWAP2 SWAP1 PUSH2 0xF97 JUMP JUMPDEST PUSH2 0x943 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xB7E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0xB86 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0xBFE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x236 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x236 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0xC68 SWAP2 SWAP1 PUSH2 0x1015 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xCA5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCAA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xCBA DUP3 DUP3 DUP7 PUSH2 0xCC5 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0xCD4 JUMPI POP DUP2 PUSH2 0x39C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0xCE4 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xD10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xD40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD72 JUMPI PUSH2 0xD72 PUSH2 0x11C6 JUMP JUMPDEST PUSH2 0xD85 PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x10E8 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xD9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x39C DUP2 PUSH2 0x11DC JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xDF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0xDFF DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xE1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE30 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xE3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xE54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP7 POP DUP1 SWAP6 POP POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xE72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE7F DUP9 DUP3 DUP10 ADD PUSH2 0xCFE JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEA3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0xEAE DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP2 POP PUSH2 0xEBC PUSH1 0x20 DUP5 ADD PUSH2 0xDAB JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xED8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xEF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xF04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP3 DUP3 GT ISZERO PUSH2 0xF18 JUMPI PUSH2 0xF18 PUSH2 0x11C6 JUMP JUMPDEST DUP2 PUSH1 0x5 SHL PUSH2 0xF27 DUP3 DUP3 ADD PUSH2 0x10E8 JUMP JUMPDEST DUP4 DUP2 MSTORE DUP3 DUP2 ADD SWAP1 DUP7 DUP5 ADD DUP4 DUP9 ADD DUP6 ADD DUP13 LT ISZERO PUSH2 0xF42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP8 POP JUMPDEST DUP6 DUP9 LT ISZERO PUSH2 0xF65 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP8 SWAP1 SWAP8 ADD SWAP7 SWAP2 DUP5 ADD SWAP2 DUP5 ADD PUSH2 0xF47 JUMP JUMPDEST POP SWAP3 DUP10 ADD MLOAD SWAP3 SWAP8 POP SWAP2 SWAP5 POP POP POP POP DUP1 DUP3 GT ISZERO PUSH2 0xF80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xF8D DUP6 DUP3 DUP7 ADD PUSH2 0xD47 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x39C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xFCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xFD9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0xFE9 DUP2 PUSH2 0x11DC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x100C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x39C DUP3 PUSH2 0xDAB JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1027 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP7 SWAP1 PUSH1 0x80 DUP5 ADD DUP4 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0x1081 JUMPI PUSH4 0xFFFFFFFF PUSH2 0x106E DUP6 PUSH2 0xDAB JUMP JUMPDEST AND DUP3 MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1058 JUMP JUMPDEST POP DUP5 DUP2 SUB PUSH1 0x40 DUP7 ADD MSTORE DUP6 DUP2 MSTORE DUP6 DUP8 DUP4 DUP4 ADD CALLDATACOPY PUSH1 0x0 DUP2 DUP8 ADD DUP4 ADD MSTORE PUSH1 0x1F SWAP1 SWAP6 ADD PUSH1 0x1F NOT AND SWAP1 SWAP5 ADD SWAP1 SWAP4 ADD SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x10D4 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1131 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1111 PUSH2 0x11C6 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x112C JUMPI PUSH2 0x112C PUSH2 0x119A JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x114C JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1134 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x115B JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1193 JUMPI PUSH2 0x1193 PUSH2 0x119A JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SSTORE PUSH17 0x22F639C475F0A583FEB3258B78028A01CF 0x2C 0xD0 0x4F SWAP15 0xAE SWAP6 SDIV 0xF7 0x28 0xE6 RETURNDATASIZE 0x29 0xD9 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1034:4740:26:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4313:89;4390:5;4313:89;;;-1:-1:-1;;;;;5532:55:94;;;5514:74;;5502:2;5487:18;4313:89:26;;;;;;;;3906:116;4001:14;;-1:-1:-1;;;;;4001:14:26;3906:116;;3402:460;;;;;;:::i;:::-;;:::i;:::-;;;7156:14:94;;7149:22;7131:41;;7119:2;7104:18;3402:460:26;7086:92:94;4446:231:26;;;;;;:::i;:::-;;:::i;3147:129:19:-;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;4066:203:26;;;;;;:::i;:::-;;:::i;:::-;;;12107:25:94;;;12095:2;12080:18;4066:203:26;12062:76:94;2156:1202:26;;;;;;:::i;:::-;;:::i;2014:101:19:-;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3402:460:26:-;3542:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;9863:2:94;3819:58:19;;;9845:21:94;9902:2;9882:18;;;9875:30;9941:26;9921:18;;;9914:54;9985:18;;3819:58:19;;;;;;;;;-1:-1:-1;;;;;3566:17:26;::::1;3558:73;;;::::0;-1:-1:-1;;;3558:73:26;;10576:2:94;3558:73:26::1;::::0;::::1;10558:21:94::0;10615:2;10595:18;;;10588:30;10654:34;10634:18;;;10627:62;10725:13;10705:18;;;10698:41;10756:19;;3558:73:26::1;10548:233:94::0;3558:73:26::1;-1:-1:-1::0;;;;;3649:34:26;::::1;3641:86;;;::::0;-1:-1:-1;;;3641:86:26;;9455:2:94;3641:86:26::1;::::0;::::1;9437:21:94::0;9494:2;9474:18;;;9467:30;9533:34;9513:18;;;9506:62;9604:9;9584:18;;;9577:37;9631:19;;3641:86:26::1;9427:229:94::0;3641:86:26::1;3738:38;-1:-1:-1::0;;;;;3738:24:26;::::1;3763:3:::0;3768:7;3738:24:::1;:38::i;:::-;3820:3;-1:-1:-1::0;;;;;3792:41:26::1;3807:11;-1:-1:-1::0;;;;;3792:41:26::1;;3825:7;3792:41;;;;12107:25:94::0;;12095:2;12080:18;;12062:76;3792:41:26::1;;;;;;;;-1:-1:-1::0;3851:4:26::1;3887:1:19;3402:460:26::0;;;;;:::o;4446:231::-;4574:15;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;9863:2:94;3819:58:19;;;9845:21:94;9902:2;9882:18;;;9875:30;9941:26;9921:18;;;9914:54;9985:18;;3819:58:19;9835:174:94;3819:58:19;4605:34:26::1;4624:14;4605:18;:34::i;:::-;-1:-1:-1::0;4656:14:26;3887:1:19::1;4446:231:26::0;;;:::o;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;10216:2:94;4028:71:19;;;10198:21:94;10255:2;10235:18;;;10228:30;10294:33;10274:18;;;10267:61;10345:18;;4028:71:19;10188:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;9863:2:94;3819:58:19;;;9845:21:94;9902:2;9882:18;;;9875:30;9941:26;9921:18;;;9914:54;9985:18;;3819:58:19;9835:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;4066:203:26:-;-1:-1:-1;;;;;4880:22:26;;4193:7;4880:22;;;:15;:22;;;;;;;;:31;;;;;;;;;;;4223:39;4739:179;2156:1202;2394:14;;:48;;;;;2293:7;;;;;;-1:-1:-1;;;;;2394:14:26;;:24;;:48;;2419:5;;2426:8;;;;2436:5;;;;2394:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2394:48:26;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2549:18:26;;2359:83;;-1:-1:-1;2521:25:26;2577:703;2621:17;2607:11;:31;2577:703;;;2669:13;2685:8;;2694:11;2685:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2669:37;;2720:14;2737:11;2749;2737:24;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;4880:22:26;;2775:17;4880:22;;;:15;:22;;;;;;:31;;;;;;;;;;;;2737:24;;-1:-1:-1;4880:31:26;2971:18;;;2963:59;;;;-1:-1:-1;;;2963:59:26;;8332:2:94;2963:59:26;;;8314:21:94;8371:2;8351:18;;;8344:30;8410;8390:18;;;8383:58;8458:18;;2963:59:26;8304:178:94;2963:59:26;-1:-1:-1;;;;;;5054:22:26;;;;;;:15;:22;;;;;;;;:31;;;;;;;;;;:41;;;3078:18;;;3186:25;3201:10;3186:25;;:::i;:::-;;;3250:6;3231:38;;3243:5;-1:-1:-1;;;;;3231:38:26;;3258:10;3231:38;;;;12107:25:94;;12095:2;12080:18;;12062:76;3231:38:26;;;;;;;;2655:625;;;;2640:13;;;;;:::i;:::-;;;;2577:703;;;;3290:32;3303:5;3310:11;3290:12;:32::i;:::-;-1:-1:-1;3340:11:26;;2156:1202;-1:-1:-1;;;;;;;2156:1202:26:o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;9863:2:94;3819:58:19;;;9845:21:94;9902:2;9882:18;;;9875:30;9941:26;9921:18;;;9914:54;9985:18;;3819:58:19;9835:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;11346:2:94;2826:73:19::1;::::0;::::1;11328:21:94::0;11385:2;11365:18;;;11358:30;11424:34;11404:18;;;11397:62;11495:7;11475:18;;;11468:35;11520:19;;2826:73:19::1;11318:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;701:205:6:-;840:58;;;-1:-1:-1;;;;;6881:55:94;;840:58:6;;;6863:74:94;6953:18;;;;6946:34;;;840:58:6;;;;;;;;;;6836:18:94;;;;840:58:6;;;;;;;;;;863:23;840:58;;;813:86;;833:5;;813:19;:86::i;:::-;701:205;;;:::o;5246:256:26:-;-1:-1:-1;;;;;5333:37:26;;5325:80;;;;-1:-1:-1;;;5325:80:26;;8689:2:94;5325:80:26;;;8671:21:94;8728:2;8708:18;;;8701:30;8767:32;8747:18;;;8740:60;8817:18;;5325:80:26;8661:180:94;5325:80:26;5415:14;:31;;-1:-1:-1;;5415:31:26;-1:-1:-1;;;;;5415:31:26;;;;;;;;5462:33;;;;-1:-1:-1;;5462:33:26;5246:256;:::o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5661:110:26:-;5732:32;-1:-1:-1;;;;;5732:5:26;:18;5751:3;5756:7;5732:18;:32::i;:::-;5661:110;;:::o;3207:706:6:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:6;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:6;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:6;;11752:2:94;3811:85:6;;;11734:21:94;11791:2;11771:18;;;11764:30;11830:34;11810:18;;;11803:62;11901:12;11881:18;;;11874:40;11931:19;;3811:85:6;11724:232:94;3514:223:9;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;:::-;3671:59;3514:223;-1:-1:-1;;;;3514:223:9:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:9;;9048:2:94;4790:81:9;;;9030:21:94;9087:2;9067:18;;;9060:30;9126:34;9106:18;;;9099:62;9197:8;9177:18;;;9170:36;9223:19;;4790:81:9;9020:228:94;4790:81:9;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:9;;10988:2:94;4881:60:9;;;10970:21:94;11027:2;11007:18;;;11000:30;11066:31;11046:18;;;11039:59;11115:18;;4881:60:9;10960:179:94;4881:60:9;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:9;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:9:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:9;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:9;;;;;;;;:::i;14:347:94:-;65:8;75:6;129:3;122:4;114:6;110:17;106:27;96:2;;147:1;144;137:12;96:2;-1:-1:-1;170:20:94;;213:18;202:30;;199:2;;;245:1;242;235:12;199:2;282:4;274:6;270:17;258:29;;334:3;327:4;318:6;310;306:19;302:30;299:39;296:2;;;351:1;348;341:12;296:2;86:275;;;;;:::o;366:555::-;419:5;472:3;465:4;457:6;453:17;449:27;439:2;;490:1;487;480:12;439:2;519:6;513:13;545:18;541:2;538:26;535:2;;;567:18;;:::i;:::-;611:114;719:4;-1:-1:-1;;643:4:94;639:2;635:13;631:86;627:97;611:114;:::i;:::-;750:2;741:7;734:19;796:3;789:4;784:2;776:6;772:15;768:26;765:35;762:2;;;813:1;810;803:12;762:2;826:64;887:2;880:4;871:7;867:18;860:4;852:6;848:17;826:64;:::i;926:163::-;993:20;;1053:10;1042:22;;1032:33;;1022:2;;1079:1;1076;1069:12;1094:247;1153:6;1206:2;1194:9;1185:7;1181:23;1177:32;1174:2;;;1222:1;1219;1212:12;1174:2;1261:9;1248:23;1280:31;1305:5;1280:31;:::i;1346:1036::-;1460:6;1468;1476;1484;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1561:1;1558;1551:12;1513:2;1600:9;1587:23;1619:31;1644:5;1619:31;:::i;:::-;1669:5;-1:-1:-1;1725:2:94;1710:18;;1697:32;1748:18;1778:14;;;1775:2;;;1805:1;1802;1795:12;1775:2;1843:6;1832:9;1828:22;1818:32;;1888:7;1881:4;1877:2;1873:13;1869:27;1859:2;;1910:1;1907;1900:12;1859:2;1950;1937:16;1976:2;1968:6;1965:14;1962:2;;;1992:1;1989;1982:12;1962:2;2045:7;2040:2;2030:6;2027:1;2023:14;2019:2;2015:23;2011:32;2008:45;2005:2;;;2066:1;2063;2056:12;2005:2;2097;2093;2089:11;2079:21;;2119:6;2109:16;;;2178:2;2167:9;2163:18;2150:32;2134:48;;2207:2;2197:8;2194:16;2191:2;;;2223:1;2220;2213:12;2191:2;;2262:60;2314:7;2303:8;2292:9;2288:24;2262:60;:::i;:::-;1503:879;;;;-1:-1:-1;1503:879:94;;-1:-1:-1;2341:8:94;;2236:86;1503:879;-1:-1:-1;;;1503:879:94:o;2387:319::-;2454:6;2462;2515:2;2503:9;2494:7;2490:23;2486:32;2483:2;;;2531:1;2528;2521:12;2483:2;2570:9;2557:23;2589:31;2614:5;2589:31;:::i;:::-;2639:5;-1:-1:-1;2663:37:94;2696:2;2681:18;;2663:37;:::i;:::-;2653:47;;2473:233;;;;;:::o;2711:1151::-;2824:6;2832;2885:2;2873:9;2864:7;2860:23;2856:32;2853:2;;;2901:1;2898;2891:12;2853:2;2934:9;2928:16;2963:18;3004:2;2996:6;2993:14;2990:2;;;3020:1;3017;3010:12;2990:2;3058:6;3047:9;3043:22;3033:32;;3103:7;3096:4;3092:2;3088:13;3084:27;3074:2;;3125:1;3122;3115:12;3074:2;3154;3148:9;3176:4;3199:2;3195;3192:10;3189:2;;;3205:18;;:::i;:::-;3251:2;3248:1;3244:10;3274:28;3298:2;3294;3290:11;3274:28;:::i;:::-;3336:15;;;3367:12;;;;3399:11;;;3429;;;3425:20;;3422:33;-1:-1:-1;3419:2:94;;;3468:1;3465;3458:12;3419:2;3490:1;3481:10;;3500:156;3514:2;3511:1;3508:9;3500:156;;;3571:10;;3559:23;;3532:1;3525:9;;;;;3602:12;;;;3634;;3500:156;;;-1:-1:-1;3711:18:94;;;3705:25;3675:5;;-1:-1:-1;3705:25:94;;-1:-1:-1;;;;3742:16:94;;;3739:2;;;3771:1;3768;3761:12;3739:2;;3794:62;3848:7;3837:8;3826:9;3822:24;3794:62;:::i;:::-;3784:72;;;2843:1019;;;;;:::o;3867:277::-;3934:6;3987:2;3975:9;3966:7;3962:23;3958:32;3955:2;;;4003:1;4000;3993:12;3955:2;4035:9;4029:16;4088:5;4081:13;4074:21;4067:5;4064:32;4054:2;;4110:1;4107;4100:12;4425:470;4516:6;4524;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:2;;;4601:1;4598;4591:12;4553:2;4640:9;4627:23;4659:31;4684:5;4659:31;:::i;:::-;4709:5;-1:-1:-1;4766:2:94;4751:18;;4738:32;4779:33;4738:32;4779:33;:::i;:::-;4543:352;;4831:7;;-1:-1:-1;;;4885:2:94;4870:18;;;;4857:32;;4543:352::o;4900:184::-;4958:6;5011:2;4999:9;4990:7;4986:23;4982:32;4979:2;;;5027:1;5024;5017:12;4979:2;5050:28;5068:9;5050:28;:::i;5089:274::-;5218:3;5256:6;5250:13;5272:53;5318:6;5313:3;5306:4;5298:6;5294:17;5272:53;:::i;:::-;5341:16;;;;;5226:137;-1:-1:-1;;5226:137:94:o;5599:1085::-;-1:-1:-1;;;;;5911:55:94;;5893:74;;5881:2;5986;6004:18;;;5997:30;;;5866:18;;;6062:22;;;5833:4;;6142:6;;6115:3;6100:19;;5833:4;6176:198;6190:6;6187:1;6184:13;6176:198;;;6282:10;6255:25;6273:6;6255:25;:::i;:::-;6251:42;6239:55;;6349:15;;;;6314:12;;;;6212:1;6205:9;6176:198;;;6180:3;6419:9;6414:3;6410:19;6405:2;6394:9;6390:18;6383:47;6451:6;6446:3;6439:19;6502:6;6494;6489:2;6484:3;6480:12;6467:42;6552:1;6529:16;;;6525:25;;6518:36;6600:2;6588:15;;;-1:-1:-1;;6584:88:94;6575:98;;;6571:107;;;;5842:842;-1:-1:-1;;;;;;;5842:842:94:o;7683:442::-;7832:2;7821:9;7814:21;7795:4;7864:6;7858:13;7907:6;7902:2;7891:9;7887:18;7880:34;7923:66;7982:6;7977:2;7966:9;7962:18;7957:2;7949:6;7945:15;7923:66;:::i;:::-;8041:2;8029:15;-1:-1:-1;;8025:88:94;8010:104;;;;8116:2;8006:113;;7804:321;-1:-1:-1;;7804:321:94:o;12143:334::-;12214:2;12208:9;12270:2;12260:13;;-1:-1:-1;;12256:86:94;12244:99;;12373:18;12358:34;;12394:22;;;12355:62;12352:2;;;12420:18;;:::i;:::-;12456:2;12449:22;12188:289;;-1:-1:-1;12188:289:94:o;12482:128::-;12522:3;12553:1;12549:6;12546:1;12543:13;12540:2;;;12559:18;;:::i;:::-;-1:-1:-1;12595:9:94;;12530:80::o;12615:258::-;12687:1;12697:113;12711:6;12708:1;12705:13;12697:113;;;12787:11;;;12781:18;12768:11;;;12761:39;12733:2;12726:10;12697:113;;;12828:6;12825:1;12822:13;12819:2;;;12863:1;12854:6;12849:3;12845:16;12838:27;12819:2;;12668:205;;;:::o;12878:195::-;12917:3;12948:66;12941:5;12938:77;12935:2;;;13018:18;;:::i;:::-;-1:-1:-1;13065:1:94;13054:13;;12925:148::o;13078:184::-;-1:-1:-1;;;13127:1:94;13120:88;13227:4;13224:1;13217:15;13251:4;13248:1;13241:15;13267:184;-1:-1:-1;;;13316:1:94;13309:88;13416:4;13413:1;13406:15;13440:4;13437:1;13430:15;13456:184;-1:-1:-1;;;13505:1:94;13498:88;13605:4;13602:1;13595:15;13629:4;13626:1;13619:15;13645:154;-1:-1:-1;;;;;13724:5:94;13720:54;13713:5;13710:65;13700:2;;13789:1;13786;13779:12;13700:2;13690:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "930000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claim(address,uint32[],bytes)": "infinite",
                "claimOwnership()": "54508",
                "getDrawCalculator()": "2366",
                "getDrawPayoutBalanceOf(address,uint32)": "2802",
                "getToken()": "infinite",
                "owner()": "2365",
                "pendingOwner()": "2364",
                "renounceOwnership()": "28158",
                "setDrawCalculator(address)": "28056",
                "transferOwnership(address)": "27966",
                "withdrawERC20(address,address,uint256)": "infinite"
              },
              "internal": {
                "_awardPayout(address,uint256)": "infinite",
                "_getDrawPayoutBalanceOf(address,uint32)": "infinite",
                "_setDrawCalculator(contract IDrawCalculator)": "infinite",
                "_setDrawPayoutBalanceOf(address,uint32,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "claim(address,uint32[],bytes)": "bb7d4e2d",
              "claimOwnership()": "4e71e0c8",
              "getDrawCalculator()": "2d680cfa",
              "getDrawPayoutBalanceOf(address,uint32)": "b7f892d1",
              "getToken()": "21df0da7",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setDrawCalculator(address)": "454a8140",
              "transferOwnership(address)": "f2fde38b",
              "withdrawERC20(address,address,uint256)": "44004cc1"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"contract IDrawCalculator\",\"name\":\"_drawCalculator\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"ClaimedDraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawCalculator\",\"name\":\"calculator\",\"type\":\"address\"}],\"name\":\"DrawCalculatorSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"ERC20Withdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"TokenSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"name\":\"claim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"getDrawPayoutBalanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"_newCalculator\",\"type\":\"address\"}],\"name\":\"setDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"_erc20Token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawERC20\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"details\":\"The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.\",\"params\":{\"data\":\"The data to pass to the draw calculator\",\"drawIds\":\"Draw IDs from global DrawBuffer reference\",\"user\":\"Address of user to claim awards for. Does NOT need to be msg.sender\"},\"returns\":{\"_0\":\"Total claim payout. May include calcuations from multiple draws.\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_drawCalculator\":\"DrawCalculator address\",\"_owner\":\"Owner address\",\"_token\":\"Token address\"}},\"getDrawCalculator()\":{\"returns\":{\"_0\":\"IDrawCalculator\"}},\"getDrawPayoutBalanceOf(address,uint32)\":{\"params\":{\"drawId\":\"Draw ID\",\"user\":\"User address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setDrawCalculator(address)\":{\"params\":{\"newCalculator\":\"DrawCalculator address\"},\"returns\":{\"_0\":\"New DrawCalculator address\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawERC20(address,address,uint256)\":{\"details\":\"Only callable by contract owner.\",\"params\":{\"amount\":\"Amount of tokens to transfer.\",\"to\":\"Recipient of the tokens.\",\"token\":\"ERC20 token to transfer.\"},\"returns\":{\"_0\":\"true if operation is successful.\"}}},\"title\":\"PoolTogether V4 PrizeDistributor\",\"version\":1},\"userdoc\":{\"events\":{\"ClaimedDraw(address,uint32,uint256)\":{\"notice\":\"Emit when user has claimed token from the PrizeDistributor.\"},\"DrawCalculatorSet(address)\":{\"notice\":\"Emit when DrawCalculator is set.\"},\"ERC20Withdrawn(address,address,uint256)\":{\"notice\":\"Emit when ERC20 tokens are withdrawn.\"},\"TokenSet(address)\":{\"notice\":\"Emit when Token is set.\"}},\"kind\":\"user\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"notice\":\"Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address is used as the \\\"seed\\\" phrase to generate random numbers.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initialize PrizeDistributor smart contract.\"},\"getDrawCalculator()\":{\"notice\":\"Read global DrawCalculator address.\"},\"getDrawPayoutBalanceOf(address,uint32)\":{\"notice\":\"Get the amount that a user has already been paid out for a draw\"},\"getToken()\":{\"notice\":\"Read global Ticket address.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setDrawCalculator(address)\":{\"notice\":\"Sets DrawCalculator reference contract.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawERC20(address,address,uint256)\":{\"notice\":\"Transfer ERC20 tokens out of contract to recipient address.\"}},\"notice\":\"The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims. PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users  from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then the previous prize distributor claim payout.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":\"PrizeDistributor\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 6295,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "drawCalculator",
                "offset": 0,
                "slot": "2",
                "type": "t_contract(IDrawCalculator)8482"
              },
              {
                "astId": 6306,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "userDrawPayouts",
                "offset": 0,
                "slot": "3",
                "type": "t_mapping(t_address,t_mapping(t_uint256,t_uint256))"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawCalculator)8482": {
                "encoding": "inplace",
                "label": "contract IDrawCalculator",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_uint256,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(uint256 => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_uint256,t_uint256)"
              },
              "t_mapping(t_uint256,t_uint256)": {
                "encoding": "mapping",
                "key": "t_uint256",
                "label": "mapping(uint256 => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "events": {
              "ClaimedDraw(address,uint32,uint256)": {
                "notice": "Emit when user has claimed token from the PrizeDistributor."
              },
              "DrawCalculatorSet(address)": {
                "notice": "Emit when DrawCalculator is set."
              },
              "ERC20Withdrawn(address,address,uint256)": {
                "notice": "Emit when ERC20 tokens are withdrawn."
              },
              "TokenSet(address)": {
                "notice": "Emit when Token is set."
              }
            },
            "kind": "user",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "notice": "Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address is used as the \"seed\" phrase to generate random numbers."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initialize PrizeDistributor smart contract."
              },
              "getDrawCalculator()": {
                "notice": "Read global DrawCalculator address."
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "notice": "Get the amount that a user has already been paid out for a draw"
              },
              "getToken()": {
                "notice": "Read global Ticket address."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setDrawCalculator(address)": {
                "notice": "Sets DrawCalculator reference contract."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawERC20(address,address,uint256)": {
                "notice": "Transfer ERC20 tokens out of contract to recipient address."
              }
            },
            "notice": "The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims. PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users  from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur if an \"optimal\" prize was not included in previous claim pick indices and the new claims updated payout is greater then the previous prize distributor claim payout.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/Reserve.sol": {
        "Reserve": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IERC20",
                  "name": "_token",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "reserveAccumulated",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "withdrawAccumulated",
                  "type": "uint256"
                }
              ],
              "name": "Checkpoint",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawn",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "checkpoint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_startTimestamp",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "_endTimestamp",
                  "type": "uint32"
                }
              ],
              "name": "getReserveAccumulatedBetween",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "token",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "withdrawAccumulator",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "details": "By calculating the total held tokens in a specific time range, contracts that require knowledge  of captured interest during a draw period, can easily call into the Reserve and deterministically determine the newly aqcuired tokens for that time range. ",
            "kind": "dev",
            "methods": {
              "checkpoint()": {
                "details": "Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint."
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_owner": "Owner address",
                  "_token": "ERC20 address"
                }
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "details": "Search the ring buffer for two checkpoint observations and diffs accumulator amount.",
                "params": {
                  "endTimestamp": "Transfer amount",
                  "startTimestamp": "Account address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawTo(address,uint256)": {
                "details": "Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.",
                "params": {
                  "amount": "Transfer amount",
                  "recipient": "Account address"
                }
              }
            },
            "title": "PoolTogether V4 Reserve",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_6713": {
                  "entryPoint": null,
                  "id": 6713,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 143,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory": {
                  "entryPoint": 223,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "validator_revert_address": {
                  "entryPoint": 286,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:551:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "126:287:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "172:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "181:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "184:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "174:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "174:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "174:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "147:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "156:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "143:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "143:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "168:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "136:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "197:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "216:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "210:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "210:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "201:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "260:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "235:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "235:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "235:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "275:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "285:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "275:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "299:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "335:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "320:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "320:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "303:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "373:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "348:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "348:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "348:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "390:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "400:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "390:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "84:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "95:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "107:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "115:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "463:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "527:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "536:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "539:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "529:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "529:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "529:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "486:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "497:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "512:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "517:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "508:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "508:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "521:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "504:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "504:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "493:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "493:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "483:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "483:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "476:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "476:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "473:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "452:5:94",
                            "type": ""
                          }
                        ],
                        "src": "418:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$663_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620016ee380380620016ee8339810160408190526200003491620000df565b8162000040816200008f565b506001600160601b0319606082901b166080526040516001600160a01b038216907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a2505062000137565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060408385031215620000f357600080fd5b825162000100816200011e565b602084015190925062000113816200011e565b809150509250929050565b6001600160a01b03811681146200013457600080fd5b50565b60805160601c6115846200016a6000396000818160fb015281816101fc01528181610327015261078601526115846000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe7146101b0578063e30c3978146101d3578063f2fde38b146101e4578063fc0c546a146101f757600080fd5b80638da5cb5b14610184578063af6a940014610195578063c2c4c5c1146101a857600080fd5b8063481c6a75116100bd578063481c6a75146101635780634e71e0c814610174578063715018a61461017c57600080fd5b8063205c2878146100e457806321df0da7146100f95780632d00ddda14610138575b600080fd5b6100f76100f23660046112ef565b61021e565b005b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b60035461014b906001600160e01b031681565b6040516001600160e01b03909116815260200161012f565b6002546001600160a01b031661011b565b6100f76103a5565b6100f7610433565b6000546001600160a01b031661011b565b61014b6101a3366004611354565b6104a8565b6100f7610576565b6101c36101be3660046112d4565b61057e565b604051901515815260200161012f565b6001546001600160a01b031661011b565b6100f76101f23660046112d4565b6105fa565b61011b7f000000000000000000000000000000000000000000000000000000000000000081565b336102316002546001600160a01b031690565b6001600160a01b0316148061025f5750336102546000546001600160a01b031690565b6001600160a01b0316145b6102d65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102de610736565b600380548291906000906102fc9084906001600160e01b03166113f4565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061035e82827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109fd9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161039991815260200190565b60405180910390a25050565b6001546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102cd565b600154610414906001600160a01b0316610a6d565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104466000546001600160a01b031690565b6001600160a01b03161461049c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6104a66000610a6d565b565b60008163ffffffff168363ffffffff16106105055760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468656e2d656e64000000000060448201526064016102cd565b60045462ffffff630100000082048116911660008061052383610aca565b9150915060008061053385610b40565b915091506000610547848387868b8f610bb3565b90506000610559858488878c8f610bb3565b90506105658282611489565b985050505050505050505b92915050565b6104a6610736565b6000336105936000546001600160a01b031690565b6001600160a01b0316146105e95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6105f282610c5a565b90505b919050565b3361060d6000546001600160a01b031690565b6001600160a01b0316146106635760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6001600160a01b0381166106df5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102cd565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061133b565b6003549091506001600160e01b031660008061081b85610aca565b9150915080600001516001600160e01b0316836001600160e01b031685610842919061143d565b11156109f55742600061085585876113f4565b90508163ffffffff16836020015163ffffffff161461094a576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff81106108ac576108ac611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556108e262ffffff80891690610d46565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff92831617905588811610156109455761092688600161141f565b600460036101000a81548162ffffff021916908362ffffff1602179055505b6109af565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff811061098857610988611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a68908490610d63565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610af162ffffff80851690610e48565b915060058262ffffff1662ffffff8110610b0d57610b0d611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610b6e57610b6e611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610bae5760009150600582610b0d565b915091565b60004262ffffff8416610bca576000915050610c50565b8263ffffffff16876020015163ffffffff161115610bec576000915050610c50565b8263ffffffff16886020015163ffffffff1611610c0c5750508551610c50565b600080610c1e60058989888a88610e70565b915091508463ffffffff16816020015163ffffffff161415610c4557519250610c50915050565b50519150610c509050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610ce35760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102cd565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610d5c610d5684600161143d565b8361103d565b9392505050565b6000610db8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110499092919063ffffffff16565b805190915015610a685780806020019051810190610dd69190611319565b610a685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102cd565b600081610e5757506000610570565b610d5c6001610e66848661143d565b610d5691906114b1565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610610ebb578862ffffff16610ed6565b6001610ecc62ffffff88168461143d565b610ed691906114b1565b905060005b6002610ee7838561143d565b610ef19190611475565b90508a610f03828962ffffff1661103d565b62ffffff1662ffffff8110610f1a57610f1a611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080610f6257610f5a82600161143d565b935050610edb565b8b610f72838a62ffffff16610d46565b62ffffff1662ffffff8110610f8957610f89611538565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b90910481166020830152909550600090610fce90838116908c908b9061106016565b9050808015610ff75750610ff78660200151898c63ffffffff166110609092919063ffffffff16565b1561100357505061102f565b8061101a576110136001846114b1565b9350611028565b61102583600161143d565b94505b5050610edb565b505050965096945050505050565b6000610d5c82846114f8565b60606110588484600085611131565b949350505050565b60008163ffffffff168463ffffffff161115801561108a57508163ffffffff168363ffffffff1611155b156110a6578263ffffffff168463ffffffff1611159050610d5c565b60008263ffffffff168563ffffffff16116110d5576110d063ffffffff8616640100000000611455565b6110dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116111155761111063ffffffff8616640100000000611455565b61111d565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156111a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102cd565b843b6111f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102cd565b600080866001600160a01b031685876040516112139190611387565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5091509150611265828286611270565b979650505050505050565b6060831561127f575081610d5c565b82511561128f5782518084602001fd5b8160405162461bcd60e51b81526004016102cd91906113a3565b80356001600160a01b03811681146105f557600080fd5b803563ffffffff811681146105f557600080fd5b6000602082840312156112e657600080fd5b610d5c826112a9565b6000806040838503121561130257600080fd5b61130b836112a9565b946020939093013593505050565b60006020828403121561132b57600080fd5b81518015158114610d5c57600080fd5b60006020828403121561134d57600080fd5b5051919050565b6000806040838503121561136757600080fd5b611370836112c0565b915061137e602084016112c0565b90509250929050565b600082516113998184602087016114c8565b9190910192915050565b60208152600082518060208401526113c28160408501602087016114c8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156114165761141661150c565b01949350505050565b600062ffffff8083168185168083038211156114165761141661150c565b600082198211156114505761145061150c565b500190565b600064ffffffffff8083168185168083038211156114165761141661150c565b60008261148457611484611522565b500490565b60006001600160e01b03838116908316818110156114a9576114a961150c565b039392505050565b6000828210156114c3576114c361150c565b500390565b60005b838110156114e35781810151838201526020016114cb565b838111156114f2576000848401525b50505050565b60008261150757611507611522565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fb1d2232b0180ad60e1f03df899e1e110fc9f605baab86f2f9e2a9739d34fd5b64736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x16EE CODESIZE SUB DUP1 PUSH3 0x16EE DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0xDF JUMP JUMPDEST DUP2 PUSH3 0x40 DUP2 PUSH3 0x8F JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xF40FCEC21964FFB566044D083B4073F29F7F7929110EA19E1B3EBE375D89055E SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP PUSH3 0x137 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x100 DUP2 PUSH3 0x11E JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x113 DUP2 PUSH3 0x11E JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x1584 PUSH3 0x16A PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xFB ADD MSTORE DUP2 DUP2 PUSH2 0x1FC ADD MSTORE DUP2 DUP2 PUSH2 0x327 ADD MSTORE PUSH2 0x786 ADD MSTORE PUSH2 0x1584 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0xAF6A9400 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0xC2C4C5C1 EQ PUSH2 0x1A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x205C2878 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x2D00DDDA EQ PUSH2 0x138 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12EF JUMP JUMPDEST PUSH2 0x21E JUMP JUMPDEST STOP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x14B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x433 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0x14B PUSH2 0x1A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1354 JUMP JUMPDEST PUSH2 0x4A8 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x576 JUMP JUMPDEST PUSH2 0x1C3 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x57E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x5FA JUMP JUMPDEST PUSH2 0x11B PUSH32 0x0 DUP2 JUMP JUMPDEST CALLER PUSH2 0x231 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x25F JUMPI POP CALLER PUSH2 0x254 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x2D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DE PUSH2 0x736 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x0 SWAP1 PUSH2 0x2FC SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x13F4 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x35E DUP3 DUP3 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9FD SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP3 PUSH1 0x40 MLOAD PUSH2 0x399 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x414 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA6D JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x446 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x49C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x4A6 PUSH1 0x0 PUSH2 0xA6D JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND LT PUSH2 0x505 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x526573657276652F73746172742D6C6573732D7468656E2D656E640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP2 AND PUSH1 0x0 DUP1 PUSH2 0x523 DUP4 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x533 DUP6 PUSH2 0xB40 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x547 DUP5 DUP4 DUP8 DUP7 DUP12 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x559 DUP6 DUP5 DUP9 DUP8 DUP13 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x565 DUP3 DUP3 PUSH2 0x1489 JUMP JUMPDEST SWAP9 POP POP POP POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4A6 PUSH2 0x736 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x593 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5E9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x5F2 DUP3 PUSH2 0xC5A JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x60D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x663 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP3 SWAP2 AND SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7DC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x800 SWAP2 SWAP1 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x0 DUP1 PUSH2 0x81B DUP6 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP1 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP6 PUSH2 0x842 SWAP2 SWAP1 PUSH2 0x143D JUMP JUMPDEST GT ISZERO PUSH2 0x9F5 JUMPI TIMESTAMP PUSH1 0x0 PUSH2 0x855 DUP6 DUP8 PUSH2 0x13F4 JUMP JUMPDEST SWAP1 POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ PUSH2 0x94A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP9 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x8AC JUMPI PUSH2 0x8AC PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH2 0x8E2 PUSH3 0xFFFFFF DUP1 DUP10 AND SWAP1 PUSH2 0xD46 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000 AND PUSH3 0xFFFFFF SWAP3 DUP4 AND OR SWAP1 SSTORE DUP9 DUP2 AND LT ISZERO PUSH2 0x945 JUMPI PUSH2 0x926 DUP9 PUSH1 0x1 PUSH2 0x141F JUMP JUMPDEST PUSH1 0x4 PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH3 0xFFFFFF MUL NOT AND SWAP1 DUP4 PUSH3 0xFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0x9AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP6 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x988 JUMPI PUSH2 0x988 PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x21D81D5D656869E8CE3BA8D65526A2F0DBBCD3D36F5F9999EB7C84360E45ECED SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0xA68 SWAP1 DUP5 SWAP1 PUSH2 0xD63 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0xAF1 PUSH3 0xFFFFFF DUP1 DUP6 AND SWAP1 PUSH2 0xE48 JUMP JUMPDEST SWAP2 POP PUSH1 0x5 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xB0D JUMPI PUSH2 0xB0D PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP4 SWAP2 SWAP3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 SWAP1 PUSH1 0x5 PUSH3 0xFFFFFF DUP1 DUP5 AND SWAP1 DUP2 LT PUSH2 0xB6E JUMPI PUSH2 0xB6E PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0xBAE JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x5 DUP3 PUSH2 0xB0D JUMP JUMPDEST SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH3 0xFFFFFF DUP5 AND PUSH2 0xBCA JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xBEC JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP9 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT PUSH2 0xC0C JUMPI POP POP DUP6 MLOAD PUSH2 0xC50 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xC1E PUSH1 0x5 DUP10 DUP10 DUP9 DUP11 DUP9 PUSH2 0xE70 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xC45 JUMPI MLOAD SWAP3 POP PUSH2 0xC50 SWAP2 POP POP JUMP JUMPDEST POP MLOAD SWAP2 POP PUSH2 0xC50 SWAP1 POP JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xCE3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C PUSH2 0xD56 DUP5 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST DUP4 PUSH2 0x103D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB8 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1049 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xA68 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xDD6 SWAP2 SWAP1 PUSH2 0x1319 JUMP JUMPDEST PUSH2 0xA68 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xE57 JUMPI POP PUSH1 0x0 PUSH2 0x570 JUMP JUMPDEST PUSH2 0xD5C PUSH1 0x1 PUSH2 0xE66 DUP5 DUP7 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xD56 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0xEBB JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0xED6 JUMP JUMPDEST PUSH1 0x1 PUSH2 0xECC PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xED6 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0xEE7 DUP4 DUP6 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xEF1 SWAP2 SWAP1 PUSH2 0x1475 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0xF03 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x103D JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF1A JUMPI PUSH2 0xF1A PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0xF62 JUMPI PUSH2 0xF5A DUP3 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP4 POP POP PUSH2 0xEDB JUMP JUMPDEST DUP12 PUSH2 0xF72 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xD46 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF89 JUMPI PUSH2 0xF89 PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0xFCE SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x1060 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xFF7 JUMPI POP PUSH2 0xFF7 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x1060 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x1003 JUMPI POP POP PUSH2 0x102F JUMP JUMPDEST DUP1 PUSH2 0x101A JUMPI PUSH2 0x1013 PUSH1 0x1 DUP5 PUSH2 0x14B1 JUMP JUMPDEST SWAP4 POP PUSH2 0x1028 JUMP JUMPDEST PUSH2 0x1025 DUP4 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0xEDB JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C DUP3 DUP5 PUSH2 0x14F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1058 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1131 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x108A JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x10A6 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xD5C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x10D5 JUMPI PUSH2 0x10D0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x10DD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1115 JUMPI PUSH2 0x1110 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x111D JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x11A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x11F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1213 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1250 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1255 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1265 DUP3 DUP3 DUP7 PUSH2 0x1270 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x127F JUMPI POP DUP2 PUSH2 0xD5C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x128F JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x13A3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD5C DUP3 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1302 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x130B DUP4 PUSH2 0x12A9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x132B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xD5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x134D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1370 DUP4 PUSH2 0x12C0 JUMP JUMPDEST SWAP2 POP PUSH2 0x137E PUSH1 0x20 DUP5 ADD PUSH2 0x12C0 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1399 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x13C2 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1450 JUMPI PUSH2 0x1450 PUSH2 0x150C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1484 JUMPI PUSH2 0x1484 PUSH2 0x1522 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x14A9 JUMPI PUSH2 0x14A9 PUSH2 0x150C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x14C3 JUMPI PUSH2 0x14C3 PUSH2 0x150C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x14E3 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x14CB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x14F2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1507 JUMPI PUSH2 0x1507 PUSH2 0x1522 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xFB SAR 0x22 ORIGIN 0xB0 XOR EXP 0xD6 0xE 0x1F SUB 0xDF DUP10 SWAP15 0x1E GT 0xF 0xC9 0xF6 SDIV 0xBA 0xAB DUP7 CALLCODE 0xF9 0xE2 0xA9 PUSH20 0x9D34FD5B64736F6C634300080600330000000000 ",
              "sourceMap": "1299:8854:27:-:0;;;2105:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2156:6;1648:24:19;2156:6:27;1648:9:19;:24::i;:::-;-1:-1:-1;;;;;;;2174:14:27::1;::::0;;;;::::1;::::0;2203:16:::1;::::0;-1:-1:-1;;;;;2174:14:27;::::1;::::0;2203:16:::1;::::0;;;::::1;2105:121:::0;;1299:8854;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:399:94:-;107:6;115;168:2;156:9;147:7;143:23;139:32;136:2;;;184:1;181;174:12;136:2;216:9;210:16;235:31;260:5;235:31;:::i;:::-;335:2;320:18;;314:25;285:5;;-1:-1:-1;348:33:94;314:25;348:33;:::i;:::-;400:7;390:17;;;126:287;;;;;:::o;418:131::-;-1:-1:-1;;;;;493:31:94;;483:42;;473:2;;539:1;536;529:12;473:2;463:86;:::o;:::-;1299:8854:27;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_callOptionalReturn_1116": {
                  "entryPoint": 3427,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_checkpoint_7036": {
                  "entryPoint": 1846,
                  "id": 7036,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_getNewestObservation_7103": {
                  "entryPoint": 2762,
                  "id": 7103,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getOldestObservation_7074": {
                  "entryPoint": 2880,
                  "id": 7074,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getReserveAccumulatedAt_6921": {
                  "entryPoint": 2995,
                  "id": 6921,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "@_setManager_3068": {
                  "entryPoint": 3162,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 2669,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@binarySearch_9675": {
                  "entryPoint": 3696,
                  "id": 9675,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkpoint_6722": {
                  "entryPoint": 1398,
                  "id": 6722,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 933,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1412": {
                  "entryPoint": 4401,
                  "id": 1412,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1342": {
                  "entryPoint": 4169,
                  "id": 1342,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getReserveAccumulatedBetween_6804": {
                  "entryPoint": 1192,
                  "id": 6804,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getToken_6733": {
                  "entryPoint": null,
                  "id": 6733,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1271": {
                  "entryPoint": null,
                  "id": 1271,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@lte_9789": {
                  "entryPoint": 4192,
                  "id": 9789,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_9914": {
                  "entryPoint": 3656,
                  "id": 9914,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_9932": {
                  "entryPoint": 3398,
                  "id": 9932,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 1075,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 2557,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 1406,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@token_6669": {
                  "entryPoint": null,
                  "id": 6669,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 1530,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1547": {
                  "entryPoint": 4720,
                  "id": 1547,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawAccumulator_6672": {
                  "entryPoint": null,
                  "id": 6672,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@withdrawTo_6838": {
                  "entryPoint": 542,
                  "id": 6838,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@wrap_9865": {
                  "entryPoint": 4157,
                  "id": 9865,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 4777,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4820,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 4847,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 4889,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 4923,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint32": {
                  "entryPoint": 4948,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint32": {
                  "entryPoint": 4800,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 4999,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5027,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5a0b81ddbcbbb758aeb43ab9237e227525b750aa7da0afb4fe2a9d7dc5a2d702__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint224": {
                  "entryPoint": 5108,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint24": {
                  "entryPoint": 5151,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 5181,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 5205,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 5237,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint224": {
                  "entryPoint": 5257,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 5297,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 5320,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "mod_t_uint256": {
                  "entryPoint": 5368,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5388,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 5410,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5432,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9855:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "263:115:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "273:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "295:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "282:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "282:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "273:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "356:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "365:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "368:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "358:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "358:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "358:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "335:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "342:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "331:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "331:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "321:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "321:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "311:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "242:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "253:5:94",
                            "type": ""
                          }
                        ],
                        "src": "215:163:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "453:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "499:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "508:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "511:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "501:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "501:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "501:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "474:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "483:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "470:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "470:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "495:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "466:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "466:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "463:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "524:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "553:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "534:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "534:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "524:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "419:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "430:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "442:6:94",
                            "type": ""
                          }
                        ],
                        "src": "383:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "732:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "761:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "742:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "742:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "732:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "780:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "807:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "818:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "803:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "803:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "790:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "790:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "780:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "619:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "630:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "642:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "650:6:94",
                            "type": ""
                          }
                        ],
                        "src": "574:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "911:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "957:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "966:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "969:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "959:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "959:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "959:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "932:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "941:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "928:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "928:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "953:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "924:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "924:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "921:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "982:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1001:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "995:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "995:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "986:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1064:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1073:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1076:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1066:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1066:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1066:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1033:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1054:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1047:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1047:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1040:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1040:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1030:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1030:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1023:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1023:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1020:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1089:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1099:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1089:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "877:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "888:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "900:6:94",
                            "type": ""
                          }
                        ],
                        "src": "833:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1196:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1242:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1251:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1254:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1244:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1244:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1244:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1217:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1226:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1213:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1213:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1238:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1209:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1209:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1206:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1267:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1283:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1277:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1277:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1267:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1162:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1173:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1185:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1115:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1389:171:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1435:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1444:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1447:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1437:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1437:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1437:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1410:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1419:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1406:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1406:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1431:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1402:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1399:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1460:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1488:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1470:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1470:28:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1460:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1507:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1539:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1550:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1535:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1535:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1517:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1517:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1507:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1347:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1358:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1370:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1378:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1304:256:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1702:137:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1712:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1732:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1726:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1726:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1716:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1774:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1782:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1770:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1770:17:94"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1789:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1794:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1748:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1748:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1748:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1810:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1821:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1826:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1817:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1817:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1810:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1678:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1683:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1694:3:94",
                            "type": ""
                          }
                        ],
                        "src": "1565:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1945:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1955:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1967:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1978:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1963:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1963:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1955:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1997:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2012:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2020:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2008:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2008:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1990:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1990:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1990:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1914:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1925:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1936:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1844:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2204:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2214:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2226:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2237:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2222:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2222:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2214:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2256:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2271:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2279:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2267:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2267:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2249:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2249:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2343:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2354:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2339:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2339:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2359:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2332:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2332:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2332:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2165:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2176:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2184:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2195:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2075:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2472:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2524:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2549:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2542:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2542:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2535:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2535:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2517:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2517:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2517:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2441:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2452:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2463:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2377:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2684:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2694:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2706:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2717:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2702:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2702:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2694:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2736:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2751:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2759:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2747:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2747:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2729:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2729:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2729:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2653:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2664:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2675:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2569:240:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2935:321:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2952:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2963:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2945:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2945:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2945:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2975:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2995:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2989:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2989:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2979:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3022:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3033:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3018:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3018:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3038:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3011:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3011:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3011:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3080:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3088:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3076:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3076:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3097:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3108:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3093:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3093:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3113:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3054:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3054:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3054:66:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3129:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3145:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "3164:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3172:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3160:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3160:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3177:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3156:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3156:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3141:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3141:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3247:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3129:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2904:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2915:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2926:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2814:442:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3435:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3452:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3463:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3445:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3445:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3445:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3486:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3497:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3482:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3482:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3502:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3475:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3475:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3475:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3525:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3536:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3521:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3521:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3541:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3596:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3607:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3592:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3592:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3612:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3585:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3585:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3585:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3627:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3639:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3650:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3635:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3635:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3627:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3412:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3426:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3261:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3839:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3856:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3867:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3849:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3849:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3849:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3890:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3901:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3886:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3886:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3906:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3879:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3879:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3879:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3929:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3940:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3925:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3925:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3945:34:94",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3918:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3918:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3918:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4000:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4011:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3996:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3996:18:94"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4016:8:94",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3989:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3989:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3989:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4034:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4046:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4057:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4042:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4042:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4034:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3816:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3830:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3665:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4246:177:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4263:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4274:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4256:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4256:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4256:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4297:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4308:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4293:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4293:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4313:2:94",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4286:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4286:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4286:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4336:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4347:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4332:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4332:18:94"
                                  },
                                  {
                                    "hexValue": "526573657276652f73746172742d6c6573732d7468656e2d656e64",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4352:29:94",
                                    "type": "",
                                    "value": "Reserve/start-less-then-end"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4325:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4325:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4325:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4391:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4403:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4414:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4399:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4399:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4391:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5a0b81ddbcbbb758aeb43ab9237e227525b750aa7da0afb4fe2a9d7dc5a2d702__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4223:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4237:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4072:351:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4602:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4619:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4630:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4612:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4612:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4612:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4653:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4664:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4649:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4649:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4669:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4642:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4642:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4642:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4692:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4703:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4688:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4688:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4708:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4681:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4681:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4681:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4744:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4767:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4752:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4752:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4744:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4579:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4593:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4428:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4955:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4972:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4983:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4965:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4965:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4965:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5006:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5017:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5002:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5002:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5022:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4995:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4995:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4995:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5045:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5056:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5041:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5041:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5061:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5034:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5034:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5034:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5104:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5116:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5127:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5112:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5112:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5104:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4932:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4946:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4781:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5315:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5332:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5343:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5325:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5325:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5325:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5366:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5377:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5362:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5362:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5382:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5355:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5355:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5355:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5405:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5416:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5401:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5401:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5421:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5394:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5394:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5394:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5476:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5487:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5472:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5472:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5492:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5465:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5465:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5465:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5510:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5522:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5533:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5518:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5518:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5510:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5292:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5306:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5141:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5722:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5739:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5750:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5732:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5732:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5732:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5773:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5784:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5769:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5769:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5789:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5762:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5762:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5762:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5812:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5823:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5808:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5808:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5828:31:94",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5801:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5801:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5801:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5869:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5881:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5892:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5877:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5877:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5869:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5699:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5713:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5548:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6080:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6097:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6108:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6090:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6090:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6090:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6131:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6142:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6127:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6127:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6147:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6120:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6120:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6120:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6170:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6181:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6166:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6166:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6186:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6159:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6159:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6159:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6241:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6252:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6237:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6237:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6257:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6230:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6230:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6230:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6274:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6286:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6297:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6282:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6282:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6274:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6057:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6071:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5906:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6486:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6503:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6514:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6496:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6496:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6496:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6537:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6548:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6533:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6533:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6553:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6526:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6526:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6526:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6576:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6587:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6572:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6572:18:94"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6592:34:94",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6565:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6565:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6565:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6647:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6658:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6643:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6643:18:94"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6663:12:94",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6636:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6636:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6636:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6685:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6697:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6708:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6693:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6693:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6685:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6463:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6477:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6312:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6824:141:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6834:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6846:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6857:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6842:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6842:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6834:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6876:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6891:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6899:58:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6887:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6887:71:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6869:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6869:90:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6869:90:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6793:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6804:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6815:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6723:242:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7099:214:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7109:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7121:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7132:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7117:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7117:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7109:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7144:68:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7154:58:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7148:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7228:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7243:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7251:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7239:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7239:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7221:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7221:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7221:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7275:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7286:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7271:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7271:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7295:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7303:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7291:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7291:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7264:43:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7060:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7071:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7079:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7090:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6970:343:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7419:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7429:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7441:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7452:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7437:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7437:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7429:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7471:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7482:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7464:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7464:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7464:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7388:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7399:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7410:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7318:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7548:229:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7558:68:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7568:58:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7562:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7635:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7650:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7653:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7646:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7646:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7639:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7665:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7680:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7683:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7676:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7676:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7669:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7720:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7722:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7722:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7722:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7701:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7710:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7714:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7706:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7706:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7698:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7698:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7695:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7751:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7762:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7767:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7758:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7758:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7751:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7531:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7534:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7540:3:94",
                            "type": ""
                          }
                        ],
                        "src": "7500:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7829:179:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7839:18:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7849:8:94",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7843:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7866:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7881:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7884:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7877:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7877:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7870:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7896:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7911:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7914:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7907:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7907:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7900:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7951:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7953:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7953:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7953:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7932:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7941:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7945:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7937:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7937:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7929:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7929:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7926:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7982:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7993:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7998:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7989:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7989:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7982:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7812:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7815:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7821:3:94",
                            "type": ""
                          }
                        ],
                        "src": "7782:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8061:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8088:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8090:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8090:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8090:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8077:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8084:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8080:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8080:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8074:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8074:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8071:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8119:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8130:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8133:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8126:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8126:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8119:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8044:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8047:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8053:3:94",
                            "type": ""
                          }
                        ],
                        "src": "8013:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8193:183:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8203:22:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8213:12:94",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8207:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8234:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8249:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8252:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8245:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8245:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8238:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8264:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8279:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8282:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8275:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8275:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8268:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8319:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8321:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8321:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8321:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8300:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8309:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8313:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8305:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8305:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8297:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8297:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8294:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8350:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8361:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8366:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8357:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8357:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8350:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8176:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8179:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8185:3:94",
                            "type": ""
                          }
                        ],
                        "src": "8146:230:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8427:74:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8450:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "8452:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8452:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8452:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8447:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8440:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8440:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8437:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8481:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8490:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8493:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "8486:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8486:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8481:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8412:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8415:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8421:1:94",
                            "type": ""
                          }
                        ],
                        "src": "8381:120:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8555:221:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8565:68:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8575:58:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8569:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8642:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8657:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8660:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8653:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8653:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8646:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8672:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8687:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8690:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8683:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8683:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8676:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8718:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8720:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8720:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8720:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8708:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8713:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8705:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8705:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8702:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8749:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8761:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8766:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8757:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8757:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8749:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8537:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8540:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8546:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8506:270:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8830:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8852:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8854:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8854:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8854:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8846:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8849:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8843:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8843:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8840:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8883:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8895:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8898:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8891:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8891:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8883:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8812:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8815:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8821:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8781:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8964:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8974:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8983:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8978:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9043:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9068:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "9073:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9064:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9064:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9087:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9092:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9083:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9083:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9077:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9077:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9057:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9057:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9057:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9004:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9007:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9001:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9001:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9015:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9017:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9026:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9029:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9022:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9022:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9017:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8997:3:94",
                                "statements": []
                              },
                              "src": "8993:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9132:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9145:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "9150:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9141:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9141:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9159:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9134:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9134:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9134:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9121:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9124:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9118:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9118:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9115:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "8942:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "8947:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "8952:6:94",
                            "type": ""
                          }
                        ],
                        "src": "8911:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9212:74:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "9237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9232:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9225:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9225:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9222:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9266:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9275:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9278:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "9271:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9271:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9266:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9197:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9200:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "9206:1:94",
                            "type": ""
                          }
                        ],
                        "src": "9174:112:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9323:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9340:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9343:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9333:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9333:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9333:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9437:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9440:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9430:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9430:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9430:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9461:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9464:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9454:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9291:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9512:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9529:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9532:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9522:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9522:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9522:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9626:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9629:4:94",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9619:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9619:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9619:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9650:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9653:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9643:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9643:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9643:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9480:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9701:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9718:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9721:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9711:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9711:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9711:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9815:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9818:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9808:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9808:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9808:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9839:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9842:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9832:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9832:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9832:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9669:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint32t_uint32(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n        value1 := abi_decode_uint32(add(headStart, 32))\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IERC20_$663__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_5a0b81ddbcbbb758aeb43ab9237e227525b750aa7da0afb4fe2a9d7dc5a2d702__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"Reserve/start-less-then-end\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint224_t_uint224__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint224(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint24(x, y) -> sum\n    {\n        let _1 := 0xffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint224(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "6669": [
                  {
                    "length": 32,
                    "start": 251
                  },
                  {
                    "length": 32,
                    "start": 508
                  },
                  {
                    "length": 32,
                    "start": 807
                  },
                  {
                    "length": 32,
                    "start": 1926
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe7146101b0578063e30c3978146101d3578063f2fde38b146101e4578063fc0c546a146101f757600080fd5b80638da5cb5b14610184578063af6a940014610195578063c2c4c5c1146101a857600080fd5b8063481c6a75116100bd578063481c6a75146101635780634e71e0c814610174578063715018a61461017c57600080fd5b8063205c2878146100e457806321df0da7146100f95780632d00ddda14610138575b600080fd5b6100f76100f23660046112ef565b61021e565b005b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b60035461014b906001600160e01b031681565b6040516001600160e01b03909116815260200161012f565b6002546001600160a01b031661011b565b6100f76103a5565b6100f7610433565b6000546001600160a01b031661011b565b61014b6101a3366004611354565b6104a8565b6100f7610576565b6101c36101be3660046112d4565b61057e565b604051901515815260200161012f565b6001546001600160a01b031661011b565b6100f76101f23660046112d4565b6105fa565b61011b7f000000000000000000000000000000000000000000000000000000000000000081565b336102316002546001600160a01b031690565b6001600160a01b0316148061025f5750336102546000546001600160a01b031690565b6001600160a01b0316145b6102d65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102de610736565b600380548291906000906102fc9084906001600160e01b03166113f4565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061035e82827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109fd9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161039991815260200190565b60405180910390a25050565b6001546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102cd565b600154610414906001600160a01b0316610a6d565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104466000546001600160a01b031690565b6001600160a01b03161461049c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6104a66000610a6d565b565b60008163ffffffff168363ffffffff16106105055760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468656e2d656e64000000000060448201526064016102cd565b60045462ffffff630100000082048116911660008061052383610aca565b9150915060008061053385610b40565b915091506000610547848387868b8f610bb3565b90506000610559858488878c8f610bb3565b90506105658282611489565b985050505050505050505b92915050565b6104a6610736565b6000336105936000546001600160a01b031690565b6001600160a01b0316146105e95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6105f282610c5a565b90505b919050565b3361060d6000546001600160a01b031690565b6001600160a01b0316146106635760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6001600160a01b0381166106df5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102cd565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061133b565b6003549091506001600160e01b031660008061081b85610aca565b9150915080600001516001600160e01b0316836001600160e01b031685610842919061143d565b11156109f55742600061085585876113f4565b90508163ffffffff16836020015163ffffffff161461094a576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff81106108ac576108ac611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556108e262ffffff80891690610d46565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff92831617905588811610156109455761092688600161141f565b600460036101000a81548162ffffff021916908362ffffff1602179055505b6109af565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff811061098857610988611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a68908490610d63565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610af162ffffff80851690610e48565b915060058262ffffff1662ffffff8110610b0d57610b0d611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610b6e57610b6e611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610bae5760009150600582610b0d565b915091565b60004262ffffff8416610bca576000915050610c50565b8263ffffffff16876020015163ffffffff161115610bec576000915050610c50565b8263ffffffff16886020015163ffffffff1611610c0c5750508551610c50565b600080610c1e60058989888a88610e70565b915091508463ffffffff16816020015163ffffffff161415610c4557519250610c50915050565b50519150610c509050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610ce35760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102cd565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610d5c610d5684600161143d565b8361103d565b9392505050565b6000610db8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110499092919063ffffffff16565b805190915015610a685780806020019051810190610dd69190611319565b610a685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102cd565b600081610e5757506000610570565b610d5c6001610e66848661143d565b610d5691906114b1565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610610ebb578862ffffff16610ed6565b6001610ecc62ffffff88168461143d565b610ed691906114b1565b905060005b6002610ee7838561143d565b610ef19190611475565b90508a610f03828962ffffff1661103d565b62ffffff1662ffffff8110610f1a57610f1a611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080610f6257610f5a82600161143d565b935050610edb565b8b610f72838a62ffffff16610d46565b62ffffff1662ffffff8110610f8957610f89611538565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b90910481166020830152909550600090610fce90838116908c908b9061106016565b9050808015610ff75750610ff78660200151898c63ffffffff166110609092919063ffffffff16565b1561100357505061102f565b8061101a576110136001846114b1565b9350611028565b61102583600161143d565b94505b5050610edb565b505050965096945050505050565b6000610d5c82846114f8565b60606110588484600085611131565b949350505050565b60008163ffffffff168463ffffffff161115801561108a57508163ffffffff168363ffffffff1611155b156110a6578263ffffffff168463ffffffff1611159050610d5c565b60008263ffffffff168563ffffffff16116110d5576110d063ffffffff8616640100000000611455565b6110dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116111155761111063ffffffff8616640100000000611455565b61111d565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156111a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102cd565b843b6111f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102cd565b600080866001600160a01b031685876040516112139190611387565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5091509150611265828286611270565b979650505050505050565b6060831561127f575081610d5c565b82511561128f5782518084602001fd5b8160405162461bcd60e51b81526004016102cd91906113a3565b80356001600160a01b03811681146105f557600080fd5b803563ffffffff811681146105f557600080fd5b6000602082840312156112e657600080fd5b610d5c826112a9565b6000806040838503121561130257600080fd5b61130b836112a9565b946020939093013593505050565b60006020828403121561132b57600080fd5b81518015158114610d5c57600080fd5b60006020828403121561134d57600080fd5b5051919050565b6000806040838503121561136757600080fd5b611370836112c0565b915061137e602084016112c0565b90509250929050565b600082516113998184602087016114c8565b9190910192915050565b60208152600082518060208401526113c28160408501602087016114c8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156114165761141661150c565b01949350505050565b600062ffffff8083168185168083038211156114165761141661150c565b600082198211156114505761145061150c565b500190565b600064ffffffffff8083168185168083038211156114165761141661150c565b60008261148457611484611522565b500490565b60006001600160e01b03838116908316818110156114a9576114a961150c565b039392505050565b6000828210156114c3576114c361150c565b500390565b60005b838110156114e35781810151838201526020016114cb565b838111156114f2576000848401525b50505050565b60008261150757611507611522565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220fb1d2232b0180ad60e1f03df899e1e110fc9f605baab86f2f9e2a9739d34fd5b64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1B0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0xAF6A9400 EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0xC2C4C5C1 EQ PUSH2 0x1A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x174 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x17C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x205C2878 EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0x2D00DDDA EQ PUSH2 0x138 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0xF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12EF JUMP JUMPDEST PUSH2 0x21E JUMP JUMPDEST STOP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x14B SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x3A5 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x433 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0x14B PUSH2 0x1A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x1354 JUMP JUMPDEST PUSH2 0x4A8 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x576 JUMP JUMPDEST PUSH2 0x1C3 PUSH2 0x1BE CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x57E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x12F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x11B JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D4 JUMP JUMPDEST PUSH2 0x5FA JUMP JUMPDEST PUSH2 0x11B PUSH32 0x0 DUP2 JUMP JUMPDEST CALLER PUSH2 0x231 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x25F JUMPI POP CALLER PUSH2 0x254 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x2D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DE PUSH2 0x736 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP3 SWAP2 SWAP1 PUSH1 0x0 SWAP1 PUSH2 0x2FC SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH2 0x13F4 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH2 0x35E DUP3 DUP3 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9FD SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7084F5476618D8E60B11EF0D7D3F06914655ADB8793E28FF7F018D4C76D505D5 DUP3 PUSH1 0x40 MLOAD PUSH2 0x399 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x414 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA6D JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x446 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x49C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x4A6 PUSH1 0x0 PUSH2 0xA6D JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND LT PUSH2 0x505 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x526573657276652F73746172742D6C6573732D7468656E2D656E640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP2 AND PUSH1 0x0 DUP1 PUSH2 0x523 DUP4 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x533 DUP6 PUSH2 0xB40 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x547 DUP5 DUP4 DUP8 DUP7 DUP12 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x559 DUP6 DUP5 DUP9 DUP8 DUP13 DUP16 PUSH2 0xBB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x565 DUP3 DUP3 PUSH2 0x1489 JUMP JUMPDEST SWAP9 POP POP POP POP POP POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4A6 PUSH2 0x736 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x593 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5E9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH2 0x5F2 DUP3 PUSH2 0xC5A JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x60D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x663 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xFFFFFF PUSH4 0x1000000 DUP3 DIV DUP2 AND SWAP3 SWAP2 AND SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7DC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x800 SWAP2 SWAP1 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x0 DUP1 PUSH2 0x81B DUP6 PUSH2 0xACA JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP1 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP6 PUSH2 0x842 SWAP2 SWAP1 PUSH2 0x143D JUMP JUMPDEST GT ISZERO PUSH2 0x9F5 JUMPI TIMESTAMP PUSH1 0x0 PUSH2 0x855 DUP6 DUP8 PUSH2 0x13F4 JUMP JUMPDEST SWAP1 POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ PUSH2 0x94A JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP9 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x8AC JUMPI PUSH2 0x8AC PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH2 0x8E2 PUSH3 0xFFFFFF DUP1 DUP10 AND SWAP1 PUSH2 0xD46 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000 AND PUSH3 0xFFFFFF SWAP3 DUP4 AND OR SWAP1 SSTORE DUP9 DUP2 AND LT ISZERO PUSH2 0x945 JUMPI PUSH2 0x926 DUP9 PUSH1 0x1 PUSH2 0x141F JUMP JUMPDEST PUSH1 0x4 PUSH1 0x3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH3 0xFFFFFF MUL NOT AND SWAP1 DUP4 PUSH3 0xFFFFFF AND MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0x9AF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP PUSH1 0x5 DUP6 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x988 JUMPI PUSH2 0x988 PUSH2 0x1538 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x21D81D5D656869E8CE3BA8D65526A2F0DBBCD3D36F5F9999EB7C84360E45ECED SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 OR SWAP1 MSTORE PUSH2 0xA68 SWAP1 DUP5 SWAP1 PUSH2 0xD63 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0xAF1 PUSH3 0xFFFFFF DUP1 DUP6 AND SWAP1 PUSH2 0xE48 JUMP JUMPDEST SWAP2 POP PUSH1 0x5 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xB0D JUMPI PUSH2 0xB0D PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP4 SWAP2 SWAP3 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP2 SWAP1 PUSH1 0x5 PUSH3 0xFFFFFF DUP1 DUP5 AND SWAP1 DUP2 LT PUSH2 0xB6E JUMPI PUSH2 0xB6E PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0xBAE JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x5 DUP3 PUSH2 0xB0D JUMP JUMPDEST SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 TIMESTAMP PUSH3 0xFFFFFF DUP5 AND PUSH2 0xBCA JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0xBEC JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xC50 JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP9 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND GT PUSH2 0xC0C JUMPI POP POP DUP6 MLOAD PUSH2 0xC50 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xC1E PUSH1 0x5 DUP10 DUP10 DUP9 DUP11 DUP9 PUSH2 0xE70 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0xC45 JUMPI MLOAD SWAP3 POP PUSH2 0xC50 SWAP2 POP POP JUMP JUMPDEST POP MLOAD SWAP2 POP PUSH2 0xC50 SWAP1 POP JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xCE3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C PUSH2 0xD56 DUP5 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST DUP4 PUSH2 0x103D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB8 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1049 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xA68 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0xDD6 SWAP2 SWAP1 PUSH2 0x1319 JUMP JUMPDEST PUSH2 0xA68 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0xE57 JUMPI POP PUSH1 0x0 PUSH2 0x570 JUMP JUMPDEST PUSH2 0xD5C PUSH1 0x1 PUSH2 0xE66 DUP5 DUP7 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xD56 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0xEBB JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0xED6 JUMP JUMPDEST PUSH1 0x1 PUSH2 0xECC PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xED6 SWAP2 SWAP1 PUSH2 0x14B1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0xEE7 DUP4 DUP6 PUSH2 0x143D JUMP JUMPDEST PUSH2 0xEF1 SWAP2 SWAP1 PUSH2 0x1475 JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0xF03 DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x103D JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF1A JUMPI PUSH2 0xF1A PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0xF62 JUMPI PUSH2 0xF5A DUP3 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP4 POP POP PUSH2 0xEDB JUMP JUMPDEST DUP12 PUSH2 0xF72 DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0xD46 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0xF89 JUMPI PUSH2 0xF89 PUSH2 0x1538 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0xFCE SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x1060 AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xFF7 JUMPI POP PUSH2 0xFF7 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x1060 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x1003 JUMPI POP POP PUSH2 0x102F JUMP JUMPDEST DUP1 PUSH2 0x101A JUMPI PUSH2 0x1013 PUSH1 0x1 DUP5 PUSH2 0x14B1 JUMP JUMPDEST SWAP4 POP PUSH2 0x1028 JUMP JUMPDEST PUSH2 0x1025 DUP4 PUSH1 0x1 PUSH2 0x143D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0xEDB JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD5C DUP3 DUP5 PUSH2 0x14F8 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1058 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x1131 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x108A JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x10A6 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0xD5C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x10D5 JUMPI PUSH2 0x10D0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x10DD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1115 JUMPI PUSH2 0x1110 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x1455 JUMP JUMPDEST PUSH2 0x111D JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x11A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x2CD JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x11F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x2CD JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1213 SWAP2 SWAP1 PUSH2 0x1387 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1250 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1255 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1265 DUP3 DUP3 DUP7 PUSH2 0x1270 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x127F JUMPI POP DUP2 PUSH2 0xD5C JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x128F JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x13A3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x12E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD5C DUP3 PUSH2 0x12A9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1302 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x130B DUP4 PUSH2 0x12A9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x132B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xD5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x134D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1367 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1370 DUP4 PUSH2 0x12C0 JUMP JUMPDEST SWAP2 POP PUSH2 0x137E PUSH1 0x20 DUP5 ADD PUSH2 0x12C0 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1399 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x13C2 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1450 JUMPI PUSH2 0x1450 PUSH2 0x150C JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1416 JUMPI PUSH2 0x1416 PUSH2 0x150C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1484 JUMPI PUSH2 0x1484 PUSH2 0x1522 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x14A9 JUMPI PUSH2 0x14A9 PUSH2 0x150C JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x14C3 JUMPI PUSH2 0x14C3 PUSH2 0x150C JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x14E3 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x14CB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x14F2 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1507 JUMPI PUSH2 0x1507 PUSH2 0x1522 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xFB SAR 0x22 ORIGIN 0xB0 XOR EXP 0xD6 0xE 0x1F SUB 0xDF DUP10 SWAP15 0x1E GT 0xF 0xC9 0xF6 SDIV 0xBA 0xAB DUP7 CALLCODE 0xF9 0xE2 0xA9 PUSH20 0x9D34FD5B64736F6C634300080600330000000000 ",
              "sourceMap": "1299:8854:27:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648:278;;;;;;:::i;:::-;;:::i;:::-;;2422:89;2499:5;2422:89;;;-1:-1:-1;;;;;2008:55:94;;;1990:74;;1978:2;1963:18;2422:89:27;;;;;;;;1494:34;;;;;-1:-1:-1;;;;;1494:34:27;;;;;;-1:-1:-1;;;;;6887:71:94;;;6869:90;;6857:2;6842:18;1494:34:27;6824:141:94;1403:89:18;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;3147:129:19;;;:::i;2508:94::-;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;2546:1067:27;;;;;;:::i;:::-;;:::i;2317:70::-;;;:::i;1744:123:18:-;;;;;;:::i;:::-;;:::i;:::-;;;2542:14:94;;2535:22;2517:41;;2505:2;2490:18;1744:123:18;2472:92:94;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;1407:29:27:-;;;;;3648:278;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;5343:2:94;2840:99:18;;;5325:21:94;5382:2;5362:18;;;5355:30;5421:34;5401:18;;;5394:62;5492:8;5472:18;;;5465:36;5518:19;;2840:99:18;;;;;;;;;3752:13:27::1;:11;:13::i;:::-;3776:19;:39:::0;;3807:7;;3776:19;::::1;::::0;:39:::1;::::0;3807:7;;-1:-1:-1;;;;;3776:39:27::1;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;3776:39:27::1;;;;;-1:-1:-1::0;;;;;3776:39:27::1;;;;;;3834;3853:10;3865:7;3834:5;-1:-1:-1::0;;;;;3834:18:27::1;;;:39;;;;;:::i;:::-;3899:10;-1:-1:-1::0;;;;;3889:30:27::1;;3911:7;3889:30;;;;7464:25:94::0;;7452:2;7437:18;;7419:76;3889:30:27::1;;;;;;;;3648:278:::0;;:::o;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;4983:2:94;4028:71:19;;;4965:21:94;5022:2;5002:18;;;4995:30;5061:33;5041:18;;;5034:61;5112:18;;4028:71:19;4955:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4630:2:94;3819:58:19;;;4612:21:94;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:19;4602:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2546:1067:27:-;2694:7;2743:13;2725:31;;:15;:31;;;2717:71;;;;-1:-1:-1;;;2717:71:27;;4274:2:94;2717:71:27;;;4256:21:94;4313:2;4293:18;;;4286:30;4352:29;4332:18;;;4325:57;4399:18;;2717:71:27;4246:177:94;2717:71:27;2820:11;;;;;;;;;2861:9;2798:19;;2959:33;2861:9;2959:21;:33::i;:::-;2881:111;;;;3003:19;3024:52;3080:33;3102:10;3080:21;:33::i;:::-;3002:111;;;;3124:14;3141:205;3179:18;3211;3243:12;3269;3295;3321:15;3141:24;:205::i;:::-;3124:222;;3357:12;3372:203;3410:18;3442;3474:12;3500;3526;3552:13;3372:24;:203::i;:::-;3357:218;-1:-1:-1;3593:13:27;3600:6;3357:218;3593:13;:::i;:::-;3586:20;;;;;;;;;;2546:1067;;;;;:::o;2317:70::-;2367:13;:11;:13::i;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4630:2:94;3819:58:19;;;4612:21:94;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:19;4602:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:19;1744:123:18::0;;;:::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4630:2:94;3819:58:19;;;4612:21:94;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:19;4602:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;6108:2:94;2826:73:19::1;::::0;::::1;6090:21:94::0;6147:2;6127:18;;;6120:30;6186:34;6166:18;;;6159:62;6257:7;6237:18;;;6230:35;6282:19;;2826:73:19::1;6080:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;7170:1957:27:-;7234:11;;;7322:30;;;;;7346:4;7322:30;;;1990:74:94;;;;7234:11:27;;;;;;;7275:9;;;-1:-1:-1;;;;;;;7322:5:27;:15;;;;1963:18:94;;7322:30:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7393:19;;7294:58;;-1:-1:-1;;;;;;7393:19:27;7362:28;;7506:33;7528:10;7506:21;:33::i;:::-;7430:109;;;;7817:17;:24;;;-1:-1:-1;;;;;7774:67:27;7794:20;-1:-1:-1;;;;;7774:40:27;:17;:40;;;;:::i;:::-;:67;7770:1351;;;7881:15;7857:14;8015:49;8044:20;8023:17;8015:49;:::i;:::-;7983:81;;8246:7;8215:38;;:17;:27;;;:38;;;8211:825;;8307:137;;;;;;;;8364:21;-1:-1:-1;;;;;8307:137:27;;;;;8418:7;8307:137;;;;;8273:19;8293:10;8273:31;;;;;;;;;:::i;:::-;:171;;;;;;;;;-1:-1:-1;;;8273:171:27;-1:-1:-1;;;;;8273:171:27;;;;;;;:31;;:171;8481:52;;;;;;:23;:52::i;:::-;8462:9;:72;;;;;;;;;;;8556:30;;;;8552:107;;;8624:16;:12;8639:1;8624:16;:::i;:::-;8610:11;;:30;;;;;;;;;;;;;;;;;;8552:107;8211:825;;;8884:137;;;;;;;;8941:21;-1:-1:-1;;;;;8884:137:27;;;;;8995:7;8884:137;;;;;8849:19;8869:11;8849:32;;;;;;;;;:::i;:::-;:172;;;;;;;;;-1:-1:-1;;;8849:172:27;-1:-1:-1;;;;;8849:172:27;;;;;;;:32;;:172;8211:825;9055:55;;;-1:-1:-1;;;;;7239:15:94;;;7221:34;;7291:15;;7286:2;7271:18;;7264:43;9055:55:27;;7117:18:94;9055:55:27;;;;;;;7843:1278;;7770:1351;7202:1925;;;;;;7170:1957::o;701:205:6:-;840:58;;;-1:-1:-1;;;;;2267:55:94;;840:58:6;;;2249:74:94;2339:18;;;;2332:34;;;840:58:6;;;;;;;;;;2222:18:94;;;;840:58:6;;;;;;;;-1:-1:-1;;;;;840:58:6;863:23;840:58;;;813:86;;833:5;;813:19;:86::i;:::-;701:205;;;:::o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;9852:299:27:-;-1:-1:-1;;;;;;;;;9949:12:27;-1:-1:-1;;;;;;;;;9949:12:27;10039:54;;;;;;:25;:54::i;:::-;10024:70;;10118:19;10138:5;10118:26;;;;;;;;;:::i;:::-;10104:40;;;;;;;;;10118:26;;10104:40;-1:-1:-1;;;;;10104:40:27;;;;-1:-1:-1;;;10104:40:27;;;;;;;;9852:299;;10104:40;;-1:-1:-1;;9852:299:27:o;9251:477::-;-1:-1:-1;;;;;;;;;;;;;;;;;9431:10:27;;9465:19;:26;;;;;;;;;;;:::i;:::-;9451:40;;;;;;;;;9465:26;;9451:40;-1:-1:-1;;;;;9451:40:27;;;;-1:-1:-1;;;9451:40:27;;;;;;;;;;;;-1:-1:-1;9606:116:27;;9660:1;;-1:-1:-1;9689:19:27;9660:1;9689:22;;9606:116;9251:477;;;:::o;4571:2531::-;4872:7;4915:15;4990:17;;;4986:31;;5016:1;5009:8;;;;;4986:31;5720:10;5689:41;;:18;:28;;;:41;;;5685:80;;;5753:1;5746:8;;;;;5685:80;6033:10;6001:42;;:18;:28;;;:42;;;5997:105;;-1:-1:-1;;6066:25:27;;6059:32;;5997:105;6289:44;6347:43;6403:221;6448:19;6485:12;6515;6545:10;6573:12;6603:7;6403:27;:221::i;:::-;6275:349;;;;6981:10;6958:33;;:9;:19;;;:33;;;6954:142;;;7014:16;;-1:-1:-1;7007:23:27;;-1:-1:-1;;7007:23:27;6954:142;-1:-1:-1;7068:17:27;;-1:-1:-1;7061:24:27;;-1:-1:-1;7061:24:27;4571:2531;;;;;;;;;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;3463:2:94;2230:79:18;;;3445:21:94;3502:2;3482:18;;;3475:30;3541:34;3521:18;;;3514:62;3612:5;3592:18;;;3585:33;3635:19;;2230:79:18;3435:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;2263:171:45:-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;:::-;2414:12;2397:4;:30::i;:::-;2390:37;2263:171;-1:-1:-1;;;2263:171:45:o;3207:706:6:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:6;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:6;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:6;;6514:2:94;3811:85:6;;;6496:21:94;6553:2;6533:18;;;6526:30;6592:34;6572:18;;;6565:62;6663:12;6643:18;;;6636:40;6693:19;;3811:85:6;6486:232:94;1666:262:45;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:45;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;2382:2006:43:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:43;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;-1:-1:-1;;;;;3253:82:43;;;;-1:-1:-1;;;3253:82:43;;;;;;;;;;;;-1:-1:-1;3253:82:43;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;-1:-1:-1;;;;;3641:86:43;;;;;-1:-1:-1;;;3641:86:43;;;;;;;;;;;-1:-1:-1;;;3765:39:43;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;580:129:45:-;655:7;681:21;690:12;681:6;:21;:::i;3514:223:9:-;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;:::-;3671:59;3514:223;-1:-1:-1;;;;3514:223:9:o;1658:417:44:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:44:o;4601:499:9:-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:9;;3867:2:94;4790:81:9;;;3849:21:94;3906:2;3886:18;;;3879:30;3945:34;3925:18;;;3918:62;4016:8;3996:18;;;3989:36;4042:19;;4790:81:9;3839:228:94;4790:81:9;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:9;;5750:2:94;4881:60:9;;;5732:21:94;5789:2;5769:18;;;5762:30;5828:31;5808:18;;;5801:59;5877:18;;4881:60:9;5722:179:94;4881:60:9;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:9;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:9:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:9;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:9;;;;;;;;:::i;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;215:163;282:20;;342:10;331:22;;321:33;;311:2;;368:1;365;358:12;383:186;442:6;495:2;483:9;474:7;470:23;466:32;463:2;;;511:1;508;501:12;463:2;534:29;553:9;534:29;:::i;574:254::-;642:6;650;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;742:29;761:9;742:29;:::i;:::-;732:39;818:2;803:18;;;;790:32;;-1:-1:-1;;;661:167:94:o;833:277::-;900:6;953:2;941:9;932:7;928:23;924:32;921:2;;;969:1;966;959:12;921:2;1001:9;995:16;1054:5;1047:13;1040:21;1033:5;1030:32;1020:2;;1076:1;1073;1066:12;1115:184;1185:6;1238:2;1226:9;1217:7;1213:23;1209:32;1206:2;;;1254:1;1251;1244:12;1206:2;-1:-1:-1;1277:16:94;;1196:103;-1:-1:-1;1196:103:94:o;1304:256::-;1370:6;1378;1431:2;1419:9;1410:7;1406:23;1402:32;1399:2;;;1447:1;1444;1437:12;1399:2;1470:28;1488:9;1470:28;:::i;:::-;1460:38;;1517:37;1550:2;1539:9;1535:18;1517:37;:::i;:::-;1507:47;;1389:171;;;;;:::o;1565:274::-;1694:3;1732:6;1726:13;1748:53;1794:6;1789:3;1782:4;1774:6;1770:17;1748:53;:::i;:::-;1817:16;;;;;1702:137;-1:-1:-1;;1702:137:94:o;2814:442::-;2963:2;2952:9;2945:21;2926:4;2995:6;2989:13;3038:6;3033:2;3022:9;3018:18;3011:34;3054:66;3113:6;3108:2;3097:9;3093:18;3088:2;3080:6;3076:15;3054:66;:::i;:::-;3172:2;3160:15;3177:66;3156:88;3141:104;;;;3247:2;3137:113;;2935:321;-1:-1:-1;;2935:321:94:o;7500:277::-;7540:3;-1:-1:-1;;;;;7653:2:94;7650:1;7646:10;7683:2;7680:1;7676:10;7714:3;7710:2;7706:12;7701:3;7698:21;7695:2;;;7722:18;;:::i;:::-;7758:13;;7548:229;-1:-1:-1;;;;7548:229:94:o;7782:226::-;7821:3;7849:8;7884:2;7881:1;7877:10;7914:2;7911:1;7907:10;7945:3;7941:2;7937:12;7932:3;7929:21;7926:2;;;7953:18;;:::i;8013:128::-;8053:3;8084:1;8080:6;8077:1;8074:13;8071:2;;;8090:18;;:::i;:::-;-1:-1:-1;8126:9:94;;8061:80::o;8146:230::-;8185:3;8213:12;8252:2;8249:1;8245:10;8282:2;8279:1;8275:10;8313:3;8309:2;8305:12;8300:3;8297:21;8294:2;;;8321:18;;:::i;8381:120::-;8421:1;8447;8437:2;;8452:18;;:::i;:::-;-1:-1:-1;8486:9:94;;8427:74::o;8506:270::-;8546:4;-1:-1:-1;;;;;8683:10:94;;;;8653;;8705:12;;;8702:2;;;8720:18;;:::i;:::-;8757:13;;8555:221;-1:-1:-1;;;8555:221:94:o;8781:125::-;8821:4;8849:1;8846;8843:8;8840:2;;;8854:18;;:::i;:::-;-1:-1:-1;8891:9:94;;8830:76::o;8911:258::-;8983:1;8993:113;9007:6;9004:1;9001:13;8993:113;;;9083:11;;;9077:18;9064:11;;;9057:39;9029:2;9022:10;8993:113;;;9124:6;9121:1;9118:13;9115:2;;;9159:1;9150:6;9145:3;9141:16;9134:27;9115:2;;8964:205;;;:::o;9174:112::-;9206:1;9232;9222:2;;9237:18;;:::i;:::-;-1:-1:-1;9271:9:94;;9212:74::o;9291:184::-;-1:-1:-1;;;9340:1:94;9333:88;9440:4;9437:1;9430:15;9464:4;9461:1;9454:15;9480:184;-1:-1:-1;;;9529:1:94;9522:88;9629:4;9626:1;9619:15;9653:4;9650:1;9643:15;9669:184;-1:-1:-1;;;9718:1:94;9711:88;9818:4;9815:1;9808:15;9842:4;9839:1;9832:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1101600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "checkpoint()": "infinite",
                "claimOwnership()": "54486",
                "getReserveAccumulatedBetween(uint32,uint32)": "infinite",
                "getToken()": "infinite",
                "manager()": "2343",
                "owner()": "2343",
                "pendingOwner()": "2364",
                "renounceOwnership()": "28202",
                "setManager(address)": "infinite",
                "token()": "infinite",
                "transferOwnership(address)": "27972",
                "withdrawAccumulator()": "2405",
                "withdrawTo(address,uint256)": "infinite"
              },
              "internal": {
                "_checkpoint()": "infinite",
                "_getNewestObservation(uint24)": "infinite",
                "_getOldestObservation(uint24)": "infinite",
                "_getReserveAccumulatedAt(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint24,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "checkpoint()": "c2c4c5c1",
              "claimOwnership()": "4e71e0c8",
              "getReserveAccumulatedBetween(uint32,uint32)": "af6a9400",
              "getToken()": "21df0da7",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "token()": "fc0c546a",
              "transferOwnership(address)": "f2fde38b",
              "withdrawAccumulator()": "2d00ddda",
              "withdrawTo(address,uint256)": "205c2878"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"_token\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reserveAccumulated\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawAccumulated\",\"type\":\"uint256\"}],\"name\":\"Checkpoint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"checkpoint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_startTimestamp\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"_endTimestamp\",\"type\":\"uint32\"}],\"name\":\"getReserveAccumulatedBetween\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"withdrawAccumulator\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"details\":\"By calculating the total held tokens in a specific time range, contracts that require knowledge  of captured interest during a draw period, can easily call into the Reserve and deterministically determine the newly aqcuired tokens for that time range. \",\"kind\":\"dev\",\"methods\":{\"checkpoint()\":{\"details\":\"Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\"},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_owner\":\"Owner address\",\"_token\":\"ERC20 address\"}},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"details\":\"Search the ring buffer for two checkpoint observations and diffs accumulator amount.\",\"params\":{\"endTimestamp\":\"Transfer amount\",\"startTimestamp\":\"Account address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawTo(address,uint256)\":{\"details\":\"Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\",\"params\":{\"amount\":\"Transfer amount\",\"recipient\":\"Account address\"}}},\"title\":\"PoolTogether V4 Reserve\",\"version\":1},\"userdoc\":{\"events\":{\"Checkpoint(uint256,uint256)\":{\"notice\":\"Emit when checkpoint is created.\"},\"Withdrawn(address,uint256)\":{\"notice\":\"Emit when the withdrawTo function has executed.\"}},\"kind\":\"user\",\"methods\":{\"checkpoint()\":{\"notice\":\"Create observation checkpoint in ring bufferr.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Constructs Ticket with passed parameters.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"notice\":\"Calculate token accumulation beween timestamp range.\"},\"getToken()\":{\"notice\":\"Read global token value.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"token()\":{\"notice\":\"ERC20 token\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawAccumulator()\":{\"notice\":\"Total withdraw amount from reserve\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Transfer Reserve token balance to recipient address.\"}},\"notice\":\"The Reserve contract provides historical lookups of a token balance increase during a target timerange. As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens. By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account can lookup the balance increase of the reserve for a target timerange.   \",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/Reserve.sol\":\"Reserve\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/Reserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"./interfaces/IReserve.sol\\\";\\nimport \\\"./libraries/ObservationLib.sol\\\";\\nimport \\\"./libraries/RingBufferLib.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 Reserve\\n    * @author PoolTogether Inc Team\\n    * @notice The Reserve contract provides historical lookups of a token balance increase during a target timerange.\\n              As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are\\n              transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens.\\n              By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account\\n              can lookup the balance increase of the reserve for a target timerange.   \\n    * @dev    By calculating the total held tokens in a specific time range, contracts that require knowledge \\n              of captured interest during a draw period, can easily call into the Reserve and deterministically\\n              determine the newly aqcuired tokens for that time range. \\n */\\ncontract Reserve is IReserve, Manageable {\\n    using SafeERC20 for IERC20;\\n\\n    /// @notice ERC20 token\\n    IERC20 public immutable token;\\n\\n    /// @notice Total withdraw amount from reserve\\n    uint224 public withdrawAccumulator;\\n    uint32 private _gap;\\n\\n    uint24 internal nextIndex;\\n    uint24 internal cardinality;\\n\\n    /// @notice The maximum number of twab entries\\n    uint24 internal constant MAX_CARDINALITY = 16777215; // 2**24 - 1\\n\\n    ObservationLib.Observation[MAX_CARDINALITY] internal reserveAccumulators;\\n\\n    /* ============ Events ============ */\\n\\n    event Deployed(IERC20 indexed token);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructs Ticket with passed parameters.\\n     * @param _owner Owner address\\n     * @param _token ERC20 address\\n     */\\n    constructor(address _owner, IERC20 _token) Ownable(_owner) {\\n        token = _token;\\n        emit Deployed(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IReserve\\n    function checkpoint() external override {\\n        _checkpoint();\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function getReserveAccumulatedBetween(uint32 _startTimestamp, uint32 _endTimestamp)\\n        external\\n        view\\n        override\\n        returns (uint224)\\n    {\\n        require(_startTimestamp < _endTimestamp, \\\"Reserve/start-less-then-end\\\");\\n        uint24 _cardinality = cardinality;\\n        uint24 _nextIndex = nextIndex;\\n\\n        (uint24 _newestIndex, ObservationLib.Observation memory _newestObservation) = _getNewestObservation(_nextIndex);\\n        (uint24 _oldestIndex, ObservationLib.Observation memory _oldestObservation) = _getOldestObservation(_nextIndex);\\n\\n        uint224 _start = _getReserveAccumulatedAt(\\n            _newestObservation,\\n            _oldestObservation,\\n            _newestIndex,\\n            _oldestIndex,\\n            _cardinality,\\n            _startTimestamp\\n        );\\n\\n        uint224 _end = _getReserveAccumulatedAt(\\n            _newestObservation,\\n            _oldestObservation,\\n            _newestIndex,\\n            _oldestIndex,\\n            _cardinality,\\n            _endTimestamp\\n        );\\n\\n        return _end - _start;\\n    }\\n\\n    /// @inheritdoc IReserve\\n    function withdrawTo(address _recipient, uint256 _amount) external override onlyManagerOrOwner {\\n        _checkpoint();\\n\\n        withdrawAccumulator += uint224(_amount);\\n        \\n        token.safeTransfer(_recipient, _amount);\\n\\n        emit Withdrawn(_recipient, _amount);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Find optimal observation checkpoint using target timestamp\\n     * @dev    Uses binary search if target timestamp is within ring buffer range.\\n     * @param _newestObservation ObservationLib.Observation\\n     * @param _oldestObservation ObservationLib.Observation\\n     * @param _newestIndex The index of the newest observation\\n     * @param _oldestIndex The index of the oldest observation\\n     * @param _cardinality       RingBuffer Range\\n     * @param _timestamp          Timestamp target\\n     *\\n     * @return Optimal reserveAccumlator for timestamp.\\n     */\\n    function _getReserveAccumulatedAt(\\n        ObservationLib.Observation memory _newestObservation,\\n        ObservationLib.Observation memory _oldestObservation,\\n        uint24 _newestIndex,\\n        uint24 _oldestIndex,\\n        uint24 _cardinality,\\n        uint32 _timestamp\\n    ) internal view returns (uint224) {\\n        uint32 timeNow = uint32(block.timestamp);\\n\\n        // IF empty ring buffer exit early.\\n        if (_cardinality == 0) return 0;\\n\\n        /**\\n         * Ring Buffer Search Optimization\\n         * Before performing binary search on the ring buffer check\\n         * to see if timestamp is within range of [o T n] by comparing\\n         * the target timestamp to the oldest/newest observation.timestamps\\n         * IF the timestamp is out of the ring buffer range avoid starting\\n         * a binary search, because we can return NULL or oldestObservation.amount\\n         */\\n\\n        /**\\n         * IF oldestObservation.timestamp is after timestamp: T[old ]\\n         * the Reserve did NOT have a balance or the ring buffer\\n         * no longer contains that timestamp checkpoint.\\n         */\\n        if (_oldestObservation.timestamp > _timestamp) {\\n            return 0;\\n        }\\n\\n        /**\\n         * IF newestObservation.timestamp is before timestamp: [ new]T\\n         * return _newestObservation.amount since observation\\n         * contains the highest checkpointed reserveAccumulator.\\n         */\\n        if (_newestObservation.timestamp <= _timestamp) {\\n            return _newestObservation.amount;\\n        }\\n\\n        // IF the timestamp is witin range of ring buffer start/end: [new T old]\\n        // FIND the closest observation to the left(or exact) of timestamp: [OT ]\\n        (\\n            ObservationLib.Observation memory beforeOrAt,\\n            ObservationLib.Observation memory atOrAfter\\n        ) = ObservationLib.binarySearch(\\n                reserveAccumulators,\\n                _newestIndex,\\n                _oldestIndex,\\n                _timestamp,\\n                _cardinality,\\n                timeNow\\n            );\\n\\n        // IF target timestamp is EXACT match for atOrAfter.timestamp observation return amount.\\n        // NOT having an exact match with atOrAfter means values will contain accumulator value AFTER the searchable range.\\n        // ELSE return observation.totalDepositedAccumulator closest to LEFT of target timestamp.\\n        if (atOrAfter.timestamp == _timestamp) {\\n            return atOrAfter.amount;\\n        } else {\\n            return beforeOrAt.amount;\\n        }\\n    }\\n\\n    /// @notice Records the currently accrued reserve amount.\\n    function _checkpoint() internal {\\n        uint24 _cardinality = cardinality;\\n        uint24 _nextIndex = nextIndex;\\n        uint256 _balanceOfReserve = token.balanceOf(address(this));\\n        uint224 _withdrawAccumulator = withdrawAccumulator; //sload\\n        (uint24 newestIndex, ObservationLib.Observation memory newestObservation) = _getNewestObservation(_nextIndex);\\n\\n        /**\\n         * IF tokens have been deposited into Reserve contract since the last checkpoint\\n         * create a new Reserve balance checkpoint. The will will update multiple times in a single block.\\n         */\\n        if (_balanceOfReserve + _withdrawAccumulator > newestObservation.amount) {\\n            uint32 nowTime = uint32(block.timestamp);\\n\\n            // checkpointAccumulator = currentBalance + totalWithdraws\\n            uint224 newReserveAccumulator = uint224(_balanceOfReserve) + _withdrawAccumulator;\\n\\n            // IF newestObservation IS NOT in the current block.\\n            // CREATE observation in the accumulators ring buffer.\\n            if (newestObservation.timestamp != nowTime) {\\n                reserveAccumulators[_nextIndex] = ObservationLib.Observation({\\n                    amount: newReserveAccumulator,\\n                    timestamp: nowTime\\n                });\\n                nextIndex = uint24(RingBufferLib.nextIndex(_nextIndex, MAX_CARDINALITY));\\n                if (_cardinality < MAX_CARDINALITY) {\\n                    cardinality = _cardinality + 1;\\n                }\\n            }\\n            // ELSE IF newestObservation IS in the current block.\\n            // UPDATE the checkpoint previously created in block history.\\n            else {\\n                reserveAccumulators[newestIndex] = ObservationLib.Observation({\\n                    amount: newReserveAccumulator,\\n                    timestamp: nowTime\\n                });\\n            }\\n\\n            emit Checkpoint(newReserveAccumulator, _withdrawAccumulator);\\n        }\\n    }\\n\\n    /// @notice Retrieves the oldest observation\\n    /// @param _nextIndex The next index of the Reserve observations\\n    function _getOldestObservation(uint24 _nextIndex)\\n        internal\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory observation)\\n    {\\n        index = _nextIndex;\\n        observation = reserveAccumulators[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (observation.timestamp == 0) {\\n            index = 0;\\n            observation = reserveAccumulators[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest observation\\n    /// @param _nextIndex The next index of the Reserve observations\\n    function _getNewestObservation(uint24 _nextIndex)\\n        internal\\n        view\\n        returns (uint24 index, ObservationLib.Observation memory observation)\\n    {\\n        index = uint24(RingBufferLib.newestIndex(_nextIndex, MAX_CARDINALITY));\\n        observation = reserveAccumulators[index];\\n    }\\n}\\n\",\"keccak256\":\"0xe168db11cdb2b85a466b2186c9a4a237e74c3295c4fd108fd6ca5bd44557e13f\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IReserve {\\n    /**\\n     * @notice Emit when checkpoint is created.\\n     * @param reserveAccumulated  Total depsosited\\n     * @param withdrawAccumulated Total withdrawn\\n     */\\n\\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\\n    /**\\n     * @notice Emit when the withdrawTo function has executed.\\n     * @param recipient Address receiving funds\\n     * @param amount    Amount of tokens transfered.\\n     */\\n    event Withdrawn(address indexed recipient, uint256 amount);\\n\\n    /**\\n     * @notice Create observation checkpoint in ring bufferr.\\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\\n     */\\n    function checkpoint() external;\\n\\n    /**\\n     * @notice Read global token value.\\n     * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n     * @notice Calculate token accumulation beween timestamp range.\\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\\n     * @param startTimestamp Account address\\n     * @param endTimestamp   Transfer amount\\n     */\\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\\n        external\\n        returns (uint224);\\n\\n    /**\\n     * @notice Transfer Reserve token balance to recipient address.\\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\\n     * @param recipient Account address\\n     * @param amount    Transfer amount\\n     */\\n    function withdrawTo(address recipient, uint256 amount) external;\\n}\\n\",\"keccak256\":\"0x630c99a29c1df33cf2cf9492ea8640e875fa6cbb46c53a9d1ce935567589fef6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 6672,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "withdrawAccumulator",
                "offset": 0,
                "slot": "3",
                "type": "t_uint224"
              },
              {
                "astId": 6674,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_gap",
                "offset": 28,
                "slot": "3",
                "type": "t_uint32"
              },
              {
                "astId": 6676,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "nextIndex",
                "offset": 0,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 6678,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "cardinality",
                "offset": 3,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 6687,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "reserveAccumulators",
                "offset": 0,
                "slot": "5",
                "type": "t_array(t_struct(Observation)9538_storage)16777215_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Observation)9538_storage)16777215_storage": {
                "base": "t_struct(Observation)9538_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_struct(Observation)9538_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 9535,
                    "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 9537,
                    "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint24": {
                "encoding": "inplace",
                "label": "uint24",
                "numberOfBytes": "3"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "events": {
              "Checkpoint(uint256,uint256)": {
                "notice": "Emit when checkpoint is created."
              },
              "Withdrawn(address,uint256)": {
                "notice": "Emit when the withdrawTo function has executed."
              }
            },
            "kind": "user",
            "methods": {
              "checkpoint()": {
                "notice": "Create observation checkpoint in ring bufferr."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Constructs Ticket with passed parameters."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "notice": "Calculate token accumulation beween timestamp range."
              },
              "getToken()": {
                "notice": "Read global token value."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "token()": {
                "notice": "ERC20 token"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawAccumulator()": {
                "notice": "Total withdraw amount from reserve"
              },
              "withdrawTo(address,uint256)": {
                "notice": "Transfer Reserve token balance to recipient address."
              }
            },
            "notice": "The Reserve contract provides historical lookups of a token balance increase during a target timerange. As the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are transfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens. By using the reserve and withdraw accumulators to create a new checkpoint, any contract or account can lookup the balance increase of the reserve for a target timerange.   ",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/Ticket.sol": {
        "Ticket": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "decimals_",
                  "type": "uint8"
                },
                {
                  "internalType": "address",
                  "name": "_controller",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "Delegated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTotalSupplyTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewTotalSupplyTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewUserTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "TicketInitialized",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "DOMAIN_SEPARATOR",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "controllerDelegateFor",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "delegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                }
              ],
              "name": "delegateOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_newDelegate",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "_v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "_r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "_s",
                  "type": "bytes32"
                }
              ],
              "name": "delegateWithSignature",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                }
              ],
              "name": "getAccountDetails",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_startTime",
                  "type": "uint64"
                },
                {
                  "internalType": "uint64",
                  "name": "_endTime",
                  "type": "uint64"
                }
              ],
              "name": "getAverageBalanceBetween",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageBalancesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "_startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageTotalSuppliesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_target",
                  "type": "uint64"
                }
              ],
              "name": "getBalanceAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "_targets",
                  "type": "uint64[]"
                }
              ],
              "name": "getBalancesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "_targets",
                  "type": "uint64[]"
                }
              ],
              "name": "getTotalSuppliesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "_target",
                  "type": "uint64"
                }
              ],
              "name": "getTotalSupplyAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint16",
                  "name": "_index",
                  "type": "uint16"
                }
              ],
              "name": "getTwab",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "nonces",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "permit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "DOMAIN_SEPARATOR()": {
                "details": "See {IERC20Permit-DOMAIN_SEPARATOR}."
              },
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "constructor": {
                "params": {
                  "_controller": "ERC20 ticket controller address (ie: Prize Pool address).",
                  "_name": "ERC20 ticket token name.",
                  "_symbol": "ERC20 ticket token symbol.",
                  "decimals_": "ERC20 ticket token decimals."
                }
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "_amount": "Amount of tokens to burn",
                  "_operator": "Address of the operator performing the burn action via the controller contract",
                  "_user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerDelegateFor(address,address)": {
                "params": {
                  "delegate": "The new delegate",
                  "user": "The user for whom to delegate"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "_amount": "Amount of tokens to mint",
                  "_user": "Address of the receiver of the minted tokens"
                }
              },
              "decimals()": {
                "details": "This value should be equal to the decimals of the token used to deposit into the pool.",
                "returns": {
                  "_0": "uint8 decimals."
                }
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "delegate(address)": {
                "details": "Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.",
                "params": {
                  "to": "Recipient of delegated TWAB."
                }
              },
              "delegateOf(address)": {
                "details": "Address of the delegate will be the zero address if `user` has not delegated their tickets.",
                "params": {
                  "user": "Address of the delegator."
                },
                "returns": {
                  "_0": "Address of the delegate."
                }
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "params": {
                  "deadline": "The timestamp by which this must be submitted",
                  "delegate": "The new delegate",
                  "r": "The r portion of the ECDSA sig",
                  "s": "The s portion of the ECDSA sig",
                  "user": "The user who is delegating",
                  "v": "The v portion of the ECDSA sig"
                }
              },
              "getAccountDetails(address)": {
                "params": {
                  "user": "The user for whom to fetch the TWAB context."
                },
                "returns": {
                  "_0": "The TWAB context, which includes { balance, nextTwabIndex, cardinality }"
                }
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "params": {
                  "endTime": "The end time of the time frame.",
                  "startTime": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "params": {
                  "endTimes": "The end time of the time frame.",
                  "startTimes": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "params": {
                  "endTimes": "Array of end times.",
                  "startTimes": "Array of start times."
                },
                "returns": {
                  "_0": "The average total supplies held during the time frame."
                }
              },
              "getBalanceAt(address,uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the TWAB balance.",
                  "user": "Address of the user whose TWAB is being fetched."
                },
                "returns": {
                  "_0": "The TWAB balance at the given timestamp."
                }
              },
              "getBalancesAt(address,uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the TWAB balances.",
                  "user": "Address of the user whose TWABs are being fetched."
                },
                "returns": {
                  "_0": "`user` TWAB balances."
                }
              },
              "getTotalSuppliesAt(uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "Total supply TWAB balances."
                }
              },
              "getTotalSupplyAt(uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "The total supply TWAB balance at the given timestamp."
                }
              },
              "getTwab(address,uint16)": {
                "params": {
                  "index": "The index of the TWAB to fetch.",
                  "user": "The user for whom to fetch the TWAB."
                },
                "returns": {
                  "_0": "The TWAB, which includes the twab amount and the timestamp."
                }
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "nonces(address)": {
                "details": "See {IERC20Permit-nonces}."
              },
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
                "details": "See {IERC20Permit-permit}."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "title": "PoolTogether V4 Ticket",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_2318": {
                  "entryPoint": null,
                  "id": 2318,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3412": {
                  "entryPoint": null,
                  "id": 3412,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_7163": {
                  "entryPoint": null,
                  "id": 7163,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_727": {
                  "entryPoint": null,
                  "id": 727,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2374": {
                  "entryPoint": null,
                  "id": 2374,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 921,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory": {
                  "entryPoint": 1066,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_encode_string": {
                  "entryPoint": 1230,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed": {
                  "entryPoint": 1276,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 1337,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 1388,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 1449,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:4371:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:94"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:94",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:94"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:94"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:686:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "855:738:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "902:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "911:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "904:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "904:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "904:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "876:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "885:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "872:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "872:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "897:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "941:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "931:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "966:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "984:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "988:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "980:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "980:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "992:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "970:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1021:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1030:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1033:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1023:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1023:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1017:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1046:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1089:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1100:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1085:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1085:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1109:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1056:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1056:61:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1046:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1126:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1152:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1163:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1148:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1148:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1130:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1196:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1205:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1208:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1198:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1182:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1192:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1176:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1221:73:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1275:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1260:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1260:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1286:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1231:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1231:63:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1221:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1303:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1326:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1337:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1316:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1316:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1307:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1389:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1398:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1401:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1391:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1391:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1391:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1374:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1381:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1370:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1360:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1360:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1353:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1350:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1414:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1424:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1414:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1438:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1474:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1442:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1545:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1554:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1557:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1547:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1547:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1547:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1500:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "1513:7:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1530:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1535:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1526:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1526:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1539:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1522:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1522:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1509:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1509:33:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1497:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1497:46:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1490:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1490:54:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1487:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1580:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "808:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "820:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "828:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "836:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "844:6:94",
                            "type": ""
                          }
                        ],
                        "src": "705:888:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1648:208:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1658:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1678:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1662:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1705:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1693:19:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1754:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1743:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1743:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1765:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1770:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1761:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1761:14:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1777:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:63:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1793:57:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1821:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1829:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1817:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1817:15:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1838:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1834:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1834:7:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1813:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1813:29:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:39:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1845:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:50:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1793:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1625:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1632:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1640:3:94",
                            "type": ""
                          }
                        ],
                        "src": "1598:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2074:276:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2084:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2096:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2107:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2092:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2092:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2084:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2120:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2165:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2176:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2161:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2161:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2154:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2154:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2154:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2219:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2224:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2197:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2251:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2262:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2247:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2247:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2267:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2240:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2240:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2240:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2294:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2305:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2290:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2290:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:6:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2331:3:94",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2336:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2327:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2327:11:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2340:1:94",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2323:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2323:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2283:61:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2011:9:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2022:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2030:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2038:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2046:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2054:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2065:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1861:489:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2548:268:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2565:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2576:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2558:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:59:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2643:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:45:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2678:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2663:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2663:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2695:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2683:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2683:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2656:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2656:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2656:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2715:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2741:6:94"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2749:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2776:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2787:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2772:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2772:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2804:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2792:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2765:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2765:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2765:45:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2501:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2512:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2520:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2528:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2539:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2355:461:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2995:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3012:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3023:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3005:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3005:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3005:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3057:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3042:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3042:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3062:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3035:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3035:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3085:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3096:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3081:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3081:18:94"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3101:34:94",
                                    "type": "",
                                    "value": "ControlledToken/decimals-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3074:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3074:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3145:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3168:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3153:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3153:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3145:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2972:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2986:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2821:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3356:233:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3384:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3407:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3418:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3403:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3403:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3423:2:94",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:94"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:34:94",
                                    "type": "",
                                    "value": "ControlledToken/controller-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3517:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3528:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3513:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3513:18:94"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3533:13:94",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3506:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3506:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3506:41:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3556:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3568:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3579:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3556:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3347:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3182:407:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3666:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3726:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3751:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "3756:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3747:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3747:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3770:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3775:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3766:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3766:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3760:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3760:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3740:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3740:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3687:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3698:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3700:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3712:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3680:3:94",
                                "statements": []
                              },
                              "src": "3676:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3828:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "3833:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3824:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3824:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3842:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3798:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "3625:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "3630:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3635:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3594:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3912:325:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3936:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3939:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3932:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3932:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3983:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4030:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4032:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4032:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4010:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4003:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4000:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4120:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4141:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4148:3:94",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4153:10:94",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "4144:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4144:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4134:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4134:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4134:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4185:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4188:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4213:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4216:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4206:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4206:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4099:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4107:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4096:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4096:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4070:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "3892:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3901:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3857:380:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4274:95:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4291:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4298:3:94",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4303:10:94",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4294:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4294:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4284:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4331:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4334:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4324:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4324:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4324:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4358:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4348:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4348:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4348:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4242:127:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n        let value_1 := mload(add(headStart, 96))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value3 := value_1\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        let tail_1 := abi_encode_string(value0, add(headStart, 96))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_string(value1, tail_1)\n        mstore(add(headStart, 64), and(value2, 0xff))\n    }\n    function abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"ControlledToken/decimals-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 43)\n        mstore(add(headStart, 64), \"ControlledToken/controller-not-z\")\n        mstore(add(headStart, 96), \"ero-address\")\n        tail := add(headStart, 128)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101c06040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140527f94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c6101a0523480156200005c57600080fd5b5060405162003d0c38038062003d0c8339810160408190526200007f916200042a565b838383836040518060400160405280601c81526020017f506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e0000000081525080604051806040016040528060018152602001603160f81b81525086868160039080519060200190620000ee929190620002f3565b50805162000104906004906020840190620002f3565b5050825160208085019190912083518483012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091935091906080523060601b60c0526101205250505050506001600160a01b0381166200020c5760405162461bcd60e51b815260206004820152602b60248201527f436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a60448201526a65726f2d6164647265737360a81b60648201526084015b60405180910390fd5b6001600160601b0319606082901b166101605260ff8216620002715760405162461bcd60e51b815260206004820181905260248201527f436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f604482015260640162000203565b7fff0000000000000000000000000000000000000000000000000000000000000060f883901b16610180526040516001600160a01b038216907fde72fc29218361f33503847e6f32be813f9ec92fc7c772bb59e46675c890fd0e90620002dd90879087908790620004fc565b60405180910390a25050505050505050620005bf565b82805462000301906200056c565b90600052602060002090601f01602090048101928262000325576000855562000370565b82601f106200034057805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200037057825182559160200191906001019062000353565b506200037e92915062000382565b5090565b5b808211156200037e576000815560010162000383565b600082601f830112620003ab57600080fd5b81516001600160401b0380821115620003c857620003c8620005a9565b604051601f8301601f19908116603f01168101908282118183101715620003f357620003f3620005a9565b816040528381528660208588010111156200040d57600080fd5b6200042084602083016020890162000539565b9695505050505050565b600080600080608085870312156200044157600080fd5b84516001600160401b03808211156200045957600080fd5b620004678883890162000399565b955060208701519150808211156200047e57600080fd5b506200048d8782880162000399565b935050604085015160ff81168114620004a557600080fd5b60608601519092506001600160a01b0381168114620004c357600080fd5b939692955090935050565b60008151808452620004e881602086016020860162000539565b601f01601f19169290920160200192915050565b606081526000620005116060830186620004ce565b8281036020840152620005258186620004ce565b91505060ff83166040830152949350505050565b60005b83811015620005565781810151838201526020016200053c565b8381111562000566576000848401525b50505050565b600181811c908216806200058157607f821691505b60208210811415620005a357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160601c60e0516101005161012051610140516101605160601c6101805160f81c6101a0516136ac620006606000396000610d600152600061031b0152600081816105920152818161077a015281816108d001528181610a6e0152610c95015260006110850152600061169d015260006116ec015260006116c7015260006116200152600061164a0152600061167401526136ac6000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806368c7fd571161010f57806395d89b41116100a2578063a9059cbb11610071578063a9059cbb1461052e578063d505accf14610541578063dd62ed3e14610554578063f77c47911461058d57600080fd5b806395d89b41146104ed57806398b16f36146104f55780639ecb037014610508578063a457c2d71461051b57600080fd5b80638d22ea2a116100de5780638d22ea2a1461046d5780638e6d536a146104b457806390596dd1146104c7578063919974dc146104da57600080fd5b806368c7fd571461040b57806370a082311461041e5780637ecebe001461044757806385beb5f11461045a57600080fd5b806333e39b61116101875780635c19a95c116101565780635c19a95c146103b25780635d7b0758146103c5578063613ed6bd146103d8578063631b5dfb146103f857600080fd5b806333e39b61146103455780633644e5151461035a57806336bb2a3814610362578063395093511461039f57600080fd5b806323b872dd116101c357806323b872dd1461023d5780632aceb534146102505780632d0dd68614610301578063313ce5671461031457600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26105b4565b6040516101ff919061339d565b60405180910390f35b61021b6102163660046131f9565b610646565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61021b61024b366004612fe2565b61065d565b6102c961025e366004612f94565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016101ff565b61022f61030f36600461333e565b610723565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101ff565b610358610353366004612faf565b61076f565b005b61022f6107f5565b6103756103703660046131bb565b610804565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016101ff565b61021b6103ad3660046131f9565b61087c565b6103586103c0366004612f94565b6108b8565b6103586103d33660046131f9565b6108c5565b6103eb6103e63660046130e7565b610947565b6040516101ff9190613359565b610358610406366004612fe2565b610a63565b6103eb61041936600461313a565b610b3c565b61022f61042c366004612f94565b6001600160a01b031660009081526020819052604090205490565b61022f610455366004612f94565b610b6e565b6103eb610468366004613290565b610b8c565b61049c61047b366004612f94565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6103eb6104c23660046132d2565b610c6f565b6103586104d53660046131f9565b610c8a565b6103586104e8366004613088565b610d0c565b6101f2610e8c565b61022f61050336600461324d565b610e9b565b61022f610516366004613223565b610f0c565b61021b6105293660046131f9565b610f73565b61021b61053c3660046131f9565b611024565b61035861054f36600461301e565b611031565b61022f610562366004612faf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049c7f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546105c39061355a565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef9061355a565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b6000610653338484611195565b5060015b92915050565b600061066a8484846112ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107168533858403611195565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610657906008908442611511565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107e75760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261153d565b5050565b60006107ff611613565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff811061084a5761084a61361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106539185906108b390869061345d565b611195565b6108c2338261153d565b50565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461093d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261173a565b60608160008167ffffffffffffffff81111561096557610965613634565b60405190808252806020026020018201604052801561098e578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610a5657610a2783600101838a8a85818110610a0c57610a0c61361e565b9050602002016020810190610a21919061333e565b42611511565b848281518110610a3957610a3961361e565b602090810291909101015280610a4e8161358f565b9150506109ea565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610adb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b816001600160a01b0316836001600160a01b031614610b2d576001600160a01b03828116600090815260016020908152604080832093871683529290522054610b2d90839085906108b3908590613526565b610b378282611825565b505050565b6001600160a01b0385166000908152600660205260409020606090610b6490868686866119b6565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610657565b60608160008167ffffffffffffffff811115610baa57610baa613634565b604051908082528060200260200182016040528015610bd3578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610c6457610c35600883898985818110610a0c57610a0c61361e565b838281518110610c4757610c4761361e565b602090810291909101015280610c5c8161358f565b915050610c15565b509095945050505050565b6060610c7f6007868686866119b6565b90505b949350505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d025760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f18282611825565b83421115610d5c5760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e656044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008787610d8a8a611b55565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610dde82611b7d565b90506000610dee82878787611be6565b9050886001600160a01b0316816001600160a01b031614610e775760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b610e81898961153d565b505050505050505050565b6060600480546105c39061355a565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610f03906001830190868642611c0e565b95945050505050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610c829060018301908542611511565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610700565b61101a3385858403611195565b5060019392505050565b60006106533384846112ed565b834211156110815760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008888886110b08c611b55565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061110b82611b7d565b9050600061111b82878787611be6565b9050896001600160a01b0316816001600160a01b03161461117e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610700565b6111898a8a8a611195565b50505050505050505050565b6001600160a01b0383166112105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0382166113e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610700565b6113f0838383611c46565b6001600160a01b0383166000908152602081905260409020548181101561147f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114b690849061345d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150291815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff161161152d578361152f565b825b9050610b6486868386611cd9565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156115795750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169185169190911790556115cd818484611df2565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561166c57507f000000000000000000000000000000000000000000000000000000000000000046145b1561169657507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166117905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610700565b61179c60008383611c46565b80600260008282546117ae919061345d565b90915550506001600160a01b038216600090815260208190526040812080548392906117db90849061345d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166118a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6118ad82600083611c46565b6001600160a01b0382166000908152602081905260409020548181101561193c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038316600090815260208190526040812083830390556002805484929061196b908490613526565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606083828114611a2e5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f74636800000000000000000000000000000000000000000000000000000000006064820152608401610700565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611a8357611a83613634565b604051908082528060200260200182016040528015611aac578160200160208202803683370190505b5090504260005b84811015611b4657611b178b600101858c8c85818110611ad557611ad561361e565b9050602002016020810190611aea919061333e565b8b8b86818110611afc57611afc61361e565b9050602002016020810190611b11919061333e565b86611c0e565b838281518110611b2957611b2961361e565b602090810291909101015280611b3e8161358f565b915050611ab3565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610657611b8a611613565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bf787878787611e52565b91509150611c0481611f3f565b5095945050505050565b6000808263ffffffff168463ffffffff1611611c2a5783611c2c565b825b9050611c3b8787878487612130565b979650505050505050565b816001600160a01b0316836001600160a01b03161415611c6557505050565b60006001600160a01b03841615611c9657506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611cc757506001600160a01b03808416600090815263010000076020526040902054165b611cd2828285611df2565b5050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611d1088886121cc565b60208101519194509150611d319063ffffffff908116908890889061224c16565b15611d4c57505084516001600160d01b03169150610c829050565b6000611d58898961231d565b6020810151909350909150611d799063ffffffff808a169190899061239a16565b15611d8b576000945050505050610c82565b611d9d8985838a8c604001518b612469565b8094508193505050611db88360200151836020015188612636565b63ffffffff1682600001518460000151611dd291906134fe565b611ddc9190613495565b6001600160e01b03169998505050505050505050565b6001600160a01b03831615611e2257611e0b8382612700565b6001600160a01b038216611e2257611e2281612855565b6001600160a01b03821615610b3757611e3b828261296e565b6001600160a01b038316610b3757610b37816129a5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e895750600090506003611f36565b8460ff16601b14158015611ea157508460ff16601c14155b15611eb25750600090506004611f36565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f06573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f2f57600060019250925050611f36565b9150600090505b94509492505050565b6000816004811115611f5357611f53613608565b1415611f5c5750565b6001816004811115611f7057611f70613608565b1415611fbe5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610700565b6002816004811115611fd257611fd2613608565b14156120205760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610700565b600381600481111561203457612034613608565b14156120a85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b60048160048111156120bc576120bc613608565b14156108c25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b600080600061213f888861231d565b915091506000806121508a8a6121cc565b9150915060006121668b8b8487878a8f8e6129c0565b9050600061217a8c8c8588888b8f8f6129c0565b905061218f816020015183602001518a612636565b63ffffffff16826000015182600001516121a991906134fe565b6121b39190613495565b6001600160e01b03169c9b505050505050505050505050565b60408051808201909152600080825260208201819052906121fb836020015162ffffff1662ffffff8016612b0a565b9150838262ffffff1662ffffff81106122165761221661361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561227657508163ffffffff168363ffffffff1611155b15612292578263ffffffff168463ffffffff161115905061071c565b60008263ffffffff168563ffffffff16116122c1576122bc63ffffffff8616640100000000613475565b6122c9565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff1611612301576122fc63ffffffff8616640100000000613475565b612309565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff81106123545761235461361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061239357600091508382612216565b9250929050565b60008163ffffffff168463ffffffff16111580156123c457508163ffffffff168363ffffffff1611155b156123df578263ffffffff168463ffffffff1610905061071c565b60008263ffffffff168563ffffffff161161240e5761240963ffffffff8616640100000000613475565b612416565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161244e5761244963ffffffff8616640100000000613475565b612456565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff16106124b4578862ffffff166124cf565b60016124c562ffffff88168461345d565b6124cf9190613526565b905060005b60026124e0838561345d565b6124ea91906134bb565b90508a6124fc828962ffffff16612b34565b62ffffff1662ffffff81106125135761251361361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529095508061255b5761255382600161345d565b9350506124d4565b8b61256b838a62ffffff16612b40565b62ffffff1662ffffff81106125825761258261361e565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b909104811660208301529095506000906125c790838116908c908b9061224c16565b90508080156125f057506125f08660200151898c63ffffffff1661224c9092919063ffffffff16565b156125fc575050612628565b806126135761260c600184613526565b9350612621565b61261e83600161345d565b94505b50506124d4565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561266057508163ffffffff168363ffffffff1611155b156126765761266f838561353d565b905061071c565b60008263ffffffff168563ffffffff16116126a5576126a063ffffffff8616640100000000613475565b6126ad565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116126e5576126e063ffffffff8616640100000000613475565b6126ed565b8463ffffffff165b64ffffffffff169050610b648183613526565b80612709575050565b6001600160a01b038216600090815260066020526040812090808061276d8461273187612b50565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612bd3565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919092160217875591945092509050801561284d576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b8061285d5750565b600080600061288f600761287086612b50565b6040518060600160405280602c815260200161364b602c913942612bd3565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561150b576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612977575050565b6001600160a01b038216600090815260066020526040812090808061276d8461299f87612b50565b42612c97565b806129ad5750565b600080600061288f600761299f86612b50565b60408051808201909152600080825260208201526129f38383896020015163ffffffff1661239a9092919063ffffffff16565b15612a1757612a108789600001516001600160d01b031685612d40565b9050612afe565b8263ffffffff16876020015163ffffffff161415612a36575085612afe565b8263ffffffff16866020015163ffffffff161415612a55575084612afe565b612a748660200151838563ffffffff1661239a9092919063ffffffff16565b15612a995750604080518082019091526000815263ffffffff83166020820152612afe565b600080612aae8b8888888e6040015189612469565b915091506000612ac78260200151846020015187612636565b63ffffffff1683600001518360000151612ae191906134fe565b612aeb9190613495565b9050612af8838288612d40565b93505050505b98975050505050505050565b600081612b1957506000610657565b61071c6001612b28848661345d565b612b329190613526565b835b600061071c82846135c8565b600061071c612b3284600161345d565b60006001600160d01b03821115612bcf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f30382062697473000000000000000000000000000000000000000000000000006064820152608401610700565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612c695760405162461bcd60e51b8152600401610700919061339d565b50612c78886001018287612dbb565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612d13600188018287612dbb565b83519296509094509250612d289087906133f2565b6001600160d01b031684525091959094509092509050565b60408051808201909152600080825260208201526040518060400160405280612d7e8660200151858663ffffffff166126369092919063ffffffff16565b612d8e9063ffffffff16866134cf565b8651612d9a919061341d565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612df987876121cc565b9150508463ffffffff16816020015163ffffffff161415612e2257859350915060009050612e99565b6000612e3c8288600001516001600160d01b031688612d40565b90508088886020015162ffffff1662ffffff8110612e5c57612e5c61361e565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612e8d88612ea2565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612ed29062ffffff90811690612b40565b62ffffff9081166020840152604083015181161015612bcf57600182604001818151612efe919061343f565b62ffffff169052505090565b80356001600160a01b0381168114612f2157600080fd5b919050565b60008083601f840112612f3857600080fd5b50813567ffffffffffffffff811115612f5057600080fd5b6020830191508360208260051b850101111561239357600080fd5b803567ffffffffffffffff81168114612f2157600080fd5b803560ff81168114612f2157600080fd5b600060208284031215612fa657600080fd5b61071c82612f0a565b60008060408385031215612fc257600080fd5b612fcb83612f0a565b9150612fd960208401612f0a565b90509250929050565b600080600060608486031215612ff757600080fd5b61300084612f0a565b925061300e60208501612f0a565b9150604084013590509250925092565b600080600080600080600060e0888a03121561303957600080fd5b61304288612f0a565b965061305060208901612f0a565b9550604088013594506060880135935061306c60808901612f83565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c087890312156130a157600080fd5b6130aa87612f0a565b95506130b860208801612f0a565b9450604087013593506130cd60608801612f83565b92506080870135915060a087013590509295509295509295565b6000806000604084860312156130fc57600080fd5b61310584612f0a565b9250602084013567ffffffffffffffff81111561312157600080fd5b61312d86828701612f26565b9497909650939450505050565b60008060008060006060868803121561315257600080fd5b61315b86612f0a565b9450602086013567ffffffffffffffff8082111561317857600080fd5b61318489838a01612f26565b9096509450604088013591508082111561319d57600080fd5b506131aa88828901612f26565b969995985093965092949392505050565b600080604083850312156131ce57600080fd5b6131d783612f0a565b9150602083013561ffff811681146131ee57600080fd5b809150509250929050565b6000806040838503121561320c57600080fd5b61321583612f0a565b946020939093013593505050565b6000806040838503121561323657600080fd5b61323f83612f0a565b9150612fd960208401612f6b565b60008060006060848603121561326257600080fd5b61326b84612f0a565b925061327960208501612f6b565b915061328760408501612f6b565b90509250925092565b600080602083850312156132a357600080fd5b823567ffffffffffffffff8111156132ba57600080fd5b6132c685828601612f26565b90969095509350505050565b600080600080604085870312156132e857600080fd5b843567ffffffffffffffff8082111561330057600080fd5b61330c88838901612f26565b9096509450602087013591508082111561332557600080fd5b5061333287828801612f26565b95989497509550505050565b60006020828403121561335057600080fd5b61071c82612f6b565b6020808252825182820181905260009190848201906040850190845b8181101561339157835183529284019291840191600101613375565b50909695505050505050565b600060208083528351808285015260005b818110156133ca578581018301518582016040015282016133ae565b818111156133dc576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b03808316818516808303821115613414576134146135dc565b01949350505050565b60006001600160e01b03808316818516808303821115613414576134146135dc565b600062ffffff808316818516808303821115613414576134146135dc565b60008219821115613470576134706135dc565b500190565b600064ffffffffff808316818516808303821115613414576134146135dc565b60006001600160e01b03808416806134af576134af6135f2565b92169190910492915050565b6000826134ca576134ca6135f2565b500490565b60006001600160e01b03808316818516818304811182151516156134f5576134f56135dc565b02949350505050565b60006001600160e01b038381169083168181101561351e5761351e6135dc565b039392505050565b600082821015613538576135386135dc565b500390565b600063ffffffff8381169083168181101561351e5761351e6135dc565b600181811c9082168061356e57607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c1576135c16135dc565b5060010190565b6000826135d7576135d76135f2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a2646970667358221220f56506ec2cbe003727b9a34cab89f925ea92006fe544b652e08d6aac234f29d964736f6c63430008060033",
              "opcodes": "PUSH2 0x1C0 PUSH1 0x40 MSTORE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 PUSH2 0x140 MSTORE PUSH32 0x94019368DC6B2EE4AC32010C9D0081EC29874325B541829D001D22C296B5246C PUSH2 0x1A0 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x3D0C CODESIZE SUB DUP1 PUSH3 0x3D0C DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x7F SWAP2 PUSH3 0x42A JUMP JUMPDEST DUP4 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1C DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x506F6F6C546F67657468657220436F6E74726F6C6C6564546F6B656E00000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP DUP7 DUP7 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xEE SWAP3 SWAP2 SWAP1 PUSH3 0x2F3 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x104 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x2F3 JUMP JUMPDEST POP POP DUP3 MLOAD PUSH1 0x20 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 KECCAK256 DUP4 MLOAD DUP5 DUP4 ADD KECCAK256 PUSH1 0xE0 DUP3 SWAP1 MSTORE PUSH2 0x100 DUP2 SWAP1 MSTORE CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F DUP2 DUP9 ADD DUP2 SWAP1 MSTORE DUP2 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD SWAP5 SWAP1 SWAP5 MSTORE ADDRESS DUP2 DUP5 ADD MSTORE DUP2 MLOAD DUP1 DUP3 SUB SWAP1 SWAP4 ADD DUP4 MSTORE PUSH1 0xC0 ADD SWAP1 MSTORE DUP1 MLOAD SWAP5 ADD SWAP4 SWAP1 SWAP4 KECCAK256 SWAP2 SWAP4 POP SWAP2 SWAP1 PUSH1 0x80 MSTORE ADDRESS PUSH1 0x60 SHL PUSH1 0xC0 MSTORE PUSH2 0x120 MSTORE POP POP POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x20C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F636F6E74726F6C6C65722D6E6F742D7A PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x65726F2D61646472657373 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH2 0x160 MSTORE PUSH1 0xFF DUP3 AND PUSH3 0x271 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F646563696D616C732D67742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x203 JUMP JUMPDEST PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 PUSH1 0xF8 DUP4 SWAP1 SHL AND PUSH2 0x180 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xDE72FC29218361F33503847E6F32BE813F9EC92FC7C772BB59E46675C890FD0E SWAP1 PUSH3 0x2DD SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH3 0x4FC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP PUSH3 0x5BF JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x301 SWAP1 PUSH3 0x56C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x325 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x370 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x340 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x370 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x370 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x370 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x353 JUMP JUMPDEST POP PUSH3 0x37E SWAP3 SWAP2 POP PUSH3 0x382 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x37E JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x383 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x3AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x3C8 JUMPI PUSH3 0x3C8 PUSH3 0x5A9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x3F3 JUMPI PUSH3 0x3F3 PUSH3 0x5A9 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x40D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x420 DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x539 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x441 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x459 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x467 DUP9 DUP4 DUP10 ADD PUSH3 0x399 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x47E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x48D DUP8 DUP3 DUP9 ADD PUSH3 0x399 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x4A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x4C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0x4E8 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0x539 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH3 0x511 PUSH1 0x60 DUP4 ADD DUP7 PUSH3 0x4CE JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x525 DUP2 DUP7 PUSH3 0x4CE JUMP JUMPDEST SWAP2 POP POP PUSH1 0xFF DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x556 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x53C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x566 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x581 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x5A3 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x160 MLOAD PUSH1 0x60 SHR PUSH2 0x180 MLOAD PUSH1 0xF8 SHR PUSH2 0x1A0 MLOAD PUSH2 0x36AC PUSH3 0x660 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0xD60 ADD MSTORE PUSH1 0x0 PUSH2 0x31B ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x592 ADD MSTORE DUP2 DUP2 PUSH2 0x77A ADD MSTORE DUP2 DUP2 PUSH2 0x8D0 ADD MSTORE DUP2 DUP2 PUSH2 0xA6E ADD MSTORE PUSH2 0xC95 ADD MSTORE PUSH1 0x0 PUSH2 0x1085 ADD MSTORE PUSH1 0x0 PUSH2 0x169D ADD MSTORE PUSH1 0x0 PUSH2 0x16EC ADD MSTORE PUSH1 0x0 PUSH2 0x16C7 ADD MSTORE PUSH1 0x0 PUSH2 0x1620 ADD MSTORE PUSH1 0x0 PUSH2 0x164A ADD MSTORE PUSH1 0x0 PUSH2 0x1674 ADD MSTORE PUSH2 0x36AC PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1E5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68C7FD57 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x52E JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x541 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x554 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x58D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0x98B16F36 EQ PUSH2 0x4F5 JUMPI DUP1 PUSH4 0x9ECB0370 EQ PUSH2 0x508 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x51B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x8D22EA2A EQ PUSH2 0x46D JUMPI DUP1 PUSH4 0x8E6D536A EQ PUSH2 0x4B4 JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0x919974DC EQ PUSH2 0x4DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x68C7FD57 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x447 JUMPI DUP1 PUSH4 0x85BEB5F1 EQ PUSH2 0x45A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x5C19A95C GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x3B2 JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x3C5 JUMPI DUP1 PUSH4 0x613ED6BD EQ PUSH2 0x3D8 JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x3F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 EQ PUSH2 0x345 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x36BB2A38 EQ PUSH2 0x362 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x23D JUMPI DUP1 PUSH4 0x2ACEB534 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x2D0DD686 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1EA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x208 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x22B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F2 PUSH2 0x5B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x339D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21B PUSH2 0x216 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x2FE2 JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH2 0x2C9 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP1 DUP3 ADD DUP4 MSTORE PUSH1 0x0 DUP1 DUP4 MSTORE PUSH1 0x20 DUP1 DUP5 ADD DUP3 SWAP1 MSTORE SWAP3 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x6 DUP3 MSTORE SWAP3 DUP3 SWAP1 KECCAK256 DUP3 MLOAD SWAP4 DUP5 ADD DUP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP3 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x22F PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x333E JUMP JUMPDEST PUSH2 0x723 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x358 PUSH2 0x353 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAF JUMP JUMPDEST PUSH2 0x76F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x22F PUSH2 0x7F5 JUMP JUMPDEST PUSH2 0x375 PUSH2 0x370 CALLDATASIZE PUSH1 0x4 PUSH2 0x31BB JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x3AD CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x87C JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x8C5 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x3E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x30E7 JUMP JUMPDEST PUSH2 0x947 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x3359 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FE2 JUMP JUMPDEST PUSH2 0xA63 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x313A JUMP JUMPDEST PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x42C CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x455 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH2 0xB6E JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x468 CALLDATASIZE PUSH1 0x4 PUSH2 0x3290 JUMP JUMPDEST PUSH2 0xB8C JUMP JUMPDEST PUSH2 0x49C PUSH2 0x47B CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x4C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x32D2 JUMP JUMPDEST PUSH2 0xC6F JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0xC8A JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x3088 JUMP JUMPDEST PUSH2 0xD0C JUMP JUMPDEST PUSH2 0x1F2 PUSH2 0xE8C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x503 CALLDATASIZE PUSH1 0x4 PUSH2 0x324D JUMP JUMPDEST PUSH2 0xE9B JUMP JUMPDEST PUSH2 0x22F PUSH2 0x516 CALLDATASIZE PUSH1 0x4 PUSH2 0x3223 JUMP JUMPDEST PUSH2 0xF0C JUMP JUMPDEST PUSH2 0x21B PUSH2 0x529 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0xF73 JUMP JUMPDEST PUSH2 0x21B PUSH2 0x53C CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x1024 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x54F CALLDATASIZE PUSH1 0x4 PUSH2 0x301E JUMP JUMPDEST PUSH2 0x1031 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x562 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x49C PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x355A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x5EF SWAP1 PUSH2 0x355A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x63C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x611 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x63C JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x61F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66A DUP5 DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x709 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x716 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x657 SWAP1 PUSH1 0x8 SWAP1 DUP5 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x7E7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x153D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FF PUSH2 0x1613 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD PUSH2 0xFFFF DUP4 AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x84A JUMPI PUSH2 0x84A PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x653 SWAP2 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP7 SWAP1 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x8C2 CALLER DUP3 PUSH2 0x153D JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x93D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x173A JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x965 JUMPI PUSH2 0x965 PUSH2 0x3634 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x98E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP4 POP SWAP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xA56 JUMPI PUSH2 0xA27 DUP4 PUSH1 0x1 ADD DUP4 DUP11 DUP11 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x361E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xA21 SWAP2 SWAP1 PUSH2 0x333E JUMP JUMPDEST TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA39 JUMPI PUSH2 0xA39 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xA4E DUP2 PUSH2 0x358F JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9EA JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xADB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB2D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0xB2D SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP6 SWAP1 PUSH2 0x3526 JUMP JUMPDEST PUSH2 0xB37 DUP3 DUP3 PUSH2 0x1825 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x60 SWAP1 PUSH2 0xB64 SWAP1 DUP7 DUP7 DUP7 DUP7 PUSH2 0x19B6 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x657 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xBAA JUMPI PUSH2 0xBAA PUSH2 0x3634 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xBD3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xC64 JUMPI PUSH2 0xC35 PUSH1 0x8 DUP4 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x361E JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC47 JUMPI PUSH2 0xC47 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xC5C DUP2 PUSH2 0x358F JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC15 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xC7F PUSH1 0x7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x19B6 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xD02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x1825 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xD5C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D657870697265642D646561646C696E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP8 DUP8 PUSH2 0xD8A DUP11 PUSH2 0x1B55 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP1 DUP6 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xDDE DUP3 PUSH2 0x1B7D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xDEE DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BE6 JUMP JUMPDEST SWAP1 POP DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE77 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D696E76616C69642D7369676E61747572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6500000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0xE81 DUP10 DUP10 PUSH2 0x153D JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x355A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xF03 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP7 DUP7 TIMESTAMP PUSH2 0x1C0E JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xC82 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP6 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x101A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1081 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x10B0 DUP13 PUSH2 0x1B55 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x110B DUP3 PUSH2 0x1B7D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x111B DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BE6 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x117E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1189 DUP11 DUP11 DUP11 PUSH2 0x1195 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1210 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x128C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1369 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x13E5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x13F0 DUP4 DUP4 DUP4 PUSH2 0x1C46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x147F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x14B6 SWAP1 DUP5 SWAP1 PUSH2 0x345D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1502 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x152D JUMPI DUP4 PUSH2 0x152F JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0xB64 DUP7 DUP7 DUP4 DUP7 PUSH2 0x1CD9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH4 0x1000007 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x1579 JUMPI POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x15CD DUP2 DUP5 DUP5 PUSH2 0x1DF2 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4BC154DD35D6A5CB9206482ECB473CDBF2473006D6BCE728B9CC0741BCC59EA2 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x166C JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x1696 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1790 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x179C PUSH1 0x0 DUP4 DUP4 PUSH2 0x1C46 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x17AE SWAP2 SWAP1 PUSH2 0x345D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x17DB SWAP1 DUP5 SWAP1 PUSH2 0x345D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x18A1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x18AD DUP3 PUSH1 0x0 DUP4 PUSH2 0x1C46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x193C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x196B SWAP1 DUP5 SWAP1 PUSH2 0x3526 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 DUP3 DUP2 EQ PUSH2 0x1A2E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F73746172742D656E642D74696D65732D6C656E6774682D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP9 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A83 JUMPI PUSH2 0x1A83 PUSH2 0x3634 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1AAC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1B46 JUMPI PUSH2 0x1B17 DUP12 PUSH1 0x1 ADD DUP6 DUP13 DUP13 DUP6 DUP2 DUP2 LT PUSH2 0x1AD5 JUMPI PUSH2 0x1AD5 PUSH2 0x361E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1AEA SWAP2 SWAP1 PUSH2 0x333E JUMP JUMPDEST DUP12 DUP12 DUP7 DUP2 DUP2 LT PUSH2 0x1AFC JUMPI PUSH2 0x1AFC PUSH2 0x361E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1B11 SWAP2 SWAP1 PUSH2 0x333E JUMP JUMPDEST DUP7 PUSH2 0x1C0E JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1B29 JUMPI PUSH2 0x1B29 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1B3E DUP2 PUSH2 0x358F JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1AB3 JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x657 PUSH2 0x1B8A PUSH2 0x1613 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1BF7 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1E52 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1C04 DUP2 PUSH2 0x1F3F JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1C2A JUMPI DUP4 PUSH2 0x1C2C JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x1C3B DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0x2130 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1C65 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1C96 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1CC7 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH2 0x1CD2 DUP3 DUP3 DUP6 PUSH2 0x1DF2 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1D10 DUP9 DUP9 PUSH2 0x21CC JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0x1D31 SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x224C AND JUMP JUMPDEST ISZERO PUSH2 0x1D4C JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0xC82 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D58 DUP10 DUP10 PUSH2 0x231D JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0x1D79 SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x239A AND JUMP JUMPDEST ISZERO PUSH2 0x1D8B JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0xC82 JUMP JUMPDEST PUSH2 0x1D9D DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x2469 JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0x1DB8 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0x2636 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0x1DD2 SWAP2 SWAP1 PUSH2 0x34FE JUMP JUMPDEST PUSH2 0x1DDC SWAP2 SWAP1 PUSH2 0x3495 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x1E22 JUMPI PUSH2 0x1E0B DUP4 DUP3 PUSH2 0x2700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1E22 JUMPI PUSH2 0x1E22 DUP2 PUSH2 0x2855 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xB37 JUMPI PUSH2 0x1E3B DUP3 DUP3 PUSH2 0x296E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xB37 JUMPI PUSH2 0xB37 DUP2 PUSH2 0x29A5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x1E89 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x1F36 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1EA1 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x1EB2 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F06 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1F2F JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x1F36 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F53 JUMPI PUSH2 0x1F53 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x1F5C JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F70 JUMPI PUSH2 0x1F70 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x1FBE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1FD2 JUMPI PUSH2 0x1FD2 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x2020 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2034 JUMPI PUSH2 0x2034 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x20A8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x20BC JUMPI PUSH2 0x20BC PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x8C2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x213F DUP9 DUP9 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x2150 DUP11 DUP11 PUSH2 0x21CC JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2166 DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0x29C0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x217A DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0x29C0 JUMP JUMPDEST SWAP1 POP PUSH2 0x218F DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0x2636 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x21A9 SWAP2 SWAP1 PUSH2 0x34FE JUMP JUMPDEST PUSH2 0x21B3 SWAP2 SWAP1 PUSH2 0x3495 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x21FB DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0x2B0A JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2216 JUMPI PUSH2 0x2216 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2276 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2292 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x22C1 JUMPI PUSH2 0x22BC PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x22C9 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2301 JUMPI PUSH2 0x22FC PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x2309 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2354 JUMPI PUSH2 0x2354 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x2393 JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x2216 JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x23C4 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x23DF JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x240E JUMPI PUSH2 0x2409 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x2416 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x244E JUMPI PUSH2 0x2449 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x2456 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x24B4 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x24CF JUMP JUMPDEST PUSH1 0x1 PUSH2 0x24C5 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x24CF SWAP2 SWAP1 PUSH2 0x3526 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x24E0 DUP4 DUP6 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x24EA SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x24FC DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x2B34 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2513 JUMPI PUSH2 0x2513 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x255B JUMPI PUSH2 0x2553 DUP3 PUSH1 0x1 PUSH2 0x345D JUMP JUMPDEST SWAP4 POP POP PUSH2 0x24D4 JUMP JUMPDEST DUP12 PUSH2 0x256B DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x2B40 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2582 JUMPI PUSH2 0x2582 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x25C7 SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x224C AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x25F0 JUMPI POP PUSH2 0x25F0 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x224C SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x25FC JUMPI POP POP PUSH2 0x2628 JUMP JUMPDEST DUP1 PUSH2 0x2613 JUMPI PUSH2 0x260C PUSH1 0x1 DUP5 PUSH2 0x3526 JUMP JUMPDEST SWAP4 POP PUSH2 0x2621 JUMP JUMPDEST PUSH2 0x261E DUP4 PUSH1 0x1 PUSH2 0x345D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x24D4 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2660 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2676 JUMPI PUSH2 0x266F DUP4 DUP6 PUSH2 0x353D JUMP JUMPDEST SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26A5 JUMPI PUSH2 0x26A0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x26AD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26E5 JUMPI PUSH2 0x26E0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x26ED JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xB64 DUP2 DUP4 PUSH2 0x3526 JUMP JUMPDEST DUP1 PUSH2 0x2709 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x276D DUP5 PUSH2 0x2731 DUP8 PUSH2 0x2B50 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5469636B65742F747761622D6275726E2D6C742D62616C616E63650000000000 DUP2 MSTORE POP TIMESTAMP PUSH2 0x2BD3 JUMP JUMPDEST DUP3 MLOAD DUP8 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP4 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP3 AND MUL OR DUP8 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x284D JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH32 0xDD3E7CD3A260A292B0B3306B2CA62F30A7349619A9D09C58109318774C6B627D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x285D JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x288F PUSH1 0x7 PUSH2 0x2870 DUP7 PUSH2 0x2B50 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2C DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x364B PUSH1 0x2C SWAP2 CODECOPY TIMESTAMP PUSH2 0x2BD3 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x7 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP8 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP5 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP4 AND MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x150B JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH32 0x3375B905D617084FA6B7531688CC8046FEB1F1A0B8BA2273DE03C59D8D84416C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2977 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x276D DUP5 PUSH2 0x299F DUP8 PUSH2 0x2B50 JUMP JUMPDEST TIMESTAMP PUSH2 0x2C97 JUMP JUMPDEST DUP1 PUSH2 0x29AD JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x288F PUSH1 0x7 PUSH2 0x299F DUP7 PUSH2 0x2B50 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x29F3 DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x239A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2A17 JUMPI PUSH2 0x2A10 DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0x2D40 JUMP JUMPDEST SWAP1 POP PUSH2 0x2AFE JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A36 JUMPI POP DUP6 PUSH2 0x2AFE JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A55 JUMPI POP DUP5 PUSH2 0x2AFE JUMP JUMPDEST PUSH2 0x2A74 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x239A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2A99 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2AFE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2AAE DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x2469 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2AC7 DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0x2636 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2AE1 SWAP2 SWAP1 PUSH2 0x34FE JUMP JUMPDEST PUSH2 0x2AEB SWAP2 SWAP1 PUSH2 0x3495 JUMP JUMPDEST SWAP1 POP PUSH2 0x2AF8 DUP4 DUP3 DUP9 PUSH2 0x2D40 JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2B19 JUMPI POP PUSH1 0x0 PUSH2 0x657 JUMP JUMPDEST PUSH2 0x71C PUSH1 0x1 PUSH2 0x2B28 DUP5 DUP7 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x2B32 SWAP2 SWAP1 PUSH2 0x3526 JUMP JUMPDEST DUP4 JUMPDEST PUSH1 0x0 PUSH2 0x71C DUP3 DUP5 PUSH2 0x35C8 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x71C PUSH2 0x2B32 DUP5 PUSH1 0x1 PUSH2 0x345D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP3 GT ISZERO PUSH2 0x2BCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x2C69 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x700 SWAP2 SWAP1 PUSH2 0x339D JUMP JUMPDEST POP PUSH2 0x2C78 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0x2DBB JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2D13 PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0x2DBB JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2D28 SWAP1 DUP8 SWAP1 PUSH2 0x33F2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2D7E DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2636 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2D8E SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x34CF JUMP JUMPDEST DUP7 MLOAD PUSH2 0x2D9A SWAP2 SWAP1 PUSH2 0x341D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0x2DF9 DUP8 DUP8 PUSH2 0x21CC JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2E22 JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0x2E99 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E3C DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0x2D40 JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2E5C JUMPI PUSH2 0x2E5C PUSH2 0x361E JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0x2E8D DUP9 PUSH2 0x2EA2 JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x2ED2 SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0x2B40 JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x2BCF JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x2EFE SWAP2 SWAP1 PUSH2 0x343F JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2F21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2F38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2393 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2F21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2F21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2FA6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2F0A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2FC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2FCB DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH2 0x2FD9 PUSH1 0x20 DUP5 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2FF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3000 DUP5 PUSH2 0x2F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x300E PUSH1 0x20 DUP6 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3039 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3042 DUP9 PUSH2 0x2F0A JUMP JUMPDEST SWAP7 POP PUSH2 0x3050 PUSH1 0x20 DUP10 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x306C PUSH1 0x80 DUP10 ADD PUSH2 0x2F83 JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x30A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30AA DUP8 PUSH2 0x2F0A JUMP JUMPDEST SWAP6 POP PUSH2 0x30B8 PUSH1 0x20 DUP9 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x30CD PUSH1 0x60 DUP9 ADD PUSH2 0x2F83 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x30FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3105 DUP5 PUSH2 0x2F0A JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3121 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x312D DUP7 DUP3 DUP8 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3152 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x315B DUP7 PUSH2 0x2F0A JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x3178 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3184 DUP10 DUP4 DUP11 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x319D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x31AA DUP9 DUP3 DUP10 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x31CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31D7 DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x31EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x320C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3215 DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3236 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x323F DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH2 0x2FD9 PUSH1 0x20 DUP5 ADD PUSH2 0x2F6B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x326B DUP5 PUSH2 0x2F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x3279 PUSH1 0x20 DUP6 ADD PUSH2 0x2F6B JUMP JUMPDEST SWAP2 POP PUSH2 0x3287 PUSH1 0x40 DUP6 ADD PUSH2 0x2F6B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x32A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32C6 DUP6 DUP3 DUP7 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x32E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x3300 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x330C DUP9 DUP4 DUP10 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x3325 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3332 DUP8 DUP3 DUP9 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3350 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2F6B JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3391 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3375 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x33CA JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x33AE JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x33DC JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x3470 JUMPI PUSH2 0x3470 PUSH2 0x35DC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x34AF JUMPI PUSH2 0x34AF PUSH2 0x35F2 JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x34CA JUMPI PUSH2 0x34CA PUSH2 0x35F2 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x34F5 JUMPI PUSH2 0x34F5 PUSH2 0x35DC JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x351E JUMPI PUSH2 0x351E PUSH2 0x35DC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x3538 JUMPI PUSH2 0x3538 PUSH2 0x35DC JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x351E JUMPI PUSH2 0x351E PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x356E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1B77 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x35C1 JUMPI PUSH2 0x35C1 PUSH2 0x35DC JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x35D7 JUMPI PUSH2 0x35D7 PUSH2 0x35F2 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID SLOAD PUSH10 0x636B65742F6275726E2D PUSH2 0x6D6F PUSH22 0x6E742D657863656564732D746F74616C2D737570706C PUSH26 0x2D74776162A2646970667358221220F56506EC2CBE003727B9A3 0x4C 0xAB DUP10 0xF9 0x25 0xEA SWAP3 STOP PUSH16 0xE544B652E08D6AAC234F29D964736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "897:12604:28:-:0;;;1129:95:4;1076:148;;1130:83:28;1075:138;;1988:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2136:5;2143:7;2152:9;2163:11;1456:52:4;;;;;;;;;;;;;;;;;1495:4;2455:602:14;;;;;;;;;;;;;-1:-1:-1;;;2455:602:14;;;1682:5:21;1689:7;2037:5:1;2029;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2052:17:1;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2541:22:14;;;;;;;;;;2597:25;;;;;;2778;;;;2813:31;;;;2873:13;2854:32;;;;-1:-1:-1;3633:73:14;;2651:117;3633:73;;;2120:25:94;;;2161:18;;;2154:34;;;-1:-1:-1;2204:18:94;;2197:34;;;2247:18;;;2240:34;;;;3700:4:14;2290:19:94;;;2283:61;3633:73:14;;;;;;;;;;2092:19:94;;3633:73:14;;3623:84;;;;;;;;2541:22;;-1:-1:-1;2597:25:14;2651:117;2896:85;;3014:4;2991:28;;;;3029:21;;-1:-1:-1;;;;;;;;;;1716:34:21;::::2;1708:90;;;::::0;-1:-1:-1;;;1708:90:21;;3384:2:94;1708:90:21::2;::::0;::::2;3366:21:94::0;3423:2;3403:18;;;3396:30;3462:34;3442:18;;;3435:62;-1:-1:-1;;;3513:18:94;;;3506:41;3564:19;;1708:90:21::2;;;;;;;;;-1:-1:-1::0;;;;;;1808:24:21::2;::::0;;;;::::2;::::0;1851:13:::2;::::0;::::2;1843:58;;;::::0;-1:-1:-1;;;1843:58:21;;3023:2:94;1843:58:21::2;::::0;::::2;3005:21:94::0;;;3042:18;;;3035:30;3101:34;3081:18;;;3074:62;3153:18;;1843:58:21::2;2995:182:94::0;1843:58:21::2;1911:21:::0;::::2;::::0;;;;::::2;::::0;1948:48:::2;::::0;-1:-1:-1;;;;;1948:48:21;::::2;::::0;::::2;::::0;::::2;::::0;1957:5;;1964:7;;1923:9;;1948:48:::2;:::i;:::-;;;;;;;;1500:503:::0;;;;1988:190:28;;;;897:12604;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;897:12604:28;;;-1:-1:-1;897:12604:28;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:94;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:94;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:94;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:2;;;594:1;591;584:12;543:2;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;78:622;-1:-1:-1;;;;;;78:622:94:o;705:888::-;820:6;828;836;844;897:3;885:9;876:7;872:23;868:33;865:2;;;914:1;911;904:12;865:2;941:16;;-1:-1:-1;;;;;1006:14:94;;;1003:2;;;1033:1;1030;1023:12;1003:2;1056:61;1109:7;1100:6;1089:9;1085:22;1056:61;:::i;:::-;1046:71;;1163:2;1152:9;1148:18;1142:25;1126:41;;1192:2;1182:8;1179:16;1176:2;;;1208:1;1205;1198:12;1176:2;;1231:63;1286:7;1275:8;1264:9;1260:24;1231:63;:::i;:::-;1221:73;;;1337:2;1326:9;1322:18;1316:25;1381:4;1374:5;1370:16;1363:5;1360:27;1350:2;;1401:1;1398;1391:12;1350:2;1474;1459:18;;1453:25;1424:5;;-1:-1:-1;;;;;;1509:33:94;;1497:46;;1487:2;;1557:1;1554;1547:12;1487:2;855:738;;;;-1:-1:-1;855:738:94;;-1:-1:-1;;855:738:94:o;1598:258::-;1640:3;1678:5;1672:12;1705:6;1700:3;1693:19;1721:63;1777:6;1770:4;1765:3;1761:14;1754:4;1747:5;1743:16;1721:63;:::i;:::-;1838:2;1817:15;-1:-1:-1;;1813:29:94;1804:39;;;;1845:4;1800:50;;1648:208;-1:-1:-1;;1648:208:94:o;2355:461::-;2576:2;2565:9;2558:21;2539:4;2602:45;2643:2;2632:9;2628:18;2620:6;2602:45;:::i;:::-;2695:9;2687:6;2683:22;2678:2;2667:9;2663:18;2656:50;2723:33;2749:6;2741;2723:33;:::i;:::-;2715:41;;;2804:4;2796:6;2792:17;2787:2;2776:9;2772:18;2765:45;2548:268;;;;;;:::o;3594:258::-;3666:1;3676:113;3690:6;3687:1;3684:13;3676:113;;;3766:11;;;3760:18;3747:11;;;3740:39;3712:2;3705:10;3676:113;;;3807:6;3804:1;3801:13;3798:2;;;3842:1;3833:6;3828:3;3824:16;3817:27;3798:2;;3647:205;;;:::o;3857:380::-;3936:1;3932:12;;;;3979;;;4000:2;;4054:4;4046:6;4042:17;4032:27;;4000:2;4107;4099:6;4096:14;4076:18;4073:38;4070:2;;;4153:10;4148:3;4144:20;4141:1;4134:31;4188:4;4185:1;4178:15;4216:4;4213:1;4206:15;4070:2;;3912:325;;;:::o;4242:127::-;4303:10;4298:3;4294:20;4291:1;4284:31;4334:4;4331:1;4324:15;4358:4;4355:1;4348:15;4274:95;897:12604:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_827": {
                  "entryPoint": 2037,
                  "id": 827,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 4501,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_7819": {
                  "entryPoint": 7238,
                  "id": 7819,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2374": {
                  "entryPoint": null,
                  "id": 2374,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_517": {
                  "entryPoint": 6181,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_calculateTwab_10536": {
                  "entryPoint": 10688,
                  "id": 10536,
                  "parameterSlots": 8,
                  "returnSlots": 1
                },
                "@_computeNextTwab_10568": {
                  "entryPoint": 11584,
                  "id": 10568,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_decreaseTotalSupplyTwab_8053": {
                  "entryPoint": 10325,
                  "id": 8053,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_decreaseUserTwab_8003": {
                  "entryPoint": 9984,
                  "id": 8003,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_delegate_7667": {
                  "entryPoint": 5437,
                  "id": 7667,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_2347": {
                  "entryPoint": 5651,
                  "id": 2347,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_getAverageBalanceBetween_10311": {
                  "entryPoint": 8496,
                  "id": 10311,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getAverageBalancesBetween_7762": {
                  "entryPoint": 6582,
                  "id": 7762,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getBalanceAt_10418": {
                  "entryPoint": 7385,
                  "id": 10418,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_2390": {
                  "entryPoint": 7037,
                  "id": 2390,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_increaseTotalSupplyTwab_8102": {
                  "entryPoint": 10661,
                  "id": 8102,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_increaseUserTwab_7941": {
                  "entryPoint": 10606,
                  "id": 7941,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_445": {
                  "entryPoint": 5946,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_1560": {
                  "entryPoint": null,
                  "id": 1560,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_nextTwab_10643": {
                  "entryPoint": 11707,
                  "id": 10643,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@_throwError_1911": {
                  "entryPoint": 7999,
                  "id": 1911,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transferTwab_7880": {
                  "entryPoint": 7666,
                  "id": 7880,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_389": {
                  "entryPoint": 4845,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_856": {
                  "entryPoint": 6997,
                  "id": 856,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 1606,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@binarySearch_9675": {
                  "entryPoint": 9321,
                  "id": 9675,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkedSub_9847": {
                  "entryPoint": 9782,
                  "id": 9847,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@controllerBurnFrom_3481": {
                  "entryPoint": 2659,
                  "id": 3481,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@controllerBurn_3446": {
                  "entryPoint": 3210,
                  "id": 3446,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerDelegateFor_7540": {
                  "entryPoint": 1903,
                  "id": 7540,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerMint_3429": {
                  "entryPoint": 2245,
                  "id": 3429,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controller_3327": {
                  "entryPoint": null,
                  "id": 3327,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@current_1588": {
                  "entryPoint": null,
                  "id": 1588,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_3491": {
                  "entryPoint": null,
                  "id": 3491,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 3955,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decreaseBalance_10068": {
                  "entryPoint": 11219,
                  "id": 10068,
                  "parameterSlots": 4,
                  "returnSlots": 3
                },
                "@delegateOf_7523": {
                  "entryPoint": null,
                  "id": 7523,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@delegateWithSignature_7609": {
                  "entryPoint": 3340,
                  "id": 7609,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@delegate_7623": {
                  "entryPoint": 2232,
                  "id": 7623,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@getAccountDetails_7179": {
                  "entryPoint": null,
                  "id": 7179,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_10106": {
                  "entryPoint": 7182,
                  "id": 10106,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_7327": {
                  "entryPoint": 3739,
                  "id": 7327,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAverageBalancesBetween_7262": {
                  "entryPoint": 2876,
                  "id": 7262,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageTotalSuppliesBetween_7283": {
                  "entryPoint": 3183,
                  "id": 7283,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceAt_10222": {
                  "entryPoint": 5393,
                  "id": 10222,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceAt_7237": {
                  "entryPoint": 3852,
                  "id": 7237,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getBalancesAt_7410": {
                  "entryPoint": 2375,
                  "id": 7410,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getTotalSuppliesAt_7509": {
                  "entryPoint": 2956,
                  "id": 7509,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getTotalSupplyAt_7437": {
                  "entryPoint": 1827,
                  "id": 7437,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getTwab_7199": {
                  "entryPoint": 2052,
                  "id": 7199,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 2172,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseBalance_10013": {
                  "entryPoint": 11415,
                  "id": 10013,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@increment_1602": {
                  "entryPoint": null,
                  "id": 1602,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@lt_9734": {
                  "entryPoint": 9114,
                  "id": 9734,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lte_9789": {
                  "entryPoint": 8780,
                  "id": 9789,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@name_94": {
                  "entryPoint": 1460,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_9914": {
                  "entryPoint": 11018,
                  "id": 9914,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@newestTwab_10187": {
                  "entryPoint": 8652,
                  "id": 10187,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@nextIndex_9932": {
                  "entryPoint": 11072,
                  "id": 9932,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nonces_816": {
                  "entryPoint": 2926,
                  "id": 816,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@oldestTwab_10151": {
                  "entryPoint": 8989,
                  "id": 10151,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@permit_800": {
                  "entryPoint": 4145,
                  "id": 800,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@push_10682": {
                  "entryPoint": 11938,
                  "id": 10682,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@recover_2177": {
                  "entryPoint": 7142,
                  "id": 2177,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 3724,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_2236": {
                  "entryPoint": null,
                  "id": 2236,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@toUint208_9491": {
                  "entryPoint": 11088,
                  "id": 9491,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 1629,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 4132,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2144": {
                  "entryPoint": 7762,
                  "id": 2144,
                  "parameterSlots": 4,
                  "returnSlots": 2
                },
                "@wrap_9865": {
                  "entryPoint": 11060,
                  "id": 9865,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 12042,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_array_uint64_dyn_calldata": {
                  "entryPoint": 12070,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 12180,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 12207,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 12258,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 12318,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32": {
                  "entryPoint": 12424,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 6
                },
                "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12519,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12602,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint16": {
                  "entryPoint": 12731,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 12793,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint64": {
                  "entryPoint": 12835,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint64t_uint64": {
                  "entryPoint": 12877,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 12944,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr": {
                  "entryPoint": 13010,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 13118,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 12139,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 12163,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 13145,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 13213,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_AccountDetails_$9957_memory_ptr__to_t_struct$_AccountDetails_$9957_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Observation_$9538_memory_ptr__to_t_struct$_Observation_$9538_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint208": {
                  "entryPoint": 13298,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint224": {
                  "entryPoint": 13341,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint24": {
                  "entryPoint": 13375,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 13405,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint40": {
                  "entryPoint": 13429,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint224": {
                  "entryPoint": 13461,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 13499,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint224": {
                  "entryPoint": 13519,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint224": {
                  "entryPoint": 13566,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 13606,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint32": {
                  "entryPoint": 13629,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 13658,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 13711,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "mod_t_uint256": {
                  "entryPoint": 13768,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 13788,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 13810,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x21": {
                  "entryPoint": 13832,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 13854,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 13876,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:24918:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "298:283:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "347:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "356:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "359:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "349:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "349:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "349:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "326:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "334:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "322:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "322:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "341:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "318:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "318:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "311:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "311:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "308:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "372:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "395:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "382:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "382:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "372:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "445:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "454:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "457:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "447:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "447:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "447:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "417:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "425:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "414:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "414:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "411:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "470:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "486:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "494:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "482:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "482:17:94"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "470:8:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "559:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "568:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "571:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "561:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "561:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "561:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "522:6:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "534:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "537:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "530:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "530:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "518:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "518:27:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "547:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "514:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "514:38:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "554:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "511:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "511:47:94"
                              },
                              "nodeType": "YulIf",
                              "src": "508:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint64_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "261:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "269:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "277:8:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "287:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:366:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "634:123:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "644:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "666:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "653:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "653:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "644:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "735:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "744:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "747:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "737:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "737:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "737:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "706:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "713:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "702:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "702:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "692:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "692:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "685:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "685:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "682:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "613:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "624:5:94",
                            "type": ""
                          }
                        ],
                        "src": "586:171:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "809:109:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "819:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "841:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "828:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "828:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "819:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "896:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "905:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "908:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "898:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "898:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "898:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "870:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "881:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "888:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "877:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "877:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "860:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "860:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "857:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "788:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "799:5:94",
                            "type": ""
                          }
                        ],
                        "src": "762:156:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "993:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1039:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1048:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1051:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1041:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1041:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1041:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1014:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1010:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1010:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1035:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1064:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1093:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1074:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1074:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1064:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "959:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "970:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "982:6:94",
                            "type": ""
                          }
                        ],
                        "src": "923:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1201:173:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1247:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1256:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1259:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1249:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1249:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1249:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1222:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1231:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1218:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1218:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1243:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1214:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1214:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1211:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1272:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1301:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1282:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1282:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1272:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1320:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1353:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1364:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1349:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1349:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1330:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1330:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1320:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1159:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1170:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1182:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1190:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1114:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1483:224:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1529:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1538:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1541:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1531:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1531:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1531:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1504:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1513:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1500:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1500:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1525:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1496:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1496:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1493:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1554:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1583:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1564:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1564:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1554:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1602:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1635:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1646:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1631:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1631:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1612:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1602:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1659:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1686:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1697:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1682:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1682:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1669:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1669:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1659:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1433:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1444:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1456:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1464:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1472:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1379:328:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1882:436:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1929:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1938:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1941:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1931:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1931:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1931:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1903:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1912:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1899:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1899:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1924:3:94",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1895:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1895:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1892:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1954:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1983:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1964:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1964:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1954:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2002:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2035:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2046:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2031:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2031:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2012:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2012:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2002:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2059:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2086:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2097:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2082:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2082:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2069:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2069:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2059:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2110:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2137:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2148:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2133:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2133:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2110:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2161:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2192:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2203:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2188:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2188:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2171:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2171:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2161:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2217:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2244:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2255:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2240:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2240:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2227:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2227:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2217:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2269:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2296:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2307:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2292:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2292:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2279:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2279:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "2269:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1800:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1811:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1823:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1831:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1839:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1847:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1855:6:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "1863:6:94",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "1871:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1712:606:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2476:384:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2523:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2532:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2535:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2525:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2525:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2525:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2497:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2506:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2493:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2493:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2518:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2489:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2489:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2486:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2548:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2577:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2548:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2596:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2629:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2640:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2625:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2625:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2606:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2606:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2596:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2653:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2680:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2691:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2676:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2676:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2663:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2663:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2653:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2704:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2735:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2746:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2731:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2731:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2714:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2714:36:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2759:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2786:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2797:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2782:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2782:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2769:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2769:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2759:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2811:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2838:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2849:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2834:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2834:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2821:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2821:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2811:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2402:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2413:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2425:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2433:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2441:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2449:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2457:6:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "2465:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2323:537:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2986:388:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3032:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3044:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3034:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3034:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3007:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3016:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3003:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3003:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3028:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2999:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2999:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2996:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3057:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3086:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3067:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3067:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3057:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3105:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3136:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3147:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3132:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3132:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3119:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3119:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3109:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3194:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3203:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3206:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3196:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3196:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3196:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3166:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3174:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3163:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3163:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3160:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3219:95:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3297:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3282:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3282:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3306:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3245:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3245:69:94"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3223:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3233:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3323:18:94",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3333:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3323:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3350:18:94",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "3360:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3350:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2936:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2947:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2959:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2967:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2975:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2865:509:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3551:671:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3597:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3606:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3609:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3599:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3599:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3599:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3572:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3581:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3568:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3568:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3593:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3561:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3622:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3651:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3632:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3632:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3622:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3670:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3701:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3712:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3697:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3697:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3674:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3725:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3735:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3729:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3780:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3789:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3792:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3782:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3782:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3782:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3768:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3776:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3765:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3765:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3762:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3805:95:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3872:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3883:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3868:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3868:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3892:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3831:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3831:69:94"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3809:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3819:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3909:18:94",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3919:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3909:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3936:18:94",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "3946:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3936:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3963:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3996:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4007:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3992:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3992:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3967:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4040:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4049:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4052:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4042:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4026:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4036:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4023:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4023:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4020:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4065:97:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4132:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4143:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4128:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4128:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4154:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "4091:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4091:71:94"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4069:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4079:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4171:18:94",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "4181:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "4171:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4198:18:94",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "4208:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "4198:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3485:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3496:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3508:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3516:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3524:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3532:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3540:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3379:843:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4313:260:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4359:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4368:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4371:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4361:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4361:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4361:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4334:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4343:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4330:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4330:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4326:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4326:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4323:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4384:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4413:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4394:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4394:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4384:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4432:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4462:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4473:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4458:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4458:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4445:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4445:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4436:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4527:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4536:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4539:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4529:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4529:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4529:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4499:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4510:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4517:6:94",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4506:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4506:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4496:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4496:29:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4489:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4489:37:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4486:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4552:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4562:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4552:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint16",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4271:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4282:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4294:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4302:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4227:346:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4665:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4711:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4720:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4723:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4713:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4713:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4713:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4686:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4695:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4682:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4682:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4707:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4678:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4678:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4675:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4736:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4765:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4746:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4746:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4736:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4784:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4811:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4822:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4807:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4807:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4794:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4794:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4784:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4623:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4634:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4646:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4654:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4578:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4923:172:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4969:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4978:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4981:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4971:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4971:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4971:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4944:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4953:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4940:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4940:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4965:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4936:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4936:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4933:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4994:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5023:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5004:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5004:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4994:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5042:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5074:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5085:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5070:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5070:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5052:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5052:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5042:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4881:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4892:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4904:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4912:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4837:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5202:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5248:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5257:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5260:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5250:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5250:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5250:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5223:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5232:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5219:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5219:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5244:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5215:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5215:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5212:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5273:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5302:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5283:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5283:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5273:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5321:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5353:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5364:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5349:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5349:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5331:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5331:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5321:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5377:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5409:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5420:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5405:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5405:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5387:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5387:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "5377:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5152:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5163:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5175:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5183:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5191:6:94",
                            "type": ""
                          }
                        ],
                        "src": "5100:330:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5539:331:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5585:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5594:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5597:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5587:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5587:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5587:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5560:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5569:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5556:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5556:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5581:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5552:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5552:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5549:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5610:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5637:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5624:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5624:23:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5614:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5690:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5699:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5702:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5692:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5692:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5692:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5662:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5670:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5659:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5659:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5656:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5715:95:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5782:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "5793:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5778:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5778:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5802:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "5741:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5741:69:94"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5719:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5729:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5819:18:94",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "5829:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5819:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5846:18:94",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "5856:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5846:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5497:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5508:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5520:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5528:6:94",
                            "type": ""
                          }
                        ],
                        "src": "5435:435:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6030:614:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6076:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6085:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6088:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6078:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6078:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6078:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6051:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6060:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6047:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6047:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6072:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6043:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6043:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6040:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6101:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6128:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6115:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6115:23:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "6105:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6147:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6157:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6151:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6202:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6211:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6214:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6204:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6204:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6204:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "6190:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6198:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6187:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6187:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6184:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6227:95:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6294:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "6305:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6290:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6290:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6314:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6253:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6253:69:94"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6231:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6241:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6331:18:94",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "6341:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6331:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6358:18:94",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "6368:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "6358:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6385:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6418:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6429:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6414:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6414:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6401:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6401:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6389:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6462:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6471:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6474:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6464:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6464:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6464:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6448:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6458:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6445:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6445:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6442:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6487:97:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6554:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6565:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6550:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6550:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6576:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6513:36:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6513:71:94"
                              },
                              "variables": [
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6491:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6501:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6593:18:94",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "6603:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "6593:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6620:18:94",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "6630:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "6620:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5972:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5983:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5995:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6003:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6011:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "6019:6:94",
                            "type": ""
                          }
                        ],
                        "src": "5875:769:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6718:115:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6764:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6773:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6776:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6766:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6766:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6766:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6739:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6748:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6735:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6735:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6760:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6731:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6731:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6728:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6789:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6817:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "6799:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6799:28:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6789:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6684:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "6695:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6707:6:94",
                            "type": ""
                          }
                        ],
                        "src": "6649:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7086:196:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7103:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7108:66:94",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7096:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7096:79:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7096:79:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7195:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7200:1:94",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7191:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7191:11:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7204:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7184:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7184:27:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7184:27:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7231:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7236:2:94",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7227:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7227:12:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7241:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7220:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7220:28:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7220:28:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7257:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7268:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7273:2:94",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "7257:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "7054:3:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7059:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7067:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "7078:3:94",
                            "type": ""
                          }
                        ],
                        "src": "6838:444:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7388:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7398:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7410:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7421:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7406:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7406:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7398:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7440:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7455:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7463:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7451:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7451:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7433:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7433:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7433:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7357:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7368:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7379:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7287:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7669:481:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7679:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7689:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7683:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7700:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7718:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7729:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7714:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7714:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7704:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7748:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7759:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7741:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7741:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7741:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7771:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "7782:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "7775:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7797:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7817:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7811:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7811:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7801:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7840:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7848:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7833:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7833:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7833:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7864:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7875:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7886:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7871:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7871:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7864:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7898:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7916:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7924:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7912:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7912:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7902:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7936:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7945:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7940:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8004:120:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8025:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "8036:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8030:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8030:13:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8018:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8018:26:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8018:26:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8057:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8068:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8073:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8064:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8064:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8057:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8089:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "8103:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8111:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8099:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8099:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8089:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7966:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7969:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7963:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7963:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7977:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7979:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7988:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7991:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7984:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7984:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7979:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7959:3:94",
                                "statements": []
                              },
                              "src": "7955:169:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8133:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "8141:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8133:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7638:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7649:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7660:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7518:632:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8250:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8260:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8272:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8283:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8268:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8268:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8260:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8302:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8327:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8320:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8320:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8313:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8313:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8295:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8295:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8295:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8219:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8230:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8241:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8155:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8448:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8458:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8470:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8481:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8466:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8466:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8458:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8500:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8511:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8493:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8493:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8493:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8417:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8428:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8439:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8347:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8742:329:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8752:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8764:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8775:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8760:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8760:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8752:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8795:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8806:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8788:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8788:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8788:25:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8822:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8832:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8826:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8894:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8905:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8890:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8890:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8914:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8922:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8910:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8910:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8883:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8883:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8883:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8946:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8957:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8942:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8942:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "8966:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8974:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8962:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8962:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8935:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8935:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8935:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8998:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9009:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8994:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8994:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9014:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8987:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8987:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8987:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9041:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9052:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9037:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9037:19:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9058:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9030:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9030:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9030:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8679:9:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "8690:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "8698:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "8706:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8714:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8722:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8733:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8529:542:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9317:373:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9327:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9339:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9350:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9335:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9335:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9327:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9370:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9381:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9363:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9363:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9363:25:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9397:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9407:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9401:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9469:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9480:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9465:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9465:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9489:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9497:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9485:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9485:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9458:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9458:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9458:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9521:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9532:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9517:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9517:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "9541:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9549:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9537:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9537:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9510:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9510:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9510:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9573:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9584:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9569:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9569:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9589:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9562:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9562:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9562:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9616:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9627:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9612:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9612:19:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9633:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9605:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9605:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9605:35:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9660:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9671:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9656:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9656:19:94"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "9677:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9649:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9649:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9649:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9246:9:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "9257:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9265:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9273:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9281:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9289:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9297:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9308:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9076:614:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9908:299:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9918:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9930:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9941:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9926:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9926:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9918:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9961:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9972:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9954:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9954:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9954:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9999:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10010:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9995:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9995:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10015:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9988:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9988:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9988:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10042:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10053:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10038:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10038:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "10058:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10031:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10031:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10031:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10085:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10096:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10081:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10081:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10101:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10074:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10074:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10074:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10128:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10139:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10124:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10124:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "10149:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10157:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10145:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10145:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10117:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10117:84:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10117:84:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9845:9:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9856:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9864:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9872:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9880:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9888:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9899:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9695:512:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10393:217:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10403:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10415:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10426:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10411:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10411:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10403:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10446:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10457:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10439:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10439:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10439:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10484:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10495:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10480:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10480:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10504:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10512:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10500:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10500:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10473:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10473:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10473:45:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10538:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10549:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10534:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10534:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "10554:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10527:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10527:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10527:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10581:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10592:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10577:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10577:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10597:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10570:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10570:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10570:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10338:9:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "10349:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "10357:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10365:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10373:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10384:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10212:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10736:535:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10746:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10756:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10750:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10774:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10785:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10767:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10767:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10767:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10797:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10817:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10811:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10811:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10801:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10844:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10855:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10840:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10840:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10860:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10833:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10833:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10833:34:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10876:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10885:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10880:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10945:90:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10974:9:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10985:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10970:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10970:17:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10989:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10966:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10966:26:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11008:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11016:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "11004:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "11004:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11020:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11000:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11000:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10994:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10994:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10959:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10959:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10959:66:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10906:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10909:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10903:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10903:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10917:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10919:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10928:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10931:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10924:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10924:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10919:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10899:3:94",
                                "statements": []
                              },
                              "src": "10895:140:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11069:66:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11098:9:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11109:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11094:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11094:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "11118:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11090:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11090:31:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11123:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11083:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11083:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11083:42:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11050:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11053:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11047:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11047:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "11044:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11144:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11160:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "11179:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11187:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11175:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11175:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11192:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11171:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11171:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11156:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11156:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11262:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11152:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11152:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11144:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10705:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10716:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10727:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10615:656:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11450:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11467:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11478:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11460:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11460:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11460:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11501:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11512:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11497:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11497:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11517:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11490:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11490:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11490:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11540:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11551:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11536:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11536:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11556:26:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11529:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11529:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11529:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11592:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11604:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11615:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11600:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11600:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11592:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11427:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11441:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11276:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11803:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11820:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11831:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11813:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11813:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11813:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11854:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11865:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11850:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11850:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11870:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11843:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11843:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11843:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11893:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11904:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11889:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11889:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11909:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11882:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11882:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11882:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11964:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11975:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11960:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11960:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11980:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11953:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11953:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11953:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11995:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12007:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12018:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12003:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12003:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11995:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11780:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11794:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11629:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12207:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12224:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12235:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12217:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12217:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12217:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12258:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12269:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12254:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12274:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12247:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12247:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12247:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12297:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12308:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12293:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12293:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12313:34:94",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12286:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12286:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12286:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12368:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12379:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12364:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12364:18:94"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12384:4:94",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12357:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12357:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12357:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12398:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12410:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12421:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12406:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12406:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12398:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12184:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12198:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12033:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12610:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12627:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12638:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12620:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12620:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12620:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12661:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12672:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12657:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12657:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12677:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12650:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12650:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12650:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12700:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12711:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12696:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12696:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12716:33:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12689:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12689:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12689:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12759:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12771:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12782:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12767:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12767:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12759:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12587:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12601:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12436:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12970:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12987:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12998:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12980:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12980:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12980:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13021:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13032:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13017:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13017:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13037:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13010:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13010:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13010:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13060:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13071:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13056:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13056:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13076:34:94",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13049:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13049:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13049:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13131:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13142:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13127:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13127:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13147:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13120:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13120:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13120:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13161:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13173:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13184:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13169:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13169:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13161:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12947:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12961:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12796:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13373:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13390:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13401:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13383:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13383:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13383:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13424:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13435:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13420:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13420:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13440:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13413:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13413:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13413:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13463:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13474:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13459:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13459:18:94"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d657870697265642d646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13479:34:94",
                                    "type": "",
                                    "value": "Ticket/delegate-expired-deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13452:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13452:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13452:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13523:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13535:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13546:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13531:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13531:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13523:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13350:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13364:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13199:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13734:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13751:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13762:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13744:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13744:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13744:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13785:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13796:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13781:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13781:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13801:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13774:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13774:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13774:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13824:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13835:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13820:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13820:18:94"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13840:31:94",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13813:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13813:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13813:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13881:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13893:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13904:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13889:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13889:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13881:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13711:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13725:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13560:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14092:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14109:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14120:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14102:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14102:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14102:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14143:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14154:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14139:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14139:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14159:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14132:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14132:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14132:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14182:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14193:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14178:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14178:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14198:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14171:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14171:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14171:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14253:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14264:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14249:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14249:18:94"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14269:8:94",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14242:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14242:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14242:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14287:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14299:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14310:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14295:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14295:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14287:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14069:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14083:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13918:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14499:229:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14516:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14527:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14509:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14509:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14509:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14550:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14561:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14546:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14546:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14566:2:94",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14539:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14539:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14539:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14589:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14600:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14585:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14585:18:94"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14605:34:94",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14578:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14578:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14578:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14660:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14671:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14656:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14656:18:94"
                                  },
                                  {
                                    "hexValue": "30382062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14676:9:94",
                                    "type": "",
                                    "value": "08 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14649:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14649:37:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14649:37:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14695:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14707:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14718:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14703:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14703:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14695:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14476:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14490:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14325:403:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14907:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14924:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14935:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14917:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14917:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14917:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14958:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14969:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14954:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14954:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14974:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14947:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14947:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14947:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14997:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15008:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14993:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14993:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15013:34:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14986:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14986:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14986:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15068:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15079:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15064:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15064:18:94"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15084:4:94",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15057:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15057:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15057:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15098:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15110:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15121:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15106:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15106:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15098:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14884:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14898:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14733:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15310:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15327:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15338:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15320:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15320:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15320:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15361:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15372:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15357:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15357:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15377:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15350:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15350:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15350:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15400:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15411:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15396:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15396:18:94"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15416:34:94",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15389:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15389:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15389:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15471:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15482:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15467:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15467:18:94"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15487:4:94",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15460:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15460:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15460:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15501:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15513:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15524:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15509:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15509:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15501:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15287:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15301:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15136:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15713:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15730:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15741:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15723:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15723:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15723:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15764:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15775:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15760:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15760:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15780:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15753:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15753:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15753:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15803:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15814:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15799:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15799:18:94"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15819:32:94",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15792:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15792:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15792:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15861:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15873:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15884:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15869:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15869:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15861:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15690:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15704:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15539:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16072:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16089:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16100:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16082:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16082:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16082:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16123:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16134:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16119:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16119:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16139:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16112:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16112:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16112:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16162:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16173:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16158:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16158:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16178:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16151:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16151:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16151:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16233:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16244:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16229:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16229:18:94"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16249:10:94",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16222:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16222:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16222:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16269:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16281:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16292:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16277:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16277:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16269:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16049:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16063:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15898:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16481:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16498:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16509:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16491:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16491:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16491:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16532:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16543:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16528:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16528:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16548:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16521:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16521:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16521:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16571:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16582:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16567:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16567:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16587:34:94",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16560:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16560:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16560:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16642:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16653:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16638:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16638:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16658:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16631:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16631:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16631:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16671:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16683:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16694:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16679:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16679:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16671:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16458:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16472:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16307:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16883:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16900:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16911:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16893:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16893:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16893:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16934:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16945:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16930:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16930:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16950:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16923:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16923:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16923:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16973:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16984:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16969:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16969:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16989:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16962:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16962:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16962:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17044:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17055:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17040:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17040:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17060:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17033:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17033:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17033:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17077:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17089:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17100:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17085:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17085:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17077:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16860:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16874:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16709:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17289:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17306:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17317:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17299:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17299:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17299:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17340:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17351:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17336:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17336:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17356:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17329:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17329:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17329:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17379:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17390:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17375:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17375:18:94"
                                  },
                                  {
                                    "hexValue": "5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d61",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17395:34:94",
                                    "type": "",
                                    "value": "Ticket/start-end-times-length-ma"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17368:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17368:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17368:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17450:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17461:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17446:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17446:18:94"
                                  },
                                  {
                                    "hexValue": "746368",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17466:5:94",
                                    "type": "",
                                    "value": "tch"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17439:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17439:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17439:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17481:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17493:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17504:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17489:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17489:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17481:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17266:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17280:4:94",
                            "type": ""
                          }
                        ],
                        "src": "17115:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17693:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17710:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17721:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17703:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17703:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17703:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17744:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17755:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17740:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17740:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17760:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17733:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17733:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17733:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17783:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17794:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17779:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17779:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17799:34:94",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17772:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17772:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17772:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17854:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17865:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17850:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17850:18:94"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17870:6:94",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17843:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17843:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17843:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17886:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17898:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17909:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17894:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17894:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17886:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17670:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17684:4:94",
                            "type": ""
                          }
                        ],
                        "src": "17519:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18098:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18115:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18126:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18108:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18108:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18108:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18149:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18160:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18145:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18145:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18165:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18138:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18138:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18138:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18188:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18199:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18184:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18184:18:94"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d696e76616c69642d7369676e61747572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18204:34:94",
                                    "type": "",
                                    "value": "Ticket/delegate-invalid-signatur"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18177:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18177:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18177:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18259:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18270:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18255:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18255:18:94"
                                  },
                                  {
                                    "hexValue": "65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18275:3:94",
                                    "type": "",
                                    "value": "e"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18248:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18248:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18248:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18288:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18300:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18311:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18296:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18296:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18288:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18075:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18089:4:94",
                            "type": ""
                          }
                        ],
                        "src": "17924:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18500:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18517:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18528:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18510:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18510:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18510:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18551:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18562:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18547:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18547:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18567:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18540:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18540:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18540:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18590:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18601:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18586:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18586:18:94"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18606:33:94",
                                    "type": "",
                                    "value": "ControlledToken/only-controller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18579:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18579:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18579:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18649:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18661:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18672:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18657:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18657:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18649:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18477:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18491:4:94",
                            "type": ""
                          }
                        ],
                        "src": "18326:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18860:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18877:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18888:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18870:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18870:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18870:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18911:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18922:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18907:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18907:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18927:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18900:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18900:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18900:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18950:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18961:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18946:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18946:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18966:34:94",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18939:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18939:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18939:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19021:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19032:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19017:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19017:18:94"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19037:7:94",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19010:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19010:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19010:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19054:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19066:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19077:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19062:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19062:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19054:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18837:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18851:4:94",
                            "type": ""
                          }
                        ],
                        "src": "18686:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19266:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19283:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19294:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19276:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19276:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19276:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19317:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19328:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19313:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19313:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19333:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19306:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19306:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19306:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19356:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19367:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19352:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19352:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19372:33:94",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19345:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19345:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19345:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19415:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19427:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19438:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19423:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19423:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19415:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19243:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19257:4:94",
                            "type": ""
                          }
                        ],
                        "src": "19092:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19617:356:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19627:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19639:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19650:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19635:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19635:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19627:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19669:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "19690:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "19684:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19684:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19699:54:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19680:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19680:74:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19662:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19662:93:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19662:93:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19764:44:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19794:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19802:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19790:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19790:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "19784:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19784:24:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "19768:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19817:18:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19827:8:94",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19821:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19855:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19866:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19851:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19851:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19877:12:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19891:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19873:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19873:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19844:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19844:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19844:51:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19915:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19926:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19911:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19911:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "19947:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "19955:4:94",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "19943:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "19943:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "19937:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19937:24:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19963:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19933:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19933:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19904:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19904:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19904:63:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_AccountDetails_$9957_memory_ptr__to_t_struct$_AccountDetails_$9957_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19586:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19597:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19608:4:94",
                            "type": ""
                          }
                        ],
                        "src": "19452:521:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20137:228:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20147:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20159:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20170:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20155:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20155:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20147:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20189:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "20210:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20204:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20204:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20219:58:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20200:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20200:78:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20182:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20182:97:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20182:97:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20299:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20310:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20295:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20295:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "20331:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "20339:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "20327:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20327:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20321:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20321:24:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20347:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20317:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20317:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20288:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20288:71:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20288:71:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Observation_$9538_memory_ptr__to_t_struct$_Observation_$9538_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20106:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20117:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20128:4:94",
                            "type": ""
                          }
                        ],
                        "src": "19978:387:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20471:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20481:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20493:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20504:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20489:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20489:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20481:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20523:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "20534:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20516:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20516:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20440:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20451:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20462:4:94",
                            "type": ""
                          }
                        ],
                        "src": "20370:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20649:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20659:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20671:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20682:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20667:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20667:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20659:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20701:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "20716:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20724:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20712:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20712:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20694:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20694:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20694:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20618:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20629:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20640:4:94",
                            "type": ""
                          }
                        ],
                        "src": "20552:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20789:225:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20799:64:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "20809:54:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20803:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20872:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "20887:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20890:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20883:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20883:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20876:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20902:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20917:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20920:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20913:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20913:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20906:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20957:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "20959:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20959:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20959:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20938:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20947:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20951:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "20943:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20943:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "20935:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20935:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "20932:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20988:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20999:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21004:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20995:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20995:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "20988:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint208",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "20772:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "20775:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "20781:3:94",
                            "type": ""
                          }
                        ],
                        "src": "20741:273:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21067:229:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21077:68:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21087:58:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21081:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21154:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21169:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21172:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21165:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21165:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21158:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21184:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21199:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21202:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21195:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21195:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21188:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21239:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21241:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21241:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21241:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21220:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21229:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21233:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21225:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21225:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21217:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21217:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21214:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21270:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21281:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21286:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21277:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21277:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21270:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21050:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21053:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21059:3:94",
                            "type": ""
                          }
                        ],
                        "src": "21019:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21348:179:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21358:18:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21368:8:94",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21362:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21385:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21400:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21403:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21396:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21396:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21389:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21415:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21430:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21433:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21426:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21426:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21419:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21470:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21472:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21472:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21472:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21451:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21460:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21464:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21456:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21456:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21448:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21448:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21445:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21501:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21512:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21517:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21508:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21508:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21501:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21331:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21334:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21340:3:94",
                            "type": ""
                          }
                        ],
                        "src": "21301:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21580:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21607:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21609:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21609:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21609:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21596:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "21603:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "21599:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21599:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21593:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21593:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21590:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21638:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21649:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21652:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21645:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21645:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21638:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21563:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21566:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21572:3:94",
                            "type": ""
                          }
                        ],
                        "src": "21532:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21712:183:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21722:22:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21732:12:94",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21726:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21753:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21768:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21771:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21764:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21764:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21757:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21783:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21798:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21801:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21794:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21794:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21787:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21838:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21840:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21840:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21840:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21819:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21828:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21832:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21824:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21824:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21816:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21816:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "21813:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21869:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21880:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21885:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21876:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21876:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21869:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21695:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21698:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21704:3:94",
                            "type": ""
                          }
                        ],
                        "src": "21665:230:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21946:194:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21956:68:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21966:58:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21960:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22033:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22048:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22051:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22044:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22044:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22037:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22078:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22080:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22080:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22080:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22073:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22066:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22066:11:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22063:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22109:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "22122:1:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22125:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22118:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22118:10:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22130:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "22114:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22114:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "22109:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21931:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21934:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "21940:1:94",
                            "type": ""
                          }
                        ],
                        "src": "21900:240:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22191:74:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22214:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22216:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22216:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22216:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22211:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22204:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22204:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22201:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22245:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22254:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22257:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "22250:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22250:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "22245:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22176:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22179:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "22185:1:94",
                            "type": ""
                          }
                        ],
                        "src": "22145:120:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22322:259:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22332:68:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22342:58:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22336:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22409:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22424:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22427:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22420:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22420:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22413:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22439:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22454:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22457:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22450:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22450:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22443:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22520:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22522:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22522:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22522:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22490:3:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "22483:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "22483:11:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "22476:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22476:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22500:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22509:2:94"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22513:3:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "22505:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "22505:12:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22497:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22497:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22472:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22472:47:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22469:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22551:24:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22566:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22571:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "22562:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22562:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "22551:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22301:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22304:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "22310:7:94",
                            "type": ""
                          }
                        ],
                        "src": "22270:311:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22635:221:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22645:68:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22655:58:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22649:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22722:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22737:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22740:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22733:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22733:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22726:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22752:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22767:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22770:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22763:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22763:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22756:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22798:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22800:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22800:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22800:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22788:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22793:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22785:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22785:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22782:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22829:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22841:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22846:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "22837:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22837:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "22829:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22617:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22620:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "22626:4:94",
                            "type": ""
                          }
                        ],
                        "src": "22586:270:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22910:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22932:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22934:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22934:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22934:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22926:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22929:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22923:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22923:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "22920:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22963:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22975:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22978:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "22971:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22971:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "22963:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22892:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22895:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "22901:4:94",
                            "type": ""
                          }
                        ],
                        "src": "22861:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23039:173:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23049:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23059:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23053:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23078:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23093:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23096:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23089:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23089:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23082:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23108:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23123:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23126:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23119:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23119:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23112:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23154:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23156:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23156:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23156:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23144:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23149:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23141:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23141:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "23138:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23185:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23197:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23202:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "23193:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23193:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "23185:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23021:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23024:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "23030:4:94",
                            "type": ""
                          }
                        ],
                        "src": "22991:221:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23272:382:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23282:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23296:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "23299:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "23292:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23292:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "23282:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23313:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "23343:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23349:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23339:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23339:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "23317:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23390:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "23392:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "23406:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23414:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "23402:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23402:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23392:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "23370:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23363:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23363:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "23360:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23480:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23501:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23504:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "23494:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23494:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23494:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23602:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23605:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "23595:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23595:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23595:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23630:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23633:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23623:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23623:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23623:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "23436:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23459:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23467:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23456:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23456:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "23433:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23433:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "23430:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "23252:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "23261:6:94",
                            "type": ""
                          }
                        ],
                        "src": "23217:437:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23706:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23797:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23799:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23799:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23799:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "23722:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23729:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "23719:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23719:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "23716:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23828:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "23839:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23846:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23835:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23835:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "23828:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23688:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "23698:3:94",
                            "type": ""
                          }
                        ],
                        "src": "23659:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23897:74:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23920:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "23922:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23922:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23922:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23917:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23910:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23910:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "23907:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23951:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23960:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23963:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "23956:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23956:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "23951:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23882:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23885:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "23891:1:94",
                            "type": ""
                          }
                        ],
                        "src": "23859:112:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24008:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24025:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24028:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24018:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24018:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24018:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24122:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24125:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24115:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24115:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24115:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24146:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24149:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24139:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24139:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24139:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "23976:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24197:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24214:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24217:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24207:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24207:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24207:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24311:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24314:4:94",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24304:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24304:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24304:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24335:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24338:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24328:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24328:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24328:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24165:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24386:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24403:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24406:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24396:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24396:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24396:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24500:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24503:4:94",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24493:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24493:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24493:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24524:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24527:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24517:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24517:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24517:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24354:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24575:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24592:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24595:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24585:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24585:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24585:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24689:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24692:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24682:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24682:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24682:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24713:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24716:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24706:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24706:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24706:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24543:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24764:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24781:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24784:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24774:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24774:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24774:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24878:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24881:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24871:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24871:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24871:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24902:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24905:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24895:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24895:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24895:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24732:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_array_uint64_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := calldataload(add(headStart, 96))\n        value4 := abi_decode_uint8(add(headStart, 128))\n        value5 := calldataload(add(headStart, 160))\n        value6 := calldataload(add(headStart, 192))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n        value3 := abi_decode_uint8(add(headStart, 96))\n        value4 := calldataload(add(headStart, 128))\n        value5 := calldataload(add(headStart, 160))\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_decode_tuple_t_addresst_uint16(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := calldataload(add(headStart, 32))\n        if iszero(eq(value, and(value, 0xffff))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint64t_uint64(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n        value2 := abi_decode_uint64(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptrt_array$_t_uint64_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_uint64_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint64(headStart)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x1901000000000000000000000000000000000000000000000000000000000000)\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"Ticket/delegate-expired-deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"ERC20Permit: expired deadline\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 2\")\n        mstore(add(headStart, 96), \"08 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 's' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ECDSA: invalid signature 'v' val\")\n        mstore(add(headStart, 96), \"ue\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"ERC20Permit: invalid signature\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Ticket/start-end-times-length-ma\")\n        mstore(add(headStart, 96), \"tch\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"Ticket/delegate-invalid-signatur\")\n        mstore(add(headStart, 96), \"e\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ControlledToken/only-controller\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_AccountDetails_$9957_memory_ptr__to_t_struct$_AccountDetails_$9957_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        let memberValue0 := mload(add(value0, 0x20))\n        let _1 := 0xffffff\n        mstore(add(headStart, 0x20), and(memberValue0, _1))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), _1))\n    }\n    function abi_encode_tuple_t_struct$_Observation_$9538_memory_ptr__to_t_struct$_Observation_$9538_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint208(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint224(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint24(x, y) -> sum\n    {\n        let _1 := 0xffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint40(x, y) -> sum\n    {\n        let _1 := 0xffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint224(x, y) -> r\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let y_1 := and(y, _1)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, _1), y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint224(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint224(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint32(x, y) -> diff\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "716": [
                  {
                    "length": 32,
                    "start": 4229
                  }
                ],
                "2243": [
                  {
                    "length": 32,
                    "start": 5748
                  }
                ],
                "2245": [
                  {
                    "length": 32,
                    "start": 5706
                  }
                ],
                "2247": [
                  {
                    "length": 32,
                    "start": 5664
                  }
                ],
                "2249": [
                  {
                    "length": 32,
                    "start": 5831
                  }
                ],
                "2251": [
                  {
                    "length": 32,
                    "start": 5868
                  }
                ],
                "2253": [
                  {
                    "length": 32,
                    "start": 5789
                  }
                ],
                "3327": [
                  {
                    "length": 32,
                    "start": 1426
                  },
                  {
                    "length": 32,
                    "start": 1914
                  },
                  {
                    "length": 32,
                    "start": 2256
                  },
                  {
                    "length": 32,
                    "start": 2670
                  },
                  {
                    "length": 32,
                    "start": 3221
                  }
                ],
                "3330": [
                  {
                    "length": 32,
                    "start": 795
                  }
                ],
                "7129": [
                  {
                    "length": 32,
                    "start": 3424
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101e55760003560e01c806368c7fd571161010f57806395d89b41116100a2578063a9059cbb11610071578063a9059cbb1461052e578063d505accf14610541578063dd62ed3e14610554578063f77c47911461058d57600080fd5b806395d89b41146104ed57806398b16f36146104f55780639ecb037014610508578063a457c2d71461051b57600080fd5b80638d22ea2a116100de5780638d22ea2a1461046d5780638e6d536a146104b457806390596dd1146104c7578063919974dc146104da57600080fd5b806368c7fd571461040b57806370a082311461041e5780637ecebe001461044757806385beb5f11461045a57600080fd5b806333e39b61116101875780635c19a95c116101565780635c19a95c146103b25780635d7b0758146103c5578063613ed6bd146103d8578063631b5dfb146103f857600080fd5b806333e39b61146103455780633644e5151461035a57806336bb2a3814610362578063395093511461039f57600080fd5b806323b872dd116101c357806323b872dd1461023d5780632aceb534146102505780632d0dd68614610301578063313ce5671461031457600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26105b4565b6040516101ff919061339d565b60405180910390f35b61021b6102163660046131f9565b610646565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61021b61024b366004612fe2565b61065d565b6102c961025e366004612f94565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016101ff565b61022f61030f36600461333e565b610723565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101ff565b610358610353366004612faf565b61076f565b005b61022f6107f5565b6103756103703660046131bb565b610804565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016101ff565b61021b6103ad3660046131f9565b61087c565b6103586103c0366004612f94565b6108b8565b6103586103d33660046131f9565b6108c5565b6103eb6103e63660046130e7565b610947565b6040516101ff9190613359565b610358610406366004612fe2565b610a63565b6103eb61041936600461313a565b610b3c565b61022f61042c366004612f94565b6001600160a01b031660009081526020819052604090205490565b61022f610455366004612f94565b610b6e565b6103eb610468366004613290565b610b8c565b61049c61047b366004612f94565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6103eb6104c23660046132d2565b610c6f565b6103586104d53660046131f9565b610c8a565b6103586104e8366004613088565b610d0c565b6101f2610e8c565b61022f61050336600461324d565b610e9b565b61022f610516366004613223565b610f0c565b61021b6105293660046131f9565b610f73565b61021b61053c3660046131f9565b611024565b61035861054f36600461301e565b611031565b61022f610562366004612faf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049c7f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546105c39061355a565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef9061355a565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b6000610653338484611195565b5060015b92915050565b600061066a8484846112ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107168533858403611195565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610657906008908442611511565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107e75760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261153d565b5050565b60006107ff611613565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff811061084a5761084a61361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106539185906108b390869061345d565b611195565b6108c2338261153d565b50565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461093d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261173a565b60608160008167ffffffffffffffff81111561096557610965613634565b60405190808252806020026020018201604052801561098e578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610a5657610a2783600101838a8a85818110610a0c57610a0c61361e565b9050602002016020810190610a21919061333e565b42611511565b848281518110610a3957610a3961361e565b602090810291909101015280610a4e8161358f565b9150506109ea565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610adb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b816001600160a01b0316836001600160a01b031614610b2d576001600160a01b03828116600090815260016020908152604080832093871683529290522054610b2d90839085906108b3908590613526565b610b378282611825565b505050565b6001600160a01b0385166000908152600660205260409020606090610b6490868686866119b6565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610657565b60608160008167ffffffffffffffff811115610baa57610baa613634565b604051908082528060200260200182016040528015610bd3578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610c6457610c35600883898985818110610a0c57610a0c61361e565b838281518110610c4757610c4761361e565b602090810291909101015280610c5c8161358f565b915050610c15565b509095945050505050565b6060610c7f6007868686866119b6565b90505b949350505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d025760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f18282611825565b83421115610d5c5760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e656044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008787610d8a8a611b55565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610dde82611b7d565b90506000610dee82878787611be6565b9050886001600160a01b0316816001600160a01b031614610e775760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b610e81898961153d565b505050505050505050565b6060600480546105c39061355a565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610f03906001830190868642611c0e565b95945050505050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610c829060018301908542611511565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610700565b61101a3385858403611195565b5060019392505050565b60006106533384846112ed565b834211156110815760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008888886110b08c611b55565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061110b82611b7d565b9050600061111b82878787611be6565b9050896001600160a01b0316816001600160a01b03161461117e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610700565b6111898a8a8a611195565b50505050505050505050565b6001600160a01b0383166112105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0382166113e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610700565b6113f0838383611c46565b6001600160a01b0383166000908152602081905260409020548181101561147f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114b690849061345d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150291815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff161161152d578361152f565b825b9050610b6486868386611cd9565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156115795750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169185169190911790556115cd818484611df2565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561166c57507f000000000000000000000000000000000000000000000000000000000000000046145b1561169657507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166117905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610700565b61179c60008383611c46565b80600260008282546117ae919061345d565b90915550506001600160a01b038216600090815260208190526040812080548392906117db90849061345d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166118a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6118ad82600083611c46565b6001600160a01b0382166000908152602081905260409020548181101561193c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038316600090815260208190526040812083830390556002805484929061196b908490613526565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606083828114611a2e5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f74636800000000000000000000000000000000000000000000000000000000006064820152608401610700565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611a8357611a83613634565b604051908082528060200260200182016040528015611aac578160200160208202803683370190505b5090504260005b84811015611b4657611b178b600101858c8c85818110611ad557611ad561361e565b9050602002016020810190611aea919061333e565b8b8b86818110611afc57611afc61361e565b9050602002016020810190611b11919061333e565b86611c0e565b838281518110611b2957611b2961361e565b602090810291909101015280611b3e8161358f565b915050611ab3565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610657611b8a611613565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bf787878787611e52565b91509150611c0481611f3f565b5095945050505050565b6000808263ffffffff168463ffffffff1611611c2a5783611c2c565b825b9050611c3b8787878487612130565b979650505050505050565b816001600160a01b0316836001600160a01b03161415611c6557505050565b60006001600160a01b03841615611c9657506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611cc757506001600160a01b03808416600090815263010000076020526040902054165b611cd2828285611df2565b5050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611d1088886121cc565b60208101519194509150611d319063ffffffff908116908890889061224c16565b15611d4c57505084516001600160d01b03169150610c829050565b6000611d58898961231d565b6020810151909350909150611d799063ffffffff808a169190899061239a16565b15611d8b576000945050505050610c82565b611d9d8985838a8c604001518b612469565b8094508193505050611db88360200151836020015188612636565b63ffffffff1682600001518460000151611dd291906134fe565b611ddc9190613495565b6001600160e01b03169998505050505050505050565b6001600160a01b03831615611e2257611e0b8382612700565b6001600160a01b038216611e2257611e2281612855565b6001600160a01b03821615610b3757611e3b828261296e565b6001600160a01b038316610b3757610b37816129a5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e895750600090506003611f36565b8460ff16601b14158015611ea157508460ff16601c14155b15611eb25750600090506004611f36565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f06573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f2f57600060019250925050611f36565b9150600090505b94509492505050565b6000816004811115611f5357611f53613608565b1415611f5c5750565b6001816004811115611f7057611f70613608565b1415611fbe5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610700565b6002816004811115611fd257611fd2613608565b14156120205760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610700565b600381600481111561203457612034613608565b14156120a85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b60048160048111156120bc576120bc613608565b14156108c25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b600080600061213f888861231d565b915091506000806121508a8a6121cc565b9150915060006121668b8b8487878a8f8e6129c0565b9050600061217a8c8c8588888b8f8f6129c0565b905061218f816020015183602001518a612636565b63ffffffff16826000015182600001516121a991906134fe565b6121b39190613495565b6001600160e01b03169c9b505050505050505050505050565b60408051808201909152600080825260208201819052906121fb836020015162ffffff1662ffffff8016612b0a565b9150838262ffffff1662ffffff81106122165761221661361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561227657508163ffffffff168363ffffffff1611155b15612292578263ffffffff168463ffffffff161115905061071c565b60008263ffffffff168563ffffffff16116122c1576122bc63ffffffff8616640100000000613475565b6122c9565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff1611612301576122fc63ffffffff8616640100000000613475565b612309565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff81106123545761235461361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061239357600091508382612216565b9250929050565b60008163ffffffff168463ffffffff16111580156123c457508163ffffffff168363ffffffff1611155b156123df578263ffffffff168463ffffffff1610905061071c565b60008263ffffffff168563ffffffff161161240e5761240963ffffffff8616640100000000613475565b612416565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161244e5761244963ffffffff8616640100000000613475565b612456565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff16106124b4578862ffffff166124cf565b60016124c562ffffff88168461345d565b6124cf9190613526565b905060005b60026124e0838561345d565b6124ea91906134bb565b90508a6124fc828962ffffff16612b34565b62ffffff1662ffffff81106125135761251361361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529095508061255b5761255382600161345d565b9350506124d4565b8b61256b838a62ffffff16612b40565b62ffffff1662ffffff81106125825761258261361e565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b909104811660208301529095506000906125c790838116908c908b9061224c16565b90508080156125f057506125f08660200151898c63ffffffff1661224c9092919063ffffffff16565b156125fc575050612628565b806126135761260c600184613526565b9350612621565b61261e83600161345d565b94505b50506124d4565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561266057508163ffffffff168363ffffffff1611155b156126765761266f838561353d565b905061071c565b60008263ffffffff168563ffffffff16116126a5576126a063ffffffff8616640100000000613475565b6126ad565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116126e5576126e063ffffffff8616640100000000613475565b6126ed565b8463ffffffff165b64ffffffffff169050610b648183613526565b80612709575050565b6001600160a01b038216600090815260066020526040812090808061276d8461273187612b50565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612bd3565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919092160217875591945092509050801561284d576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b8061285d5750565b600080600061288f600761287086612b50565b6040518060600160405280602c815260200161364b602c913942612bd3565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561150b576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612977575050565b6001600160a01b038216600090815260066020526040812090808061276d8461299f87612b50565b42612c97565b806129ad5750565b600080600061288f600761299f86612b50565b60408051808201909152600080825260208201526129f38383896020015163ffffffff1661239a9092919063ffffffff16565b15612a1757612a108789600001516001600160d01b031685612d40565b9050612afe565b8263ffffffff16876020015163ffffffff161415612a36575085612afe565b8263ffffffff16866020015163ffffffff161415612a55575084612afe565b612a748660200151838563ffffffff1661239a9092919063ffffffff16565b15612a995750604080518082019091526000815263ffffffff83166020820152612afe565b600080612aae8b8888888e6040015189612469565b915091506000612ac78260200151846020015187612636565b63ffffffff1683600001518360000151612ae191906134fe565b612aeb9190613495565b9050612af8838288612d40565b93505050505b98975050505050505050565b600081612b1957506000610657565b61071c6001612b28848661345d565b612b329190613526565b835b600061071c82846135c8565b600061071c612b3284600161345d565b60006001600160d01b03821115612bcf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f30382062697473000000000000000000000000000000000000000000000000006064820152608401610700565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612c695760405162461bcd60e51b8152600401610700919061339d565b50612c78886001018287612dbb565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612d13600188018287612dbb565b83519296509094509250612d289087906133f2565b6001600160d01b031684525091959094509092509050565b60408051808201909152600080825260208201526040518060400160405280612d7e8660200151858663ffffffff166126369092919063ffffffff16565b612d8e9063ffffffff16866134cf565b8651612d9a919061341d565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612df987876121cc565b9150508463ffffffff16816020015163ffffffff161415612e2257859350915060009050612e99565b6000612e3c8288600001516001600160d01b031688612d40565b90508088886020015162ffffff1662ffffff8110612e5c57612e5c61361e565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612e8d88612ea2565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612ed29062ffffff90811690612b40565b62ffffff9081166020840152604083015181161015612bcf57600182604001818151612efe919061343f565b62ffffff169052505090565b80356001600160a01b0381168114612f2157600080fd5b919050565b60008083601f840112612f3857600080fd5b50813567ffffffffffffffff811115612f5057600080fd5b6020830191508360208260051b850101111561239357600080fd5b803567ffffffffffffffff81168114612f2157600080fd5b803560ff81168114612f2157600080fd5b600060208284031215612fa657600080fd5b61071c82612f0a565b60008060408385031215612fc257600080fd5b612fcb83612f0a565b9150612fd960208401612f0a565b90509250929050565b600080600060608486031215612ff757600080fd5b61300084612f0a565b925061300e60208501612f0a565b9150604084013590509250925092565b600080600080600080600060e0888a03121561303957600080fd5b61304288612f0a565b965061305060208901612f0a565b9550604088013594506060880135935061306c60808901612f83565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c087890312156130a157600080fd5b6130aa87612f0a565b95506130b860208801612f0a565b9450604087013593506130cd60608801612f83565b92506080870135915060a087013590509295509295509295565b6000806000604084860312156130fc57600080fd5b61310584612f0a565b9250602084013567ffffffffffffffff81111561312157600080fd5b61312d86828701612f26565b9497909650939450505050565b60008060008060006060868803121561315257600080fd5b61315b86612f0a565b9450602086013567ffffffffffffffff8082111561317857600080fd5b61318489838a01612f26565b9096509450604088013591508082111561319d57600080fd5b506131aa88828901612f26565b969995985093965092949392505050565b600080604083850312156131ce57600080fd5b6131d783612f0a565b9150602083013561ffff811681146131ee57600080fd5b809150509250929050565b6000806040838503121561320c57600080fd5b61321583612f0a565b946020939093013593505050565b6000806040838503121561323657600080fd5b61323f83612f0a565b9150612fd960208401612f6b565b60008060006060848603121561326257600080fd5b61326b84612f0a565b925061327960208501612f6b565b915061328760408501612f6b565b90509250925092565b600080602083850312156132a357600080fd5b823567ffffffffffffffff8111156132ba57600080fd5b6132c685828601612f26565b90969095509350505050565b600080600080604085870312156132e857600080fd5b843567ffffffffffffffff8082111561330057600080fd5b61330c88838901612f26565b9096509450602087013591508082111561332557600080fd5b5061333287828801612f26565b95989497509550505050565b60006020828403121561335057600080fd5b61071c82612f6b565b6020808252825182820181905260009190848201906040850190845b8181101561339157835183529284019291840191600101613375565b50909695505050505050565b600060208083528351808285015260005b818110156133ca578581018301518582016040015282016133ae565b818111156133dc576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b03808316818516808303821115613414576134146135dc565b01949350505050565b60006001600160e01b03808316818516808303821115613414576134146135dc565b600062ffffff808316818516808303821115613414576134146135dc565b60008219821115613470576134706135dc565b500190565b600064ffffffffff808316818516808303821115613414576134146135dc565b60006001600160e01b03808416806134af576134af6135f2565b92169190910492915050565b6000826134ca576134ca6135f2565b500490565b60006001600160e01b03808316818516818304811182151516156134f5576134f56135dc565b02949350505050565b60006001600160e01b038381169083168181101561351e5761351e6135dc565b039392505050565b600082821015613538576135386135dc565b500390565b600063ffffffff8381169083168181101561351e5761351e6135dc565b600181811c9082168061356e57607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c1576135c16135dc565b5060010190565b6000826135d7576135d76135f2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a2646970667358221220f56506ec2cbe003727b9a34cab89f925ea92006fe544b652e08d6aac234f29d964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1E5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68C7FD57 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x52E JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x541 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x554 JUMPI DUP1 PUSH4 0xF77C4791 EQ PUSH2 0x58D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x4ED JUMPI DUP1 PUSH4 0x98B16F36 EQ PUSH2 0x4F5 JUMPI DUP1 PUSH4 0x9ECB0370 EQ PUSH2 0x508 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x51B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8D22EA2A GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x8D22EA2A EQ PUSH2 0x46D JUMPI DUP1 PUSH4 0x8E6D536A EQ PUSH2 0x4B4 JUMPI DUP1 PUSH4 0x90596DD1 EQ PUSH2 0x4C7 JUMPI DUP1 PUSH4 0x919974DC EQ PUSH2 0x4DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x68C7FD57 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x447 JUMPI DUP1 PUSH4 0x85BEB5F1 EQ PUSH2 0x45A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x5C19A95C GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x3B2 JUMPI DUP1 PUSH4 0x5D7B0758 EQ PUSH2 0x3C5 JUMPI DUP1 PUSH4 0x613ED6BD EQ PUSH2 0x3D8 JUMPI DUP1 PUSH4 0x631B5DFB EQ PUSH2 0x3F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E39B61 EQ PUSH2 0x345 JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x36BB2A38 EQ PUSH2 0x362 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x23D JUMPI DUP1 PUSH4 0x2ACEB534 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x2D0DD686 EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1EA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x208 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x22B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F2 PUSH2 0x5B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x339D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21B PUSH2 0x216 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x24B CALLDATASIZE PUSH1 0x4 PUSH2 0x2FE2 JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH2 0x2C9 PUSH2 0x25E CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP1 DUP3 ADD DUP4 MSTORE PUSH1 0x0 DUP1 DUP4 MSTORE PUSH1 0x20 DUP1 DUP5 ADD DUP3 SWAP1 MSTORE SWAP3 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND DUP5 MSTORE PUSH1 0x6 DUP3 MSTORE SWAP3 DUP3 SWAP1 KECCAK256 DUP3 MLOAD SWAP4 DUP5 ADD DUP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP3 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 DUP3 ADD MLOAD SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x22F PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x333E JUMP JUMPDEST PUSH2 0x723 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x358 PUSH2 0x353 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAF JUMP JUMPDEST PUSH2 0x76F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x22F PUSH2 0x7F5 JUMP JUMPDEST PUSH2 0x375 PUSH2 0x370 CALLDATASIZE PUSH1 0x4 PUSH2 0x31BB JUMP JUMPDEST PUSH2 0x804 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x21B PUSH2 0x3AD CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x87C JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x3D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x8C5 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x3E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x30E7 JUMP JUMPDEST PUSH2 0x947 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FF SWAP2 SWAP1 PUSH2 0x3359 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FE2 JUMP JUMPDEST PUSH2 0xA63 JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x313A JUMP JUMPDEST PUSH2 0xB3C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x42C CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x455 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH2 0xB6E JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x468 CALLDATASIZE PUSH1 0x4 PUSH2 0x3290 JUMP JUMPDEST PUSH2 0xB8C JUMP JUMPDEST PUSH2 0x49C PUSH2 0x47B CALLDATASIZE PUSH1 0x4 PUSH2 0x2F94 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1FF JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x4C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x32D2 JUMP JUMPDEST PUSH2 0xC6F JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0xC8A JUMP JUMPDEST PUSH2 0x358 PUSH2 0x4E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x3088 JUMP JUMPDEST PUSH2 0xD0C JUMP JUMPDEST PUSH2 0x1F2 PUSH2 0xE8C JUMP JUMPDEST PUSH2 0x22F PUSH2 0x503 CALLDATASIZE PUSH1 0x4 PUSH2 0x324D JUMP JUMPDEST PUSH2 0xE9B JUMP JUMPDEST PUSH2 0x22F PUSH2 0x516 CALLDATASIZE PUSH1 0x4 PUSH2 0x3223 JUMP JUMPDEST PUSH2 0xF0C JUMP JUMPDEST PUSH2 0x21B PUSH2 0x529 CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0xF73 JUMP JUMPDEST PUSH2 0x21B PUSH2 0x53C CALLDATASIZE PUSH1 0x4 PUSH2 0x31F9 JUMP JUMPDEST PUSH2 0x1024 JUMP JUMPDEST PUSH2 0x358 PUSH2 0x54F CALLDATASIZE PUSH1 0x4 PUSH2 0x301E JUMP JUMPDEST PUSH2 0x1031 JUMP JUMPDEST PUSH2 0x22F PUSH2 0x562 CALLDATASIZE PUSH1 0x4 PUSH2 0x2FAF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x49C PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x355A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x5EF SWAP1 PUSH2 0x355A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x63C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x611 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x63C JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x61F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66A DUP5 DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x709 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x716 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x657 SWAP1 PUSH1 0x8 SWAP1 DUP5 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x7E7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x153D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FF PUSH2 0x1613 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 ADD PUSH2 0xFFFF DUP4 AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x84A JUMPI PUSH2 0x84A PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x653 SWAP2 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP7 SWAP1 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x8C2 CALLER DUP3 PUSH2 0x153D JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x93D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x173A JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x965 JUMPI PUSH2 0x965 PUSH2 0x3634 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x98E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP4 POP SWAP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0xA56 JUMPI PUSH2 0xA27 DUP4 PUSH1 0x1 ADD DUP4 DUP11 DUP11 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x361E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xA21 SWAP2 SWAP1 PUSH2 0x333E JUMP JUMPDEST TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xA39 JUMPI PUSH2 0xA39 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xA4E DUP2 PUSH2 0x358F JUMP JUMPDEST SWAP2 POP POP PUSH2 0x9EA JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xADB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB2D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH2 0xB2D SWAP1 DUP4 SWAP1 DUP6 SWAP1 PUSH2 0x8B3 SWAP1 DUP6 SWAP1 PUSH2 0x3526 JUMP JUMPDEST PUSH2 0xB37 DUP3 DUP3 PUSH2 0x1825 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x60 SWAP1 PUSH2 0xB64 SWAP1 DUP7 DUP7 DUP7 DUP7 PUSH2 0x19B6 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x657 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xBAA JUMPI PUSH2 0xBAA PUSH2 0x3634 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xBD3 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xC64 JUMPI PUSH2 0xC35 PUSH1 0x8 DUP4 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0xA0C JUMPI PUSH2 0xA0C PUSH2 0x361E JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC47 JUMPI PUSH2 0xC47 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xC5C DUP2 PUSH2 0x358F JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC15 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xC7F PUSH1 0x7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x19B6 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xD02 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x436F6E74726F6C6C6564546F6B656E2F6F6E6C792D636F6E74726F6C6C657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x7F1 DUP3 DUP3 PUSH2 0x1825 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0xD5C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D657870697265642D646561646C696E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP8 DUP8 PUSH2 0xD8A DUP11 PUSH2 0x1B55 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP1 DUP6 ADD MSTORE SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0xDDE DUP3 PUSH2 0x1B7D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xDEE DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BE6 JUMP JUMPDEST SWAP1 POP DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE77 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F64656C65676174652D696E76616C69642D7369676E61747572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6500000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0xE81 DUP10 DUP10 PUSH2 0x153D JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x5C3 SWAP1 PUSH2 0x355A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xF03 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP7 DUP7 TIMESTAMP PUSH2 0x1C0E JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD DUP4 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND SWAP6 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 DIV SWAP1 SWAP4 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0xC82 SWAP1 PUSH1 0x1 DUP4 ADD SWAP1 DUP6 TIMESTAMP PUSH2 0x1511 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x101A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1195 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x653 CALLER DUP5 DUP5 PUSH2 0x12ED JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1081 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A206578706972656420646561646C696E65000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 DUP9 DUP9 DUP9 PUSH2 0x10B0 DUP13 PUSH2 0x1B55 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH1 0x0 PUSH2 0x110B DUP3 PUSH2 0x1B7D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x111B DUP3 DUP8 DUP8 DUP8 PUSH2 0x1BE6 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x117E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332305065726D69743A20696E76616C6964207369676E61747572650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x1189 DUP11 DUP11 DUP11 PUSH2 0x1195 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1210 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x128C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1369 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x13E5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x13F0 DUP4 DUP4 DUP4 PUSH2 0x1C46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x147F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x14B6 SWAP1 DUP5 SWAP1 PUSH2 0x345D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1502 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x152D JUMPI DUP4 PUSH2 0x152F JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0xB64 DUP7 DUP7 DUP4 DUP7 PUSH2 0x1CD9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH4 0x1000007 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x1579 JUMPI POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND SWAP2 DUP6 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x15CD DUP2 DUP5 DUP5 PUSH2 0x1DF2 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4BC154DD35D6A5CB9206482ECB473CDBF2473006D6BCE728B9CC0741BCC59EA2 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x166C JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x1696 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH32 0x0 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 DUP3 DUP5 ADD MSTORE PUSH32 0x0 PUSH1 0x60 DUP4 ADD MSTORE CHAINID PUSH1 0x80 DUP4 ADD MSTORE ADDRESS PUSH1 0xA0 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xC0 SWAP1 SWAP3 ADD SWAP1 SWAP3 MSTORE DUP1 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1790 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x179C PUSH1 0x0 DUP4 DUP4 PUSH2 0x1C46 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x17AE SWAP2 SWAP1 PUSH2 0x345D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x17DB SWAP1 DUP5 SWAP1 PUSH2 0x345D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x18A1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH2 0x18AD DUP3 PUSH1 0x0 DUP4 PUSH2 0x1C46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x193C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x196B SWAP1 DUP5 SWAP1 PUSH2 0x3526 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 DUP3 DUP2 EQ PUSH2 0x1A2E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5469636B65742F73746172742D656E642D74696D65732D6C656E6774682D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP9 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A83 JUMPI PUSH2 0x1A83 PUSH2 0x3634 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1AAC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP TIMESTAMP PUSH1 0x0 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1B46 JUMPI PUSH2 0x1B17 DUP12 PUSH1 0x1 ADD DUP6 DUP13 DUP13 DUP6 DUP2 DUP2 LT PUSH2 0x1AD5 JUMPI PUSH2 0x1AD5 PUSH2 0x361E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1AEA SWAP2 SWAP1 PUSH2 0x333E JUMP JUMPDEST DUP12 DUP12 DUP7 DUP2 DUP2 LT PUSH2 0x1AFC JUMPI PUSH2 0x1AFC PUSH2 0x361E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1B11 SWAP2 SWAP1 PUSH2 0x333E JUMP JUMPDEST DUP7 PUSH2 0x1C0E JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1B29 JUMPI PUSH2 0x1B29 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x1B3E DUP2 PUSH2 0x358F JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1AB3 JUMP JUMPDEST POP SWAP1 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE SWAP1 JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x657 PUSH2 0x1B8A PUSH2 0x1613 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x22 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x42 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x62 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1BF7 DUP8 DUP8 DUP8 DUP8 PUSH2 0x1E52 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1C04 DUP2 PUSH2 0x1F3F JUMP JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1C2A JUMPI DUP4 PUSH2 0x1C2C JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH2 0x1C3B DUP8 DUP8 DUP8 DUP5 DUP8 PUSH2 0x2130 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1C65 JUMPI POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1C96 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x1CC7 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH4 0x1000007 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD AND JUMPDEST PUSH2 0x1CD2 DUP3 DUP3 DUP6 PUSH2 0x1DF2 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x1D10 DUP9 DUP9 PUSH2 0x21CC JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP2 SWAP5 POP SWAP2 POP PUSH2 0x1D31 SWAP1 PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH2 0x224C AND JUMP JUMPDEST ISZERO PUSH2 0x1D4C JUMPI POP POP DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND SWAP2 POP PUSH2 0xC82 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D58 DUP10 DUP10 PUSH2 0x231D JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP PUSH2 0x1D79 SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP11 AND SWAP2 SWAP1 DUP10 SWAP1 PUSH2 0x239A AND JUMP JUMPDEST ISZERO PUSH2 0x1D8B JUMPI PUSH1 0x0 SWAP5 POP POP POP POP POP PUSH2 0xC82 JUMP JUMPDEST PUSH2 0x1D9D DUP10 DUP6 DUP4 DUP11 DUP13 PUSH1 0x40 ADD MLOAD DUP12 PUSH2 0x2469 JUMP JUMPDEST DUP1 SWAP5 POP DUP2 SWAP4 POP POP POP PUSH2 0x1DB8 DUP4 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP9 PUSH2 0x2636 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x0 ADD MLOAD PUSH2 0x1DD2 SWAP2 SWAP1 PUSH2 0x34FE JUMP JUMPDEST PUSH2 0x1DDC SWAP2 SWAP1 PUSH2 0x3495 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x1E22 JUMPI PUSH2 0x1E0B DUP4 DUP3 PUSH2 0x2700 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1E22 JUMPI PUSH2 0x1E22 DUP2 PUSH2 0x2855 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xB37 JUMPI PUSH2 0x1E3B DUP3 DUP3 PUSH2 0x296E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xB37 JUMPI PUSH2 0xB37 DUP2 PUSH2 0x29A5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP4 GT ISZERO PUSH2 0x1E89 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x3 PUSH2 0x1F36 JUMP JUMPDEST DUP5 PUSH1 0xFF AND PUSH1 0x1B EQ ISZERO DUP1 ISZERO PUSH2 0x1EA1 JUMPI POP DUP5 PUSH1 0xFF AND PUSH1 0x1C EQ ISZERO JUMPDEST ISZERO PUSH2 0x1EB2 JUMPI POP PUSH1 0x0 SWAP1 POP PUSH1 0x4 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP10 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 SWAP1 PUSH1 0xA0 ADD PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F06 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT ADD MLOAD SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1F2F JUMPI PUSH1 0x0 PUSH1 0x1 SWAP3 POP SWAP3 POP POP PUSH2 0x1F36 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F53 JUMPI PUSH2 0x1F53 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x1F5C JUMPI POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1F70 JUMPI PUSH2 0x1F70 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x1FBE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E61747572650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x2 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x1FD2 JUMPI PUSH2 0x1FD2 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x2020 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265206C656E67746800 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x3 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x2034 JUMPI PUSH2 0x2034 PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x20A8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202773272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x4 DUP2 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x20BC JUMPI PUSH2 0x20BC PUSH2 0x3608 JUMP JUMPDEST EQ ISZERO PUSH2 0x8C2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45434453413A20696E76616C6964207369676E6174757265202776272076616C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7565000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x213F DUP9 DUP9 PUSH2 0x231D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x2150 DUP11 DUP11 PUSH2 0x21CC JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2166 DUP12 DUP12 DUP5 DUP8 DUP8 DUP11 DUP16 DUP15 PUSH2 0x29C0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x217A DUP13 DUP13 DUP6 DUP9 DUP9 DUP12 DUP16 DUP16 PUSH2 0x29C0 JUMP JUMPDEST SWAP1 POP PUSH2 0x218F DUP2 PUSH1 0x20 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD DUP11 PUSH2 0x2636 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x21A9 SWAP2 SWAP1 PUSH2 0x34FE JUMP JUMPDEST PUSH2 0x21B3 SWAP2 SWAP1 PUSH2 0x3495 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND SWAP13 SWAP12 POP POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 PUSH2 0x21FB DUP4 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP1 AND PUSH2 0x2B0A JUMP JUMPDEST SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2216 JUMPI PUSH2 0x2216 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE SWAP2 SWAP5 SWAP2 SWAP4 POP SWAP1 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2276 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2292 JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x22C1 JUMPI PUSH2 0x22BC PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x22C9 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x2301 JUMPI PUSH2 0x22FC PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x2309 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 GT ISZERO SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 DUP3 PUSH1 0x20 ADD MLOAD SWAP2 POP DUP4 DUP3 PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2354 JUMPI PUSH2 0x2354 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x2393 JUMPI PUSH1 0x0 SWAP2 POP DUP4 DUP3 PUSH2 0x2216 JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x23C4 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x23DF JUMPI DUP3 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND LT SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x240E JUMPI PUSH2 0x2409 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x2416 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x244E JUMPI PUSH2 0x2449 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x2456 JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 SWAP2 LT SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP7 PUSH3 0xFFFFFF AND SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH3 0xFFFFFF AND LT PUSH2 0x24B4 JUMPI DUP9 PUSH3 0xFFFFFF AND PUSH2 0x24CF JUMP JUMPDEST PUSH1 0x1 PUSH2 0x24C5 PUSH3 0xFFFFFF DUP9 AND DUP5 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x24CF SWAP2 SWAP1 PUSH2 0x3526 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x2 PUSH2 0x24E0 DUP4 DUP6 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x24EA SWAP2 SWAP1 PUSH2 0x34BB JUMP JUMPDEST SWAP1 POP DUP11 PUSH2 0x24FC DUP3 DUP10 PUSH3 0xFFFFFF AND PUSH2 0x2B34 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2513 JUMPI PUSH2 0x2513 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP6 POP DUP1 PUSH2 0x255B JUMPI PUSH2 0x2553 DUP3 PUSH1 0x1 PUSH2 0x345D JUMP JUMPDEST SWAP4 POP POP PUSH2 0x24D4 JUMP JUMPDEST DUP12 PUSH2 0x256B DUP4 DUP11 PUSH3 0xFFFFFF AND PUSH2 0x2B40 JUMP JUMPDEST PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2582 JUMPI PUSH2 0x2582 PUSH2 0x361E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP2 AND DUP3 MSTORE PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 SWAP6 POP PUSH1 0x0 SWAP1 PUSH2 0x25C7 SWAP1 DUP4 DUP2 AND SWAP1 DUP13 SWAP1 DUP12 SWAP1 PUSH2 0x224C AND JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x25F0 JUMPI POP PUSH2 0x25F0 DUP7 PUSH1 0x20 ADD MLOAD DUP10 DUP13 PUSH4 0xFFFFFFFF AND PUSH2 0x224C SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x25FC JUMPI POP POP PUSH2 0x2628 JUMP JUMPDEST DUP1 PUSH2 0x2613 JUMPI PUSH2 0x260C PUSH1 0x1 DUP5 PUSH2 0x3526 JUMP JUMPDEST SWAP4 POP PUSH2 0x2621 JUMP JUMPDEST PUSH2 0x261E DUP4 PUSH1 0x1 PUSH2 0x345D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP PUSH2 0x24D4 JUMP JUMPDEST POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT ISZERO DUP1 ISZERO PUSH2 0x2660 JUMPI POP DUP2 PUSH4 0xFFFFFFFF AND DUP4 PUSH4 0xFFFFFFFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x2676 JUMPI PUSH2 0x266F DUP4 DUP6 PUSH2 0x353D JUMP JUMPDEST SWAP1 POP PUSH2 0x71C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26A5 JUMPI PUSH2 0x26A0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x26AD JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 DUP4 PUSH4 0xFFFFFFFF AND DUP6 PUSH4 0xFFFFFFFF AND GT PUSH2 0x26E5 JUMPI PUSH2 0x26E0 PUSH4 0xFFFFFFFF DUP7 AND PUSH5 0x100000000 PUSH2 0x3475 JUMP JUMPDEST PUSH2 0x26ED JUMP JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND JUMPDEST PUSH5 0xFFFFFFFFFF AND SWAP1 POP PUSH2 0xB64 DUP2 DUP4 PUSH2 0x3526 JUMP JUMPDEST DUP1 PUSH2 0x2709 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x276D DUP5 PUSH2 0x2731 DUP8 PUSH2 0x2B50 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5469636B65742F747761622D6275726E2D6C742D62616C616E63650000000000 DUP2 MSTORE POP TIMESTAMP PUSH2 0x2BD3 JUMP JUMPDEST DUP3 MLOAD DUP8 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP4 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP3 AND MUL OR DUP8 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x284D JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 PUSH32 0xDD3E7CD3A260A292B0B3306B2CA62F30A7349619A9D09C58109318774C6B627D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x285D JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x288F PUSH1 0x7 PUSH2 0x2870 DUP7 PUSH2 0x2B50 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2C DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x364B PUSH1 0x2C SWAP2 CODECOPY TIMESTAMP PUSH2 0x2BD3 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x7 DUP1 SLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP8 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB SWAP1 SWAP5 AND PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR PUSH1 0x1 PUSH1 0xD0 SHL PUSH3 0xFFFFFF SWAP3 DUP4 AND MUL OR PUSH29 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE8 SHL SWAP2 SWAP1 SWAP4 AND MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP2 SWAP5 POP SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x150B JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH4 0xFFFFFFFF AND SWAP1 DUP3 ADD MSTORE PUSH32 0x3375B905D617084FA6B7531688CC8046FEB1F1A0B8BA2273DE03C59D8D84416C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP JUMP JUMPDEST DUP1 PUSH2 0x2977 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP1 DUP1 PUSH2 0x276D DUP5 PUSH2 0x299F DUP8 PUSH2 0x2B50 JUMP JUMPDEST TIMESTAMP PUSH2 0x2C97 JUMP JUMPDEST DUP1 PUSH2 0x29AD JUMPI POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x288F PUSH1 0x7 PUSH2 0x299F DUP7 PUSH2 0x2B50 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x29F3 DUP4 DUP4 DUP10 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH2 0x239A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2A17 JUMPI PUSH2 0x2A10 DUP8 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP6 PUSH2 0x2D40 JUMP JUMPDEST SWAP1 POP PUSH2 0x2AFE JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP8 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A36 JUMPI POP DUP6 PUSH2 0x2AFE JUMP JUMPDEST DUP3 PUSH4 0xFFFFFFFF AND DUP7 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2A55 JUMPI POP DUP5 PUSH2 0x2AFE JUMP JUMPDEST PUSH2 0x2A74 DUP7 PUSH1 0x20 ADD MLOAD DUP4 DUP6 PUSH4 0xFFFFFFFF AND PUSH2 0x239A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST ISZERO PUSH2 0x2A99 JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP4 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2AFE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x2AAE DUP12 DUP9 DUP9 DUP9 DUP15 PUSH1 0x40 ADD MLOAD DUP10 PUSH2 0x2469 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 PUSH2 0x2AC7 DUP3 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x20 ADD MLOAD DUP8 PUSH2 0x2636 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2AE1 SWAP2 SWAP1 PUSH2 0x34FE JUMP JUMPDEST PUSH2 0x2AEB SWAP2 SWAP1 PUSH2 0x3495 JUMP JUMPDEST SWAP1 POP PUSH2 0x2AF8 DUP4 DUP3 DUP9 PUSH2 0x2D40 JUMP JUMPDEST SWAP4 POP POP POP POP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x2B19 JUMPI POP PUSH1 0x0 PUSH2 0x657 JUMP JUMPDEST PUSH2 0x71C PUSH1 0x1 PUSH2 0x2B28 DUP5 DUP7 PUSH2 0x345D JUMP JUMPDEST PUSH2 0x2B32 SWAP2 SWAP1 PUSH2 0x3526 JUMP JUMPDEST DUP4 JUMPDEST PUSH1 0x0 PUSH2 0x71C DUP3 DUP5 PUSH2 0x35C8 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x71C PUSH2 0x2B32 DUP5 PUSH1 0x1 PUSH2 0x345D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP3 GT ISZERO PUSH2 0x2BCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2032 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3038206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x700 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP5 DIV DUP2 AND PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 DUP8 SWAP2 SWAP1 DUP10 AND GT ISZERO PUSH2 0x2C69 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x700 SWAP2 SWAP1 PUSH2 0x339D JUMP JUMPDEST POP PUSH2 0x2C78 DUP9 PUSH1 0x1 ADD DUP3 DUP8 PUSH2 0x2DBB JUMP JUMPDEST DUP3 MLOAD SWAP10 SWAP1 SWAP10 SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP3 MSTORE SWAP1 SWAP10 SWAP1 SWAP9 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP7 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP2 AND DUP3 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0xD0 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xE8 SHL SWAP1 SWAP2 DIV AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x2D13 PUSH1 0x1 DUP9 ADD DUP3 DUP8 PUSH2 0x2DBB JUMP JUMPDEST DUP4 MLOAD SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2D28 SWAP1 DUP8 SWAP1 PUSH2 0x33F2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP5 MSTORE POP SWAP2 SWAP6 SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2D7E DUP7 PUSH1 0x20 ADD MLOAD DUP6 DUP7 PUSH4 0xFFFFFFFF AND PUSH2 0x2636 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2D8E SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x34CF JUMP JUMPDEST DUP7 MLOAD PUSH2 0x2D9A SWAP2 SWAP1 PUSH2 0x341D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP1 PUSH2 0x2DF9 DUP8 DUP8 PUSH2 0x21CC JUMP JUMPDEST SWAP2 POP POP DUP5 PUSH4 0xFFFFFFFF AND DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x2E22 JUMPI DUP6 SWAP4 POP SWAP2 POP PUSH1 0x0 SWAP1 POP PUSH2 0x2E99 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E3C DUP3 DUP9 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB AND DUP9 PUSH2 0x2D40 JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP9 PUSH1 0x20 ADD MLOAD PUSH3 0xFFFFFF AND PUSH3 0xFFFFFF DUP2 LT PUSH2 0x2E5C JUMPI PUSH2 0x2E5C PUSH2 0x361E JUMP JUMPDEST DUP3 MLOAD PUSH1 0x20 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 ADD SSTORE PUSH1 0x0 PUSH2 0x2E8D DUP9 PUSH2 0x2EA2 JUMP JUMPDEST SWAP6 POP SWAP1 SWAP4 POP PUSH1 0x1 SWAP3 POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP3 DUP3 ADD MSTORE SWAP1 DUP3 ADD MLOAD PUSH2 0x2ED2 SWAP1 PUSH3 0xFFFFFF SWAP1 DUP2 AND SWAP1 PUSH2 0x2B40 JUMP JUMPDEST PUSH3 0xFFFFFF SWAP1 DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD DUP2 AND LT ISZERO PUSH2 0x2BCF JUMPI PUSH1 0x1 DUP3 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0x2EFE SWAP2 SWAP1 PUSH2 0x343F JUMP JUMPDEST PUSH3 0xFFFFFF AND SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2F21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2F38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2F50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2393 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2F21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2F21 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2FA6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2F0A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2FC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2FCB DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH2 0x2FD9 PUSH1 0x20 DUP5 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2FF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3000 DUP5 PUSH2 0x2F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x300E PUSH1 0x20 DUP6 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3039 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3042 DUP9 PUSH2 0x2F0A JUMP JUMPDEST SWAP7 POP PUSH2 0x3050 PUSH1 0x20 DUP10 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x306C PUSH1 0x80 DUP10 ADD PUSH2 0x2F83 JUMP JUMPDEST SWAP3 POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH1 0xC0 DUP9 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x30A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x30AA DUP8 PUSH2 0x2F0A JUMP JUMPDEST SWAP6 POP PUSH2 0x30B8 PUSH1 0x20 DUP9 ADD PUSH2 0x2F0A JUMP JUMPDEST SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x30CD PUSH1 0x60 DUP9 ADD PUSH2 0x2F83 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x30FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3105 DUP5 PUSH2 0x2F0A JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3121 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x312D DUP7 DUP3 DUP8 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x3152 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x315B DUP7 PUSH2 0x2F0A JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x3178 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3184 DUP10 DUP4 DUP11 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x319D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x31AA DUP9 DUP3 DUP10 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x31CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x31D7 DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x31EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x320C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3215 DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3236 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x323F DUP4 PUSH2 0x2F0A JUMP JUMPDEST SWAP2 POP PUSH2 0x2FD9 PUSH1 0x20 DUP5 ADD PUSH2 0x2F6B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x326B DUP5 PUSH2 0x2F0A JUMP JUMPDEST SWAP3 POP PUSH2 0x3279 PUSH1 0x20 DUP6 ADD PUSH2 0x2F6B JUMP JUMPDEST SWAP2 POP PUSH2 0x3287 PUSH1 0x40 DUP6 ADD PUSH2 0x2F6B JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x32A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x32C6 DUP6 DUP3 DUP7 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x32E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x3300 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x330C DUP9 DUP4 DUP10 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x3325 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3332 DUP8 DUP3 DUP9 ADD PUSH2 0x2F26 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3350 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x71C DUP3 PUSH2 0x2F6B JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3391 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3375 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x33CA JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x33AE JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x33DC JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x0 PUSH3 0xFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x3470 JUMPI PUSH2 0x3470 PUSH2 0x35DC JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x3414 JUMPI PUSH2 0x3414 PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP5 AND DUP1 PUSH2 0x34AF JUMPI PUSH2 0x34AF PUSH2 0x35F2 JUMP JUMPDEST SWAP3 AND SWAP2 SWAP1 SWAP2 DIV SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x34CA JUMPI PUSH2 0x34CA PUSH2 0x35F2 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x34F5 JUMPI PUSH2 0x34F5 PUSH2 0x35DC JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x351E JUMPI PUSH2 0x351E PUSH2 0x35DC JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x3538 JUMPI PUSH2 0x3538 PUSH2 0x35DC JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x351E JUMPI PUSH2 0x351E PUSH2 0x35DC JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x356E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1B77 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x35C1 JUMPI PUSH2 0x35C1 PUSH2 0x35DC JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x35D7 JUMPI PUSH2 0x35D7 PUSH2 0x35F2 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID SLOAD PUSH10 0x636B65742F6275726E2D PUSH2 0x6D6F PUSH22 0x6E742D657863656564732D746F74616C2D737570706C PUSH26 0x2D74776162A2646970667358221220F56506EC2CBE003727B9A3 0x4C 0xAB DUP10 0xF9 0x25 0xEA SWAP3 STOP PUSH16 0xE544B652E08D6AAC234F29D964736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "897:12604:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;8320:14:94;;8313:22;8295:41;;8283:2;8268:18;4238:166:1;8250:92:94;3229:106:1;3316:12;;3229:106;;;8493:25:94;;;8481:2;8466:18;3229:106:1;8448:76:94;4871:478:1;;;;;;:::i;:::-;;:::i;2268:189:28:-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:16:28;;;;;;:9;:16;;;;;;2419:31;;;;;;;;-1:-1:-1;;;;;2419:31:28;;;;;-1:-1:-1;;;2419:31:28;;;;;;;;;;;-1:-1:-1;;;2419:31:28;;;;;;;;2268:189;;;;;19684:13:94;;-1:-1:-1;;;;;19680:74:94;19662:93;;19802:4;19790:17;;;19784:24;19827:8;19873:21;;;19851:20;;;19844:51;;;;19943:17;;;19937:24;19933:33;;;19911:20;;;19904:63;19650:2;19635:18;2268:189:28;19617:356:94;4962:307:28;;;;;;:::i;:::-;;:::i;3868:98:21:-;;;20724:4:94;3950:9:21;20712:17:94;20694:36;;20682:2;20667:18;3868:98:21;20649:87:94;6114:130:28;;;;;;:::i;:::-;;:::i;:::-;;2506:113:4;;;:::i;2491:204:28:-;;;;;;:::i;:::-;;:::i;:::-;;;;20204:13:94;;-1:-1:-1;;;;;20200:78:94;20182:97;;20339:4;20327:17;;;20321:24;20347:10;20317:41;20295:20;;;20288:71;;;;20155:18;2491:204:28;20137:228:94;5744:212:1;;;;;;:::i;:::-;;:::i;6951:100:28:-;;;;;;:::i;:::-;;:::i;2328:171:21:-;;;;;;:::i;:::-;;:::i;4247:681:28:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3357:312:21:-;;;;;;:::i;:::-;;:::i;3126:282:28:-;;;;;;:::i;:::-;;:::i;3393:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:1;3467:7;3493:18;;;;;;;;;;;;3393:125;2256:126:4;;;;;;:::i;:::-;;:::i;5303:627:28:-;;;;;;:::i;:::-;;:::i;5964:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6057:16:28;;;6031:7;6057:16;;;:9;:16;;;;;;;;5964:116;;;;-1:-1:-1;;;;;7451:55:94;;;7433:74;;7421:2;7406:18;5964:116:28;7388:125:94;3442:263:28;;;;;;:::i;:::-;;:::i;2774:171:21:-;;;;;;:::i;:::-;;:::i;6278:639:28:-;;;;;;:::i;:::-;;:::i;2352:102:1:-;;;:::i;3739:474:28:-;;;;;;:::i;:::-;;:::i;2729:363::-;;;;;;:::i;:::-;;:::i;6443:405:1:-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;1569:626:4:-;;;;;;:::i;:::-;;:::i;3951:149:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:1;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;540:44:21;;;;;2141:98:1;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:10;4360:7:1;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:1;4238:166;;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:1;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:10;5097:33:1;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:1;;16100:2:94;5140:79:1;;;16082:21:94;16139:2;16119:18;;;16112:30;16178:34;16158:18;;;16151:62;16249:10;16229:18;;;16222:38;16277:19;;5140:79:1;;;;;;;;;5253:57;5262:6;719:10:10;5303:6:1;5284:16;:25;5253:8;:57::i;:::-;5338:4;5331:11;;;4871:478;;;;;;:::o;4962:307:28:-;5074:188;;;;;;;;5112:15;5074:188;-1:-1:-1;;;;;5074:188:28;;;;;-1:-1:-1;;;5074:188:28;;;;;;;;-1:-1:-1;;;5074:188:28;;;;;;;;;;;5036:7;;5074:188;;5112:21;;5199:7;5232:15;5074:20;:188::i;6114:130::-;1039:10:21;-1:-1:-1;;;;;1061:10:21;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:21;;18528:2:94;1031:77:21;;;18510:21:94;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:21;18500:181:94;1031:77:21;6216:21:28::1;6226:5;6233:3;6216:9;:21::i;:::-;6114:130:::0;;:::o;2506:113:4:-;2566:7;2592:20;:18;:20::i;:::-;2585:27;;2506:113;:::o;2491:204:28:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;2658:16:28;;;;;;:9;:16;;;;;:22;;:30;;;;;;;;;;:::i;:::-;2651:37;;;;;;;;;2658:30;;2651:37;-1:-1:-1;;;;;2651:37:28;;;;-1:-1:-1;;;2651:37:28;;;;;;;;;2491:204;-1:-1:-1;;;2491:204:28:o;5744:212:1:-;719:10:10;5832:4:1;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:1;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;6951:100:28:-;7018:26;7028:10;7040:3;7018:9;:26::i;:::-;6951:100;:::o;2328:171:21:-;1039:10;-1:-1:-1;;;;;1061:10:21;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:21;;18528:2:94;1031:77:21;;;18510:21:94;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:21;18500:181:94;1031:77:21;2471:21:::1;2477:5;2484:7;2471:5;:21::i;4247:681:28:-:0;4377:16;4426:8;4409:14;4426:8;4480:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4480:21:28;-1:-1:-1;;;;;;4550:16:28;;4512:35;4550:16;;;:9;:16;;;;;;;;4576:59;;;;;;;;;-1:-1:-1;;;;;4576:59:28;;;;;-1:-1:-1;;;4576:59:28;;;;;;;;;;;-1:-1:-1;;;4576:59:28;;;;;;;;;;;;4451:50;;-1:-1:-1;4576:59:28;4646:249;4670:6;4666:1;:10;4646:249;;;4712:172;4750:11;:17;;4785:7;4817:8;;4826:1;4817:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4854:15;4712:20;:172::i;:::-;4697:9;4707:1;4697:12;;;;;;;;:::i;:::-;;;;;;;;;;:187;4678:3;;;;:::i;:::-;;;;4646:249;;;-1:-1:-1;4912:9:28;;4247:681;-1:-1:-1;;;;;;;4247:681:28:o;3357:312:21:-;1039:10;-1:-1:-1;;;;;1061:10:21;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:21;;18528:2:94;1031:77:21;;;18510:21:94;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:21;18500:181:94;1031:77:21;3534:5:::1;-1:-1:-1::0;;;;;3521:18:21::1;:9;-1:-1:-1::0;;;;;3521:18:21::1;;3517:114;;-1:-1:-1::0;;;;;4066:18:1;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;3555:65:21::1;::::0;4066:18:1;;:27;;3582:37:21::1;::::0;3612:7;;3582:37:::1;:::i;3555:65::-;3641:21;3647:5;3654:7;3641:5;:21::i;:::-;3357:312:::0;;;:::o;3126:282:28:-;-1:-1:-1;;;;;3360:16:28;;;;;;:9;:16;;;;;3298;;3333:68;;3378:11;;3391:9;;3333:26;:68::i;:::-;3326:75;3126:282;-1:-1:-1;;;;;;3126:282:28:o;2256:126:4:-;-1:-1:-1;;;;;2351:14:4;;2325:7;2351:14;;;:7;:14;;;;;918::11;2351:24:4;827:112:11;5303:627:28;5423:16;5472:8;5455:14;5472:8;5530:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5530:21:28;-1:-1:-1;5562:63:28;;;;;;;;5602:15;5562:63;-1:-1:-1;;;;;5562:63:28;;;;;-1:-1:-1;;;5562:63:28;;;;;;;;-1:-1:-1;;;5562:63:28;;;;;;;;;;;5497:54;;-1:-1:-1;5562:37:28;5636:257;5660:6;5656:1;:10;5636:257;;;5706:176;5744:21;5783:7;5815:8;;5824:1;5815:11;;;;;;;:::i;5706:176::-;5687:13;5701:1;5687:16;;;;;;;;:::i;:::-;;;;;;;;;;:195;5668:3;;;;:::i;:::-;;;;5636:257;;;-1:-1:-1;5910:13:28;;5303:627;-1:-1:-1;;;;;5303:627:28:o;3442:263::-;3596:16;3631:67;3658:15;3675:11;;3688:9;;3631:26;:67::i;:::-;3624:74;;3442:263;;;;;;;:::o;2774:171:21:-;1039:10;-1:-1:-1;;;;;1061:10:21;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:21;;18528:2:94;1031:77:21;;;18510:21:94;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:21;18500:181:94;1031:77:21;2917:21:::1;2923:5;2930:7;2917:5;:21::i;6278:639:28:-:0;6516:9;6497:15;:28;;6489:73;;;;-1:-1:-1;;;6489:73:28;;13401:2:94;6489:73:28;;;13383:21:94;;;13420:18;;;13413:30;13479:34;13459:18;;;13452:62;13531:18;;6489:73:28;13373:182:94;6489:73:28;6573:18;6615;6635:5;6642:12;6656:16;6666:5;6656:9;:16::i;:::-;6604:80;;;;;;8788:25:94;;;;-1:-1:-1;;;;;8910:15:94;;;8890:18;;;8883:43;8962:15;;8942:18;;;8935:43;8994:18;;;8987:34;9037:19;;;9030:35;;;8760:19;;6604:80:28;;;;;;;;;;;;6594:91;;;;;;6573:112;;6696:12;6711:28;6728:10;6711:16;:28::i;:::-;6696:43;;6750:14;6767:31;6781:4;6787:2;6791;6795;6767:13;:31::i;:::-;6750:48;;6826:5;-1:-1:-1;;;;;6816:15:28;:6;-1:-1:-1;;;;;6816:15:28;;6808:61;;;;-1:-1:-1;;;6808:61:28;;18126:2:94;6808:61:28;;;18108:21:94;18165:2;18145:18;;;18138:30;18204:34;18184:18;;;18177:62;18275:3;18255:18;;;18248:31;18296:19;;6808:61:28;18098:223:94;6808:61:28;6880:30;6890:5;6897:12;6880:9;:30::i;:::-;6479:438;;;6278:639;;;;;;:::o;2352:102:1:-;2408:13;2440:7;2433:14;;;;;:::i;3739:474:28:-;-1:-1:-1;;;;;3939:16:28;;3886:7;3939:16;;;:9;:16;;;;;;;;3985:221;;;;;;;;;-1:-1:-1;;;;;3985:221:28;;;;;-1:-1:-1;;;3985:221:28;;;;;;;;;;;-1:-1:-1;;;3985:221:28;;;;;;;;;;;;3939:16;3985:221;;4035:13;;;;4106:10;4142:8;4176:15;3985:32;:221::i;:::-;3966:240;3739:474;-1:-1:-1;;;;;3739:474:28:o;2729:363::-;-1:-1:-1;;;;;2867:16:28;;2814:7;2867:16;;;:9;:16;;;;;;;;2913:172;;;;;;;;;-1:-1:-1;;;;;2913:172:28;;;;;-1:-1:-1;;;2913:172:28;;;;;;;;;;;-1:-1:-1;;;2913:172:28;;;;;;;;;;;;2867:16;2913:172;;2951:13;;;;3022:7;3055:15;2913:20;:172::i;6443:405:1:-;719:10:10;6536:4:1;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:1;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:1;;18888:2:94;6623:85:1;;;18870:21:94;18927:2;18907:18;;;18900:30;18966:34;18946:18;;;18939:62;19037:7;19017:18;;;19010:35;19062:19;;6623:85:1;18860:227:94;6623:85:1;6742:67;719:10:10;6765:7:1;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:1;;6443:405;-1:-1:-1;;;6443:405:1:o;3721:172::-;3807:4;3823:42;719:10:10;3847:9:1;3858:6;3823:9;:42::i;1569:626:4:-;1804:8;1785:15;:27;;1777:69;;;;-1:-1:-1;;;1777:69:4;;13762:2:94;1777:69:4;;;13744:21:94;13801:2;13781:18;;;13774:30;13840:31;13820:18;;;13813:59;13889:18;;1777:69:4;13734:179:94;1777:69:4;1857:18;1899:16;1917:5;1924:7;1933:5;1940:16;1950:5;1940:9;:16::i;:::-;1888:79;;;;;;9363:25:94;;;;-1:-1:-1;;;;;9485:15:94;;;9465:18;;;9458:43;9537:15;;;;9517:18;;;9510:43;9569:18;;;9562:34;9612:19;;;9605:35;9656:19;;;9649:35;;;9335:19;;1888:79:4;;;;;;;;;;;;1878:90;;;;;;1857:111;;1979:12;1994:28;2011:10;1994:16;:28::i;:::-;1979:43;;2033:14;2050:28;2064:4;2070:1;2073;2076;2050:13;:28::i;:::-;2033:45;;2106:5;-1:-1:-1;;;;;2096:15:4;:6;-1:-1:-1;;;;;2096:15:4;;2088:58;;;;-1:-1:-1;;;2088:58:4;;15741:2:94;2088:58:4;;;15723:21:94;15780:2;15760:18;;;15753:30;15819:32;15799:18;;;15792:60;15869:18;;2088:58:4;15713:180:94;2088:58:4;2157:31;2166:5;2173:7;2182:5;2157:8;:31::i;:::-;1767:428;;;1569:626;;;;;;;:::o;10019:370:1:-;-1:-1:-1;;;;;10150:19:1;;10142:68;;;;-1:-1:-1;;;10142:68:1;;17721:2:94;10142:68:1;;;17703:21:94;17760:2;17740:18;;;17733:30;17799:34;17779:18;;;17772:62;17870:6;17850:18;;;17843:34;17894:19;;10142:68:1;17693:226:94;10142:68:1;-1:-1:-1;;;;;10228:21:1;;10220:68;;;;-1:-1:-1;;;10220:68:1;;12998:2:94;10220:68:1;;;12980:21:94;13037:2;13017:18;;;13010:30;13076:34;13056:18;;;13049:62;13147:4;13127:18;;;13120:32;13169:19;;10220:68:1;12970:224:94;10220:68:1;-1:-1:-1;;;;;10299:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;8493:25:94;;;10350:32:1;;8466:18:94;10350:32:1;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:1;;7449:70;;;;-1:-1:-1;;;7449:70:1;;16911:2:94;7449:70:1;;;16893:21:94;16950:2;16930:18;;;16923:30;16989:34;16969:18;;;16962:62;17060:7;17040:18;;;17033:35;17085:19;;7449:70:1;16883:227:94;7449:70:1;-1:-1:-1;;;;;7537:23:1;;7529:71;;;;-1:-1:-1;;;7529:71:1;;11831:2:94;7529:71:1;;;11813:21:94;11870:2;11850:18;;;11843:30;11909:34;11889:18;;;11882:62;11980:5;11960:18;;;11953:33;12003:19;;7529:71:1;11803:225:94;7529:71:1;7611:47;7632:6;7640:9;7651:6;7611:20;:47::i;:::-;-1:-1:-1;;;;;7693:17:1;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:1;;14120:2:94;7720:74:1;;;14102:21:94;14159:2;14139:18;;;14132:30;14198:34;14178:18;;;14171:62;14269:8;14249:18;;;14242:36;14295:19;;7720:74:1;14092:228:94;7720:74:1;-1:-1:-1;;;;;7828:17:1;;;:9;:17;;;;;;;;;;;7848:22;;;7828:42;;7890:20;;;;;;;;:30;;7864:6;;7828:9;7890:30;;7864:6;;7890:30;:::i;:::-;;;;;;;;7953:9;-1:-1:-1;;;;;7936:35:1;7945:6;-1:-1:-1;;;;;7936:35:1;;7964:6;7936:35;;;;8493:25:94;;8481:2;8466:18;;8448:76;7936:35:1;;;;;;;;7982:46;7439:596;7322:713;;;:::o;8029:409:46:-;8252:7;8271:19;8307:12;8293:26;;:11;:26;;;:55;;8337:11;8293:55;;;8322:12;8293:55;8271:77;;8365:66;8379:6;8387:15;8404:12;8418;8365:13;:66::i;7205:353:28:-;-1:-1:-1;;;;;3493:18:1;;;7271:15:28;3493:18:1;;;;;;;;;;;;7341:9:28;:16;;;;;;;3493:18:1;;7341:16:28;;;;7372:22;;;;7368:59;;;7410:7;;7205:353;;:::o;7368:59::-;-1:-1:-1;;;;;7437:16:28;;;;;;;:9;:16;;;;;:22;;;;;;;;;;;;;7470:44;7484:15;7437:22;7506:7;7470:13;:44::i;:::-;7547:3;-1:-1:-1;;;;;7530:21:28;7540:5;-1:-1:-1;;;;;7530:21:28;;;;;;;;;;;7261:297;;7205:353;;:::o;3143:308:14:-;3196:7;3227:4;-1:-1:-1;;;;;3236:12:14;3219:29;;:66;;;;;3269:16;3252:13;:33;3219:66;3215:230;;;-1:-1:-1;3308:24:14;;3143:308::o;3215:230::-;-1:-1:-1;3633:73:14;;;3392:10;3633:73;;;;9954:25:94;;;;3404:12:14;9995:18:94;;;9988:34;3418:15:14;10038:18:94;;;10031:34;3677:13:14;10081:18:94;;;10074:34;3700:4:14;10124:19:94;;;;10117:84;;;;3633:73:14;;;;;;;;;;9926:19:94;;;;3633:73:14;;;3623:84;;;;;;2506:113:4:o;8311:389:1:-;-1:-1:-1;;;;;8394:21:1;;8386:65;;;;-1:-1:-1;;;8386:65:1;;19294:2:94;8386:65:1;;;19276:21:94;19333:2;19313:18;;;19306:30;19372:33;19352:18;;;19345:61;19423:18;;8386:65:1;19266:181:94;8386:65:1;8462:49;8491:1;8495:7;8504:6;8462:20;:49::i;:::-;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:1;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:1;;8493:25:94;;;-1:-1:-1;;;;;8597:37:1;;;8614:1;;8597:37;;8481:2:94;8466:18;8597:37:1;;;;;;;6114:130:28;;:::o;9020:576:1:-;-1:-1:-1;;;;;9103:21:1;;9095:67;;;;-1:-1:-1;;;9095:67:1;;16509:2:94;9095:67:1;;;16491:21:94;16548:2;16528:18;;;16521:30;16587:34;16567:18;;;16560:62;16658:3;16638:18;;;16631:31;16679:19;;9095:67:1;16481:223:94;9095:67:1;9173:49;9194:7;9211:1;9215:6;9173:20;:49::i;:::-;-1:-1:-1;;;;;9258:18:1;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:1;;12235:2:94;9286:71:1;;;12217:21:94;12274:2;12254:18;;;12247:30;12313:34;12293:18;;;12286:62;12384:4;12364:18;;;12357:32;12406:19;;9286:71:1;12207:224:94;9286:71:1;-1:-1:-1;;;;;9391:18:1;;:9;:18;;;;;;;;;;9412:23;;;9391:44;;9455:12;:22;;9429:6;;9391:9;9455:22;;9429:6;;9455:22;:::i;:::-;;;;-1:-1:-1;;9493:37:1;;8493:25:94;;;9519:1:1;;-1:-1:-1;;;;;9493:37:1;;;;;8481:2:94;8466:18;9493:37:1;;;;;;;3357:312:21;;;:::o;7972:925:28:-;8155:16;8210:11;8246:36;;;8238:84;;;;-1:-1:-1;;;8238:84:28;;17317:2:94;8238:84:28;;;17299:21:94;17356:2;17336:18;;;17329:30;17395:34;17375:18;;;17368:62;17466:5;17446:18;;;17439:33;17489:19;;8238:84:28;17289:225:94;8238:84:28;8333:63;;;;;;;;;;-1:-1:-1;;;;;8333:63:28;;;;;-1:-1:-1;;;8333:63:28;;;;;;;;-1:-1:-1;;;8333:63:28;;;;;;;;;;;:44;8456:16;8442:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8442:31:28;-1:-1:-1;8407:66:28;-1:-1:-1;8516:15:28;8483:23;8543:315;8567:16;8563:1;:20;8543:315;;;8625:222;8675:8;:14;;8707;8746:11;;8758:1;8746:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8786:9;;8796:1;8786:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8817:16;8625:32;:222::i;:::-;8604:15;8620:1;8604:18;;;;;;;;:::i;:::-;;;;;;;;;;:243;8585:3;;;;:::i;:::-;;;;8543:315;;;-1:-1:-1;8875:15:28;;7972:925;-1:-1:-1;;;;;;;;;7972:925:28:o;2750:203:4:-;-1:-1:-1;;;;;2870:14:4;;2810:15;2870:14;;;:7;:14;;;;;918::11;;1050:1;1032:19;;;;918:14;2929:17:4;2827:126;2750:203;;;:::o;4339:165:14:-;4416:7;4442:55;4464:20;:18;:20::i;:::-;4486:10;9254:57:13;;7108:66:94;9254:57:13;;;7096:79:94;7191:11;;;7184:27;;;7227:12;;;7220:28;;;9218:7:13;;7264:12:94;;9254:57:13;;;;;;;;;;;;9244:68;;;;;;9237:75;;9125:194;;;;;7480:270;7603:7;7623:17;7642:18;7664:25;7675:4;7681:1;7684;7687;7664:10;:25::i;:::-;7622:67;;;;7699:18;7711:5;7699:11;:18::i;:::-;-1:-1:-1;7734:9:13;7480:270;-1:-1:-1;;;;;7480:270:13:o;5882:466:46:-;6141:7;6160:14;6188:12;6177:23;;:8;:23;;;:49;;6218:8;6177:49;;;6203:12;6177:49;6160:66;;6256:85;6282:6;6290:15;6307:10;6319:7;6328:12;6256:25;:85::i;:::-;6237:104;5882:466;-1:-1:-1;;;;;;;5882:466:46:o;8928:457:28:-;9044:3;-1:-1:-1;;;;;9035:12:28;:5;-1:-1:-1;;;;;9035:12:28;;9031:49;;;8928:457;;;:::o;9031:49::-;9090:21;-1:-1:-1;;;;;9125:19:28;;;9121:82;;-1:-1:-1;;;;;;9176:16:28;;;;;;;:9;:16;;;;;;;9121:82;9213:19;-1:-1:-1;;;;;9246:17:28;;;9242:76;;-1:-1:-1;;;;;;9293:14:28;;;;;;;:9;:14;;;;;;;9242:76;9328:50;9342:13;9357:11;9370:7;9328:13;:50::i;:::-;9021:364;;8928:457;;;:::o;10671:1769:46:-;-1:-1:-1;;;;;;;;;10894:7:46;-1:-1:-1;;;;;;;;;10894:7:46;;;-1:-1:-1;;;;;;;;;;;;;;;;;11084:35:46;11095:6;11103:15;11084:10;:35::i;:::-;11245:20;;;;11052:67;;-1:-1:-1;11052:67:46;-1:-1:-1;11245:51:46;;:24;;;;;11270:11;;11283:12;;11245:24;:51;:::i;:::-;11241:112;;;-1:-1:-1;;11319:23:46;;-1:-1:-1;;;;;11312:30:46;;-1:-1:-1;11312:30:46;;-1:-1:-1;11312:30:46;11241:112;11363:22;11473:35;11484:6;11492:15;11473:10;:35::i;:::-;11629:20;;;;11441:67;;-1:-1:-1;11441:67:46;;-1:-1:-1;11614:50:46;;:14;;;;;11629:20;11651:12;;11614:14;:50;:::i;:::-;11610:89;;;11687:1;11680:8;;;;;;;;11610:89;11787:207;11828:6;11848:15;11877;11906:11;11931:15;:27;;;11972:12;11787:27;:207::i;:::-;11761:233;;;;;;;;12340:93;12377:9;:19;;;12398:10;:20;;;12420:12;12340:36;:93::i;:::-;12299:134;;12319:10;:17;;;12300:9;:16;;;:36;;;;:::i;:::-;12299:134;;;;:::i;:::-;-1:-1:-1;;;;;12280:153:46;;10671:1769;-1:-1:-1;;;;;;;;;10671:1769:46:o;9717:657:28:-;-1:-1:-1;;;;;9900:19:28;;;9896:186;;9935:33;9953:5;9960:7;9935:17;:33::i;:::-;-1:-1:-1;;;;;9987:17:28;;9983:89;;10024:33;10049:7;10024:24;:33::i;:::-;-1:-1:-1;;;;;10188:17:28;;;10184:184;;10221:31;10239:3;10244:7;10221:17;:31::i;:::-;-1:-1:-1;;;;;10271:19:28;;10267:91;;10310:33;10335:7;10310:24;:33::i;5744:1603:13:-;5870:7;;6794:66;6781:79;;6777:161;;;-1:-1:-1;6892:1:13;;-1:-1:-1;6896:30:13;6876:51;;6777:161;6951:1;:7;;6956:2;6951:7;;:18;;;;;6962:1;:7;;6967:2;6962:7;;6951:18;6947:100;;;-1:-1:-1;7001:1:13;;-1:-1:-1;7005:30:13;6985:51;;6947:100;7158:24;;;7141:14;7158:24;;;;;;;;;10439:25:94;;;10512:4;10500:17;;10480:18;;;10473:45;;;;10534:18;;;10527:34;;;10577:18;;;10570:34;;;7158:24:13;;10411:19:94;;7158:24:13;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7158:24:13;;-1:-1:-1;;7158:24:13;;;-1:-1:-1;;;;;;;7196:20:13;;7192:101;;7248:1;7252:29;7232:50;;;;;;;7192:101;7311:6;-1:-1:-1;7319:20:13;;-1:-1:-1;5744:1603:13;;;;;;;;:::o;533:631::-;610:20;601:5;:29;;;;;;;;:::i;:::-;;597:561;;;533:631;:::o;597:561::-;706:29;697:5;:38;;;;;;;;:::i;:::-;;693:465;;;751:34;;-1:-1:-1;;;751:34:13;;11478:2:94;751:34:13;;;11460:21:94;11517:2;11497:18;;;11490:30;11556:26;11536:18;;;11529:54;11600:18;;751:34:13;11450:174:94;693:465:13;815:35;806:5;:44;;;;;;;;:::i;:::-;;802:356;;;866:41;;-1:-1:-1;;;866:41:13;;12638:2:94;866:41:13;;;12620:21:94;12677:2;12657:18;;;12650:30;12716:33;12696:18;;;12689:61;12767:18;;866:41:13;12610:181:94;802:356:13;937:30;928:5;:39;;;;;;;;:::i;:::-;;924:234;;;983:44;;-1:-1:-1;;;983:44:13;;14935:2:94;983:44:13;;;14917:21:94;14974:2;14954:18;;;14947:30;15013:34;14993:18;;;14986:62;15084:4;15064:18;;;15057:32;15106:19;;983:44:13;14907:224:94;924:234:13;1057:30;1048:5;:39;;;;;;;;:::i;:::-;;1044:114;;;1103:44;;-1:-1:-1;;;1103:44:13;;15338:2:94;1103:44:13;;;15320:21:94;15377:2;15357:18;;;15350:30;15416:34;15396:18;;;15389:62;15487:4;15467:18;;;15460:32;15509:19;;1103:44:13;15310:224:94;8724:1315:46;8983:7;9003:22;9027:41;9072:69;9096:6;9116:15;9072:10;:69::i;:::-;9002:139;;;;9153:22;9177:41;9222:69;9246:6;9266:15;9222:10;:69::i;:::-;9152:139;;;;9302:43;9348:223;9376:6;9396:15;9425:7;9446;9467:15;9496;9525:10;9549:12;9348:14;:223::i;:::-;9302:269;;9582:41;9626:221;9654:6;9674:15;9703:7;9724;9745:15;9774;9803:8;9825:12;9626:14;:221::i;:::-;9582:265;;9942:90;9979:7;:17;;;9998:9;:19;;;10019:12;9942:36;:90::i;:::-;9904:128;;9922:9;:16;;;9905:7;:14;;;:33;;;;:::i;:::-;9904:128;;;;:::i;:::-;-1:-1:-1;;;;;9897:135:46;;8724:1315;-1:-1:-1;;;;;;;;;;;;8724:1315:46:o;7373:354::-;-1:-1:-1;;;;;;;;;7537:12:46;-1:-1:-1;;;;;;;;;7537:12:46;7616:73;7642:15;:29;;;7616:73;;2055:8;7616:73;;:25;:73::i;:::-;7601:89;;7707:6;7714:5;7707:13;;;;;;;;;:::i;:::-;7700:20;;;;;;;;;7707:13;;7700:20;-1:-1:-1;;;;;7700:20:46;;;;-1:-1:-1;;;7700:20:46;;;;;;;;7373:354;;7700:20;;-1:-1:-1;7373:354:46;;-1:-1:-1;;7373:354:46:o;1658:417:44:-;1765:4;1854:10;1848:16;;:2;:16;;;;:36;;;;;1874:10;1868:16;;:2;:16;;;;1848:36;1844:57;;;1899:2;1893:8;;:2;:8;;;;1886:15;;;;1844:57;1912:17;1937:10;1932:15;;:2;:15;;;:33;;1955:10;;;;1960:5;1955:10;:::i;:::-;1932:33;;;1950:2;1932:33;;;1912:53;;;;1975:17;2000:10;1995:15;;:2;:15;;;:33;;2018:10;;;;2023:5;2018:10;:::i;:::-;1995:33;;;2013:2;1995:33;;;1975:53;;2046:22;;;;;1658:417;-1:-1:-1;;;;;1658:417:44:o;6608:505:46:-;-1:-1:-1;;;;;;;;;6772:12:46;-1:-1:-1;;;;;;;;;6772:12:46;6844:15;:29;;;6836:37;;6890:6;6897:5;6890:13;;;;;;;;;:::i;:::-;6883:20;;;;;;;;;6890:13;;6883:20;-1:-1:-1;;;;;6883:20:46;;;;-1:-1:-1;;;6883:20:46;;;;;;;;;;;;-1:-1:-1;7018:89:46;;7065:1;;-1:-1:-1;7087:6:46;7065:1;7087:9;;7018:89;6608:505;;;;;:::o;811:413:44:-;917:4;1005:10;999:16;;:2;:16;;;;:36;;;;;1025:10;1019:16;;:2;:16;;;;999:36;995:56;;;1049:2;1044:7;;:2;:7;;;1037:14;;;;995:56;1062:17;1087:10;1082:15;;:2;:15;;;:33;;1105:10;;;;1110:5;1105:10;:::i;:::-;1082:33;;;1100:2;1082:33;;;1062:53;;;;1125:17;1150:10;1145:15;;:2;:15;;;:33;;1168:10;;;;1173:5;1168:10;:::i;:::-;1145:33;;;1163:2;1145:33;;;1125:53;;1196:21;;;;811:413;-1:-1:-1;;;;;811:413:44:o;2382:2006:43:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:43;2738:23;2719:42;;;;2771:17;2817:8;2791:23;:34;;;:114;;2882:23;2791:114;;;;;2866:1;2840:23;;;;:8;:23;:::i;:::-;:27;;;;:::i;:::-;2771:134;;2915:20;2946:1436;3237:1;3213:20;3224:9;3213:8;:20;:::i;:::-;3212:26;;;;:::i;:::-;3197:41;;3266:13;3287:46;3306:12;3320;3287:46;;:18;:46::i;:::-;3266:69;;;;;;;;;:::i;:::-;3253:82;;;;;;;;;3266:69;;3253:82;-1:-1:-1;;;;;3253:82:43;;;;-1:-1:-1;;;3253:82:43;;;;;;;;;;;;-1:-1:-1;3253:82:43;3511:116;;3570:16;:12;3585:1;3570:16;:::i;:::-;3559:27;;3604:8;;;3511:116;3653:13;3674:51;3698:12;3712;3674:51;;:23;:51::i;:::-;3653:74;;;;;;;;;:::i;:::-;3641:86;;;;;;;;;3653:74;;3641:86;-1:-1:-1;;;;;3641:86:43;;;;;-1:-1:-1;;;3641:86:43;;;;;;;;;;;-1:-1:-1;;;3765:39:43;;:23;;;;3789:7;;3798:5;;3765:23;:39;:::i;:::-;3742:62;;3890:15;:58;;;;;3909:39;3921:9;:19;;;3942:5;3909:7;:11;;;;:39;;;;;:::i;:::-;3886:102;;;3968:5;;;;3886:102;4138:15;4133:239;;4185:16;4200:1;4185:12;:16;:::i;:::-;4173:28;;4133:239;;;4341:16;:12;4356:1;4341:16;:::i;:::-;4330:27;;4133:239;2959:1423;;2946:1436;;;2709:1679;;;2382:2006;;;;;;;;;:::o;2486:432:44:-;2600:6;2691:10;2685:16;;:2;:16;;;;:36;;;;;2711:10;2705:16;;:2;:16;;;;2685:36;2681:56;;;2730:7;2735:2;2730;:7;:::i;:::-;2723:14;;;;2681:56;2748:17;2773:10;2768:15;;:2;:15;;;:33;;2791:10;;;;2796:5;2791:10;:::i;:::-;2768:33;;;2786:2;2768:33;;;2748:53;;;;2811:17;2836:10;2831:15;;:2;:15;;;:33;;2854:10;;;;2859:5;2854:10;:::i;:::-;2831:33;;;2849:2;2831:33;;;2811:53;;;-1:-1:-1;2889:21:44;2811:53;2889:9;:21;:::i;11307:676:28:-;11409:12;11405:49;;11307:676;;:::o;11405:49::-;-1:-1:-1;;;;;11499:14:28;;11464:32;11499:14;;;:9;:14;;;;;;11464:32;;11671:188;11499:14;11738:19;:7;:17;:19::i;:::-;11671:188;;;;;;;;;;;;;;;;;11829:15;11671:23;:188::i;:::-;11870:33;;;;;;;;;;;;-1:-1:-1;;;;;11870:33:28;;;;;;;;;;;-1:-1:-1;;;11870:33:28;;;;;;;;-1:-1:-1;;;11870:33:28;;;;;;;;;;-1:-1:-1;11524:335:28;-1:-1:-1;11524:335:28;-1:-1:-1;11914:63:28;;;;11944:22;;;20204:13:94;;-1:-1:-1;;;;;20200:78:94;20182:97;;20339:4;20327:17;;;20321:24;20347:10;20317:41;20295:20;;;20288:71;-1:-1:-1;;;;;11944:22:28;;;;;20155:18:94;11944:22:28;;;;;;;11914:63;11395:588;;;;11307:676;;:::o;12169:629::-;12243:12;12239:49;;12169:629;:::o;12239:49::-;12312:44;12370:40;12424:12;12449:212;12490:15;12523:19;:7;:17;:19::i;:::-;12449:212;;;;;;;;;;;;;;;;;12631:15;12449:23;:212::i;:::-;12672:40;;:15;:40;;;;;;;;;;-1:-1:-1;;;;;12672:40:28;;;;;;;;;;;-1:-1:-1;;;12672:40:28;;;;;;;;-1:-1:-1;;;12672:40:28;;;;;;;;;;;;;-1:-1:-1;12298:363:28;-1:-1:-1;12298:363:28;-1:-1:-1;12723:69:28;;;;12755:26;;;20204:13:94;;-1:-1:-1;;;;;20200:78:94;20182:97;;20339:4;20327:17;;;20321:24;20347:10;20317:41;20295:20;;;20288:71;12755:26:28;;20155:18:94;12755:26:28;;;;;;;12229:569;;;12169:629;:::o;10557:567::-;10659:12;10655:49;;10557:567;;:::o;10655:49::-;-1:-1:-1;;;;;10749:14:28;;10714:32;10749:14;;;:9;:14;;;;;;10714:32;;10921:79;10749:14;10955:19;:7;:17;:19::i;:::-;10983:15;10921:23;:79::i;12984:515::-;13058:12;13054:49;;12984:515;:::o;13054:49::-;13127:44;13185:46;13245:12;13270:86;13294:15;13311:19;:7;:17;:19::i;13730:1898:46:-;-1:-1:-1;;;;;;;;;;;;;;;;;14277:49:46;14302:16;14320:5;14277:11;:21;;;:24;;;;:49;;;;;:::i;:::-;14273:159;;;14349:72;14366:11;14379:15;:23;;;-1:-1:-1;;;;;14349:72:46;14404:16;14349;:72::i;:::-;14342:79;;;;14273:159;14471:16;14446:41;;:11;:21;;;:41;;;14442:90;;;-1:-1:-1;14510:11:46;14503:18;;14442:90;14571:16;14546:41;;:11;:21;;;:41;;;14542:90;;;-1:-1:-1;14610:11:46;14603:18;;14542:90;14744:49;14764:11;:21;;;14787:5;14744:16;:19;;;;:49;;;;;:::i;:::-;14740:157;;;-1:-1:-1;14816:70:46;;;;;;;;;-1:-1:-1;14816:70:46;;;;;;;;;14809:77;;14740:157;14988:49;15051:48;15112:235;15157:6;15181:16;15215;15249;15283:15;:27;;;15328:5;15112:27;:235::i;:::-;14974:373;;;;15358:19;15443:96;15480:14;:24;;;15506:15;:25;;;15533:5;15443:36;:96::i;:::-;15380:159;;15405:15;:22;;;15381:14;:21;;;:46;;;;:::i;:::-;15380:159;;;;:::i;:::-;15358:181;;15557:64;15574:15;15591:11;15604:16;15557;:64::i;:::-;15550:71;;;;;13730:1898;;;;;;;;;;;:::o;1666:262:45:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:45;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;:::-;1908:12;580:129;655:7;681:21;690:12;681:6;:21;:::i;2263:171::-;2367:7;2397:30;2402:10;:6;2411:1;2402:10;:::i;1577:195:42:-;1635:7;-1:-1:-1;;;;;1662:27:42;;;1654:79;;;;-1:-1:-1;;;1654:79:42;;14527:2:94;1654:79:42;;;14509:21:94;14566:2;14546:18;;;14539:30;14605:34;14585:18;;;14578:62;14676:9;14656:18;;;14649:37;14703:19;;1654:79:42;14499:229:94;1654:79:42;-1:-1:-1;1758:6:42;1577:195::o;4488:650:46:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4829:56:46;;;;;;;;;;-1:-1:-1;;;;;4829:56:46;;;;;;;-1:-1:-1;;;4829:56:46;;;;;;;;-1:-1:-1;;;4829:56:46;;;;;;;;;;;;;4794:10;;4940:14;;4904:34;;;-1:-1:-1;4904:34:46;4896:59;;;;-1:-1:-1;;;4896:59:46;;;;;;;;:::i;:::-;;4998:56;5008:8;:14;;5024:15;5041:12;4998:9;:56::i;:::-;5088:33;;;;;;-1:-1:-1;;;;;5088:33:46;;;;;4966:88;;-1:-1:-1;4966:88:46;-1:-1:-1;;;;;;4488:650:46:o;3320:532::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3623:56:46;;;;;;;;;;-1:-1:-1;;;;;3623:56:46;;;;;-1:-1:-1;;;3623:56:46;;;;;;;;-1:-1:-1;;;3623:56:46;;;;;;;;;;;3588:10;;3721:56;3623;3731:14;;3623:56;3764:12;3721:9;:56::i;:::-;3812:23;;3689:88;;-1:-1:-1;3689:88:46;;-1:-1:-1;3689:88:46;-1:-1:-1;3812:33:46;;3838:7;;3812:33;:::i;:::-;-1:-1:-1;;;;;3787:58:46;;;-1:-1:-1;3787:14:46;;3320:532;;-1:-1:-1;3320:532:46;;-1:-1:-1;3320:532:46;-1:-1:-1;3320:532:46:o;16092:560::-;-1:-1:-1;;;;;;;;;;;;;;;;;16414:231:46;;;;;;;;16548:47;16565:12;:22;;;16589:5;16548;:16;;;;:47;;;;;:::i;:::-;16509:87;;;;:15;:87;:::i;:::-;16467:19;;:129;;;;:::i;:::-;-1:-1:-1;;;;;16414:231:46;;;;;16625:5;16414:231;;;;;16395:250;;16092:560;;;;;:::o;17224:969::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17541:10:46;17579:45;17628:35;17639:6;17647:15;17628:10;:35::i;:::-;17576:87;;;17749:12;17724:37;;:11;:21;;;:37;;;17720:112;;;17785:15;;-1:-1:-1;17802:11:46;-1:-1:-1;17815:5:46;;-1:-1:-1;17777:44:46;;17720:112;17842:41;17886:114;17916:11;17941:15;:23;;;-1:-1:-1;;;;;17886:114:46;17978:12;17886:16;:114::i;:::-;17842:158;;18051:7;18011:6;18018:15;:29;;;18011:37;;;;;;;;;:::i;:::-;:47;;;;;;;;;-1:-1:-1;;;18011:47:46;-1:-1:-1;;;;;18011:47:46;;;;;;;:37;;:47;;18112:21;18117:15;18112:4;:21::i;:::-;18069:64;-1:-1:-1;18172:7:46;;-1:-1:-1;18181:4:46;;-1:-1:-1;;;17224:969:46;;;;;;;;:::o;18448:866::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;18661:29:46;;;;18637:71;;;;;;;:23;:71::i;:::-;18585:133;;;;:29;;;:133;19171:27;;;;:45;;;19167:108;;;19263:1;19232:15;:27;;:32;;;;;;;:::i;:::-;;;;;-1:-1:-1;;19292:15:46;18448:866::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:366::-;277:8;287:6;341:3;334:4;326:6;322:17;318:27;308:2;;359:1;356;349:12;308:2;-1:-1:-1;382:20:94;;425:18;414:30;;411:2;;;457:1;454;447:12;411:2;494:4;486:6;482:17;470:29;;554:3;547:4;537:6;534:1;530:14;522:6;518:27;514:38;511:47;508:2;;;571:1;568;561:12;586:171;653:20;;713:18;702:30;;692:41;;682:2;;747:1;744;737:12;762:156;828:20;;888:4;877:16;;867:27;;857:2;;908:1;905;898:12;923:186;982:6;1035:2;1023:9;1014:7;1010:23;1006:32;1003:2;;;1051:1;1048;1041:12;1003:2;1074:29;1093:9;1074:29;:::i;1114:260::-;1182:6;1190;1243:2;1231:9;1222:7;1218:23;1214:32;1211:2;;;1259:1;1256;1249:12;1211:2;1282:29;1301:9;1282:29;:::i;:::-;1272:39;;1330:38;1364:2;1353:9;1349:18;1330:38;:::i;:::-;1320:48;;1201:173;;;;;:::o;1379:328::-;1456:6;1464;1472;1525:2;1513:9;1504:7;1500:23;1496:32;1493:2;;;1541:1;1538;1531:12;1493:2;1564:29;1583:9;1564:29;:::i;:::-;1554:39;;1612:38;1646:2;1635:9;1631:18;1612:38;:::i;:::-;1602:48;;1697:2;1686:9;1682:18;1669:32;1659:42;;1483:224;;;;;:::o;1712:606::-;1823:6;1831;1839;1847;1855;1863;1871;1924:3;1912:9;1903:7;1899:23;1895:33;1892:2;;;1941:1;1938;1931:12;1892:2;1964:29;1983:9;1964:29;:::i;:::-;1954:39;;2012:38;2046:2;2035:9;2031:18;2012:38;:::i;:::-;2002:48;;2097:2;2086:9;2082:18;2069:32;2059:42;;2148:2;2137:9;2133:18;2120:32;2110:42;;2171:37;2203:3;2192:9;2188:19;2171:37;:::i;:::-;2161:47;;2255:3;2244:9;2240:19;2227:33;2217:43;;2307:3;2296:9;2292:19;2279:33;2269:43;;1882:436;;;;;;;;;;:::o;2323:537::-;2425:6;2433;2441;2449;2457;2465;2518:3;2506:9;2497:7;2493:23;2489:33;2486:2;;;2535:1;2532;2525:12;2486:2;2558:29;2577:9;2558:29;:::i;:::-;2548:39;;2606:38;2640:2;2629:9;2625:18;2606:38;:::i;:::-;2596:48;;2691:2;2680:9;2676:18;2663:32;2653:42;;2714:36;2746:2;2735:9;2731:18;2714:36;:::i;:::-;2704:46;;2797:3;2786:9;2782:19;2769:33;2759:43;;2849:3;2838:9;2834:19;2821:33;2811:43;;2476:384;;;;;;;;:::o;2865:509::-;2959:6;2967;2975;3028:2;3016:9;3007:7;3003:23;2999:32;2996:2;;;3044:1;3041;3034:12;2996:2;3067:29;3086:9;3067:29;:::i;:::-;3057:39;;3147:2;3136:9;3132:18;3119:32;3174:18;3166:6;3163:30;3160:2;;;3206:1;3203;3196:12;3160:2;3245:69;3306:7;3297:6;3286:9;3282:22;3245:69;:::i;:::-;2986:388;;3333:8;;-1:-1:-1;3219:95:94;;-1:-1:-1;;;;2986:388:94:o;3379:843::-;3508:6;3516;3524;3532;3540;3593:2;3581:9;3572:7;3568:23;3564:32;3561:2;;;3609:1;3606;3599:12;3561:2;3632:29;3651:9;3632:29;:::i;:::-;3622:39;;3712:2;3701:9;3697:18;3684:32;3735:18;3776:2;3768:6;3765:14;3762:2;;;3792:1;3789;3782:12;3762:2;3831:69;3892:7;3883:6;3872:9;3868:22;3831:69;:::i;:::-;3919:8;;-1:-1:-1;3805:95:94;-1:-1:-1;4007:2:94;3992:18;;3979:32;;-1:-1:-1;4023:16:94;;;4020:2;;;4052:1;4049;4042:12;4020:2;;4091:71;4154:7;4143:8;4132:9;4128:24;4091:71;:::i;:::-;3551:671;;;;-1:-1:-1;3551:671:94;;-1:-1:-1;4181:8:94;;4065:97;3551:671;-1:-1:-1;;;3551:671:94:o;4227:346::-;4294:6;4302;4355:2;4343:9;4334:7;4330:23;4326:32;4323:2;;;4371:1;4368;4361:12;4323:2;4394:29;4413:9;4394:29;:::i;:::-;4384:39;;4473:2;4462:9;4458:18;4445:32;4517:6;4510:5;4506:18;4499:5;4496:29;4486:2;;4539:1;4536;4529:12;4486:2;4562:5;4552:15;;;4313:260;;;;;:::o;4578:254::-;4646:6;4654;4707:2;4695:9;4686:7;4682:23;4678:32;4675:2;;;4723:1;4720;4713:12;4675:2;4746:29;4765:9;4746:29;:::i;:::-;4736:39;4822:2;4807:18;;;;4794:32;;-1:-1:-1;;;4665:167:94:o;4837:258::-;4904:6;4912;4965:2;4953:9;4944:7;4940:23;4936:32;4933:2;;;4981:1;4978;4971:12;4933:2;5004:29;5023:9;5004:29;:::i;:::-;4994:39;;5052:37;5085:2;5074:9;5070:18;5052:37;:::i;5100:330::-;5175:6;5183;5191;5244:2;5232:9;5223:7;5219:23;5215:32;5212:2;;;5260:1;5257;5250:12;5212:2;5283:29;5302:9;5283:29;:::i;:::-;5273:39;;5331:37;5364:2;5353:9;5349:18;5331:37;:::i;:::-;5321:47;;5387:37;5420:2;5409:9;5405:18;5387:37;:::i;:::-;5377:47;;5202:228;;;;;:::o;5435:435::-;5520:6;5528;5581:2;5569:9;5560:7;5556:23;5552:32;5549:2;;;5597:1;5594;5587:12;5549:2;5637:9;5624:23;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5741:69;5802:7;5793:6;5782:9;5778:22;5741:69;:::i;:::-;5829:8;;5715:95;;-1:-1:-1;5539:331:94;-1:-1:-1;;;;5539:331:94:o;5875:769::-;5995:6;6003;6011;6019;6072:2;6060:9;6051:7;6047:23;6043:32;6040:2;;;6088:1;6085;6078:12;6040:2;6128:9;6115:23;6157:18;6198:2;6190:6;6187:14;6184:2;;;6214:1;6211;6204:12;6184:2;6253:69;6314:7;6305:6;6294:9;6290:22;6253:69;:::i;:::-;6341:8;;-1:-1:-1;6227:95:94;-1:-1:-1;6429:2:94;6414:18;;6401:32;;-1:-1:-1;6445:16:94;;;6442:2;;;6474:1;6471;6464:12;6442:2;;6513:71;6576:7;6565:8;6554:9;6550:24;6513:71;:::i;:::-;6030:614;;;;-1:-1:-1;6603:8:94;-1:-1:-1;;;;6030:614:94:o;6649:184::-;6707:6;6760:2;6748:9;6739:7;6735:23;6731:32;6728:2;;;6776:1;6773;6766:12;6728:2;6799:28;6817:9;6799:28;:::i;7518:632::-;7689:2;7741:21;;;7811:13;;7714:18;;;7833:22;;;7660:4;;7689:2;7912:15;;;;7886:2;7871:18;;;7660:4;7955:169;7969:6;7966:1;7963:13;7955:169;;;8030:13;;8018:26;;8099:15;;;;8064:12;;;;7991:1;7984:9;7955:169;;;-1:-1:-1;8141:3:94;;7669:481;-1:-1:-1;;;;;;7669:481:94:o;10615:656::-;10727:4;10756:2;10785;10774:9;10767:21;10817:6;10811:13;10860:6;10855:2;10844:9;10840:18;10833:34;10885:1;10895:140;10909:6;10906:1;10903:13;10895:140;;;11004:14;;;11000:23;;10994:30;10970:17;;;10989:2;10966:26;10959:66;10924:10;;10895:140;;;11053:6;11050:1;11047:13;11044:2;;;11123:1;11118:2;11109:6;11098:9;11094:22;11090:31;11083:42;11044:2;-1:-1:-1;11187:2:94;11175:15;-1:-1:-1;;11171:88:94;11156:104;;;;11262:2;11152:113;;10736:535;-1:-1:-1;;;10736:535:94:o;20741:273::-;20781:3;-1:-1:-1;;;;;20890:2:94;20887:1;20883:10;20920:2;20917:1;20913:10;20951:3;20947:2;20943:12;20938:3;20935:21;20932:2;;;20959:18;;:::i;:::-;20995:13;;20789:225;-1:-1:-1;;;;20789:225:94:o;21019:277::-;21059:3;-1:-1:-1;;;;;21172:2:94;21169:1;21165:10;21202:2;21199:1;21195:10;21233:3;21229:2;21225:12;21220:3;21217:21;21214:2;;;21241:18;;:::i;21301:226::-;21340:3;21368:8;21403:2;21400:1;21396:10;21433:2;21430:1;21426:10;21464:3;21460:2;21456:12;21451:3;21448:21;21445:2;;;21472:18;;:::i;21532:128::-;21572:3;21603:1;21599:6;21596:1;21593:13;21590:2;;;21609:18;;:::i;:::-;-1:-1:-1;21645:9:94;;21580:80::o;21665:230::-;21704:3;21732:12;21771:2;21768:1;21764:10;21801:2;21798:1;21794:10;21832:3;21828:2;21824:12;21819:3;21816:21;21813:2;;;21840:18;;:::i;21900:240::-;21940:1;-1:-1:-1;;;;;22051:2:94;22048:1;22044:10;22073:3;22063:2;;22080:18;;:::i;:::-;22118:10;;22114:20;;;;;21946:194;-1:-1:-1;;21946:194:94:o;22145:120::-;22185:1;22211;22201:2;;22216:18;;:::i;:::-;-1:-1:-1;22250:9:94;;22191:74::o;22270:311::-;22310:7;-1:-1:-1;;;;;22427:2:94;22424:1;22420:10;22457:2;22454:1;22450:10;22513:3;22509:2;22505:12;22500:3;22497:21;22490:3;22483:11;22476:19;22472:47;22469:2;;;22522:18;;:::i;:::-;22562:13;;22322:259;-1:-1:-1;;;;22322:259:94:o;22586:270::-;22626:4;-1:-1:-1;;;;;22763:10:94;;;;22733;;22785:12;;;22782:2;;;22800:18;;:::i;:::-;22837:13;;22635:221;-1:-1:-1;;;22635:221:94:o;22861:125::-;22901:4;22929:1;22926;22923:8;22920:2;;;22934:18;;:::i;:::-;-1:-1:-1;22971:9:94;;22910:76::o;22991:221::-;23030:4;23059:10;23119;;;;23089;;23141:12;;;23138:2;;;23156:18;;:::i;23217:437::-;23296:1;23292:12;;;;23339;;;23360:2;;23414:4;23406:6;23402:17;23392:27;;23360:2;23467;23459:6;23456:14;23436:18;23433:38;23430:2;;;-1:-1:-1;;;23501:1:94;23494:88;23605:4;23602:1;23595:15;23633:4;23630:1;23623:15;23659:195;23698:3;23729:66;23722:5;23719:77;23716:2;;;23799:18;;:::i;:::-;-1:-1:-1;23846:1:94;23835:13;;23706:148::o;23859:112::-;23891:1;23917;23907:2;;23922:18;;:::i;:::-;-1:-1:-1;23956:9:94;;23897:74::o;23976:184::-;-1:-1:-1;;;24025:1:94;24018:88;24125:4;24122:1;24115:15;24149:4;24146:1;24139:15;24165:184;-1:-1:-1;;;24214:1:94;24207:88;24314:4;24311:1;24304:15;24338:4;24335:1;24328:15;24354:184;-1:-1:-1;;;24403:1:94;24396:88;24503:4;24500:1;24493:15;24527:4;24524:1;24517:15;24543:184;-1:-1:-1;;;24592:1:94;24585:88;24692:4;24689:1;24682:15;24716:4;24713:1;24706:15;24732:184;-1:-1:-1;;;24781:1:94;24774:88;24881:4;24878:1;24871:15;24905:4;24902:1;24895:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "2799200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "DOMAIN_SEPARATOR()": "infinite",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24666",
                "balanceOf(address)": "2608",
                "controller()": "infinite",
                "controllerBurn(address,uint256)": "infinite",
                "controllerBurnFrom(address,address,uint256)": "infinite",
                "controllerDelegateFor(address,address)": "infinite",
                "controllerMint(address,uint256)": "infinite",
                "decimals()": "infinite",
                "decreaseAllowance(address,uint256)": "26999",
                "delegate(address)": "infinite",
                "delegateOf(address)": "2612",
                "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "infinite",
                "getAccountDetails(address)": "2945",
                "getAverageBalanceBetween(address,uint64,uint64)": "infinite",
                "getAverageBalancesBetween(address,uint64[],uint64[])": "infinite",
                "getAverageTotalSuppliesBetween(uint64[],uint64[])": "infinite",
                "getBalanceAt(address,uint64)": "infinite",
                "getBalancesAt(address,uint64[])": "infinite",
                "getTotalSuppliesAt(uint64[])": "infinite",
                "getTotalSupplyAt(uint64)": "infinite",
                "getTwab(address,uint16)": "2973",
                "increaseAllowance(address,uint256)": "27047",
                "name()": "infinite",
                "nonces(address)": "2661",
                "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2372",
                "transfer(address,uint256)": "infinite",
                "transferFrom(address,address,uint256)": "infinite"
              },
              "internal": {
                "_beforeTokenTransfer(address,address,uint256)": "infinite",
                "_decreaseTotalSupplyTwab(uint256)": "infinite",
                "_decreaseUserTwab(address,uint256)": "infinite",
                "_delegate(address,address)": "infinite",
                "_getAverageBalancesBetween(struct TwabLib.Account storage pointer,uint64[] calldata,uint64[] calldata)": "infinite",
                "_increaseTotalSupplyTwab(uint256)": "infinite",
                "_increaseUserTwab(address,uint256)": "infinite",
                "_transferTwab(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "DOMAIN_SEPARATOR()": "3644e515",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerDelegateFor(address,address)": "33e39b61",
              "controllerMint(address,uint256)": "5d7b0758",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "delegate(address)": "5c19a95c",
              "delegateOf(address)": "8d22ea2a",
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "919974dc",
              "getAccountDetails(address)": "2aceb534",
              "getAverageBalanceBetween(address,uint64,uint64)": "98b16f36",
              "getAverageBalancesBetween(address,uint64[],uint64[])": "68c7fd57",
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": "8e6d536a",
              "getBalanceAt(address,uint64)": "9ecb0370",
              "getBalancesAt(address,uint64[])": "613ed6bd",
              "getTotalSuppliesAt(uint64[])": "85beb5f1",
              "getTotalSupplyAt(uint64)": "2d0dd686",
              "getTwab(address,uint16)": "36bb2a38",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "nonces(address)": "7ecebe00",
              "permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"},{\"internalType\":\"address\",\"name\":\"_controller\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"Delegated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTotalSupplyTwab\",\"type\":\"tuple\"}],\"name\":\"NewTotalSupplyTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTwab\",\"type\":\"tuple\"}],\"name\":\"NewUserTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"TicketInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"controllerDelegateFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"}],\"name\":\"delegateOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_newDelegate\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"_v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"_r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"_s\",\"type\":\"bytes32\"}],\"name\":\"delegateWithSignature\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"}],\"name\":\"getAccountDetails\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_startTime\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"_endTime\",\"type\":\"uint64\"}],\"name\":\"getAverageBalanceBetween\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"_startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"_endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageBalancesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"_startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"_endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageTotalSuppliesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_target\",\"type\":\"uint64\"}],\"name\":\"getBalanceAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"_targets\",\"type\":\"uint64[]\"}],\"name\":\"getBalancesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"_targets\",\"type\":\"uint64[]\"}],\"name\":\"getTotalSuppliesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"_target\",\"type\":\"uint64\"}],\"name\":\"getTotalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"_index\",\"type\":\"uint16\"}],\"name\":\"getTwab\",\"outputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"See {IERC20Permit-DOMAIN_SEPARATOR}.\"},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"params\":{\"_controller\":\"ERC20 ticket controller address (ie: Prize Pool address).\",\"_name\":\"ERC20 ticket token name.\",\"_symbol\":\"ERC20 ticket token symbol.\",\"decimals_\":\"ERC20 ticket token decimals.\"}},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"_amount\":\"Amount of tokens to burn\",\"_operator\":\"Address of the operator performing the burn action via the controller contract\",\"_user\":\"Address of the holder account to burn tokens from\"}},\"controllerDelegateFor(address,address)\":{\"params\":{\"delegate\":\"The new delegate\",\"user\":\"The user for whom to delegate\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"_amount\":\"Amount of tokens to mint\",\"_user\":\"Address of the receiver of the minted tokens\"}},\"decimals()\":{\"details\":\"This value should be equal to the decimals of the token used to deposit into the pool.\",\"returns\":{\"_0\":\"uint8 decimals.\"}},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"delegate(address)\":{\"details\":\"Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.\",\"params\":{\"to\":\"Recipient of delegated TWAB.\"}},\"delegateOf(address)\":{\"details\":\"Address of the delegate will be the zero address if `user` has not delegated their tickets.\",\"params\":{\"user\":\"Address of the delegator.\"},\"returns\":{\"_0\":\"Address of the delegate.\"}},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"params\":{\"deadline\":\"The timestamp by which this must be submitted\",\"delegate\":\"The new delegate\",\"r\":\"The r portion of the ECDSA sig\",\"s\":\"The s portion of the ECDSA sig\",\"user\":\"The user who is delegating\",\"v\":\"The v portion of the ECDSA sig\"}},\"getAccountDetails(address)\":{\"params\":{\"user\":\"The user for whom to fetch the TWAB context.\"},\"returns\":{\"_0\":\"The TWAB context, which includes { balance, nextTwabIndex, cardinality }\"}},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"params\":{\"endTime\":\"The end time of the time frame.\",\"startTime\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"params\":{\"endTimes\":\"The end time of the time frame.\",\"startTimes\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"params\":{\"endTimes\":\"Array of end times.\",\"startTimes\":\"Array of start times.\"},\"returns\":{\"_0\":\"The average total supplies held during the time frame.\"}},\"getBalanceAt(address,uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the TWAB balance.\",\"user\":\"Address of the user whose TWAB is being fetched.\"},\"returns\":{\"_0\":\"The TWAB balance at the given timestamp.\"}},\"getBalancesAt(address,uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the TWAB balances.\",\"user\":\"Address of the user whose TWABs are being fetched.\"},\"returns\":{\"_0\":\"`user` TWAB balances.\"}},\"getTotalSuppliesAt(uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"Total supply TWAB balances.\"}},\"getTotalSupplyAt(uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"The total supply TWAB balance at the given timestamp.\"}},\"getTwab(address,uint16)\":{\"params\":{\"index\":\"The index of the TWAB to fetch.\",\"user\":\"The user for whom to fetch the TWAB.\"},\"returns\":{\"_0\":\"The TWAB, which includes the twab amount and the timestamp.\"}},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"See {IERC20Permit-nonces}.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"See {IERC20Permit-permit}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"title\":\"PoolTogether V4 Ticket\",\"version\":1},\"userdoc\":{\"events\":{\"Delegated(address,address)\":{\"notice\":\"Emitted when TWAB balance has been delegated to another user.\"},\"NewTotalSupplyTwab((uint224,uint32))\":{\"notice\":\"Emitted when a new total supply TWAB has been recorded.\"},\"NewUserTwab(address,(uint224,uint32))\":{\"notice\":\"Emitted when a new TWAB has been recorded.\"},\"TicketInitialized(string,string,uint8,address)\":{\"notice\":\"Emitted when ticket is initialized.\"}},\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Constructs Ticket with passed parameters.\"},\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerDelegateFor(address,address)\":{\"notice\":\"Allows the controller to delegate on a users behalf.\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"},\"decimals()\":{\"notice\":\"Returns the ERC20 controlled token decimals.\"},\"delegate(address)\":{\"notice\":\"Delegate time-weighted average balances to an alternative address.\"},\"delegateOf(address)\":{\"notice\":\"Retrieves the address of the delegate to whom `user` has delegated their tickets.\"},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Allows a user to delegate via signature\"},\"getAccountDetails(address)\":{\"notice\":\"Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\"},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"notice\":\"Retrieves the average balance held by a user for a given time frame.\"},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"notice\":\"Retrieves the average balances held by a user for a given time frame.\"},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"notice\":\"Retrieves the average total supply balance for a set of given time frames.\"},\"getBalanceAt(address,uint64)\":{\"notice\":\"Retrieves `user` TWAB balance.\"},\"getBalancesAt(address,uint64[])\":{\"notice\":\"Retrieves `user` TWAB balances.\"},\"getTotalSuppliesAt(uint64[])\":{\"notice\":\"Retrieves the total supply TWAB balance between the given timestamps range.\"},\"getTotalSupplyAt(uint64)\":{\"notice\":\"Retrieves the total supply TWAB balance at the given timestamp.\"},\"getTwab(address,uint16)\":{\"notice\":\"Gets the TWAB at a specific index for a user.\"}},\"notice\":\"The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality. The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The historic total supply is available as well as the average total supply between two timestamps. A user may \\\"delegate\\\" their balance; increasing another user's historic balance while retaining their tokens.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/Ticket.sol\":\"Ticket\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xd1d8caaeb45f78e0b0715664d56c220c283c89bf8b8c02954af86404d6b367f8\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\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\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./draft-IERC20Permit.sol\\\";\\nimport \\\"../ERC20.sol\\\";\\nimport \\\"../../../utils/cryptography/draft-EIP712.sol\\\";\\nimport \\\"../../../utils/cryptography/ECDSA.sol\\\";\\nimport \\\"../../../utils/Counters.sol\\\";\\n\\n/**\\n * @dev Implementation 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 * _Available since v3.4._\\n */\\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {\\n    using Counters for Counters.Counter;\\n\\n    mapping(address => Counters.Counter) private _nonces;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _PERMIT_TYPEHASH =\\n        keccak256(\\\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\\\");\\n\\n    /**\\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`.\\n     *\\n     * It's a good idea to use the same `name` that is defined as the ERC20 token name.\\n     */\\n    constructor(string memory name) EIP712(name, \\\"1\\\") {}\\n\\n    /**\\n     * @dev See {IERC20Permit-permit}.\\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    ) public virtual override {\\n        require(block.timestamp <= deadline, \\\"ERC20Permit: expired deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, v, r, s);\\n        require(signer == owner, \\\"ERC20Permit: invalid signature\\\");\\n\\n        _approve(owner, spender, value);\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-nonces}.\\n     */\\n    function nonces(address owner) public view virtual override returns (uint256) {\\n        return _nonces[owner].current();\\n    }\\n\\n    /**\\n     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.\\n     */\\n    // solhint-disable-next-line func-name-mixedcase\\n    function DOMAIN_SEPARATOR() external view override returns (bytes32) {\\n        return _domainSeparatorV4();\\n    }\\n\\n    /**\\n     * @dev \\\"Consume a nonce\\\": return the current value and increment.\\n     *\\n     * _Available since v4.1._\\n     */\\n    function _useNonce(address owner) internal virtual returns (uint256 current) {\\n        Counters.Counter storage nonce = _nonces[owner];\\n        current = nonce.current();\\n        nonce.increment();\\n    }\\n}\\n\",\"keccak256\":\"0x8a763ef5625e97f5287c7ddd5ede434129069e15d83bf0a68ad10a5e56ccb439\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\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 */\\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    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\",\"keccak256\":\"0xf41ca991f30855bf80ffd11e9347856a517b977f0a6c2d52e6421a99b7840329\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\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\",\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Counters.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Counters\\n * @author Matt Condon (@shrugs)\\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\\n *\\n * Include with `using Counters for Counters.Counter;`\\n */\\nlibrary Counters {\\n    struct Counter {\\n        // This variable should never be directly accessed by users of the library: interactions must be restricted to\\n        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\\n        // this feature: see https://github.com/ethereum/solidity/issues/4637\\n        uint256 _value; // default: 0\\n    }\\n\\n    function current(Counter storage counter) internal view returns (uint256) {\\n        return counter._value;\\n    }\\n\\n    function increment(Counter storage counter) internal {\\n        unchecked {\\n            counter._value += 1;\\n        }\\n    }\\n\\n    function decrement(Counter storage counter) internal {\\n        uint256 value = counter._value;\\n        require(value > 0, \\\"Counter: decrement overflow\\\");\\n        unchecked {\\n            counter._value = value - 1;\\n        }\\n    }\\n\\n    function reset(Counter storage counter) internal {\\n        counter._value = 0;\\n    }\\n}\\n\",\"keccak256\":\"0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Strings.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev String operations.\\n */\\nlibrary Strings {\\n    bytes16 private constant _HEX_SYMBOLS = \\\"0123456789abcdef\\\";\\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        // Inspired by OraclizeAPI's implementation - MIT licence\\n        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\\n\\n        if (value == 0) {\\n            return \\\"0\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 digits;\\n        while (temp != 0) {\\n            digits++;\\n            temp /= 10;\\n        }\\n        bytes memory buffer = new bytes(digits);\\n        while (value != 0) {\\n            digits -= 1;\\n            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\\n            value /= 10;\\n        }\\n        return string(buffer);\\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        if (value == 0) {\\n            return \\\"0x00\\\";\\n        }\\n        uint256 temp = value;\\n        uint256 length = 0;\\n        while (temp != 0) {\\n            length++;\\n            temp >>= 8;\\n        }\\n        return toHexString(value, length);\\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        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_SYMBOLS[value & 0xf];\\n            value >>= 4;\\n        }\\n        require(value == 0, \\\"Strings: hex length insufficient\\\");\\n        return string(buffer);\\n    }\\n}\\n\",\"keccak256\":\"0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../Strings.sol\\\";\\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        InvalidSignatureV\\n    }\\n\\n    function _throwError(RecoverError error) private pure {\\n        if (error == RecoverError.NoError) {\\n            return; // no error: do nothing\\n        } else if (error == RecoverError.InvalidSignature) {\\n            revert(\\\"ECDSA: invalid signature\\\");\\n        } else if (error == RecoverError.InvalidSignatureLength) {\\n            revert(\\\"ECDSA: invalid signature length\\\");\\n        } else if (error == RecoverError.InvalidSignatureS) {\\n            revert(\\\"ECDSA: invalid signature 's' value\\\");\\n        } else if (error == RecoverError.InvalidSignatureV) {\\n            revert(\\\"ECDSA: invalid signature 'v' value\\\");\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the address that signed a hashed message (`hash`) with\\n     * `signature` or error string. This address can then be used for verification purposes.\\n     *\\n     * The `ecrecover` EVM opcode 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 {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     * _Available since v4.3._\\n     */\\n    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\\n        // Check the signature length\\n        // - case 65: r,s,v signature (standard)\\n        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._\\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            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 if (signature.length == 64) {\\n            bytes32 r;\\n            bytes32 vs;\\n            // ecrecover takes the signature parameters, and the only way to get them\\n            // currently is to use assembly.\\n            assembly {\\n                r := mload(add(signature, 0x20))\\n                vs := mload(add(signature, 0x40))\\n            }\\n            return tryRecover(hash, r, vs);\\n        } else {\\n            return (address(0), RecoverError.InvalidSignatureLength);\\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 opcode 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 {toEthSignedMessageHash} on it.\\n     */\\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, signature);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address, RecoverError) {\\n        bytes32 s;\\n        uint8 v;\\n        assembly {\\n            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\\n            v := add(shr(255, vs), 27)\\n        }\\n        return tryRecover(hash, v, r, s);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\\n     *\\n     * _Available since v4.2._\\n     */\\n    function recover(\\n        bytes32 hash,\\n        bytes32 r,\\n        bytes32 vs\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, r, vs);\\n        _throwError(error);\\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     * _Available since v4.3._\\n     */\\n    function tryRecover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address, RecoverError) {\\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 \\u00f7 2 + 1, and for v in (302): v \\u2208 {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);\\n        }\\n        if (v != 27 && v != 28) {\\n            return (address(0), RecoverError.InvalidSignatureV);\\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);\\n        }\\n\\n        return (signer, RecoverError.NoError);\\n    }\\n\\n    /**\\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\\n     * `r` and `s` signature fields separately.\\n     */\\n    function recover(\\n        bytes32 hash,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) internal pure returns (address) {\\n        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\\n        _throwError(error);\\n        return recovered;\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from a `hash`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {\\n        // 32 is the length in bytes of hash,\\n        // enforced by the type signature above\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n32\\\", hash));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Message, created from `s`. This\\n     * produces hash corresponding to the one signed with the\\n     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\\n     * JSON-RPC method as part of EIP-191.\\n     *\\n     * See {recover}.\\n     */\\n    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19Ethereum Signed Message:\\\\n\\\", Strings.toString(s.length), s));\\n    }\\n\\n    /**\\n     * @dev Returns an Ethereum Signed Typed Data, created from a\\n     * `domainSeparator` and a `structHash`. This produces hash corresponding\\n     * to the one signed with the\\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\\n     * JSON-RPC method as part of EIP-712.\\n     *\\n     * See {recover}.\\n     */\\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {\\n        return keccak256(abi.encodePacked(\\\"\\\\x19\\\\x01\\\", domainSeparator, structHash));\\n    }\\n}\\n\",\"keccak256\":\"0xe9e291de7ffe06e66503c6700b1bb84ff6e0989cbb974653628d8994e7c97f03\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./ECDSA.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 specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\\n * they need in their contracts 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 * _Available since v3.4._\\n */\\nabstract contract EIP712 {\\n    /* solhint-disable var-name-mixedcase */\\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 _CACHED_DOMAIN_SEPARATOR;\\n    uint256 private immutable _CACHED_CHAIN_ID;\\n    address private immutable _CACHED_THIS;\\n\\n    bytes32 private immutable _HASHED_NAME;\\n    bytes32 private immutable _HASHED_VERSION;\\n    bytes32 private immutable _TYPE_HASH;\\n\\n    /* solhint-enable var-name-mixedcase */\\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        bytes32 hashedName = keccak256(bytes(name));\\n        bytes32 hashedVersion = keccak256(bytes(version));\\n        bytes32 typeHash = keccak256(\\n            \\\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\\\"\\n        );\\n        _HASHED_NAME = hashedName;\\n        _HASHED_VERSION = hashedVersion;\\n        _CACHED_CHAIN_ID = block.chainid;\\n        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);\\n        _CACHED_THIS = address(this);\\n        _TYPE_HASH = typeHash;\\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) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {\\n            return _CACHED_DOMAIN_SEPARATOR;\\n        } else {\\n            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);\\n        }\\n    }\\n\\n    function _buildDomainSeparator(\\n        bytes32 typeHash,\\n        bytes32 nameHash,\\n        bytes32 versionHash\\n    ) private view returns (bytes32) {\\n        return keccak256(abi.encode(typeHash, nameHash, versionHash, 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\\n    }\\n}\\n\",\"keccak256\":\"0x6688fad58b9ec0286d40fa957152e575d5d8bd4c3aa80985efdb11b44f776ae7\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/ControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol\\\";\\n\\nimport \\\"./interfaces/IControlledToken.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 Controlled ERC20 Token\\n * @author PoolTogether Inc Team\\n * @notice  ERC20 Tokens with a controller for minting & burning\\n */\\ncontract ControlledToken is ERC20Permit, IControlledToken {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Interface to the contract responsible for controlling mint/burn\\n    address public override immutable controller;\\n\\n    /// @notice ERC20 controlled token decimals.\\n    uint8 private immutable _decimals;\\n\\n    /* ============ Events ============ */\\n\\n    /// @dev Emitted when contract is deployed\\n    event Deployed(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure that the caller is the controller contract\\n    modifier onlyController() {\\n        require(msg.sender == address(controller), \\\"ControlledToken/only-controller\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Controlled Token with Token Details and the Controller\\n    /// @param _name The name of the Token\\n    /// @param _symbol The symbol for the Token\\n    /// @param decimals_ The number of decimals for the Token\\n    /// @param _controller Address of the Controller contract for minting & burning\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ERC20Permit(\\\"PoolTogether ControlledToken\\\") ERC20(_name, _symbol) {\\n        require(address(_controller) != address(0), \\\"ControlledToken/controller-not-zero-address\\\");\\n        controller = _controller;\\n\\n        require(decimals_ > 0, \\\"ControlledToken/decimals-gt-zero\\\");\\n        _decimals = decimals_;\\n\\n        emit Deployed(_name, _symbol, decimals_, _controller);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @notice Allows the controller to mint tokens for a user account\\n    /// @dev May be overridden to provide more granular control over minting\\n    /// @param _user Address of the receiver of the minted tokens\\n    /// @param _amount Amount of tokens to mint\\n    function controllerMint(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _mint(_user, _amount);\\n    }\\n\\n    /// @notice Allows the controller to burn tokens from a user account\\n    /// @dev May be overridden to provide more granular control over burning\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurn(address _user, uint256 _amount)\\n        external\\n        virtual\\n        override\\n        onlyController\\n    {\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n    /// @dev May be overridden to provide more granular control over operator-burning\\n    /// @param _operator Address of the operator performing the burn action via the controller contract\\n    /// @param _user Address of the holder account to burn tokens from\\n    /// @param _amount Amount of tokens to burn\\n    function controllerBurnFrom(\\n        address _operator,\\n        address _user,\\n        uint256 _amount\\n    ) external virtual override onlyController {\\n        if (_operator != _user) {\\n            _approve(_user, _operator, allowance(_user, _operator) - _amount);\\n        }\\n\\n        _burn(_user, _amount);\\n    }\\n\\n    /// @notice Returns the ERC20 controlled token decimals.\\n    /// @dev This value should be equal to the decimals of the token used to deposit into the pool.\\n    /// @return uint8 decimals.\\n    function decimals() public view virtual override returns (uint8) {\\n        return _decimals;\\n    }\\n}\\n\",\"keccak256\":\"0x7dec4c4427ea75702a706e574d17751ca989b2aaea4991380a126b611d95ff9e\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/Ticket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"./libraries/ExtendedSafeCastLib.sol\\\";\\nimport \\\"./libraries/TwabLib.sol\\\";\\nimport \\\"./interfaces/ITicket.sol\\\";\\nimport \\\"./ControlledToken.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 Ticket\\n  * @author PoolTogether Inc Team\\n  * @notice The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality.\\n            The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The\\n            historic total supply is available as well as the average total supply between two timestamps.\\n\\n            A user may \\\"delegate\\\" their balance; increasing another user's historic balance while retaining their tokens.\\n*/\\ncontract Ticket is ControlledToken, ITicket {\\n    using SafeERC20 for IERC20;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    // solhint-disable-next-line var-name-mixedcase\\n    bytes32 private immutable _DELEGATE_TYPEHASH =\\n        keccak256(\\\"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\\\");\\n\\n    /// @notice Record of token holders TWABs for each account.\\n    mapping(address => TwabLib.Account) internal userTwabs;\\n\\n    /// @notice Record of tickets total supply and ring buff parameters used for observation.\\n    TwabLib.Account internal totalSupplyTwab;\\n\\n    /// @notice Mapping of delegates.  Each address can delegate their ticket power to another.\\n    mapping(address => address) internal delegates;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructs Ticket with passed parameters.\\n     * @param _name ERC20 ticket token name.\\n     * @param _symbol ERC20 ticket token symbol.\\n     * @param decimals_ ERC20 ticket token decimals.\\n     * @param _controller ERC20 ticket controller address (ie: Prize Pool address).\\n     */\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 decimals_,\\n        address _controller\\n    ) ControlledToken(_name, _symbol, decimals_, _controller) {}\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc ITicket\\n    function getAccountDetails(address _user)\\n        external\\n        view\\n        override\\n        returns (TwabLib.AccountDetails memory)\\n    {\\n        return userTwabs[_user].details;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTwab(address _user, uint16 _index)\\n        external\\n        view\\n        override\\n        returns (ObservationLib.Observation memory)\\n    {\\n        return userTwabs[_user].twabs[_index];\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getBalanceAt(address _user, uint64 _target) external view override returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getBalanceAt(\\n                account.twabs,\\n                account.details,\\n                uint32(_target),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageBalancesBetween(\\n        address _user,\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) external view override returns (uint256[] memory) {\\n        return _getAverageBalancesBetween(userTwabs[_user], _startTimes, _endTimes);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) external view override returns (uint256[] memory) {\\n        return _getAverageBalancesBetween(totalSupplyTwab, _startTimes, _endTimes);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getAverageBalanceBetween(\\n        address _user,\\n        uint64 _startTime,\\n        uint64 _endTime\\n    ) external view override returns (uint256) {\\n        TwabLib.Account storage account = userTwabs[_user];\\n\\n        return\\n            TwabLib.getAverageBalanceBetween(\\n                account.twabs,\\n                account.details,\\n                uint32(_startTime),\\n                uint32(_endTime),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getBalancesAt(address _user, uint64[] calldata _targets)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        uint256 length = _targets.length;\\n        uint256[] memory _balances = new uint256[](length);\\n\\n        TwabLib.Account storage twabContext = userTwabs[_user];\\n        TwabLib.AccountDetails memory details = twabContext.details;\\n\\n        for (uint256 i = 0; i < length; i++) {\\n            _balances[i] = TwabLib.getBalanceAt(\\n                twabContext.twabs,\\n                details,\\n                uint32(_targets[i]),\\n                uint32(block.timestamp)\\n            );\\n        }\\n\\n        return _balances;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTotalSupplyAt(uint64 _target) external view override returns (uint256) {\\n        return\\n            TwabLib.getBalanceAt(\\n                totalSupplyTwab.twabs,\\n                totalSupplyTwab.details,\\n                uint32(_target),\\n                uint32(block.timestamp)\\n            );\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function getTotalSuppliesAt(uint64[] calldata _targets)\\n        external\\n        view\\n        override\\n        returns (uint256[] memory)\\n    {\\n        uint256 length = _targets.length;\\n        uint256[] memory totalSupplies = new uint256[](length);\\n\\n        TwabLib.AccountDetails memory details = totalSupplyTwab.details;\\n\\n        for (uint256 i = 0; i < length; i++) {\\n            totalSupplies[i] = TwabLib.getBalanceAt(\\n                totalSupplyTwab.twabs,\\n                details,\\n                uint32(_targets[i]),\\n                uint32(block.timestamp)\\n            );\\n        }\\n\\n        return totalSupplies;\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegateOf(address _user) external view override returns (address) {\\n        return delegates[_user];\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function controllerDelegateFor(address _user, address _to) external override onlyController {\\n        _delegate(_user, _to);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegateWithSignature(\\n        address _user,\\n        address _newDelegate,\\n        uint256 _deadline,\\n        uint8 _v,\\n        bytes32 _r,\\n        bytes32 _s\\n    ) external virtual override {\\n        require(block.timestamp <= _deadline, \\\"Ticket/delegate-expired-deadline\\\");\\n\\n        bytes32 structHash = keccak256(abi.encode(_DELEGATE_TYPEHASH, _user, _newDelegate, _useNonce(_user), _deadline));\\n\\n        bytes32 hash = _hashTypedDataV4(structHash);\\n\\n        address signer = ECDSA.recover(hash, _v, _r, _s);\\n        require(signer == _user, \\\"Ticket/delegate-invalid-signature\\\");\\n\\n        _delegate(_user, _newDelegate);\\n    }\\n\\n    /// @inheritdoc ITicket\\n    function delegate(address _to) external virtual override {\\n        _delegate(msg.sender, _to);\\n    }\\n\\n    /// @notice Delegates a users chance to another\\n    /// @param _user The user whose balance should be delegated\\n    /// @param _to The delegate\\n    function _delegate(address _user, address _to) internal {\\n        uint256 balance = balanceOf(_user);\\n        address currentDelegate = delegates[_user];\\n\\n        if (currentDelegate == _to) {\\n            return;\\n        }\\n\\n        delegates[_user] = _to;\\n\\n        _transferTwab(currentDelegate, _to, balance);\\n\\n        emit Delegated(_user, _to);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param _account The user whose balance is checked.\\n     * @param _startTimes The start time of the time frame.\\n     * @param _endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function _getAverageBalancesBetween(\\n        TwabLib.Account storage _account,\\n        uint64[] calldata _startTimes,\\n        uint64[] calldata _endTimes\\n    ) internal view returns (uint256[] memory) {\\n        uint256 startTimesLength = _startTimes.length;\\n        require(startTimesLength == _endTimes.length, \\\"Ticket/start-end-times-length-match\\\");\\n\\n        TwabLib.AccountDetails memory accountDetails = _account.details;\\n\\n        uint256[] memory averageBalances = new uint256[](startTimesLength);\\n        uint32 currentTimestamp = uint32(block.timestamp);\\n\\n        for (uint256 i = 0; i < startTimesLength; i++) {\\n            averageBalances[i] = TwabLib.getAverageBalanceBetween(\\n                _account.twabs,\\n                accountDetails,\\n                uint32(_startTimes[i]),\\n                uint32(_endTimes[i]),\\n                currentTimestamp\\n            );\\n        }\\n\\n        return averageBalances;\\n    }\\n\\n    // @inheritdoc ERC20\\n    function _beforeTokenTransfer(address _from, address _to, uint256 _amount) internal override {\\n        if (_from == _to) {\\n            return;\\n        }\\n\\n        address _fromDelegate;\\n        if (_from != address(0)) {\\n            _fromDelegate = delegates[_from];\\n        }\\n\\n        address _toDelegate;\\n        if (_to != address(0)) {\\n            _toDelegate = delegates[_to];\\n        }\\n\\n        _transferTwab(_fromDelegate, _toDelegate, _amount);\\n    }\\n\\n    /// @notice Transfers the given TWAB balance from one user to another\\n    /// @param _from The user to transfer the balance from.  May be zero in the event of a mint.\\n    /// @param _to The user to transfer the balance to.  May be zero in the event of a burn.\\n    /// @param _amount The balance that is being transferred.\\n    function _transferTwab(address _from, address _to, uint256 _amount) internal {\\n        // If we are transferring tokens from a delegated account to an undelegated account\\n        if (_from != address(0)) {\\n            _decreaseUserTwab(_from, _amount);\\n\\n            if (_to == address(0)) {\\n                _decreaseTotalSupplyTwab(_amount);\\n            }\\n        }\\n\\n        // If we are transferring tokens from an undelegated account to a delegated account\\n        if (_to != address(0)) {\\n            _increaseUserTwab(_to, _amount);\\n\\n            if (_from == address(0)) {\\n                _increaseTotalSupplyTwab(_amount);\\n            }\\n        }\\n    }\\n\\n    /**\\n     * @notice Increase `_to` TWAB balance.\\n     * @param _to Address of the delegate.\\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\\n     */\\n    function _increaseUserTwab(\\n        address _to,\\n        uint256 _amount\\n    ) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        TwabLib.Account storage _account = userTwabs[_to];\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        ) = TwabLib.increaseBalance(_account, _amount.toUint208(), uint32(block.timestamp));\\n\\n        _account.details = accountDetails;\\n\\n        if (isNew) {\\n            emit NewUserTwab(_to, twab);\\n        }\\n    }\\n\\n    /**\\n     * @notice Decrease `_to` TWAB balance.\\n     * @param _to Address of the delegate.\\n     * @param _amount Amount of tokens to be added to `_to` TWAB balance.\\n     */\\n    function _decreaseUserTwab(\\n        address _to,\\n        uint256 _amount\\n    ) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        TwabLib.Account storage _account = userTwabs[_to];\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        ) = TwabLib.decreaseBalance(\\n                _account,\\n                _amount.toUint208(),\\n                \\\"Ticket/twab-burn-lt-balance\\\",\\n                uint32(block.timestamp)\\n            );\\n\\n        _account.details = accountDetails;\\n\\n        if (isNew) {\\n            emit NewUserTwab(_to, twab);\\n        }\\n    }\\n\\n    /// @notice Decreases the total supply twab.  Should be called anytime a balance moves from delegated to undelegated\\n    /// @param _amount The amount to decrease the total by\\n    function _decreaseTotalSupplyTwab(uint256 _amount) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory tsTwab,\\n            bool tsIsNew\\n        ) = TwabLib.decreaseBalance(\\n                totalSupplyTwab,\\n                _amount.toUint208(),\\n                \\\"Ticket/burn-amount-exceeds-total-supply-twab\\\",\\n                uint32(block.timestamp)\\n            );\\n\\n        totalSupplyTwab.details = accountDetails;\\n\\n        if (tsIsNew) {\\n            emit NewTotalSupplyTwab(tsTwab);\\n        }\\n    }\\n\\n    /// @notice Increases the total supply twab.  Should be called anytime a balance moves from undelegated to delegated\\n    /// @param _amount The amount to increase the total by\\n    function _increaseTotalSupplyTwab(uint256 _amount) internal {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        (\\n            TwabLib.AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory _totalSupply,\\n            bool tsIsNew\\n        ) = TwabLib.increaseBalance(totalSupplyTwab, _amount.toUint208(), uint32(block.timestamp));\\n\\n        totalSupplyTwab.details = accountDetails;\\n\\n        if (tsIsNew) {\\n            emit NewTotalSupplyTwab(_totalSupply);\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x8a28b868583b1e04c4bcd8667b9e06309f94b4e854bcc7cdc7716fc396bd21b8\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 711,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)1576_storage)"
              },
              {
                "astId": 7135,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "userTwabs",
                "offset": 0,
                "slot": "6",
                "type": "t_mapping(t_address,t_struct(Account)9966_storage)"
              },
              {
                "astId": 7139,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "totalSupplyTwab",
                "offset": 0,
                "slot": "7",
                "type": "t_struct(Account)9966_storage"
              },
              {
                "astId": 7144,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "delegates",
                "offset": 0,
                "slot": "16777223",
                "type": "t_mapping(t_address,t_address)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Observation)9538_storage)16777215_storage": {
                "base": "t_struct(Observation)9538_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_mapping(t_address,t_address)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => address)",
                "numberOfBytes": "32",
                "value": "t_address"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_struct(Account)9966_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct TwabLib.Account)",
                "numberOfBytes": "32",
                "value": "t_struct(Account)9966_storage"
              },
              "t_mapping(t_address,t_struct(Counter)1576_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)1576_storage"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_struct(Account)9966_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.Account",
                "members": [
                  {
                    "astId": 9960,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "details",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_struct(AccountDetails)9957_storage"
                  },
                  {
                    "astId": 9965,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "twabs",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_struct(Observation)9538_storage)16777215_storage"
                  }
                ],
                "numberOfBytes": "536870912"
              },
              "t_struct(AccountDetails)9957_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.AccountDetails",
                "members": [
                  {
                    "astId": 9952,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "balance",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint208"
                  },
                  {
                    "astId": 9954,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "nextTwabIndex",
                    "offset": 26,
                    "slot": "0",
                    "type": "t_uint24"
                  },
                  {
                    "astId": 9956,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "cardinality",
                    "offset": 29,
                    "slot": "0",
                    "type": "t_uint24"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Counter)1576_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 1575,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Observation)9538_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 9535,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 9537,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "timestamp",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint208": {
                "encoding": "inplace",
                "label": "uint208",
                "numberOfBytes": "26"
              },
              "t_uint224": {
                "encoding": "inplace",
                "label": "uint224",
                "numberOfBytes": "28"
              },
              "t_uint24": {
                "encoding": "inplace",
                "label": "uint24",
                "numberOfBytes": "3"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              }
            }
          },
          "userdoc": {
            "events": {
              "Delegated(address,address)": {
                "notice": "Emitted when TWAB balance has been delegated to another user."
              },
              "NewTotalSupplyTwab((uint224,uint32))": {
                "notice": "Emitted when a new total supply TWAB has been recorded."
              },
              "NewUserTwab(address,(uint224,uint32))": {
                "notice": "Emitted when a new TWAB has been recorded."
              },
              "TicketInitialized(string,string,uint8,address)": {
                "notice": "Emitted when ticket is initialized."
              }
            },
            "kind": "user",
            "methods": {
              "constructor": {
                "notice": "Constructs Ticket with passed parameters."
              },
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerDelegateFor(address,address)": {
                "notice": "Allows the controller to delegate on a users behalf."
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              },
              "decimals()": {
                "notice": "Returns the ERC20 controlled token decimals."
              },
              "delegate(address)": {
                "notice": "Delegate time-weighted average balances to an alternative address."
              },
              "delegateOf(address)": {
                "notice": "Retrieves the address of the delegate to whom `user` has delegated their tickets."
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "notice": "Allows a user to delegate via signature"
              },
              "getAccountDetails(address)": {
                "notice": "Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality."
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "notice": "Retrieves the average balance held by a user for a given time frame."
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "notice": "Retrieves the average balances held by a user for a given time frame."
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "notice": "Retrieves the average total supply balance for a set of given time frames."
              },
              "getBalanceAt(address,uint64)": {
                "notice": "Retrieves `user` TWAB balance."
              },
              "getBalancesAt(address,uint64[])": {
                "notice": "Retrieves `user` TWAB balances."
              },
              "getTotalSuppliesAt(uint64[])": {
                "notice": "Retrieves the total supply TWAB balance between the given timestamps range."
              },
              "getTotalSupplyAt(uint64)": {
                "notice": "Retrieves the total supply TWAB balance at the given timestamp."
              },
              "getTwab(address,uint16)": {
                "notice": "Gets the TWAB at a specific index for a user."
              }
            },
            "notice": "The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality. The average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The historic total supply is available as well as the average total supply between two timestamps. A user may \"delegate\" their balance; increasing another user's historic balance while retaining their tokens.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol": {
        "ICompLike": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "delegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "getCurrentVotes",
              "outputs": [
                {
                  "internalType": "uint96",
                  "name": "",
                  "type": "uint96"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
              },
              "approve(address,uint256)": {
                "details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "delegate(address)": "5c19a95c",
              "getCurrentVotes(address)": "b4b5ea57",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getCurrentVotes\",\"outputs\":[{\"internalType\":\"uint96\",\"name\":\"\",\"type\":\"uint96\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":\"ICompLike\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol": {
        "IControlledToken": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
              },
              "approve(address,uint256)": {
                "details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "operator": "Address of the operator performing the burn action via the controller contract",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "amount": "Amount of tokens to mint",
                  "user": "Address of the receiver of the minted tokens"
                }
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              }
            },
            "title": "IControlledToken",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerMint(address,uint256)": "5d7b0758",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"operator\":\"Address of the operator performing the burn action via the controller contract\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"amount\":\"Amount of tokens to mint\",\"user\":\"Address of the receiver of the minted tokens\"}},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"title\":\"IControlledToken\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"}},\"notice\":\"ERC20 Tokens with a controller for minting & burning.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":\"IControlledToken\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              }
            },
            "notice": "ERC20 Tokens with a controller for minting & burning.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol": {
        "IDrawBeacon": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "drawPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "BeaconPeriodSecondsUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint64",
                  "name": "startedAt",
                  "type": "uint64"
                }
              ],
              "name": "BeaconPeriodStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "DrawBufferUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawCancelled",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "randomNumber",
                  "type": "uint256"
                }
              ],
              "name": "DrawCompleted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "rngRequestId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngLockBlock",
                  "type": "uint32"
                }
              ],
              "name": "DrawStarted",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract RNGInterface",
                  "name": "rngService",
                  "type": "address"
                }
              ],
              "name": "RngServiceUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint32",
                  "name": "rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "RngTimeoutSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "beaconPeriodEndAt",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "beaconPeriodRemainingSeconds",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "time",
                  "type": "uint64"
                }
              ],
              "name": "calculateNextBeaconPeriodStartTime",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canCompleteDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "canStartDraw",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "cancelDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "completeDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngLockBlock",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLastRngRequestId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isBeaconPeriodOver",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngCompleted",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngRequested",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "isRngTimedOut",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "beaconPeriodSeconds",
                  "type": "uint32"
                }
              ],
              "name": "setBeaconPeriodSeconds",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "newDrawBuffer",
                  "type": "address"
                }
              ],
              "name": "setDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract RNGInterface",
                  "name": "rngService",
                  "type": "address"
                }
              ],
              "name": "setRngService",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "rngTimeout",
                  "type": "uint32"
                }
              ],
              "name": "setRngTimeout",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "startDraw",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "BeaconPeriodSecondsUpdated(uint32)": {
                "params": {
                  "drawPeriodSeconds": "Time between draw"
                }
              },
              "BeaconPeriodStarted(uint64)": {
                "params": {
                  "startedAt": "Start timestamp"
                }
              },
              "DrawBufferUpdated(address)": {
                "params": {
                  "newDrawBuffer": "The new DrawBuffer address"
                }
              },
              "DrawCancelled(uint32,uint32)": {
                "params": {
                  "rngLockBlock": "Block when draw becomes invalid",
                  "rngRequestId": "draw id"
                }
              },
              "DrawCompleted(uint256)": {
                "params": {
                  "randomNumber": "Random number generated from draw"
                }
              },
              "DrawStarted(uint32,uint32)": {
                "params": {
                  "rngLockBlock": "Block when draw becomes invalid",
                  "rngRequestId": "draw id"
                }
              },
              "RngServiceUpdated(address)": {
                "params": {
                  "rngService": "RNG service address"
                }
              },
              "RngTimeoutSet(uint32)": {
                "params": {
                  "rngTimeout": "draw timeout param in seconds"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "beaconPeriodEndAt()": {
                "returns": {
                  "_0": "The timestamp at which the beacon period ends."
                }
              },
              "beaconPeriodRemainingSeconds()": {
                "returns": {
                  "_0": "The number of seconds remaining until the beacon period can be complete."
                }
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "params": {
                  "time": "The timestamp to use as the current time"
                },
                "returns": {
                  "_0": "The timestamp at which the next beacon period would start"
                }
              },
              "canCompleteDraw()": {
                "returns": {
                  "_0": "True if a Draw can be completed, false otherwise."
                }
              },
              "canStartDraw()": {
                "returns": {
                  "_0": "True if a Draw can be started, false otherwise."
                }
              },
              "getLastRngLockBlock()": {
                "returns": {
                  "_0": "The block number that the RNG request is locked to"
                }
              },
              "getLastRngRequestId()": {
                "returns": {
                  "_0": "The current Request ID"
                }
              },
              "isBeaconPeriodOver()": {
                "returns": {
                  "_0": "True if the beacon period is over, false otherwise"
                }
              },
              "isRngCompleted()": {
                "returns": {
                  "_0": "True if a random number request has completed, false otherwise."
                }
              },
              "isRngRequested()": {
                "returns": {
                  "_0": "True if a random number has been requested, false otherwise."
                }
              },
              "isRngTimedOut()": {
                "returns": {
                  "_0": "True if a random number request has timed out, false otherwise."
                }
              },
              "setBeaconPeriodSeconds(uint32)": {
                "params": {
                  "beaconPeriodSeconds": "The new beacon period in seconds.  Must be greater than zero."
                }
              },
              "setDrawBuffer(address)": {
                "details": "All subsequent Draw requests/completions will be pushed to the new DrawBuffer.",
                "params": {
                  "newDrawBuffer": "DrawBuffer address"
                },
                "returns": {
                  "_0": "DrawBuffer"
                }
              },
              "setRngService(address)": {
                "params": {
                  "rngService": "The address of the new RNG service interface"
                }
              },
              "setRngTimeout(uint32)": {
                "params": {
                  "rngTimeout": "The RNG request timeout in seconds."
                }
              },
              "startDraw()": {
                "details": "The RNG-Request-Fee is expected to be held within this contract before calling this function"
              }
            },
            "title": "IDrawBeacon",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "beaconPeriodEndAt()": "a104fd79",
              "beaconPeriodRemainingSeconds()": "75e38f16",
              "calculateNextBeaconPeriodStartTime(uint64)": "a3ae35ab",
              "canCompleteDraw()": "e4a75bb8",
              "canStartDraw()": "0996f6e1",
              "cancelDraw()": "412a616a",
              "completeDraw()": "0bdeecbd",
              "getLastRngLockBlock()": "6bea5344",
              "getLastRngRequestId()": "2a7ad609",
              "isBeaconPeriodOver()": "d1e77657",
              "isRngCompleted()": "4aba4f6b",
              "isRngRequested()": "111070e4",
              "isRngTimedOut()": "738bbea8",
              "setBeaconPeriodSeconds(uint32)": "919bead0",
              "setDrawBuffer(address)": "ab70d49c",
              "setRngService(address)": "7f4296d7",
              "setRngTimeout(uint32)": "5020ea56",
              "startDraw()": "2ae168a6"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"drawPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"BeaconPeriodSecondsUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint64\",\"name\":\"startedAt\",\"type\":\"uint64\"}],\"name\":\"BeaconPeriodStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"DrawBufferUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"randomNumber\",\"type\":\"uint256\"}],\"name\":\"DrawCompleted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"rngRequestId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngLockBlock\",\"type\":\"uint32\"}],\"name\":\"DrawStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract RNGInterface\",\"name\":\"rngService\",\"type\":\"address\"}],\"name\":\"RngServiceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"rngTimeout\",\"type\":\"uint32\"}],\"name\":\"RngTimeoutSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"beaconPeriodEndAt\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"beaconPeriodRemainingSeconds\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"time\",\"type\":\"uint64\"}],\"name\":\"calculateNextBeaconPeriodStartTime\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canCompleteDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"canStartDraw\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cancelDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"completeDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngLockBlock\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLastRngRequestId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isBeaconPeriodOver\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngCompleted\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngRequested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"isRngTimedOut\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"name\":\"setBeaconPeriodSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"newDrawBuffer\",\"type\":\"address\"}],\"name\":\"setDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract RNGInterface\",\"name\":\"rngService\",\"type\":\"address\"}],\"name\":\"setRngService\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"rngTimeout\",\"type\":\"uint32\"}],\"name\":\"setRngTimeout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"startDraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"BeaconPeriodSecondsUpdated(uint32)\":{\"params\":{\"drawPeriodSeconds\":\"Time between draw\"}},\"BeaconPeriodStarted(uint64)\":{\"params\":{\"startedAt\":\"Start timestamp\"}},\"DrawBufferUpdated(address)\":{\"params\":{\"newDrawBuffer\":\"The new DrawBuffer address\"}},\"DrawCancelled(uint32,uint32)\":{\"params\":{\"rngLockBlock\":\"Block when draw becomes invalid\",\"rngRequestId\":\"draw id\"}},\"DrawCompleted(uint256)\":{\"params\":{\"randomNumber\":\"Random number generated from draw\"}},\"DrawStarted(uint32,uint32)\":{\"params\":{\"rngLockBlock\":\"Block when draw becomes invalid\",\"rngRequestId\":\"draw id\"}},\"RngServiceUpdated(address)\":{\"params\":{\"rngService\":\"RNG service address\"}},\"RngTimeoutSet(uint32)\":{\"params\":{\"rngTimeout\":\"draw timeout param in seconds\"}}},\"kind\":\"dev\",\"methods\":{\"beaconPeriodEndAt()\":{\"returns\":{\"_0\":\"The timestamp at which the beacon period ends.\"}},\"beaconPeriodRemainingSeconds()\":{\"returns\":{\"_0\":\"The number of seconds remaining until the beacon period can be complete.\"}},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"params\":{\"time\":\"The timestamp to use as the current time\"},\"returns\":{\"_0\":\"The timestamp at which the next beacon period would start\"}},\"canCompleteDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be completed, false otherwise.\"}},\"canStartDraw()\":{\"returns\":{\"_0\":\"True if a Draw can be started, false otherwise.\"}},\"getLastRngLockBlock()\":{\"returns\":{\"_0\":\"The block number that the RNG request is locked to\"}},\"getLastRngRequestId()\":{\"returns\":{\"_0\":\"The current Request ID\"}},\"isBeaconPeriodOver()\":{\"returns\":{\"_0\":\"True if the beacon period is over, false otherwise\"}},\"isRngCompleted()\":{\"returns\":{\"_0\":\"True if a random number request has completed, false otherwise.\"}},\"isRngRequested()\":{\"returns\":{\"_0\":\"True if a random number has been requested, false otherwise.\"}},\"isRngTimedOut()\":{\"returns\":{\"_0\":\"True if a random number request has timed out, false otherwise.\"}},\"setBeaconPeriodSeconds(uint32)\":{\"params\":{\"beaconPeriodSeconds\":\"The new beacon period in seconds.  Must be greater than zero.\"}},\"setDrawBuffer(address)\":{\"details\":\"All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\",\"params\":{\"newDrawBuffer\":\"DrawBuffer address\"},\"returns\":{\"_0\":\"DrawBuffer\"}},\"setRngService(address)\":{\"params\":{\"rngService\":\"The address of the new RNG service interface\"}},\"setRngTimeout(uint32)\":{\"params\":{\"rngTimeout\":\"The RNG request timeout in seconds.\"}},\"startDraw()\":{\"details\":\"The RNG-Request-Fee is expected to be held within this contract before calling this function\"}},\"title\":\"IDrawBeacon\",\"version\":1},\"userdoc\":{\"events\":{\"BeaconPeriodSecondsUpdated(uint32)\":{\"notice\":\"Emit when the drawPeriodSeconds is set.\"},\"BeaconPeriodStarted(uint64)\":{\"notice\":\"Emit when a draw has opened.\"},\"DrawBufferUpdated(address)\":{\"notice\":\"Emit when a new DrawBuffer has been set.\"},\"DrawCancelled(uint32,uint32)\":{\"notice\":\"Emit when a draw has been cancelled.\"},\"DrawCompleted(uint256)\":{\"notice\":\"Emit when a draw has been completed.\"},\"DrawStarted(uint32,uint32)\":{\"notice\":\"Emit when a draw has started.\"},\"RngServiceUpdated(address)\":{\"notice\":\"Emit when a RNG service address is set.\"},\"RngTimeoutSet(uint32)\":{\"notice\":\"Emit when a draw timeout param is set.\"}},\"kind\":\"user\",\"methods\":{\"beaconPeriodEndAt()\":{\"notice\":\"Returns the timestamp at which the beacon period ends\"},\"beaconPeriodRemainingSeconds()\":{\"notice\":\"Returns the number of seconds remaining until the beacon period can be complete.\"},\"calculateNextBeaconPeriodStartTime(uint64)\":{\"notice\":\"Calculates when the next beacon period will start.\"},\"canCompleteDraw()\":{\"notice\":\"Returns whether a Draw can be completed.\"},\"canStartDraw()\":{\"notice\":\"Returns whether a Draw can be started.\"},\"cancelDraw()\":{\"notice\":\"Can be called by anyone to cancel the draw request if the RNG has timed out.\"},\"completeDraw()\":{\"notice\":\"Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\"},\"getLastRngLockBlock()\":{\"notice\":\"Returns the block number that the current RNG request has been locked to.\"},\"getLastRngRequestId()\":{\"notice\":\"Returns the current RNG Request ID.\"},\"isBeaconPeriodOver()\":{\"notice\":\"Returns whether the beacon period is over\"},\"isRngCompleted()\":{\"notice\":\"Returns whether the random number request has completed.\"},\"isRngRequested()\":{\"notice\":\"Returns whether a random number has been requested\"},\"isRngTimedOut()\":{\"notice\":\"Returns whether the random number request has timed out.\"},\"setBeaconPeriodSeconds(uint32)\":{\"notice\":\"Allows the owner to set the beacon period in seconds.\"},\"setDrawBuffer(address)\":{\"notice\":\"Set global DrawBuffer variable.\"},\"setRngService(address)\":{\"notice\":\"Sets the RNG service that the Prize Strategy is connected to\"},\"setRngTimeout(uint32)\":{\"notice\":\"Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\"},\"startDraw()\":{\"notice\":\"Starts the Draw process by starting random number request. The previous beacon period must have ended.\"}},\"notice\":\"The DrawBeacon interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":\"IDrawBeacon\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "BeaconPeriodSecondsUpdated(uint32)": {
                "notice": "Emit when the drawPeriodSeconds is set."
              },
              "BeaconPeriodStarted(uint64)": {
                "notice": "Emit when a draw has opened."
              },
              "DrawBufferUpdated(address)": {
                "notice": "Emit when a new DrawBuffer has been set."
              },
              "DrawCancelled(uint32,uint32)": {
                "notice": "Emit when a draw has been cancelled."
              },
              "DrawCompleted(uint256)": {
                "notice": "Emit when a draw has been completed."
              },
              "DrawStarted(uint32,uint32)": {
                "notice": "Emit when a draw has started."
              },
              "RngServiceUpdated(address)": {
                "notice": "Emit when a RNG service address is set."
              },
              "RngTimeoutSet(uint32)": {
                "notice": "Emit when a draw timeout param is set."
              }
            },
            "kind": "user",
            "methods": {
              "beaconPeriodEndAt()": {
                "notice": "Returns the timestamp at which the beacon period ends"
              },
              "beaconPeriodRemainingSeconds()": {
                "notice": "Returns the number of seconds remaining until the beacon period can be complete."
              },
              "calculateNextBeaconPeriodStartTime(uint64)": {
                "notice": "Calculates when the next beacon period will start."
              },
              "canCompleteDraw()": {
                "notice": "Returns whether a Draw can be completed."
              },
              "canStartDraw()": {
                "notice": "Returns whether a Draw can be started."
              },
              "cancelDraw()": {
                "notice": "Can be called by anyone to cancel the draw request if the RNG has timed out."
              },
              "completeDraw()": {
                "notice": "Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
              },
              "getLastRngLockBlock()": {
                "notice": "Returns the block number that the current RNG request has been locked to."
              },
              "getLastRngRequestId()": {
                "notice": "Returns the current RNG Request ID."
              },
              "isBeaconPeriodOver()": {
                "notice": "Returns whether the beacon period is over"
              },
              "isRngCompleted()": {
                "notice": "Returns whether the random number request has completed."
              },
              "isRngRequested()": {
                "notice": "Returns whether a random number has been requested"
              },
              "isRngTimedOut()": {
                "notice": "Returns whether the random number request has timed out."
              },
              "setBeaconPeriodSeconds(uint32)": {
                "notice": "Allows the owner to set the beacon period in seconds."
              },
              "setDrawBuffer(address)": {
                "notice": "Set global DrawBuffer variable."
              },
              "setRngService(address)": {
                "notice": "Sets the RNG service that the Prize Strategy is connected to"
              },
              "setRngTimeout(uint32)": {
                "notice": "Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked."
              },
              "startDraw()": {
                "notice": "Starts the Draw process by starting random number request. The previous beacon period must have ended."
              }
            },
            "notice": "The DrawBeacon interface.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol": {
        "IDrawBuffer": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "DrawSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getDraws",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestDraw",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "pushDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "newDraw",
                  "type": "tuple"
                }
              ],
              "name": "setDraw",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))": {
                "params": {
                  "draw": "The Draw struct",
                  "drawId": "Draw id"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getDraw(uint32)": {
                "details": "Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawId": "Draw.drawId"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getDrawCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.",
                "returns": {
                  "_0": "Number of Draws held in the draw ring buffer."
                }
              },
              "getDraws(uint32[])": {
                "details": "Read multiple Draws using each drawId to calculate position in the draws ring buffer.",
                "params": {
                  "drawIds": "Array of drawIds"
                },
                "returns": {
                  "_0": "IDrawBeacon.Draw[]"
                }
              },
              "getNewestDraw()": {
                "details": "Uses the nextDrawIndex to calculate the most recently added Draw.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "getOldestDraw()": {
                "details": "Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.",
                "returns": {
                  "_0": "IDrawBeacon.Draw"
                }
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Push new draw onto draws history via authorized manager or owner.",
                "params": {
                  "draw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "details": "Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.",
                "params": {
                  "newDraw": "IDrawBeacon.Draw"
                },
                "returns": {
                  "_0": "Draw.drawId"
                }
              }
            },
            "title": "IDrawBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getBufferCardinality()": "caeef7ec",
              "getDraw(uint32)": "83c34aaf",
              "getDrawCount()": "c4df5fed",
              "getDraws(uint32[])": "d0bb78f3",
              "getNewestDraw()": "0edb1d2e",
              "getOldestDraw()": "648b1b4f",
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": "089eb925",
              "setDraw((uint256,uint32,uint64,uint64,uint32))": "d7bcb86b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"DrawSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getDraws\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestDraw\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"pushDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"newDraw\",\"type\":\"tuple\"}],\"name\":\"setDraw\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))\":{\"params\":{\"draw\":\"The Draw struct\",\"drawId\":\"Draw id\"}}},\"kind\":\"dev\",\"methods\":{\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getDraw(uint32)\":{\"details\":\"Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawId\":\"Draw.drawId\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getDrawCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestDraw index + 1.\",\"returns\":{\"_0\":\"Number of Draws held in the draw ring buffer.\"}},\"getDraws(uint32[])\":{\"details\":\"Read multiple Draws using each drawId to calculate position in the draws ring buffer.\",\"params\":{\"drawIds\":\"Array of drawIds\"},\"returns\":{\"_0\":\"IDrawBeacon.Draw[]\"}},\"getNewestDraw()\":{\"details\":\"Uses the nextDrawIndex to calculate the most recently added Draw.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"getOldestDraw()\":{\"details\":\"Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\",\"returns\":{\"_0\":\"IDrawBeacon.Draw\"}},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Push new draw onto draws history via authorized manager or owner.\",\"params\":{\"draw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"details\":\"Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\",\"params\":{\"newDraw\":\"IDrawBeacon.Draw\"},\"returns\":{\"_0\":\"Draw.drawId\"}}},\"title\":\"IDrawBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Emit when a new draw has been created.\"}},\"kind\":\"user\",\"methods\":{\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getDraw(uint32)\":{\"notice\":\"Read a Draw from the draws ring buffer.\"},\"getDrawCount()\":{\"notice\":\"Gets the number of Draws held in the draw ring buffer.\"},\"getDraws(uint32[])\":{\"notice\":\"Read multiple Draws from the draws ring buffer.\"},\"getNewestDraw()\":{\"notice\":\"Read newest Draw from draws ring buffer.\"},\"getOldestDraw()\":{\"notice\":\"Read oldest Draw from draws ring buffer.\"},\"pushDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Push Draw onto draws ring buffer history.\"},\"setDraw((uint256,uint32,uint64,uint64,uint32))\":{\"notice\":\"Set existing Draw in draws ring buffer with new parameters.\"}},\"notice\":\"The DrawBuffer interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":\"IDrawBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "DrawSet(uint32,(uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Emit when a new draw has been created."
              }
            },
            "kind": "user",
            "methods": {
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getDraw(uint32)": {
                "notice": "Read a Draw from the draws ring buffer."
              },
              "getDrawCount()": {
                "notice": "Gets the number of Draws held in the draw ring buffer."
              },
              "getDraws(uint32[])": {
                "notice": "Read multiple Draws from the draws ring buffer."
              },
              "getNewestDraw()": {
                "notice": "Read newest Draw from draws ring buffer."
              },
              "getOldestDraw()": {
                "notice": "Read oldest Draw from draws ring buffer."
              },
              "pushDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Push Draw onto draws ring buffer history."
              },
              "setDraw((uint256,uint32,uint64,uint64,uint32))": {
                "notice": "Set existing Draw in draws ring buffer with new parameters."
              }
            },
            "notice": "The DrawBuffer interface.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol": {
        "IDrawCalculator": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "prizeDistributionBuffer",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract PrizeDistributor",
                  "name": "prizeDistributor",
                  "type": "address"
                }
              ],
              "name": "PrizeDistributorSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getNormalizedBalancesForDrawIds",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "params": {
                  "data": "The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.",
                  "drawIds": "drawId array for which to calculate prize amounts for.",
                  "user": "User for which to calculate prize amount."
                },
                "returns": {
                  "_0": "List of awardable prize amounts ordered by drawId."
                }
              },
              "getDrawBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "params": {
                  "drawIds": "The drawsId to consider",
                  "user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionBuffer()": {
                "returns": {
                  "_0": "IDrawBuffer"
                }
              }
            },
            "title": "PoolTogether V4 IDrawCalculator",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "calculate(address,uint32[],bytes)": "aaca392e",
              "getDrawBuffer()": "4019f2d6",
              "getNormalizedBalancesForDrawIds(address,uint32[])": "8045fbcf",
              "getPrizeDistributionBuffer()": "bd97a252"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"prizeDistributionBuffer\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract PrizeDistributor\",\"name\":\"prizeDistributor\",\"type\":\"address\"}],\"name\":\"PrizeDistributorSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getNormalizedBalancesForDrawIds\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"params\":{\"data\":\"The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\",\"drawIds\":\"drawId array for which to calculate prize amounts for.\",\"user\":\"User for which to calculate prize amount.\"},\"returns\":{\"_0\":\"List of awardable prize amounts ordered by drawId.\"}},\"getDrawBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"params\":{\"drawIds\":\"The drawsId to consider\",\"user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionBuffer()\":{\"returns\":{\"_0\":\"IDrawBuffer\"}}},\"title\":\"PoolTogether V4 IDrawCalculator\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is initialized\"},\"PrizeDistributorSet(address)\":{\"notice\":\"Emitted when the prizeDistributor is set/updated\"}},\"kind\":\"user\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"notice\":\"Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\"},\"getDrawBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"},\"getNormalizedBalancesForDrawIds(address,uint32[])\":{\"notice\":\"Returns a users balances expressed as a fraction of the total supply over time.\"},\"getPrizeDistributionBuffer()\":{\"notice\":\"Read global DrawBuffer variable.\"}},\"notice\":\"The DrawCalculator interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":\"IDrawCalculator\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is initialized"
              },
              "PrizeDistributorSet(address)": {
                "notice": "Emitted when the prizeDistributor is set/updated"
              }
            },
            "kind": "user",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "notice": "Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor."
              },
              "getDrawBuffer()": {
                "notice": "Read global DrawBuffer variable."
              },
              "getNormalizedBalancesForDrawIds(address,uint32[])": {
                "notice": "Returns a users balances expressed as a fraction of the total supply over time."
              },
              "getPrizeDistributionBuffer()": {
                "notice": "Read global DrawBuffer variable."
              }
            },
            "notice": "The DrawCalculator interface.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol": {
        "IPrizeDistributionBuffer": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "PrizeDistributionSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getBufferCardinality",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeDistributionCount",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getPrizeDistributions",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "pushPrizeDistribution",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "draw",
                  "type": "tuple"
                }
              ],
              "name": "setPrizeDistribution",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "params": {
                  "drawId": "Draw id",
                  "prizeDistribution": "IPrizeDistributionBuffer.PrizeDistribution"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getBufferCardinality()": {
                "returns": {
                  "_0": "Ring buffer cardinality"
                }
              },
              "getNewestPrizeDistribution()": {
                "details": "Uses nextDrawIndex to calculate the most recently added PrizeDistribution.",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getOldestPrizeDistribution()": {
                "details": "Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId",
                "returns": {
                  "drawId": "drawId",
                  "prizeDistribution": "prizeDistribution"
                }
              },
              "getPrizeDistribution(uint32)": {
                "params": {
                  "drawId": "drawId"
                },
                "returns": {
                  "_0": "prizeDistribution"
                }
              },
              "getPrizeDistributionCount()": {
                "details": "If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.",
                "returns": {
                  "_0": "Number of PrizeDistributions stored in the prize distributions ring buffer."
                }
              },
              "getPrizeDistributions(uint32[])": {
                "params": {
                  "drawIds": "drawIds to get PrizeDistribution for"
                },
                "returns": {
                  "_0": "prizeDistributionList"
                }
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Only callable by the owner or manager",
                "params": {
                  "drawId": "Draw ID linked to PrizeDistribution parameters",
                  "prizeDistribution": "PrizeDistribution parameters struct"
                }
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.",
                "returns": {
                  "_0": "drawId"
                }
              }
            },
            "title": "IPrizeDistributionBuffer",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getBufferCardinality()": "caeef7ec",
              "getNewestPrizeDistribution()": "24c21446",
              "getOldestPrizeDistribution()": "2439093a",
              "getPrizeDistribution(uint32)": "3cd8e2d5",
              "getPrizeDistributionCount()": "21e98ad9",
              "getPrizeDistributions(uint32[])": "d30a5daf",
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "1124e1dc",
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "ce336ce9"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"PrizeDistributionSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getBufferCardinality\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeDistributionCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getPrizeDistributions\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"pushPrizeDistribution\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"draw\",\"type\":\"tuple\"}],\"name\":\"setPrizeDistribution\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"params\":{\"drawId\":\"Draw id\",\"prizeDistribution\":\"IPrizeDistributionBuffer.PrizeDistribution\"}}},\"kind\":\"dev\",\"methods\":{\"getBufferCardinality()\":{\"returns\":{\"_0\":\"Ring buffer cardinality\"}},\"getNewestPrizeDistribution()\":{\"details\":\"Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getOldestPrizeDistribution()\":{\"details\":\"Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\",\"returns\":{\"drawId\":\"drawId\",\"prizeDistribution\":\"prizeDistribution\"}},\"getPrizeDistribution(uint32)\":{\"params\":{\"drawId\":\"drawId\"},\"returns\":{\"_0\":\"prizeDistribution\"}},\"getPrizeDistributionCount()\":{\"details\":\"If no Draws have been pushed, it will return 0.If the ring buffer is full, it will return the cardinality.Otherwise, it will return the NewestPrizeDistribution index + 1.\",\"returns\":{\"_0\":\"Number of PrizeDistributions stored in the prize distributions ring buffer.\"}},\"getPrizeDistributions(uint32[])\":{\"params\":{\"drawIds\":\"drawIds to get PrizeDistribution for\"},\"returns\":{\"_0\":\"prizeDistributionList\"}},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Only callable by the owner or manager\",\"params\":{\"drawId\":\"Draw ID linked to PrizeDistribution parameters\",\"prizeDistribution\":\"PrizeDistribution parameters struct\"}},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\" fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update the invalid parameters with correct parameters.\",\"returns\":{\"_0\":\"drawId\"}}},\"title\":\"IPrizeDistributionBuffer\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Emit when PrizeDistribution is set.\"}},\"kind\":\"user\",\"methods\":{\"getBufferCardinality()\":{\"notice\":\"Read a ring buffer cardinality\"},\"getNewestPrizeDistribution()\":{\"notice\":\"Read newest PrizeDistribution from prize distributions ring buffer.\"},\"getOldestPrizeDistribution()\":{\"notice\":\"Read oldest PrizeDistribution from prize distributions ring buffer.\"},\"getPrizeDistribution(uint32)\":{\"notice\":\"Gets the PrizeDistributionBuffer for a drawId\"},\"getPrizeDistributionCount()\":{\"notice\":\"Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\"},\"getPrizeDistributions(uint32[])\":{\"notice\":\"Gets PrizeDistribution list from array of drawIds\"},\"pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Adds new PrizeDistribution record to ring buffer storage.\"},\"setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\"}},\"notice\":\"The PrizeDistributionBuffer interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":\"IPrizeDistributionBuffer\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "PrizeDistributionSet(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Emit when PrizeDistribution is set."
              }
            },
            "kind": "user",
            "methods": {
              "getBufferCardinality()": {
                "notice": "Read a ring buffer cardinality"
              },
              "getNewestPrizeDistribution()": {
                "notice": "Read newest PrizeDistribution from prize distributions ring buffer."
              },
              "getOldestPrizeDistribution()": {
                "notice": "Read oldest PrizeDistribution from prize distributions ring buffer."
              },
              "getPrizeDistribution(uint32)": {
                "notice": "Gets the PrizeDistributionBuffer for a drawId"
              },
              "getPrizeDistributionCount()": {
                "notice": "Gets the number of PrizeDistributions stored in the prize distributions ring buffer."
              },
              "getPrizeDistributions(uint32[])": {
                "notice": "Gets PrizeDistribution list from array of drawIds"
              },
              "pushPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Adds new PrizeDistribution record to ring buffer storage."
              },
              "setPrizeDistribution(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage."
              }
            },
            "notice": "The PrizeDistributionBuffer interface.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol": {
        "IPrizeDistributor": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "payout",
                  "type": "uint256"
                }
              ],
              "name": "ClaimedDraw",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculator",
                  "name": "calculator",
                  "type": "address"
                }
              ],
              "name": "DrawCalculatorSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "ERC20Withdrawn",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "TokenSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "claim",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getDrawPayoutBalanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "newCalculator",
                  "type": "address"
                }
              ],
              "name": "setDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawERC20",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "ClaimedDraw(address,uint32,uint256)": {
                "params": {
                  "drawId": "Draw id that was paid out",
                  "payout": "Payout for draw",
                  "user": "User address receiving draw claim payouts"
                }
              },
              "DrawCalculatorSet(address)": {
                "params": {
                  "calculator": "DrawCalculator address"
                }
              },
              "ERC20Withdrawn(address,address,uint256)": {
                "params": {
                  "amount": "Amount of tokens transferred.",
                  "to": "Address that received funds.",
                  "token": "ERC20 token transferred."
                }
              },
              "TokenSet(address)": {
                "params": {
                  "token": "Token address"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "details": "The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \"optimal\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.",
                "params": {
                  "data": "The data to pass to the draw calculator",
                  "drawIds": "Draw IDs from global DrawBuffer reference",
                  "user": "Address of user to claim awards for. Does NOT need to be msg.sender"
                },
                "returns": {
                  "_0": "Total claim payout. May include calcuations from multiple draws."
                }
              },
              "getDrawCalculator()": {
                "returns": {
                  "_0": "IDrawCalculator"
                }
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "params": {
                  "drawId": "Draw ID",
                  "user": "User address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "setDrawCalculator(address)": {
                "params": {
                  "newCalculator": "DrawCalculator address"
                },
                "returns": {
                  "_0": "New DrawCalculator address"
                }
              },
              "withdrawERC20(address,address,uint256)": {
                "details": "Only callable by contract owner.",
                "params": {
                  "amount": "Amount of tokens to transfer.",
                  "to": "Recipient of the tokens.",
                  "token": "ERC20 token to transfer."
                },
                "returns": {
                  "_0": "true if operation is successful."
                }
              }
            },
            "title": "IPrizeDistributor",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "claim(address,uint32[],bytes)": "bb7d4e2d",
              "getDrawCalculator()": "2d680cfa",
              "getDrawPayoutBalanceOf(address,uint32)": "b7f892d1",
              "getToken()": "21df0da7",
              "setDrawCalculator(address)": "454a8140",
              "withdrawERC20(address,address,uint256)": "44004cc1"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"ClaimedDraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawCalculator\",\"name\":\"calculator\",\"type\":\"address\"}],\"name\":\"DrawCalculatorSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"ERC20Withdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"TokenSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"claim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getDrawPayoutBalanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"newCalculator\",\"type\":\"address\"}],\"name\":\"setDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawERC20\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"ClaimedDraw(address,uint32,uint256)\":{\"params\":{\"drawId\":\"Draw id that was paid out\",\"payout\":\"Payout for draw\",\"user\":\"User address receiving draw claim payouts\"}},\"DrawCalculatorSet(address)\":{\"params\":{\"calculator\":\"DrawCalculator address\"}},\"ERC20Withdrawn(address,address,uint256)\":{\"params\":{\"amount\":\"Amount of tokens transferred.\",\"to\":\"Address that received funds.\",\"token\":\"ERC20 token transferred.\"}},\"TokenSet(address)\":{\"params\":{\"token\":\"Token address\"}}},\"kind\":\"dev\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"details\":\"The claim function is public and any wallet may execute claim on behalf of another user. Prizes are always paid out to the designated user account and not the caller (msg.sender). Claiming prizes is not limited to a single transaction. Reclaiming can be executed subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The payout difference for the new claim is calculated during the award process and transfered to user.\",\"params\":{\"data\":\"The data to pass to the draw calculator\",\"drawIds\":\"Draw IDs from global DrawBuffer reference\",\"user\":\"Address of user to claim awards for. Does NOT need to be msg.sender\"},\"returns\":{\"_0\":\"Total claim payout. May include calcuations from multiple draws.\"}},\"getDrawCalculator()\":{\"returns\":{\"_0\":\"IDrawCalculator\"}},\"getDrawPayoutBalanceOf(address,uint32)\":{\"params\":{\"drawId\":\"Draw ID\",\"user\":\"User address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"setDrawCalculator(address)\":{\"params\":{\"newCalculator\":\"DrawCalculator address\"},\"returns\":{\"_0\":\"New DrawCalculator address\"}},\"withdrawERC20(address,address,uint256)\":{\"details\":\"Only callable by contract owner.\",\"params\":{\"amount\":\"Amount of tokens to transfer.\",\"to\":\"Recipient of the tokens.\",\"token\":\"ERC20 token to transfer.\"},\"returns\":{\"_0\":\"true if operation is successful.\"}}},\"title\":\"IPrizeDistributor\",\"version\":1},\"userdoc\":{\"events\":{\"ClaimedDraw(address,uint32,uint256)\":{\"notice\":\"Emit when user has claimed token from the PrizeDistributor.\"},\"DrawCalculatorSet(address)\":{\"notice\":\"Emit when DrawCalculator is set.\"},\"ERC20Withdrawn(address,address,uint256)\":{\"notice\":\"Emit when ERC20 tokens are withdrawn.\"},\"TokenSet(address)\":{\"notice\":\"Emit when Token is set.\"}},\"kind\":\"user\",\"methods\":{\"claim(address,uint32[],bytes)\":{\"notice\":\"Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address is used as the \\\"seed\\\" phrase to generate random numbers.\"},\"getDrawCalculator()\":{\"notice\":\"Read global DrawCalculator address.\"},\"getDrawPayoutBalanceOf(address,uint32)\":{\"notice\":\"Get the amount that a user has already been paid out for a draw\"},\"getToken()\":{\"notice\":\"Read global Ticket address.\"},\"setDrawCalculator(address)\":{\"notice\":\"Sets DrawCalculator reference contract.\"},\"withdrawERC20(address,address,uint256)\":{\"notice\":\"Transfer ERC20 tokens out of contract to recipient address.\"}},\"notice\":\"The PrizeDistributor interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":\"IPrizeDistributor\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "ClaimedDraw(address,uint32,uint256)": {
                "notice": "Emit when user has claimed token from the PrizeDistributor."
              },
              "DrawCalculatorSet(address)": {
                "notice": "Emit when DrawCalculator is set."
              },
              "ERC20Withdrawn(address,address,uint256)": {
                "notice": "Emit when ERC20 tokens are withdrawn."
              },
              "TokenSet(address)": {
                "notice": "Emit when Token is set."
              }
            },
            "kind": "user",
            "methods": {
              "claim(address,uint32[],bytes)": {
                "notice": "Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address is used as the \"seed\" phrase to generate random numbers."
              },
              "getDrawCalculator()": {
                "notice": "Read global DrawCalculator address."
              },
              "getDrawPayoutBalanceOf(address,uint32)": {
                "notice": "Get the amount that a user has already been paid out for a draw"
              },
              "getToken()": {
                "notice": "Read global Ticket address."
              },
              "setDrawCalculator(address)": {
                "notice": "Sets DrawCalculator reference contract."
              },
              "withdrawERC20(address,address,uint256)": {
                "notice": "Transfer ERC20 tokens out of contract to recipient address."
              }
            },
            "notice": "The PrizeDistributor interface.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol": {
        "IPrizePool": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "Awarded(address,address,uint256)": {
                "details": "Event emitted when interest is awarded to a winner"
              },
              "AwardedExternalERC20(address,address,uint256)": {
                "details": "Event emitted when external ERC20s are awarded to a winner"
              },
              "AwardedExternalERC721(address,address,uint256[])": {
                "details": "Event emitted when external ERC721s are awarded to a winner"
              },
              "BalanceCapSet(uint256)": {
                "details": "Event emitted when the Balance Cap is set"
              },
              "ControlledTokenAdded(address)": {
                "details": "Event emitted when controlled token is added"
              },
              "Deposited(address,address,address,uint256)": {
                "details": "Event emitted when assets are deposited"
              },
              "ErrorAwardingExternalERC721(bytes)": {
                "details": "Emitted when there was an error thrown awarding an External ERC721"
              },
              "LiquidityCapSet(uint256)": {
                "details": "Event emitted when the Liquidity Cap is set"
              },
              "PrizeStrategySet(address)": {
                "details": "Event emitted when the Prize Strategy is set"
              },
              "TicketSet(address)": {
                "details": "Event emitted when the Ticket is set"
              },
              "TransferredExternalERC20(address,address,uint256)": {
                "details": "Event emitted when external ERC20s are transferred out"
              },
              "Withdrawal(address,address,address,uint256,uint256)": {
                "details": "Event emitted when assets are withdrawn"
              }
            },
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "compLikeDelegate(address,address)": "2f7627e3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "isControlled(address)": "78b3d327",
              "setBalanceCap(uint256)": "aec9c307",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "withdrawFrom(address,uint256)": "9470b0bd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Awarded(address,address,uint256)\":{\"details\":\"Event emitted when interest is awarded to a winner\"},\"AwardedExternalERC20(address,address,uint256)\":{\"details\":\"Event emitted when external ERC20s are awarded to a winner\"},\"AwardedExternalERC721(address,address,uint256[])\":{\"details\":\"Event emitted when external ERC721s are awarded to a winner\"},\"BalanceCapSet(uint256)\":{\"details\":\"Event emitted when the Balance Cap is set\"},\"ControlledTokenAdded(address)\":{\"details\":\"Event emitted when controlled token is added\"},\"Deposited(address,address,address,uint256)\":{\"details\":\"Event emitted when assets are deposited\"},\"ErrorAwardingExternalERC721(bytes)\":{\"details\":\"Emitted when there was an error thrown awarding an External ERC721\"},\"LiquidityCapSet(uint256)\":{\"details\":\"Event emitted when the Liquidity Cap is set\"},\"PrizeStrategySet(address)\":{\"details\":\"Event emitted when the Prize Strategy is set\"},\"TicketSet(address)\":{\"details\":\"Event emitted when the Ticket is set\"},\"TransferredExternalERC20(address,address,uint256)\":{\"details\":\"Event emitted when external ERC20s are transferred out\"},\"Withdrawal(address,address,address,uint256,uint256)\":{\"details\":\"Event emitted when assets are withdrawn\"}},\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":\"IPrizePool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0x1dd613819255c4af91347b88cd156724df2a594c909bd9d2207bebc560a254fa\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol": {
        "IPrizeSplit": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "prizeStrategySplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "PrizeSplitAwarded(address,uint256,address)": {
                "params": {
                  "prizeAwarded": "Awarded prize amount",
                  "token": "Token address",
                  "user": "User address being awarded"
                }
              },
              "PrizeSplitRemoved(uint256)": {
                "details": "Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.",
                "params": {
                  "target": "Index of a previously active prize split config"
                }
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "details": "Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.",
                "params": {
                  "index": "Index of prize split in the prizeSplts array",
                  "percentage": "Percentage of prize split. Must be between 0 and 1000 for single decimal precision",
                  "target": "Address of prize split recipient"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              }
            },
            "title": "Abstract prize split contract for adding unique award distribution to static addresses.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"prizeStrategySplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"PrizeSplitAwarded(address,uint256,address)\":{\"params\":{\"prizeAwarded\":\"Awarded prize amount\",\"token\":\"Token address\",\"user\":\"User address being awarded\"}},\"PrizeSplitRemoved(uint256)\":{\"details\":\"Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\",\"params\":{\"target\":\"Index of a previously active prize split config\"}},\"PrizeSplitSet(address,uint16,uint256)\":{\"details\":\"Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\",\"params\":{\"index\":\"Index of prize split in the prizeSplts array\",\"percentage\":\"Percentage of prize split. Must be between 0 and 1000 for single decimal precision\",\"target\":\"Address of prize split recipient\"}}},\"kind\":\"dev\",\"methods\":{\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}}},\"title\":\"Abstract prize split contract for adding unique award distribution to static addresses.\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol\":\"IPrizeSplit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0x1dd613819255c4af91347b88cd156724df2a594c909bd9d2207bebc560a254fa\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IReserve.sol": {
        "IReserve": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "reserveAccumulated",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "withdrawAccumulated",
                  "type": "uint256"
                }
              ],
              "name": "Checkpoint",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawn",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "checkpoint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "startTimestamp",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "endTimestamp",
                  "type": "uint32"
                }
              ],
              "name": "getReserveAccumulatedBetween",
              "outputs": [
                {
                  "internalType": "uint224",
                  "name": "",
                  "type": "uint224"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "Checkpoint(uint256,uint256)": {
                "params": {
                  "reserveAccumulated": "Total depsosited",
                  "withdrawAccumulated": "Total withdrawn"
                }
              },
              "Withdrawn(address,uint256)": {
                "params": {
                  "amount": "Amount of tokens transfered.",
                  "recipient": "Address receiving funds"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "checkpoint()": {
                "details": "Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "details": "Search the ring buffer for two checkpoint observations and diffs accumulator amount.",
                "params": {
                  "endTimestamp": "Transfer amount",
                  "startTimestamp": "Account address"
                }
              },
              "getToken()": {
                "returns": {
                  "_0": "IERC20"
                }
              },
              "withdrawTo(address,uint256)": {
                "details": "Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.",
                "params": {
                  "amount": "Transfer amount",
                  "recipient": "Account address"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "checkpoint()": "c2c4c5c1",
              "getReserveAccumulatedBetween(uint32,uint32)": "af6a9400",
              "getToken()": "21df0da7",
              "withdrawTo(address,uint256)": "205c2878"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"reserveAccumulated\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"withdrawAccumulated\",\"type\":\"uint256\"}],\"name\":\"Checkpoint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdrawn\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"checkpoint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"startTimestamp\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestamp\",\"type\":\"uint32\"}],\"name\":\"getReserveAccumulatedBetween\",\"outputs\":[{\"internalType\":\"uint224\",\"name\":\"\",\"type\":\"uint224\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Checkpoint(uint256,uint256)\":{\"params\":{\"reserveAccumulated\":\"Total depsosited\",\"withdrawAccumulated\":\"Total withdrawn\"}},\"Withdrawn(address,uint256)\":{\"params\":{\"amount\":\"Amount of tokens transfered.\",\"recipient\":\"Address receiving funds\"}}},\"kind\":\"dev\",\"methods\":{\"checkpoint()\":{\"details\":\"Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"details\":\"Search the ring buffer for two checkpoint observations and diffs accumulator amount.\",\"params\":{\"endTimestamp\":\"Transfer amount\",\"startTimestamp\":\"Account address\"}},\"getToken()\":{\"returns\":{\"_0\":\"IERC20\"}},\"withdrawTo(address,uint256)\":{\"details\":\"Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\",\"params\":{\"amount\":\"Transfer amount\",\"recipient\":\"Account address\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Checkpoint(uint256,uint256)\":{\"notice\":\"Emit when checkpoint is created.\"},\"Withdrawn(address,uint256)\":{\"notice\":\"Emit when the withdrawTo function has executed.\"}},\"kind\":\"user\",\"methods\":{\"checkpoint()\":{\"notice\":\"Create observation checkpoint in ring bufferr.\"},\"getReserveAccumulatedBetween(uint32,uint32)\":{\"notice\":\"Calculate token accumulation beween timestamp range.\"},\"getToken()\":{\"notice\":\"Read global token value.\"},\"withdrawTo(address,uint256)\":{\"notice\":\"Transfer Reserve token balance to recipient address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\":\"IReserve\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IReserve {\\n    /**\\n     * @notice Emit when checkpoint is created.\\n     * @param reserveAccumulated  Total depsosited\\n     * @param withdrawAccumulated Total withdrawn\\n     */\\n\\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\\n    /**\\n     * @notice Emit when the withdrawTo function has executed.\\n     * @param recipient Address receiving funds\\n     * @param amount    Amount of tokens transfered.\\n     */\\n    event Withdrawn(address indexed recipient, uint256 amount);\\n\\n    /**\\n     * @notice Create observation checkpoint in ring bufferr.\\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\\n     */\\n    function checkpoint() external;\\n\\n    /**\\n     * @notice Read global token value.\\n     * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n     * @notice Calculate token accumulation beween timestamp range.\\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\\n     * @param startTimestamp Account address\\n     * @param endTimestamp   Transfer amount\\n     */\\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\\n        external\\n        returns (uint224);\\n\\n    /**\\n     * @notice Transfer Reserve token balance to recipient address.\\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\\n     * @param recipient Account address\\n     * @param amount    Transfer amount\\n     */\\n    function withdrawTo(address recipient, uint256 amount) external;\\n}\\n\",\"keccak256\":\"0x630c99a29c1df33cf2cf9492ea8640e875fa6cbb46c53a9d1ce935567589fef6\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Checkpoint(uint256,uint256)": {
                "notice": "Emit when checkpoint is created."
              },
              "Withdrawn(address,uint256)": {
                "notice": "Emit when the withdrawTo function has executed."
              }
            },
            "kind": "user",
            "methods": {
              "checkpoint()": {
                "notice": "Create observation checkpoint in ring bufferr."
              },
              "getReserveAccumulatedBetween(uint32,uint32)": {
                "notice": "Calculate token accumulation beween timestamp range."
              },
              "getToken()": {
                "notice": "Read global token value."
              },
              "withdrawTo(address,uint256)": {
                "notice": "Transfer Reserve token balance to recipient address."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol": {
        "IStrategy": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalPrizeCaptured",
                  "type": "uint256"
                }
              ],
              "name": "Distributed",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "distribute",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "Distributed(uint256)": {
                "params": {
                  "totalPrizeCaptured": "Total prize captured from the PrizePool"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "distribute()": {
                "details": "Permissionless function to initialize distribution of interst",
                "returns": {
                  "_0": "Prize captured from PrizePool"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "distribute()": "e4fc6b6d"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalPrizeCaptured\",\"type\":\"uint256\"}],\"name\":\"Distributed\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"distribute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Distributed(uint256)\":{\"params\":{\"totalPrizeCaptured\":\"Total prize captured from the PrizePool\"}}},\"kind\":\"dev\",\"methods\":{\"distribute()\":{\"details\":\"Permissionless function to initialize distribution of interst\",\"returns\":{\"_0\":\"Prize captured from PrizePool\"}}},\"version\":1},\"userdoc\":{\"events\":{\"Distributed(uint256)\":{\"notice\":\"Emit when a strategy captures award amount from PrizePool.\"}},\"kind\":\"user\",\"methods\":{\"distribute()\":{\"notice\":\"Capture the award balance and distribute to prize splits.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\":\"IStrategy\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\ninterface IStrategy {\\n    /**\\n     * @notice Emit when a strategy captures award amount from PrizePool.\\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\\n     */\\n    event Distributed(uint256 totalPrizeCaptured);\\n\\n    /**\\n     * @notice Capture the award balance and distribute to prize splits.\\n     * @dev    Permissionless function to initialize distribution of interst\\n     * @return Prize captured from PrizePool\\n     */\\n    function distribute() external returns (uint256);\\n}\\n\",\"keccak256\":\"0x3c30617be7a8c311c320fe3b50c77c4270333ddcfe5b01822fcbe85e2db4623e\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Distributed(uint256)": {
                "notice": "Emit when a strategy captures award amount from PrizePool."
              }
            },
            "kind": "user",
            "methods": {
              "distribute()": {
                "notice": "Capture the award balance and distribute to prize splits."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/interfaces/ITicket.sol": {
        "ITicket": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "Delegated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTotalSupplyTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewTotalSupplyTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct ObservationLib.Observation",
                  "name": "newTwab",
                  "type": "tuple"
                }
              ],
              "name": "NewUserTwab",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "controller",
                  "type": "address"
                }
              ],
              "name": "TicketInitialized",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "controller",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerBurnFrom",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                }
              ],
              "name": "controllerDelegateFor",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "controllerMint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "delegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "delegateOf",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "delegate",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "deadline",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "v",
                  "type": "uint8"
                },
                {
                  "internalType": "bytes32",
                  "name": "r",
                  "type": "bytes32"
                },
                {
                  "internalType": "bytes32",
                  "name": "s",
                  "type": "bytes32"
                }
              ],
              "name": "delegateWithSignature",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "getAccountDetails",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint208",
                      "name": "balance",
                      "type": "uint208"
                    },
                    {
                      "internalType": "uint24",
                      "name": "nextTwabIndex",
                      "type": "uint24"
                    },
                    {
                      "internalType": "uint24",
                      "name": "cardinality",
                      "type": "uint24"
                    }
                  ],
                  "internalType": "struct TwabLib.AccountDetails",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "startTime",
                  "type": "uint64"
                },
                {
                  "internalType": "uint64",
                  "name": "endTime",
                  "type": "uint64"
                }
              ],
              "name": "getAverageBalanceBetween",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageBalancesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "startTimes",
                  "type": "uint64[]"
                },
                {
                  "internalType": "uint64[]",
                  "name": "endTimes",
                  "type": "uint64[]"
                }
              ],
              "name": "getAverageTotalSuppliesBetween",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "timestamp",
                  "type": "uint64"
                }
              ],
              "name": "getBalanceAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint64[]",
                  "name": "timestamps",
                  "type": "uint64[]"
                }
              ],
              "name": "getBalancesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64[]",
                  "name": "timestamps",
                  "type": "uint64[]"
                }
              ],
              "name": "getTotalSuppliesAt",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "timestamp",
                  "type": "uint64"
                }
              ],
              "name": "getTotalSupplyAt",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint16",
                  "name": "index",
                  "type": "uint16"
                }
              ],
              "name": "getTwab",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint224",
                      "name": "amount",
                      "type": "uint224"
                    },
                    {
                      "internalType": "uint32",
                      "name": "timestamp",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct ObservationLib.Observation",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "Delegated(address,address)": {
                "params": {
                  "delegate": "Address of the delegate.",
                  "delegator": "Address of the delegator."
                }
              },
              "NewTotalSupplyTwab((uint224,uint32))": {
                "params": {
                  "newTotalSupplyTwab": "Updated TWAB of tickets total supply after a successful total supply TWAB recording."
                }
              },
              "NewUserTwab(address,(uint224,uint32))": {
                "params": {
                  "delegate": "The recipient of the ticket power (may be the same as the user).",
                  "newTwab": "Updated TWAB of a ticket holder after a successful TWAB recording."
                }
              },
              "TicketInitialized(string,string,uint8,address)": {
                "params": {
                  "controller": "Token controller address.",
                  "decimals": "Ticket decimals.",
                  "name": "Ticket name (eg: PoolTogether Dai Ticket (Compound)).",
                  "symbol": "Ticket symbol (eg: PcDAI)."
                }
              }
            },
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called."
              },
              "approve(address,uint256)": {
                "details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event."
              },
              "balanceOf(address)": {
                "details": "Returns the amount of tokens owned by `account`."
              },
              "controllerBurn(address,uint256)": {
                "details": "May be overridden to provide more granular control over burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerBurnFrom(address,address,uint256)": {
                "details": "May be overridden to provide more granular control over operator-burning",
                "params": {
                  "amount": "Amount of tokens to burn",
                  "operator": "Address of the operator performing the burn action via the controller contract",
                  "user": "Address of the holder account to burn tokens from"
                }
              },
              "controllerDelegateFor(address,address)": {
                "params": {
                  "delegate": "The new delegate",
                  "user": "The user for whom to delegate"
                }
              },
              "controllerMint(address,uint256)": {
                "details": "May be overridden to provide more granular control over minting",
                "params": {
                  "amount": "Amount of tokens to mint",
                  "user": "Address of the receiver of the minted tokens"
                }
              },
              "delegate(address)": {
                "details": "Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.",
                "params": {
                  "to": "Recipient of delegated TWAB."
                }
              },
              "delegateOf(address)": {
                "details": "Address of the delegate will be the zero address if `user` has not delegated their tickets.",
                "params": {
                  "user": "Address of the delegator."
                },
                "returns": {
                  "_0": "Address of the delegate."
                }
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "params": {
                  "deadline": "The timestamp by which this must be submitted",
                  "delegate": "The new delegate",
                  "r": "The r portion of the ECDSA sig",
                  "s": "The s portion of the ECDSA sig",
                  "user": "The user who is delegating",
                  "v": "The v portion of the ECDSA sig"
                }
              },
              "getAccountDetails(address)": {
                "params": {
                  "user": "The user for whom to fetch the TWAB context."
                },
                "returns": {
                  "_0": "The TWAB context, which includes { balance, nextTwabIndex, cardinality }"
                }
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "params": {
                  "endTime": "The end time of the time frame.",
                  "startTime": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "params": {
                  "endTimes": "The end time of the time frame.",
                  "startTimes": "The start time of the time frame.",
                  "user": "The user whose balance is checked."
                },
                "returns": {
                  "_0": "The average balance that the user held during the time frame."
                }
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "params": {
                  "endTimes": "Array of end times.",
                  "startTimes": "Array of start times."
                },
                "returns": {
                  "_0": "The average total supplies held during the time frame."
                }
              },
              "getBalanceAt(address,uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the TWAB balance.",
                  "user": "Address of the user whose TWAB is being fetched."
                },
                "returns": {
                  "_0": "The TWAB balance at the given timestamp."
                }
              },
              "getBalancesAt(address,uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the TWAB balances.",
                  "user": "Address of the user whose TWABs are being fetched."
                },
                "returns": {
                  "_0": "`user` TWAB balances."
                }
              },
              "getTotalSuppliesAt(uint64[])": {
                "params": {
                  "timestamps": "Timestamps range at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "Total supply TWAB balances."
                }
              },
              "getTotalSupplyAt(uint64)": {
                "params": {
                  "timestamp": "Timestamp at which we want to retrieve the total supply TWAB balance."
                },
                "returns": {
                  "_0": "The total supply TWAB balance at the given timestamp."
                }
              },
              "getTwab(address,uint16)": {
                "params": {
                  "index": "The index of the TWAB to fetch.",
                  "user": "The user for whom to fetch the TWAB."
                },
                "returns": {
                  "_0": "The TWAB, which includes the twab amount and the timestamp."
                }
              },
              "totalSupply()": {
                "details": "Returns the amount of tokens in existence."
              },
              "transfer(address,uint256)": {
                "details": "Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              },
              "transferFrom(address,address,uint256)": {
                "details": "Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "controller()": "f77c4791",
              "controllerBurn(address,uint256)": "90596dd1",
              "controllerBurnFrom(address,address,uint256)": "631b5dfb",
              "controllerDelegateFor(address,address)": "33e39b61",
              "controllerMint(address,uint256)": "5d7b0758",
              "delegate(address)": "5c19a95c",
              "delegateOf(address)": "8d22ea2a",
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": "919974dc",
              "getAccountDetails(address)": "2aceb534",
              "getAverageBalanceBetween(address,uint64,uint64)": "98b16f36",
              "getAverageBalancesBetween(address,uint64[],uint64[])": "68c7fd57",
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": "8e6d536a",
              "getBalanceAt(address,uint64)": "9ecb0370",
              "getBalancesAt(address,uint64[])": "613ed6bd",
              "getTotalSuppliesAt(uint64[])": "85beb5f1",
              "getTotalSupplyAt(uint64)": "2d0dd686",
              "getTwab(address,uint16)": "36bb2a38",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"Delegated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTotalSupplyTwab\",\"type\":\"tuple\"}],\"name\":\"NewTotalSupplyTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"newTwab\",\"type\":\"tuple\"}],\"name\":\"NewUserTwab\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"controller\",\"type\":\"address\"}],\"name\":\"TicketInitialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"controller\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerBurnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"}],\"name\":\"controllerDelegateFor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"controllerMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"delegateOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateWithSignature\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getAccountDetails\",\"outputs\":[{\"components\":[{\"internalType\":\"uint208\",\"name\":\"balance\",\"type\":\"uint208\"},{\"internalType\":\"uint24\",\"name\":\"nextTwabIndex\",\"type\":\"uint24\"},{\"internalType\":\"uint24\",\"name\":\"cardinality\",\"type\":\"uint24\"}],\"internalType\":\"struct TwabLib.AccountDetails\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"startTime\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"endTime\",\"type\":\"uint64\"}],\"name\":\"getAverageBalanceBetween\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageBalancesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"startTimes\",\"type\":\"uint64[]\"},{\"internalType\":\"uint64[]\",\"name\":\"endTimes\",\"type\":\"uint64[]\"}],\"name\":\"getAverageTotalSuppliesBetween\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"}],\"name\":\"getBalanceAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint64[]\",\"name\":\"timestamps\",\"type\":\"uint64[]\"}],\"name\":\"getBalancesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64[]\",\"name\":\"timestamps\",\"type\":\"uint64[]\"}],\"name\":\"getTotalSuppliesAt\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"}],\"name\":\"getTotalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"index\",\"type\":\"uint16\"}],\"name\":\"getTwab\",\"outputs\":[{\"components\":[{\"internalType\":\"uint224\",\"name\":\"amount\",\"type\":\"uint224\"},{\"internalType\":\"uint32\",\"name\":\"timestamp\",\"type\":\"uint32\"}],\"internalType\":\"struct ObservationLib.Observation\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Delegated(address,address)\":{\"params\":{\"delegate\":\"Address of the delegate.\",\"delegator\":\"Address of the delegator.\"}},\"NewTotalSupplyTwab((uint224,uint32))\":{\"params\":{\"newTotalSupplyTwab\":\"Updated TWAB of tickets total supply after a successful total supply TWAB recording.\"}},\"NewUserTwab(address,(uint224,uint32))\":{\"params\":{\"delegate\":\"The recipient of the ticket power (may be the same as the user).\",\"newTwab\":\"Updated TWAB of a ticket holder after a successful TWAB recording.\"}},\"TicketInitialized(string,string,uint8,address)\":{\"params\":{\"controller\":\"Token controller address.\",\"decimals\":\"Ticket decimals.\",\"name\":\"Ticket name (eg: PoolTogether Dai Ticket (Compound)).\",\"symbol\":\"Ticket symbol (eg: PcDAI).\"}}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"controllerBurn(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerBurnFrom(address,address,uint256)\":{\"details\":\"May be overridden to provide more granular control over operator-burning\",\"params\":{\"amount\":\"Amount of tokens to burn\",\"operator\":\"Address of the operator performing the burn action via the controller contract\",\"user\":\"Address of the holder account to burn tokens from\"}},\"controllerDelegateFor(address,address)\":{\"params\":{\"delegate\":\"The new delegate\",\"user\":\"The user for whom to delegate\"}},\"controllerMint(address,uint256)\":{\"details\":\"May be overridden to provide more granular control over minting\",\"params\":{\"amount\":\"Amount of tokens to mint\",\"user\":\"Address of the receiver of the minted tokens\"}},\"delegate(address)\":{\"details\":\"Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the targetted sender and/or recipient address(s).To reset the delegate, pass the zero address (0x000.000) as `to` parameter.Current delegate address should be different from the new delegate address `to`.\",\"params\":{\"to\":\"Recipient of delegated TWAB.\"}},\"delegateOf(address)\":{\"details\":\"Address of the delegate will be the zero address if `user` has not delegated their tickets.\",\"params\":{\"user\":\"Address of the delegator.\"},\"returns\":{\"_0\":\"Address of the delegate.\"}},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"params\":{\"deadline\":\"The timestamp by which this must be submitted\",\"delegate\":\"The new delegate\",\"r\":\"The r portion of the ECDSA sig\",\"s\":\"The s portion of the ECDSA sig\",\"user\":\"The user who is delegating\",\"v\":\"The v portion of the ECDSA sig\"}},\"getAccountDetails(address)\":{\"params\":{\"user\":\"The user for whom to fetch the TWAB context.\"},\"returns\":{\"_0\":\"The TWAB context, which includes { balance, nextTwabIndex, cardinality }\"}},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"params\":{\"endTime\":\"The end time of the time frame.\",\"startTime\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"params\":{\"endTimes\":\"The end time of the time frame.\",\"startTimes\":\"The start time of the time frame.\",\"user\":\"The user whose balance is checked.\"},\"returns\":{\"_0\":\"The average balance that the user held during the time frame.\"}},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"params\":{\"endTimes\":\"Array of end times.\",\"startTimes\":\"Array of start times.\"},\"returns\":{\"_0\":\"The average total supplies held during the time frame.\"}},\"getBalanceAt(address,uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the TWAB balance.\",\"user\":\"Address of the user whose TWAB is being fetched.\"},\"returns\":{\"_0\":\"The TWAB balance at the given timestamp.\"}},\"getBalancesAt(address,uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the TWAB balances.\",\"user\":\"Address of the user whose TWABs are being fetched.\"},\"returns\":{\"_0\":\"`user` TWAB balances.\"}},\"getTotalSuppliesAt(uint64[])\":{\"params\":{\"timestamps\":\"Timestamps range at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"Total supply TWAB balances.\"}},\"getTotalSupplyAt(uint64)\":{\"params\":{\"timestamp\":\"Timestamp at which we want to retrieve the total supply TWAB balance.\"},\"returns\":{\"_0\":\"The total supply TWAB balance at the given timestamp.\"}},\"getTwab(address,uint16)\":{\"params\":{\"index\":\"The index of the TWAB to fetch.\",\"user\":\"The user for whom to fetch the TWAB.\"},\"returns\":{\"_0\":\"The TWAB, which includes the twab amount and the timestamp.\"}},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `recipient`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"events\":{\"Delegated(address,address)\":{\"notice\":\"Emitted when TWAB balance has been delegated to another user.\"},\"NewTotalSupplyTwab((uint224,uint32))\":{\"notice\":\"Emitted when a new total supply TWAB has been recorded.\"},\"NewUserTwab(address,(uint224,uint32))\":{\"notice\":\"Emitted when a new TWAB has been recorded.\"},\"TicketInitialized(string,string,uint8,address)\":{\"notice\":\"Emitted when ticket is initialized.\"}},\"kind\":\"user\",\"methods\":{\"controller()\":{\"notice\":\"Interface to the contract responsible for controlling mint/burn\"},\"controllerBurn(address,uint256)\":{\"notice\":\"Allows the controller to burn tokens from a user account\"},\"controllerBurnFrom(address,address,uint256)\":{\"notice\":\"Allows an operator via the controller to burn tokens on behalf of a user account\"},\"controllerDelegateFor(address,address)\":{\"notice\":\"Allows the controller to delegate on a users behalf.\"},\"controllerMint(address,uint256)\":{\"notice\":\"Allows the controller to mint tokens for a user account\"},\"delegate(address)\":{\"notice\":\"Delegate time-weighted average balances to an alternative address.\"},\"delegateOf(address)\":{\"notice\":\"Retrieves the address of the delegate to whom `user` has delegated their tickets.\"},\"delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Allows a user to delegate via signature\"},\"getAccountDetails(address)\":{\"notice\":\"Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\"},\"getAverageBalanceBetween(address,uint64,uint64)\":{\"notice\":\"Retrieves the average balance held by a user for a given time frame.\"},\"getAverageBalancesBetween(address,uint64[],uint64[])\":{\"notice\":\"Retrieves the average balances held by a user for a given time frame.\"},\"getAverageTotalSuppliesBetween(uint64[],uint64[])\":{\"notice\":\"Retrieves the average total supply balance for a set of given time frames.\"},\"getBalanceAt(address,uint64)\":{\"notice\":\"Retrieves `user` TWAB balance.\"},\"getBalancesAt(address,uint64[])\":{\"notice\":\"Retrieves `user` TWAB balances.\"},\"getTotalSuppliesAt(uint64[])\":{\"notice\":\"Retrieves the total supply TWAB balance between the given timestamps range.\"},\"getTotalSupplyAt(uint64)\":{\"notice\":\"Retrieves the total supply TWAB balance at the given timestamp.\"},\"getTwab(address,uint16)\":{\"notice\":\"Gets the TWAB at a specific index for a user.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":\"ITicket\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Delegated(address,address)": {
                "notice": "Emitted when TWAB balance has been delegated to another user."
              },
              "NewTotalSupplyTwab((uint224,uint32))": {
                "notice": "Emitted when a new total supply TWAB has been recorded."
              },
              "NewUserTwab(address,(uint224,uint32))": {
                "notice": "Emitted when a new TWAB has been recorded."
              },
              "TicketInitialized(string,string,uint8,address)": {
                "notice": "Emitted when ticket is initialized."
              }
            },
            "kind": "user",
            "methods": {
              "controller()": {
                "notice": "Interface to the contract responsible for controlling mint/burn"
              },
              "controllerBurn(address,uint256)": {
                "notice": "Allows the controller to burn tokens from a user account"
              },
              "controllerBurnFrom(address,address,uint256)": {
                "notice": "Allows an operator via the controller to burn tokens on behalf of a user account"
              },
              "controllerDelegateFor(address,address)": {
                "notice": "Allows the controller to delegate on a users behalf."
              },
              "controllerMint(address,uint256)": {
                "notice": "Allows the controller to mint tokens for a user account"
              },
              "delegate(address)": {
                "notice": "Delegate time-weighted average balances to an alternative address."
              },
              "delegateOf(address)": {
                "notice": "Retrieves the address of the delegate to whom `user` has delegated their tickets."
              },
              "delegateWithSignature(address,address,uint256,uint8,bytes32,bytes32)": {
                "notice": "Allows a user to delegate via signature"
              },
              "getAccountDetails(address)": {
                "notice": "Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality."
              },
              "getAverageBalanceBetween(address,uint64,uint64)": {
                "notice": "Retrieves the average balance held by a user for a given time frame."
              },
              "getAverageBalancesBetween(address,uint64[],uint64[])": {
                "notice": "Retrieves the average balances held by a user for a given time frame."
              },
              "getAverageTotalSuppliesBetween(uint64[],uint64[])": {
                "notice": "Retrieves the average total supply balance for a set of given time frames."
              },
              "getBalanceAt(address,uint64)": {
                "notice": "Retrieves `user` TWAB balance."
              },
              "getBalancesAt(address,uint64[])": {
                "notice": "Retrieves `user` TWAB balances."
              },
              "getTotalSuppliesAt(uint64[])": {
                "notice": "Retrieves the total supply TWAB balance between the given timestamps range."
              },
              "getTotalSupplyAt(uint64)": {
                "notice": "Retrieves the total supply TWAB balance at the given timestamp."
              },
              "getTwab(address,uint16)": {
                "notice": "Gets the TWAB at a specific index for a user."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol": {
        "DrawRingBufferLib": {
          "abi": [],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "title": "Library for creating and managing a draw ring buffer.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212204beec8c99095774e38aa88ae233502c503520c52f4ab34a2d04d3762d20e02d764736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B 0xEE 0xC8 0xC9 SWAP1 SWAP6 PUSH24 0x4E38AA88AE233502C503520C52F4AB34A2D04D3762D20E02 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "157:1949:41:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;157:1949:41;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212204beec8c99095774e38aa88ae233502c503520c52f4ab34a2d04d3762d20e02d764736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B 0xEE 0xC8 0xC9 SWAP1 SWAP6 PUSH24 0x4E38AA88AE233502C503520C52F4AB34A2D04D3762D20E02 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "157:1949:41:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "getIndex(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite",
                "isInitialized(struct DrawRingBufferLib.Buffer memory)": "infinite",
                "push(struct DrawRingBufferLib.Buffer memory,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"title\":\"Library for creating and managing a draw ring buffer.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":\"DrawRingBufferLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol": {
        "ExtendedSafeCastLib": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122083fbacbbddef1e40388746dbd56b33442d9a461e2830e67009f12e5d9bc8288364736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP4 0xFB 0xAC 0xBB 0xDD 0xEF 0x1E BLOCKHASH CODESIZE DUP8 CHAINID 0xDB 0xD5 PUSH12 0x33442D9A461E2830E67009F1 0x2E 0x5D SWAP12 0xC8 0x28 DUP4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "771:1489:42:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;771:1489:42;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122083fbacbbddef1e40388746dbd56b33442d9a461e2830e67009f12e5d9bc8288364736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP4 0xFB 0xAC 0xBB 0xDD 0xEF 0x1E BLOCKHASH CODESIZE DUP8 CHAINID 0xDB 0xD5 PUSH12 0x33442D9A461E2830E67009F1 0x2E 0x5D SWAP12 0xC8 0x28 DUP4 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "771:1489:42:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "toUint104(uint256)": "infinite",
                "toUint208(uint256)": "infinite",
                "toUint224(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX casting operators with added overflow checks. Downcasting from uint256/int256 in Solidity does not revert on overflow. This can easily result in undesired exploitation or bugs, since developers usually assume that overflows raise errors. `SafeCast` restores this intuition by reverting the transaction when such an operation overflows. Using this library instead of the unchecked operations eliminates an entire class of bugs, so it's recommended to use it always. Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing all math on `uint256` and `int256` and then downcasting.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":\"ExtendedSafeCastLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol": {
        "ObservationLib": {
          "abi": [
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "",
                  "type": "uint24"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "details": "Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol",
            "kind": "dev",
            "methods": {},
            "title": "Observation Library",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608f610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea2646970667358221220358b5a70246ed7f83ca15e17591b1379e46cd10252b41f71caded3808dea9eb364736f6c63430008060033",
              "opcodes": "PUSH1 0x8F PUSH2 0x38 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATALOAD DUP12 GAS PUSH17 0x246ED7F83CA15E17591B1379E46CD10252 0xB4 0x1F PUSH18 0xCADED3808DEA9EB364736F6C634300080600 CALLER ",
              "sourceMap": "529:3861:43:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;529:3861:43;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_9533": {
                  "entryPoint": null,
                  "id": 9533,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:214:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "121:91:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "131:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "143:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "154:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "131:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "173:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "188:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "196:8:94",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "184:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "184:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "166:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "166:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "166:40:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "101:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "112:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14:198:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffff))\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea2646970667358221220358b5a70246ed7f83ca15e17591b1379e46cd10252b41f71caded3808dea9eb364736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATALOAD DUP12 GAS PUSH17 0x246ED7F83CA15E17591B1379E46CD10252 0xB4 0x1F PUSH18 0xCADED3808DEA9EB364736F6C634300080600 CALLER ",
              "sourceMap": "529:3861:43:-:0;;;;;;;;;;;;;;;;;;;;;;;;690:49;;731:8;690:49;;;;;196:8:94;184:21;;;166:40;;154:2;139:18;690:49:43;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "28600",
                "executionCost": "112",
                "totalCost": "28712"
              },
              "external": {
                "MAX_CARDINALITY()": "154"
              },
              "internal": {
                "binarySearch(struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"details\":\"Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Observation Library\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"The maximum number of observations\"}},\"notice\":\"This library allows one to store an array of timestamped values and efficiently binary search them.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":\"ObservationLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "The maximum number of observations"
              }
            },
            "notice": "This library allows one to store an array of timestamped values and efficiently binary search them.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol": {
        "OverflowSafeComparatorLib": {
          "abi": [],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "details": "Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol",
            "kind": "dev",
            "methods": {},
            "title": "OverflowSafeComparatorLib library to share comparator functions between contracts",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e83a4af091ea5db9d2cd14a0669963e7c2d9eb333bef1cf0c07800f5a38c7da664736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE8 GASPRICE 0x4A CREATE SWAP2 0xEA 0x5D 0xB9 0xD2 0xCD EQ LOG0 PUSH7 0x9963E7C2D9EB33 EXTCODESIZE 0xEF SHR CREATE 0xC0 PUSH25 0xF5A38C7DA664736F6C634300080600330000000000000000 ",
              "sourceMap": "344:2576:44:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:2576:44;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e83a4af091ea5db9d2cd14a0669963e7c2d9eb333bef1cf0c07800f5a38c7da664736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE8 GASPRICE 0x4A CREATE SWAP2 0xEA 0x5D 0xB9 0xD2 0xCD EQ LOG0 PUSH7 0x9963E7C2D9EB33 EXTCODESIZE 0xEF SHR CREATE 0xC0 PUSH25 0xF5A38C7DA664736F6C634300080600330000000000000000 ",
              "sourceMap": "344:2576:44:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "checkedSub(uint32,uint32,uint32)": "infinite",
                "lt(uint32,uint32,uint32)": "infinite",
                "lte(uint32,uint32,uint32)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"details\":\"Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\",\"kind\":\"dev\",\"methods\":{},\"title\":\"OverflowSafeComparatorLib library to share comparator functions between contracts\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":\"OverflowSafeComparatorLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol": {
        "RingBufferLib": {
          "abi": [],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220af83dda33f739d99d2574a2727a70e6ce106eeeed5dec6855090193468ef4a0f64736f6c63430008060033",
              "opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAF DUP4 0xDD LOG3 EXTCODEHASH PUSH20 0x9D99D2574A2727A70E6CE106EEEED5DEC6855090 NOT CALLVALUE PUSH9 0xEF4A0F64736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "61:2375:45:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;61:2375:45;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220af83dda33f739d99d2574a2727a70e6ce106eeeed5dec6855090193468ef4a0f64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAF DUP4 0xDD LOG3 EXTCODEHASH PUSH20 0x9D99D2574A2727A70E6CE106EEEED5DEC6855090 NOT CALLVALUE PUSH9 0xEF4A0F64736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "61:2375:45:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "newestIndex(uint256,uint256)": "infinite",
                "nextIndex(uint256,uint256)": "infinite",
                "offset(uint256,uint256,uint256)": "infinite",
                "wrap(uint256,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":\"RingBufferLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/libraries/TwabLib.sol": {
        "TwabLib": {
          "abi": [
            {
              "inputs": [],
              "name": "MAX_CARDINALITY",
              "outputs": [
                {
                  "internalType": "uint24",
                  "name": "",
                  "type": "uint24"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "details": "Time-Weighted Average Balance Library for ERC20 tokens.",
            "kind": "dev",
            "methods": {},
            "stateVariables": {
              "MAX_CARDINALITY": {
                "details": "The user Account.AccountDetails.cardinality parameter can NOT exceed the max cardinality variable. Preventing \"corrupted\" ring buffer lookup pointers and new observation checkpoints. The MAX_CARDINALITY in fact guarantees at least 7.4 years of records: If 14 = block time in seconds (2**24) * 14 = 234881024 seconds of history 234881024 / (365 * 24 * 60 * 60) ~= 7.44 years"
              }
            },
            "title": "PoolTogether V4 TwabLib (Library)",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608f610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea2646970667358221220c5c4f0ef5115a434c843d152d412ab09787a54b04696f45bc6a52cc206691d1f64736f6c63430008060033",
              "opcodes": "PUSH1 0x8F PUSH2 0x38 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 0xC4 CREATE 0xEF MLOAD ISZERO LOG4 CALLVALUE 0xC8 NUMBER 0xD1 MSTORE 0xD4 SLT 0xAB MULMOD PUSH25 0x7A54B04696F45BC6A52CC206691D1F64736F6C634300080600 CALLER ",
              "sourceMap": "932:18384:46:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;932:18384:46;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_9950": {
                  "entryPoint": null,
                  "id": 9950,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:214:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "121:91:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "131:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "143:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "154:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "131:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "173:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "188:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "196:8:94",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "184:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "184:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "166:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "166:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "166:40:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "101:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "112:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14:198:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffff))\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea2646970667358221220c5c4f0ef5115a434c843d152d412ab09787a54b04696f45bc6a52cc206691d1f64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x33 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8200D873 EQ PUSH1 0x38 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x41 PUSH3 0xFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0xFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 0xC4 CREATE 0xEF MLOAD ISZERO LOG4 CALLVALUE 0xC8 NUMBER 0xD1 MSTORE 0xD4 SLT 0xAB MULMOD PUSH25 0x7A54B04696F45BC6A52CC206691D1F64736F6C634300080600 CALLER ",
              "sourceMap": "932:18384:46:-:0;;;;;;;;;;;;;;;;;;;;;;;;2014:49;;2055:8;2014:49;;;;;196:8:94;184:21;;;166:40;;154:2;139:18;2014:49:46;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "28600",
                "executionCost": "112",
                "totalCost": "28712"
              },
              "external": {
                "MAX_CARDINALITY()": "154"
              },
              "internal": {
                "_calculateTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint32,uint32)": "infinite",
                "_computeNextTwab(struct ObservationLib.Observation memory,uint224,uint32)": "infinite",
                "_getAverageBalanceBetween(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32)": "infinite",
                "_getBalanceAt(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32)": "infinite",
                "_nextTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32)": "infinite",
                "decreaseBalance(struct TwabLib.Account storage pointer,uint208,string memory,uint32)": "infinite",
                "getAverageBalanceBetween(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32)": "infinite",
                "getBalanceAt(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32)": "infinite",
                "increaseBalance(struct TwabLib.Account storage pointer,uint208,uint32)": "infinite",
                "newestTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory)": "infinite",
                "oldestTwab(struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory)": "infinite",
                "push(struct TwabLib.AccountDetails memory)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_CARDINALITY()": "8200d873"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"MAX_CARDINALITY\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"\",\"type\":\"uint24\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"details\":\"Time-Weighted Average Balance Library for ERC20 tokens.\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"MAX_CARDINALITY\":{\"details\":\"The user Account.AccountDetails.cardinality parameter can NOT exceed the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup pointers and new observation checkpoints. The MAX_CARDINALITY in fact guarantees at least 7.4 years of records: If 14 = block time in seconds (2**24) * 14 = 234881024 seconds of history 234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\"}},\"title\":\"PoolTogether V4 TwabLib (Library)\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"MAX_CARDINALITY()\":{\"notice\":\"Sets max ring buffer length in the Account.twabs Observation list. As users transfer/mint/burn tickets new Observation checkpoints are recorded. The current max cardinality guarantees a six month minimum, of historical accurate lookups with current estimates of 1 new block every 15 seconds - the of course contain a transfer to trigger an observation write to storage.\"}},\"notice\":\"This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance. Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec) guarantees minimum 7.4 years of search history.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":\"TwabLib\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "MAX_CARDINALITY()": {
                "notice": "Sets max ring buffer length in the Account.twabs Observation list. As users transfer/mint/burn tickets new Observation checkpoints are recorded. The current max cardinality guarantees a six month minimum, of historical accurate lookups with current estimates of 1 new block every 15 seconds - the of course contain a transfer to trigger an observation write to storage."
              }
            },
            "notice": "This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance. Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec) guarantees minimum 7.4 years of search history.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol": {
        "EIP2612PermitAndDeposit": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "_prizePool",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "delegate",
                      "type": "address"
                    },
                    {
                      "components": [
                        {
                          "internalType": "uint256",
                          "name": "deadline",
                          "type": "uint256"
                        },
                        {
                          "internalType": "uint8",
                          "name": "v",
                          "type": "uint8"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "r",
                          "type": "bytes32"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "s",
                          "type": "bytes32"
                        }
                      ],
                      "internalType": "struct Signature",
                      "name": "signature",
                      "type": "tuple"
                    }
                  ],
                  "internalType": "struct DelegateSignature",
                  "name": "_delegateSignature",
                  "type": "tuple"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "_prizePool",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "deadline",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint8",
                      "name": "v",
                      "type": "uint8"
                    },
                    {
                      "internalType": "bytes32",
                      "name": "r",
                      "type": "bytes32"
                    },
                    {
                      "internalType": "bytes32",
                      "name": "s",
                      "type": "bytes32"
                    }
                  ],
                  "internalType": "struct Signature",
                  "name": "_permitSignature",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "delegate",
                      "type": "address"
                    },
                    {
                      "components": [
                        {
                          "internalType": "uint256",
                          "name": "deadline",
                          "type": "uint256"
                        },
                        {
                          "internalType": "uint8",
                          "name": "v",
                          "type": "uint8"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "r",
                          "type": "bytes32"
                        },
                        {
                          "internalType": "bytes32",
                          "name": "s",
                          "type": "bytes32"
                        }
                      ],
                      "internalType": "struct Signature",
                      "name": "signature",
                      "type": "tuple"
                    }
                  ],
                  "internalType": "struct DelegateSignature",
                  "name": "_delegateSignature",
                  "type": "tuple"
                }
              ],
              "name": "permitAndDepositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "custom:experimental": "This contract has not been fully audited yet.",
            "kind": "dev",
            "methods": {
              "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": {
                "params": {
                  "_amount": "Amount of tokens to deposit into the prize pool",
                  "_delegateSignature": "Delegate signature",
                  "_prizePool": "Address of the prize pool to deposit into",
                  "_to": "Address that will receive the tickets"
                }
              },
              "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": {
                "details": "The `spender` address required by the permit function is the address of this contract.",
                "params": {
                  "_amount": "Amount of tokens to deposit into the prize pool",
                  "_delegateSignature": "Delegate signature",
                  "_permitSignature": "Permit signature",
                  "_prizePool": "Address of the prize pool to deposit into",
                  "_to": "Address that will receive the tickets"
                }
              }
            },
            "title": "Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50610c29806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063a81bc43b1461003b578063c00dbd5114610050575b600080fd5b61004e6100493660046109cd565b610063565b005b61004e61005e36600461097a565b61022a565b6000856001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561009e57600080fd5b505afa1580156100b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100d6919061093b565b90506000866001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b15801561011357600080fd5b505afa158015610127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014b919061093b565b90506001600160a01b03811663d505accf333089883561017160408b0160208c01610b06565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015287013560a4820152606087013560c482015260e401600060405180830381600087803b1580156101fb57600080fd5b505af115801561020f573d6000803e3d6000fd5b5050505061022187838389898861032a565b50505050505050565b6000846001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d919061093b565b90506000856001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b1580156102da57600080fd5b505afa1580156102ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610312919061093b565b905061032286838388888861032a565b505050505050565b610337843385898661041b565b600061034b36839003830160208401610a5b565b90506001600160a01b03861663919974dc8461036a602086018661091e565b845160208601516040808801516060890151915160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152959094166024860152604485019290925260ff166064840152608483019190915260a482015260c401600060405180830381600087803b1580156103fa57600080fd5b505af115801561040e573d6000803e3d6000fd5b5050505050505050505050565b6104306001600160a01b0386168530866104c6565b6104446001600160a01b038616838561057d565b6040517fffaad6a50000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820185905283169063ffaad6a590604401600060405180830381600087803b1580156104a757600080fd5b505af11580156104bb573d6000803e3d6000fd5b505050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526105779085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610670565b50505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156105e257600080fd5b505afa1580156105f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061a9190610aed565b6106249190610b70565b6040516001600160a01b0385166024820152604481018290529091506105779085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610513565b60006106c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661075f9092919063ffffffff16565b80519091501561075a57808060200190518101906106e39190610958565b61075a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b505050565b606061076e8484600085610778565b90505b9392505050565b6060824710156107f05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610751565b843b61083e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610751565b600080866001600160a01b0316858760405161085a9190610b21565b60006040518083038185875af1925050503d8060008114610897576040519150601f19603f3d011682016040523d82523d6000602084013e61089c565b606091505b50915091506108ac8282866108b7565b979650505050505050565b606083156108c6575081610771565b8251156108d65782518084602001fd5b8160405162461bcd60e51b81526004016107519190610b3d565b600060a0828403121561090257600080fd5b50919050565b803560ff8116811461091957600080fd5b919050565b60006020828403121561093057600080fd5b813561077181610bdb565b60006020828403121561094d57600080fd5b815161077181610bdb565b60006020828403121561096a57600080fd5b8151801515811461077157600080fd5b600080600080610100858703121561099157600080fd5b843561099c81610bdb565b93506020850135925060408501356109b381610bdb565b91506109c286606087016108f0565b905092959194509250565b60008060008060008587036101808112156109e757600080fd5b86356109f281610bdb565b9550602087013594506040870135610a0981610bdb565b935060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa082011215610a3b57600080fd5b50606086019150610a4f8760e088016108f0565b90509295509295909350565b600060808284031215610a6d57600080fd5b6040516080810181811067ffffffffffffffff82111715610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405282358152610aca60208401610908565b602082015260408301356040820152606083013560608201528091505092915050565b600060208284031215610aff57600080fd5b5051919050565b600060208284031215610b1857600080fd5b61077182610908565b60008251610b33818460208701610baf565b9190910192915050565b6020815260008251806020840152610b5c816040850160208701610baf565b601f01601f19169190910160400192915050565b60008219821115610baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b83811015610bca578181015183820152602001610bb2565b838111156105775750506000910152565b6001600160a01b0381168114610bf057600080fd5b5056fea26469706673582212207593ea4afc2abd6c493bf3ab64dbfff92da0ab0e49d90eec6f1fcdf1320c585864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xC29 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA81BC43B EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xC00DBD51 EQ PUSH2 0x50 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x49 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CD JUMP JUMPDEST PUSH2 0x63 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4E PUSH2 0x5E CALLDATASIZE PUSH1 0x4 PUSH2 0x97A JUMP JUMPDEST PUSH2 0x22A JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x113 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x127 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x14B SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xD505ACCF CALLER ADDRESS DUP10 DUP9 CALLDATALOAD PUSH2 0x171 PUSH1 0x40 DUP12 ADD PUSH1 0x20 DUP13 ADD PUSH2 0xB06 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP10 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0xFF AND PUSH1 0x84 DUP4 ADD MSTORE DUP8 ADD CALLDATALOAD PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH1 0xC4 DUP3 ADD MSTORE PUSH1 0xE4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x20F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x221 DUP8 DUP4 DUP4 DUP10 DUP10 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x265 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x279 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2EE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x312 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH2 0x322 DUP7 DUP4 DUP4 DUP9 DUP9 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x337 DUP5 CALLER DUP6 DUP10 DUP7 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34B CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0xA5B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH4 0x919974DC DUP5 PUSH2 0x36A PUSH1 0x20 DUP7 ADD DUP7 PUSH2 0x91E JUMP JUMPDEST DUP5 MLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x60 DUP10 ADD MLOAD SWAP2 MLOAD PUSH1 0xE0 DUP9 SWAP1 SHL PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0xFF AND PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0x84 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0xC4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x40E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x430 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP6 ADDRESS DUP7 PUSH2 0x4C6 JUMP JUMPDEST PUSH2 0x444 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP4 DUP6 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFAAD6A500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE DUP4 AND SWAP1 PUSH4 0xFFAAD6A5 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4BB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x670 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5F6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x61A SWAP2 SWAP1 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xB70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x513 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6C5 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x75F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x75A JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x6E3 SWAP2 SWAP1 PUSH2 0x958 JUMP JUMPDEST PUSH2 0x75A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x76E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x751 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x83E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x751 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x85A SWAP2 SWAP1 PUSH2 0xB21 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x89C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x8AC DUP3 DUP3 DUP7 PUSH2 0x8B7 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x8C6 JUMPI POP DUP2 PUSH2 0x771 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x8D6 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x751 SWAP2 SWAP1 PUSH2 0xB3D JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x902 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x919 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x930 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x94D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x771 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x991 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x99C DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x9B3 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP2 POP PUSH2 0x9C2 DUP7 PUSH1 0x60 DUP8 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 DUP8 SUB PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x9E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x9F2 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0xA09 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x80 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0 DUP3 ADD SLT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x60 DUP7 ADD SWAP2 POP PUSH2 0xA4F DUP8 PUSH1 0xE0 DUP9 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x80 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xAB7 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0xACA PUSH1 0x20 DUP5 ADD PUSH2 0x908 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB18 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x771 DUP3 PUSH2 0x908 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0xB33 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0xB5C DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xBAA JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBCA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xBB2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x577 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xBF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH22 0x93EA4AFC2ABD6C493BF3AB64DBFFF92DA0AB0E49D90E 0xEC PUSH16 0x1FCDF1320C585864736F6C6343000806 STOP CALLER ",
              "sourceMap": "1109:3988:47:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_callOptionalReturn_1116": {
                  "entryPoint": 1648,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_depositToAndDelegate_10864": {
                  "entryPoint": 810,
                  "id": 10864,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@_depositTo_10907": {
                  "entryPoint": 1051,
                  "id": 10907,
                  "parameterSlots": 5,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_10814": {
                  "entryPoint": 554,
                  "id": 10814,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1412": {
                  "entryPoint": 1912,
                  "id": 1412,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1342": {
                  "entryPoint": 1887,
                  "id": 1342,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@isContract_1271": {
                  "entryPoint": null,
                  "id": 1271,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@permitAndDepositToAndDelegate_10774": {
                  "entryPoint": 99,
                  "id": 10774,
                  "parameterSlots": 5,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1030": {
                  "entryPoint": 1405,
                  "id": 1030,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_950": {
                  "entryPoint": 1222,
                  "id": 950,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@verifyCallResult_1547": {
                  "entryPoint": 2231,
                  "id": 1547,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_struct_DelegateSignature_calldata": {
                  "entryPoint": 2288,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2334,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 2363,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 2392,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IPrizePool_$8967t_uint256t_addresst_struct$_DelegateSignature_$10705_calldata_ptr": {
                  "entryPoint": 2426,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_contract$_IPrizePool_$8967t_uint256t_addresst_struct$_Signature_$10699_calldata_ptrt_struct$_DelegateSignature_$10705_calldata_ptr": {
                  "entryPoint": 2509,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Signature_$10699_memory_ptr": {
                  "entryPoint": 2651,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 2797,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint8": {
                  "entryPoint": 2822,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 2312,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 2849,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 8,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 7,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2877,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 2928,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 2991,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 3035,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9033:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "94:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "134:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "143:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "146:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "136:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "136:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "136:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "115:3:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "120:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "111:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "111:16:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "129:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "107:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "107:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "104:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "159:15:94",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "168:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "159:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_struct_DelegateSignature_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "68:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "76:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "84:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:166:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "232:109:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "242:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "264:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "251:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "251:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "242:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "319:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "328:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "331:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "321:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "321:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "321:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "293:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "304:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "311:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "300:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "300:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "290:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "290:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "283:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "283:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "280:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "211:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "222:5:94",
                            "type": ""
                          }
                        ],
                        "src": "185:156:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "416:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "462:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "471:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "474:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "464:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "464:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "437:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "446:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "433:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "433:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "458:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "429:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "429:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "426:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "487:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "513:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "500:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "500:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "491:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "557:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "532:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "572:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "582:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "572:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "382:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "393:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "405:6:94",
                            "type": ""
                          }
                        ],
                        "src": "346:247:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "679:170:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "725:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "734:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "737:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "727:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "727:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "727:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "700:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "696:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "696:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "721:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "692:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "692:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "689:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "750:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "769:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "763:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "763:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "754:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "813:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "788:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "828:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "838:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "828:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "645:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "656:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "668:6:94",
                            "type": ""
                          }
                        ],
                        "src": "598:251:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "932:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "978:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "987:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "990:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "980:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "980:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "980:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "953:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "962:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "949:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "949:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "974:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "945:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "945:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "942:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1003:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1022:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1016:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1016:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1007:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1085:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1094:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1097:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1087:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1087:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1087:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1054:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1075:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1068:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1068:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1061:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1061:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1051:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1051:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1044:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1044:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1041:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1110:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1120:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "898:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "909:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "921:6:94",
                            "type": ""
                          }
                        ],
                        "src": "854:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1314:445:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1361:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1370:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1373:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1363:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1363:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1335:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1344:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1331:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1331:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1356:3:94",
                                    "type": "",
                                    "value": "256"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1327:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1327:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1324:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1386:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1412:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1399:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1399:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1390:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1456:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1431:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1431:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1431:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1471:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1481:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1471:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1495:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1522:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1533:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1518:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1518:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1505:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1505:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1495:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1546:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1578:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1589:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1574:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1574:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1561:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1561:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1550:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1627:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1602:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1602:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1602:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1644:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1654:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1644:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1670:83:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1729:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1740:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1725:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1725:18:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1745:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_DelegateSignature_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "1680:44:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1680:73:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1670:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IPrizePool_$8967t_uint256t_addresst_struct$_DelegateSignature_$10705_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1256:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1267:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1279:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1287:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1295:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1303:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1136:623:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1989:618:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1999:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2013:7:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2022:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2009:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2009:23:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2003:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2057:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2066:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2069:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2059:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2059:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2059:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2048:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2052:3:94",
                                    "type": "",
                                    "value": "384"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2044:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2044:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2041:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2082:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2108:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2095:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2095:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2086:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2152:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2127:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2127:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2127:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2167:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2177:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2191:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2218:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2229:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2214:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2214:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2201:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2201:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2191:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2242:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2274:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2285:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2270:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2270:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2257:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2257:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2246:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2323:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2298:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2298:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2298:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2340:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2350:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2340:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2455:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2464:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2467:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2457:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2457:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2457:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2377:2:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2381:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2373:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2373:75:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2450:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:85:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2366:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2480:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2480:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2517:84:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2576:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2587:3:94",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2572:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2572:19:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2593:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_DelegateSignature_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2527:44:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2527:74:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2517:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IPrizePool_$8967t_uint256t_addresst_struct$_Signature_$10699_calldata_ptrt_struct$_DelegateSignature_$10705_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1923:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1934:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1946:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1954:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1962:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1970:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1978:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1764:843:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2709:170:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2755:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2764:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2767:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2757:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2757:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2757:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2730:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2739:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2726:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2726:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2751:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2722:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2722:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2719:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2780:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2799:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2793:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2793:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2784:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2843:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2818:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2818:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2818:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2858:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2868:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2858:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2675:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2686:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2698:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2612:267:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2982:701:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3029:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3038:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3031:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3031:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3031:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3003:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3012:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2999:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2999:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3024:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2995:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2995:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2992:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3054:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3074:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3068:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3068:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3058:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3086:34:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3108:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3116:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3104:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3104:16:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3090:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3203:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3224:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3227:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3217:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3217:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3217:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3325:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3328:4:94",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3318:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3318:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3318:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3353:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3356:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3346:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3346:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3346:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3138:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3150:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3135:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3135:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3174:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3186:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3171:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3171:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "3132:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3132:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3129:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3387:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3391:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3380:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3380:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3380:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3418:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3439:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3426:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3426:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3411:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3411:39:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3411:39:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3470:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3478:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3466:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3466:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3504:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3515:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3500:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3500:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "3483:16:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3483:36:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3459:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3459:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3459:61:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3540:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3548:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3536:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3536:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3570:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3581:2:94",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3566:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3566:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3553:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3553:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3529:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3529:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3529:57:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3606:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3614:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3602:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3602:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3636:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3647:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3632:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3632:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3619:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3619:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3595:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3595:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3595:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3661:16:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "3671:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3661:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Signature_$10699_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2948:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2959:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2971:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2884:799:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3769:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3824:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3827:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3790:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3799:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3786:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3786:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3811:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3782:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3782:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3779:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3840:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3856:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3850:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3850:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3840:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3735:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3746:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3758:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3688:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3945:114:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3991:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4000:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4003:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3993:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3993:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3993:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3966:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3975:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3962:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3962:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3987:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3958:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3958:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3955:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4016:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4043:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "4026:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4026:27:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4016:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3911:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3922:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3934:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3877:182:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4201:137:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4211:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4231:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4225:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4225:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4215:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4273:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4281:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4269:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4269:17:94"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4288:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4293:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4247:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4247:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4247:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4309:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4320:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4325:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4316:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4316:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4309:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4177:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4182:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4193:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4064:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4472:198:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4482:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4505:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4490:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4482:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4517:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4527:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4521:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4585:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4600:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4608:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4596:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4596:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4578:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4578:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4578:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4632:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4643:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4628:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4628:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4652:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4660:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4648:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4621:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4621:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4621:43:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4433:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4444:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4452:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4463:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4343:327:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4832:241:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4842:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4854:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4865:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4850:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4850:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4842:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4877:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4887:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4881:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4945:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4960:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4968:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4956:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4956:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4938:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4938:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4938:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4992:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5003:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4988:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4988:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5012:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5020:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5008:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5008:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4981:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4981:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4981:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5044:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5055:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5040:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5040:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5060:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5033:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5033:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5033:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4785:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4796:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4804:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4812:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4823:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4675:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5343:428:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5353:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5365:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5376:3:94",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5361:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5361:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5353:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5389:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5399:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5393:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5457:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5472:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5480:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5468:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5468:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5450:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5450:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5450:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5504:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5515:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5500:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5500:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5524:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5532:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5520:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5520:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5493:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5493:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5493:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5556:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5567:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5552:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5552:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5572:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5545:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5545:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5545:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5599:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5610:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5595:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5595:18:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5615:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5588:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5588:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5588:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5642:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5653:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5638:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5638:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "5663:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5671:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5659:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5659:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5631:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5631:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5631:46:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5697:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5708:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5693:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5693:19:94"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "5714:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5686:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5686:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5686:35:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5741:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5752:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5737:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5737:19:94"
                                  },
                                  {
                                    "name": "value6",
                                    "nodeType": "YulIdentifier",
                                    "src": "5758:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5730:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5730:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5730:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5264:9:94",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "5275:6:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "5283:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5291:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5299:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5307:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5315:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5323:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5334:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5078:693:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6013:384:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6023:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6035:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6046:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6031:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6031:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6023:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6059:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6069:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6063:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6127:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6142:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6150:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6138:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6138:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6120:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6120:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6120:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6174:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6185:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6170:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6170:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6194:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6202:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6190:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6190:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6163:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6163:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6163:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6226:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6237:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6222:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6222:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6242:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6215:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6215:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6215:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6269:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6280:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6265:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6265:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value3",
                                        "nodeType": "YulIdentifier",
                                        "src": "6289:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6297:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6285:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6285:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6258:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6258:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6258:45:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6323:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6334:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6319:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6319:19:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6340:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6312:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6312:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6312:35:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6367:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6378:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6363:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6363:19:94"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "6384:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6356:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6356:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6356:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5942:9:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "5953:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5961:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5969:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5977:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5985:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5993:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6004:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5776:621:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6531:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6541:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6553:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6564:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6549:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6549:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6541:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6583:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6598:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6606:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6594:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6594:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6576:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6576:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6576:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6670:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6681:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6666:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6666:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6686:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6659:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6659:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6659:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6492:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6503:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6511:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6522:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6402:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6825:321:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6842:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6853:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6835:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6835:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6835:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6865:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6885:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6879:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6879:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "6869:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6912:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6923:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6908:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6908:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6928:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6901:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6901:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6901:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6970:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6978:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6966:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6966:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6987:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6998:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6983:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6983:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7003:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "6944:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6944:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6944:66:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7019:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7035:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "7054:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "7062:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "7050:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7050:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7067:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "7046:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7046:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7031:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7031:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7137:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7027:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7027:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7019:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6794:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6805:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6816:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6704:442:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7325:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7342:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7353:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7335:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7335:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7335:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7376:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7387:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7372:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7372:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7392:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7365:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7365:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7365:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7415:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7426:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7411:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7411:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7431:34:94",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7404:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7404:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7404:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7486:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7497:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7482:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7482:18:94"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7502:8:94",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7475:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7475:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7475:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7520:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7532:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7543:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7528:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7528:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7520:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7302:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7316:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7151:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7732:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7749:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7760:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7742:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7742:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7742:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7783:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7794:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7779:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7779:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7799:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7772:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7772:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7772:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7822:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7833:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7818:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7818:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7838:31:94",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7811:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7811:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7811:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7879:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7891:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7902:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7887:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7887:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7879:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7709:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7723:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7558:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8090:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8107:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8118:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8100:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8100:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8100:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8141:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8152:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8137:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8137:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8157:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8130:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8130:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8130:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8180:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8191:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8176:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8176:18:94"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8196:34:94",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8169:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8169:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8169:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8251:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8262:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8247:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8247:18:94"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8267:12:94",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8240:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8240:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8240:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8289:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8301:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8312:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8297:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8297:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8289:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8067:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8081:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7916:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8375:234:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8410:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8431:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8434:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8424:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8424:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8424:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8532:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8535:4:94",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8525:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8525:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8525:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8560:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8563:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8553:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8553:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8553:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8391:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8398:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8394:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8394:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8388:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8388:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8385:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8587:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8598:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8601:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8594:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8594:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8587:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8358:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8361:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8367:3:94",
                            "type": ""
                          }
                        ],
                        "src": "8327:282:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8667:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8677:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8686:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8681:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8746:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "8771:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "8776:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8767:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8767:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8790:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8795:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8786:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8786:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8780:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8780:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8760:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8760:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8760:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8707:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8710:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8704:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8704:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "8718:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8720:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "8729:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8732:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8725:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8725:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "8720:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8700:3:94",
                                "statements": []
                              },
                              "src": "8696:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8835:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "8848:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "8853:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8844:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8844:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8862:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8837:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8837:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8837:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8824:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8827:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8821:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8821:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8818:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "8645:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "8650:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "8655:6:94",
                            "type": ""
                          }
                        ],
                        "src": "8614:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8922:109:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9009:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9018:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9021:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9011:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9011:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9011:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "8945:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "8956:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8963:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "8952:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8952:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "8942:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8942:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8935:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8935:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8932:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8911:5:94",
                            "type": ""
                          }
                        ],
                        "src": "8877:154:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_struct_DelegateSignature_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 160) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IPrizePool_$8967t_uint256t_addresst_struct$_DelegateSignature_$10705_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 256) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n        value3 := abi_decode_struct_DelegateSignature_calldata(add(headStart, 96), dataEnd)\n    }\n    function abi_decode_tuple_t_contract$_IPrizePool_$8967t_uint256t_addresst_struct$_Signature_$10699_calldata_ptrt_struct$_DelegateSignature_$10705_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 384) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n        if slt(add(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0), 128) { revert(0, 0) }\n        value3 := add(headStart, 96)\n        value4 := abi_decode_struct_DelegateSignature_calldata(add(headStart, 224), dataEnd)\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_Signature_$10699_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 128)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, calldataload(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint8(add(headStart, 32)))\n        mstore(add(memPtr, 64), calldataload(add(headStart, 64)))\n        mstore(add(memPtr, 96), calldataload(add(headStart, 96)))\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint8(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint8(headStart)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 224)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xff))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), value6)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), and(value3, 0xff))\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063a81bc43b1461003b578063c00dbd5114610050575b600080fd5b61004e6100493660046109cd565b610063565b005b61004e61005e36600461097a565b61022a565b6000856001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561009e57600080fd5b505afa1580156100b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100d6919061093b565b90506000866001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b15801561011357600080fd5b505afa158015610127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014b919061093b565b90506001600160a01b03811663d505accf333089883561017160408b0160208c01610b06565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015287013560a4820152606087013560c482015260e401600060405180830381600087803b1580156101fb57600080fd5b505af115801561020f573d6000803e3d6000fd5b5050505061022187838389898861032a565b50505050505050565b6000846001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d919061093b565b90506000856001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b1580156102da57600080fd5b505afa1580156102ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610312919061093b565b905061032286838388888861032a565b505050505050565b610337843385898661041b565b600061034b36839003830160208401610a5b565b90506001600160a01b03861663919974dc8461036a602086018661091e565b845160208601516040808801516060890151915160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152959094166024860152604485019290925260ff166064840152608483019190915260a482015260c401600060405180830381600087803b1580156103fa57600080fd5b505af115801561040e573d6000803e3d6000fd5b5050505050505050505050565b6104306001600160a01b0386168530866104c6565b6104446001600160a01b038616838561057d565b6040517fffaad6a50000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820185905283169063ffaad6a590604401600060405180830381600087803b1580156104a757600080fd5b505af11580156104bb573d6000803e3d6000fd5b505050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526105779085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610670565b50505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156105e257600080fd5b505afa1580156105f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061a9190610aed565b6106249190610b70565b6040516001600160a01b0385166024820152604481018290529091506105779085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610513565b60006106c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661075f9092919063ffffffff16565b80519091501561075a57808060200190518101906106e39190610958565b61075a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b505050565b606061076e8484600085610778565b90505b9392505050565b6060824710156107f05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610751565b843b61083e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610751565b600080866001600160a01b0316858760405161085a9190610b21565b60006040518083038185875af1925050503d8060008114610897576040519150601f19603f3d011682016040523d82523d6000602084013e61089c565b606091505b50915091506108ac8282866108b7565b979650505050505050565b606083156108c6575081610771565b8251156108d65782518084602001fd5b8160405162461bcd60e51b81526004016107519190610b3d565b600060a0828403121561090257600080fd5b50919050565b803560ff8116811461091957600080fd5b919050565b60006020828403121561093057600080fd5b813561077181610bdb565b60006020828403121561094d57600080fd5b815161077181610bdb565b60006020828403121561096a57600080fd5b8151801515811461077157600080fd5b600080600080610100858703121561099157600080fd5b843561099c81610bdb565b93506020850135925060408501356109b381610bdb565b91506109c286606087016108f0565b905092959194509250565b60008060008060008587036101808112156109e757600080fd5b86356109f281610bdb565b9550602087013594506040870135610a0981610bdb565b935060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa082011215610a3b57600080fd5b50606086019150610a4f8760e088016108f0565b90509295509295909350565b600060808284031215610a6d57600080fd5b6040516080810181811067ffffffffffffffff82111715610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405282358152610aca60208401610908565b602082015260408301356040820152606083013560608201528091505092915050565b600060208284031215610aff57600080fd5b5051919050565b600060208284031215610b1857600080fd5b61077182610908565b60008251610b33818460208701610baf565b9190910192915050565b6020815260008251806020840152610b5c816040850160208701610baf565b601f01601f19169190910160400192915050565b60008219821115610baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b83811015610bca578181015183820152602001610bb2565b838111156105775750506000910152565b6001600160a01b0381168114610bf057600080fd5b5056fea26469706673582212207593ea4afc2abd6c493bf3ab64dbfff92da0ab0e49d90eec6f1fcdf1320c585864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA81BC43B EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xC00DBD51 EQ PUSH2 0x50 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x49 CALLDATASIZE PUSH1 0x4 PUSH2 0x9CD JUMP JUMPDEST PUSH2 0x63 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4E PUSH2 0x5E CALLDATASIZE PUSH1 0x4 PUSH2 0x97A JUMP JUMPDEST PUSH2 0x22A JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD6 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x113 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x127 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x14B SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xD505ACCF CALLER ADDRESS DUP10 DUP9 CALLDATALOAD PUSH2 0x171 PUSH1 0x40 DUP12 ADD PUSH1 0x20 DUP13 ADD PUSH2 0xB06 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP10 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0xFF AND PUSH1 0x84 DUP4 ADD MSTORE DUP8 ADD CALLDATALOAD PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH1 0xC4 DUP3 ADD MSTORE PUSH1 0xE4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x20F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x221 DUP8 DUP4 DUP4 DUP10 DUP10 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x265 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x279 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x21DF0DA7 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2EE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x312 SWAP2 SWAP1 PUSH2 0x93B JUMP JUMPDEST SWAP1 POP PUSH2 0x322 DUP7 DUP4 DUP4 DUP9 DUP9 DUP9 PUSH2 0x32A JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x337 DUP5 CALLER DUP6 DUP10 DUP7 PUSH2 0x41B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34B CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0xA5B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH4 0x919974DC DUP5 PUSH2 0x36A PUSH1 0x20 DUP7 ADD DUP7 PUSH2 0x91E JUMP JUMPDEST DUP5 MLOAD PUSH1 0x20 DUP7 ADD MLOAD PUSH1 0x40 DUP1 DUP9 ADD MLOAD PUSH1 0x60 DUP10 ADD MLOAD SWAP2 MLOAD PUSH1 0xE0 DUP9 SWAP1 SHL PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x24 DUP7 ADD MSTORE PUSH1 0x44 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0xFF AND PUSH1 0x64 DUP5 ADD MSTORE PUSH1 0x84 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0xC4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x3FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x40E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x430 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP6 ADDRESS DUP7 PUSH2 0x4C6 JUMP JUMPDEST PUSH2 0x444 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP4 DUP6 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFAAD6A500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE DUP4 AND SWAP1 PUSH4 0xFFAAD6A5 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4BB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x670 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5F6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x61A SWAP2 SWAP1 PUSH2 0xAED JUMP JUMPDEST PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xB70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x577 SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x513 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6C5 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x75F SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x75A JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x6E3 SWAP2 SWAP1 PUSH2 0x958 JUMP JUMPDEST PUSH2 0x75A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x76E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x778 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x7F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x751 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x83E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x751 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x85A SWAP2 SWAP1 PUSH2 0xB21 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x897 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x89C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x8AC DUP3 DUP3 DUP7 PUSH2 0x8B7 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x8C6 JUMPI POP DUP2 PUSH2 0x771 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x8D6 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x751 SWAP2 SWAP1 PUSH2 0xB3D JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x902 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x919 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x930 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x94D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x771 DUP2 PUSH2 0xBDB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x771 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x991 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x99C DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x9B3 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP2 POP PUSH2 0x9C2 DUP7 PUSH1 0x60 DUP8 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 DUP8 SUB PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x9E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x9F2 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0xA09 DUP2 PUSH2 0xBDB JUMP JUMPDEST SWAP4 POP PUSH1 0x80 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0 DUP3 ADD SLT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x60 DUP7 ADD SWAP2 POP PUSH2 0xA4F DUP8 PUSH1 0xE0 DUP9 ADD PUSH2 0x8F0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA6D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x80 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xAB7 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP3 CALLDATALOAD DUP2 MSTORE PUSH2 0xACA PUSH1 0x20 DUP5 ADD PUSH2 0x908 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB18 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x771 DUP3 PUSH2 0x908 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0xB33 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0xB5C DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xBAA JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xBCA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xBB2 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x577 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xBF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH22 0x93EA4AFC2ABD6C493BF3AB64DBFFF92DA0AB0E49D90E 0xEC PUSH16 0x1FCDF1320C585864736F6C6343000806 STOP CALLER ",
              "sourceMap": "1109:3988:47:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:777;;;;;;:::i;:::-;;:::i;:::-;;2811:468;;;;;;:::i;:::-;;:::i;1688:777::-;1929:15;1947:10;-1:-1:-1;;;;;1947:20:47;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1929:40;;1979:14;1996:10;-1:-1:-1;;;;;1996:19:47;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1979:38;-1:-1:-1;;;;;;2028:27:47;;;2069:10;2101:4;2120:7;2141:25;;2180:18;;;;;;;;:::i;:::-;2212;2028:244;;;;;;;;;;-1:-1:-1;;;;;5468:15:94;;;2028:244:47;;;5450:34:94;5520:15;;;;5500:18;;;5493:43;5552:18;;;5545:34;;;;5595:18;;;5588:34;5671:4;5659:17;5638:19;;;5631:46;2212:18:47;;;5693:19:94;;;5686:35;2244:18:47;;;;5737:19:94;;;5730:35;5361:19;;2028:244:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2283:175;2326:10;2351:7;2372:6;2392:7;2413:3;2430:18;2283:21;:175::i;:::-;1919:546;;1688:777;;;;;:::o;2811:468::-;2998:15;3016:10;-1:-1:-1;;;;;3016:20:47;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2998:40;;3048:14;3065:10;-1:-1:-1;;;;;3065:19:47;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3048:38;;3097:175;3140:10;3165:7;3186:6;3206:7;3227:3;3244:18;3097:21;:175::i;:::-;2988:291;;2811:468;;;;:::o;3772:580::-;4006:56;4017:6;4025:10;4037:7;4046:10;4058:3;4006:10;:56::i;:::-;4073:26;:57;;;;;;;4102:28;;;4073:57;:::i;:::-;;-1:-1:-1;;;;;;4141:29:47;;;4184:3;4201:27;;;;:18;:27;:::i;:::-;4242:18;;4274:11;;;;4299;;;;;4324;;;;4141:204;;;;;;;;;;-1:-1:-1;;;;;6138:15:94;;;4141:204:47;;;6120:34:94;6190:15;;;;6170:18;;;6163:43;6222:18;;;6215:34;;;;6297:4;6285:17;6265:18;;;6258:45;6319:19;;;6312:35;;;;6363:19;;;6356:35;6031:19;;4141:204:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3996:356;3772:580;;;;;;:::o;4735:360::-;4902:63;-1:-1:-1;;;;;4902:31:47;;4934:6;4950:4;4957:7;4902:31;:63::i;:::-;4975:57;-1:-1:-1;;;;;4975:36:47;;5012:10;5024:7;4975:36;:57::i;:::-;5042:46;;;;;-1:-1:-1;;;;;6594:55:94;;;5042:46:47;;;6576:74:94;6666:18;;;6659:34;;;5042:32:47;;;;;6549:18:94;;5042:46:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4735:360;;;;;:::o;912:241:6:-;1077:68;;-1:-1:-1;;;;;4956:15:94;;;1077:68:6;;;4938:34:94;5008:15;;4988:18;;;4981:43;5040:18;;;5033:34;;;1050:96:6;;1070:5;;1100:27;;4850:18:94;;1077:68:6;;;;-1:-1:-1;;1077:68:6;;;;;;;;;;;;;;;;;;;;;;;;;;;1050:19;:96::i;:::-;912:241;;;;:::o;2022:310::-;2171:39;;;;;2195:4;2171:39;;;4578:34:94;-1:-1:-1;;;;;4648:15:94;;;4628:18;;;4621:43;2148:20:6;;2213:5;;2171:15;;;;;4490:18:94;;2171:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;-1:-1:-1;;;;;6594:55:94;;2255:69:6;;;6576:74:94;6666:18;;;6659:34;;;2148:70:6;;-1:-1:-1;2228:97:6;;2248:5;;2278:22;;6549:18:94;;2255:69:6;6531:168:94;3207:706:6;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:6;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:6;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:6;;8118:2:94;3811:85:6;;;8100:21:94;8157:2;8137:18;;;8130:30;8196:34;8176:18;;;8169:62;8267:12;8247:18;;;8240:40;8297:19;;3811:85:6;;;;;;;;;3277:636;3207:706;;:::o;3514:223:9:-;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;:::-;3671:59;;3514:223;;;;;;:::o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:9;;7353:2:94;4790:81:9;;;7335:21:94;7392:2;7372:18;;;7365:30;7431:34;7411:18;;;7404:62;7502:8;7482:18;;;7475:36;7528:19;;4790:81:9;7325:228:94;4790:81:9;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:9;;7760:2:94;4881:60:9;;;7742:21:94;7799:2;7779:18;;;7772:30;7838:31;7818:18;;;7811:59;7887:18;;4881:60:9;7732:179:94;4881:60:9;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:9;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:9:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:9;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:9;;;;;;;;:::i;14:166:94:-;84:5;129:3;120:6;115:3;111:16;107:26;104:2;;;146:1;143;136:12;104:2;-1:-1:-1;168:6:94;94:86;-1:-1:-1;94:86:94:o;185:156::-;251:20;;311:4;300:16;;290:27;;280:2;;331:1;328;321:12;280:2;232:109;;;:::o;346:247::-;405:6;458:2;446:9;437:7;433:23;429:32;426:2;;;474:1;471;464:12;426:2;513:9;500:23;532:31;557:5;532:31;:::i;598:251::-;668:6;721:2;709:9;700:7;696:23;692:32;689:2;;;737:1;734;727:12;689:2;769:9;763:16;788:31;813:5;788:31;:::i;854:277::-;921:6;974:2;962:9;953:7;949:23;945:32;942:2;;;990:1;987;980:12;942:2;1022:9;1016:16;1075:5;1068:13;1061:21;1054:5;1051:32;1041:2;;1097:1;1094;1087:12;1136:623;1279:6;1287;1295;1303;1356:3;1344:9;1335:7;1331:23;1327:33;1324:2;;;1373:1;1370;1363:12;1324:2;1412:9;1399:23;1431:31;1456:5;1431:31;:::i;:::-;1481:5;-1:-1:-1;1533:2:94;1518:18;;1505:32;;-1:-1:-1;1589:2:94;1574:18;;1561:32;1602:33;1561:32;1602:33;:::i;:::-;1654:7;-1:-1:-1;1680:73:94;1745:7;1740:2;1725:18;;1680:73;:::i;:::-;1670:83;;1314:445;;;;;;;:::o;1764:843::-;1946:6;1954;1962;1970;1978;2022:9;2013:7;2009:23;2052:3;2048:2;2044:12;2041:2;;;2069:1;2066;2059:12;2041:2;2108:9;2095:23;2127:31;2152:5;2127:31;:::i;:::-;2177:5;-1:-1:-1;2229:2:94;2214:18;;2201:32;;-1:-1:-1;2285:2:94;2270:18;;2257:32;2298:33;2257:32;2298:33;:::i;:::-;2350:7;-1:-1:-1;2450:3:94;2381:66;2373:75;;2369:85;2366:2;;;2467:1;2464;2457:12;2366:2;;2505;2494:9;2490:18;2480:28;;2527:74;2593:7;2587:3;2576:9;2572:19;2527:74;:::i;:::-;2517:84;;1989:618;;;;;;;;:::o;2884:799::-;2971:6;3024:3;3012:9;3003:7;2999:23;2995:33;2992:2;;;3041:1;3038;3031:12;2992:2;3074;3068:9;3116:3;3108:6;3104:16;3186:6;3174:10;3171:22;3150:18;3138:10;3135:34;3132:62;3129:2;;;3227:77;3224:1;3217:88;3328:4;3325:1;3318:15;3356:4;3353:1;3346:15;3129:2;3387;3380:22;3426:23;;3411:39;;3483:36;3515:2;3500:18;;3483:36;:::i;:::-;3478:2;3470:6;3466:15;3459:61;3581:2;3570:9;3566:18;3553:32;3548:2;3540:6;3536:15;3529:57;3647:2;3636:9;3632:18;3619:32;3614:2;3606:6;3602:15;3595:57;3671:6;3661:16;;;2982:701;;;;:::o;3688:184::-;3758:6;3811:2;3799:9;3790:7;3786:23;3782:32;3779:2;;;3827:1;3824;3817:12;3779:2;-1:-1:-1;3850:16:94;;3769:103;-1:-1:-1;3769:103:94:o;3877:182::-;3934:6;3987:2;3975:9;3966:7;3962:23;3958:32;3955:2;;;4003:1;4000;3993:12;3955:2;4026:27;4043:9;4026:27;:::i;4064:274::-;4193:3;4231:6;4225:13;4247:53;4293:6;4288:3;4281:4;4273:6;4269:17;4247:53;:::i;:::-;4316:16;;;;;4201:137;-1:-1:-1;;4201:137:94:o;6704:442::-;6853:2;6842:9;6835:21;6816:4;6885:6;6879:13;6928:6;6923:2;6912:9;6908:18;6901:34;6944:66;7003:6;6998:2;6987:9;6983:18;6978:2;6970:6;6966:15;6944:66;:::i;:::-;7062:2;7050:15;-1:-1:-1;;7046:88:94;7031:104;;;;7137:2;7027:113;;6825:321;-1:-1:-1;;6825:321:94:o;8327:282::-;8367:3;8398:1;8394:6;8391:1;8388:13;8385:2;;;8434:77;8431:1;8424:88;8535:4;8532:1;8525:15;8563:4;8560:1;8553:15;8385:2;-1:-1:-1;8594:9:94;;8375:234::o;8614:258::-;8686:1;8696:113;8710:6;8707:1;8704:13;8696:113;;;8786:11;;;8780:18;8767:11;;;8760:39;8732:2;8725:10;8696:113;;;8827:6;8824:1;8821:13;8818:2;;;-1:-1:-1;;8862:1:94;8844:16;;8837:27;8667:205::o;8877:154::-;-1:-1:-1;;;;;8956:5:94;8952:54;8945:5;8942:65;8932:2;;9021:1;9018;9011:12;8932:2;8922:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "622600",
                "executionCost": "657",
                "totalCost": "623257"
              },
              "external": {
                "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": "infinite",
                "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": "infinite"
              },
              "internal": {
                "_depositTo(address,address,uint256,address,address)": "infinite",
                "_depositToAndDelegate(address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)": "infinite"
              }
            },
            "methodIdentifiers": {
              "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": "c00dbd51",
              "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": "a81bc43b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"_prizePool\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"internalType\":\"struct Signature\",\"name\":\"signature\",\"type\":\"tuple\"}],\"internalType\":\"struct DelegateSignature\",\"name\":\"_delegateSignature\",\"type\":\"tuple\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"_prizePool\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"internalType\":\"struct Signature\",\"name\":\"_permitSignature\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"internalType\":\"struct Signature\",\"name\":\"signature\",\"type\":\"tuple\"}],\"internalType\":\"struct DelegateSignature\",\"name\":\"_delegateSignature\",\"type\":\"tuple\"}],\"name\":\"permitAndDepositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"custom:experimental\":\"This contract has not been fully audited yet.\",\"kind\":\"dev\",\"methods\":{\"depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))\":{\"params\":{\"_amount\":\"Amount of tokens to deposit into the prize pool\",\"_delegateSignature\":\"Delegate signature\",\"_prizePool\":\"Address of the prize pool to deposit into\",\"_to\":\"Address that will receive the tickets\"}},\"permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))\":{\"details\":\"The `spender` address required by the permit function is the address of this contract.\",\"params\":{\"_amount\":\"Amount of tokens to deposit into the prize pool\",\"_delegateSignature\":\"Delegate signature\",\"_permitSignature\":\"Permit signature\",\"_prizePool\":\"Address of the prize pool to deposit into\",\"_to\":\"Address that will receive the tickets\"}}},\"title\":\"Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))\":{\"notice\":\"Deposits user's token into the prize pool and delegate tickets.\"},\"permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))\":{\"notice\":\"Permits this contract to spend on a user's behalf and deposits into the prize pool.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol\":\"EIP2612PermitAndDeposit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\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 */\\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    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\",\"keccak256\":\"0xf41ca991f30855bf80ffd11e9347856a517b977f0a6c2d52e6421a99b7840329\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0x1dd613819255c4af91347b88cd156724df2a594c909bd9d2207bebc560a254fa\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n * @notice Secp256k1 signature values.\\n * @param deadline Timestamp at which the signature expires\\n * @param v `v` portion of the signature\\n * @param r `r` portion of the signature\\n * @param s `s` portion of the signature\\n */\\nstruct Signature {\\n    uint256 deadline;\\n    uint8 v;\\n    bytes32 r;\\n    bytes32 s;\\n}\\n\\n/**\\n * @notice Delegate signature to allow delegation of tickets to delegate.\\n * @param delegate Address to delegate the prize pool tickets to\\n * @param signature Delegate signature\\n */\\nstruct DelegateSignature {\\n    address delegate;\\n    Signature signature;\\n}\\n\\n/// @title Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\\n/// @custom:experimental This contract has not been fully audited yet.\\ncontract EIP2612PermitAndDeposit {\\n    using SafeERC20 for IERC20;\\n\\n    /**\\n     * @notice Permits this contract to spend on a user's behalf and deposits into the prize pool.\\n     * @dev The `spender` address required by the permit function is the address of this contract.\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _amount Amount of tokens to deposit into the prize pool\\n     * @param _to Address that will receive the tickets\\n     * @param _permitSignature Permit signature\\n     * @param _delegateSignature Delegate signature\\n     */\\n    function permitAndDepositToAndDelegate(\\n        IPrizePool _prizePool,\\n        uint256 _amount,\\n        address _to,\\n        Signature calldata _permitSignature,\\n        DelegateSignature calldata _delegateSignature\\n    ) external {\\n        ITicket _ticket = _prizePool.getTicket();\\n        address _token = _prizePool.getToken();\\n\\n        IERC20Permit(_token).permit(\\n            msg.sender,\\n            address(this),\\n            _amount,\\n            _permitSignature.deadline,\\n            _permitSignature.v,\\n            _permitSignature.r,\\n            _permitSignature.s\\n        );\\n\\n        _depositToAndDelegate(\\n            address(_prizePool),\\n            _ticket,\\n            _token,\\n            _amount,\\n            _to,\\n            _delegateSignature\\n        );\\n    }\\n\\n    /**\\n     * @notice Deposits user's token into the prize pool and delegate tickets.\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _amount Amount of tokens to deposit into the prize pool\\n     * @param _to Address that will receive the tickets\\n     * @param _delegateSignature Delegate signature\\n     */\\n    function depositToAndDelegate(\\n        IPrizePool _prizePool,\\n        uint256 _amount,\\n        address _to,\\n        DelegateSignature calldata _delegateSignature\\n    ) external {\\n        ITicket _ticket = _prizePool.getTicket();\\n        address _token = _prizePool.getToken();\\n\\n        _depositToAndDelegate(\\n            address(_prizePool),\\n            _ticket,\\n            _token,\\n            _amount,\\n            _to,\\n            _delegateSignature\\n        );\\n    }\\n\\n    /**\\n     * @notice Deposits user's token into the prize pool and delegate tickets.\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _ticket Address of the ticket minted by the prize pool\\n     * @param _token Address of the token used to deposit into the prize pool\\n     * @param _amount Amount of tokens to deposit into the prize pool\\n     * @param _to Address that will receive the tickets\\n     * @param _delegateSignature Delegate signature\\n     */\\n    function _depositToAndDelegate(\\n        address _prizePool,\\n        ITicket _ticket,\\n        address _token,\\n        uint256 _amount,\\n        address _to,\\n        DelegateSignature calldata _delegateSignature\\n    ) internal {\\n        _depositTo(_token, msg.sender, _amount, _prizePool, _to);\\n\\n        Signature memory signature = _delegateSignature.signature;\\n\\n        _ticket.delegateWithSignature(\\n            _to,\\n            _delegateSignature.delegate,\\n            signature.deadline,\\n            signature.v,\\n            signature.r,\\n            signature.s\\n        );\\n    }\\n\\n    /**\\n     * @notice Deposits user's token into the prize pool.\\n     * @param _token Address of the EIP-2612 token to approve and deposit\\n     * @param _owner Token owner's address (Authorizer)\\n     * @param _amount Amount of tokens to deposit\\n     * @param _prizePool Address of the prize pool to deposit into\\n     * @param _to Address that will receive the tickets\\n     */\\n    function _depositTo(\\n        address _token,\\n        address _owner,\\n        uint256 _amount,\\n        address _prizePool,\\n        address _to\\n    ) internal {\\n        IERC20(_token).safeTransferFrom(_owner, address(this), _amount);\\n        IERC20(_token).safeIncreaseAllowance(_prizePool, _amount);\\n        IPrizePool(_prizePool).depositTo(_to, _amount);\\n    }\\n}\\n\",\"keccak256\":\"0x3144c696947c8ff9f694c87f82f54a96d2c443616f1aabf6e37c6e7e42070779\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "depositToAndDelegate(address,uint256,address,(address,(uint256,uint8,bytes32,bytes32)))": {
                "notice": "Deposits user's token into the prize pool and delegate tickets."
              },
              "permitAndDepositToAndDelegate(address,uint256,address,(uint256,uint8,bytes32,bytes32),(address,(uint256,uint8,bytes32,bytes32)))": {
                "notice": "Permits this contract to spend on a user's behalf and deposits into the prize pool."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol": {
        "PrizePool": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "VERSION",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "_compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "constructor": {
                "params": {
                  "_owner": "Address of the Prize Pool owner"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "title": "PoolTogether V4 PrizePool",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "VERSION()": "ffa1ad74",
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "claimOwnership()": "4e71e0c8",
              "compLikeDelegate(address,address)": "2f7627e3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "isControlled(address)": "78b3d327",
              "onERC721Received(address,address,uint256,bytes)": "150b7a02",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBalanceCap(uint256)": "aec9c307",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "transferOwnership(address)": "f2fde38b",
              "withdrawFrom(address,uint256)": "9470b0bd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"_tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"_compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"constructor\":{\"params\":{\"_owner\":\"Address of the Prize Pool owner\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"title\":\"PoolTogether V4 PrizePool\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"VERSION()\":{\"notice\":\"Semver Version\"},\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"constructor\":{\"notice\":\"Deploy the Prize Pool\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\"}},\"notice\":\"Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy. Users deposit and withdraw from this contract to participate in Prize Pool. Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract. Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol\":\"PrizePool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.0;\\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    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        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\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\",\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Checker.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xf7291d7213336b00ee7edbf7cd5034778dd7b0bda2a7489e664f1e5cacc6c24e\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0x1dd613819255c4af91347b88cd156724df2a594c909bd9d2207bebc560a254fa\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizePool\\n  * @author PoolTogether Inc Team\\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\\n            Users deposit and withdraw from this contract to participate in Prize Pool.\\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\\n*/\\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n    using ERC165Checker for address;\\n\\n    /// @notice Semver Version\\n    string public constant VERSION = \\\"4.0.0\\\";\\n\\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\\n    ITicket internal ticket;\\n\\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\\n    address internal prizeStrategy;\\n\\n    /// @notice The total amount of tickets a user can hold.\\n    uint256 internal balanceCap;\\n\\n    /// @notice The total amount of funds that the prize pool can hold.\\n    uint256 internal liquidityCap;\\n\\n    /// @notice the The awardable balance\\n    uint256 internal _currentAwardBalance;\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure caller is the prize-strategy\\n    modifier onlyPrizeStrategy() {\\n        require(msg.sender == prizeStrategy, \\\"PrizePool/only-prizeStrategy\\\");\\n        _;\\n    }\\n\\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\\n    modifier canAddLiquidity(uint256 _amount) {\\n        require(_canAddLiquidity(_amount), \\\"PrizePool/exceeds-liquidity-cap\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Prize Pool\\n    /// @param _owner Address of the Prize Pool owner\\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\\n        _setLiquidityCap(type(uint256).max);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizePool\\n    function balance() external override returns (uint256) {\\n        return _balance();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardBalance() external view override returns (uint256) {\\n        return _currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\\n        return _canAwardExternal(_externalToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\\n        return _isControlled(_controlledToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getAccountedBalance() external view override returns (uint256) {\\n        return _ticketTotalSupply();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getBalanceCap() external view override returns (uint256) {\\n        return balanceCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getLiquidityCap() external view override returns (uint256) {\\n        return liquidityCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getTicket() external view override returns (ITicket) {\\n        return ticket;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getPrizeStrategy() external view override returns (address) {\\n        return prizeStrategy;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getToken() external view override returns (address) {\\n        return address(_token());\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\\n        uint256 ticketTotalSupply = _ticketTotalSupply();\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\\n        uint256 currentBalance = _balance();\\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\\n            ? currentBalance - ticketTotalSupply\\n            : 0;\\n\\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\\n            ? totalInterest - currentAwardBalance\\n            : 0;\\n\\n        if (unaccountedPrizeBalance > 0) {\\n            currentAwardBalance = totalInterest;\\n            _currentAwardBalance = currentAwardBalance;\\n\\n            emit AwardCaptured(unaccountedPrizeBalance);\\n        }\\n\\n        return currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositTo(address _to, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n        ticket.controllerDelegateFor(msg.sender, _delegate);\\n    }\\n\\n    /// @notice Transfers tokens in from one user and mints tickets to another\\n    /// @notice _operator The user to transfer tokens from\\n    /// @notice _to The user to mint tickets to\\n    /// @notice _amount The amount to transfer and mint\\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\\n    {\\n        require(_canDeposit(_to, _amount), \\\"PrizePool/exceeds-balance-cap\\\");\\n\\n        ITicket _ticket = ticket;\\n\\n        _token().safeTransferFrom(_operator, address(this), _amount);\\n\\n        _mint(_to, _amount, _ticket);\\n        _supply(_amount);\\n\\n        emit Deposited(_operator, _to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function withdrawFrom(address _from, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        returns (uint256)\\n    {\\n        ITicket _ticket = ticket;\\n\\n        // burn the tickets\\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\\n\\n        // redeem the tickets\\n        uint256 _redeemed = _redeem(_amount);\\n\\n        _token().safeTransfer(_from, _redeemed);\\n\\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\\n\\n        return _redeemed;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        require(_amount <= currentAwardBalance, \\\"PrizePool/award-exceeds-avail\\\");\\n\\n        unchecked {\\n            _currentAwardBalance = currentAwardBalance - _amount;\\n        }\\n\\n        ITicket _ticket = ticket;\\n\\n        _mint(_to, _amount, _ticket);\\n\\n        emit Awarded(_to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function transferExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC721(\\n        address _to,\\n        address _externalToken,\\n        uint256[] calldata _tokenIds\\n    ) external override onlyPrizeStrategy {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_tokenIds.length == 0) {\\n            return;\\n        }\\n\\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \\n        bool hasAwardedTokenIds;\\n\\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\\n                hasAwardedTokenIds = true;\\n                _awardedTokenIds[i] = _tokenIds[i];\\n            } catch (\\n                bytes memory error\\n            ) {\\n                emit ErrorAwardingExternalERC721(error);\\n            }\\n        }\\n        if (hasAwardedTokenIds) { \\n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\\n        _setBalanceCap(_balanceCap);\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\\n        _setLiquidityCap(_liquidityCap);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\\n        require(address(_ticket) != address(0), \\\"PrizePool/ticket-not-zero-address\\\");\\n        require(address(ticket) == address(0), \\\"PrizePool/ticket-already-set\\\");\\n\\n        ticket = _ticket;\\n\\n        emit TicketSet(_ticket);\\n\\n        _setBalanceCap(type(uint256).max);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\\n        _setPrizeStrategy(_prizeStrategy);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\\n        if (_compLike.balanceOf(address(this)) > 0) {\\n            _compLike.delegate(_to);\\n        }\\n    }\\n\\n    /// @inheritdoc IERC721Receiver\\n    function onERC721Received(\\n        address,\\n        address,\\n        uint256,\\n        bytes calldata\\n    ) external pure override returns (bytes4) {\\n        return IERC721Receiver.onERC721Received.selector;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\\n    /// @dev Only awardable `externalToken` can be transferred out\\n    /// @param _to Recipient address\\n    /// @param _externalToken Address of the external asset token being transferred\\n    /// @param _amount Amount of external assets to be transferred\\n    /// @return True if transfer is successful\\n    function _transferOut(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) internal returns (bool) {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_amount == 0) {\\n            return false;\\n        }\\n\\n        IERC20(_externalToken).safeTransfer(_to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\\n    /// @param _to The user who is receiving the tokens\\n    /// @param _amount The amount of tokens they are receiving\\n    /// @param _controlledToken The token that is going to be minted\\n    function _mint(\\n        address _to,\\n        uint256 _amount,\\n        ITicket _controlledToken\\n    ) internal {\\n        _controlledToken.controllerMint(_to, _amount);\\n    }\\n\\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\\n    /// @param _user Address of the user depositing.\\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\\n        uint256 _balanceCap = balanceCap;\\n\\n        if (_balanceCap == type(uint256).max) return true;\\n\\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\\n    }\\n\\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\\n        uint256 _liquidityCap = liquidityCap;\\n        if (_liquidityCap == type(uint256).max) return true;\\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\\n    }\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param _controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\\n        return (ticket == _controlledToken);\\n    }\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @param _balanceCap New balance cap.\\n    function _setBalanceCap(uint256 _balanceCap) internal {\\n        balanceCap = _balanceCap;\\n        emit BalanceCapSet(_balanceCap);\\n    }\\n\\n    /// @notice Allows the owner to set a liquidity cap for the pool\\n    /// @param _liquidityCap New liquidity cap\\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\\n        liquidityCap = _liquidityCap;\\n        emit LiquidityCapSet(_liquidityCap);\\n    }\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy\\n    function _setPrizeStrategy(address _prizeStrategy) internal {\\n        require(_prizeStrategy != address(0), \\\"PrizePool/prizeStrategy-not-zero\\\");\\n\\n        prizeStrategy = _prizeStrategy;\\n\\n        emit PrizeStrategySet(_prizeStrategy);\\n    }\\n\\n    /// @notice The current total of tickets.\\n    /// @return Ticket total supply.\\n    function _ticketTotalSupply() internal view returns (uint256) {\\n        return ticket.totalSupply();\\n    }\\n\\n    /// @dev Gets the current time as represented by the current block\\n    /// @return The timestamp of the current block\\n    function _currentTime() internal view virtual returns (uint256) {\\n        return block.timestamp;\\n    }\\n\\n    /* ============ Abstract Contract Implementatiton ============ */\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token\\n    function _token() internal view virtual returns (IERC20);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal virtual returns (uint256);\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal virtual;\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\\n}\\n\",\"keccak256\":\"0x7b5a51eb6c75a9a88a6f36c76cbaaab6db5396bacb2c82b3a2aeada33b3ca103\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 10,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 10947,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)9297"
              },
              {
                "astId": 10950,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 10953,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 10956,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 10959,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_currentAwardBalance",
                "offset": 0,
                "slot": "7",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(ITicket)9297": {
                "encoding": "inplace",
                "label": "contract ITicket",
                "numberOfBytes": "20"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "VERSION()": {
                "notice": "Semver Version"
              },
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "constructor": {
                "notice": "Deploy the Prize Pool"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit."
              }
            },
            "notice": "Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy. Users deposit and withdraw from this contract to participate in Prize Pool. Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract. Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol": {
        "YieldSourcePrizePool": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IYieldSource",
                  "name": "_yieldSource",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardCaptured",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Awarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "AwardedExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "winner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256[]",
                  "name": "tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "AwardedExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "BalanceCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "ControlledTokenAdded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "yieldSource",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Deposited",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes",
                  "name": "error",
                  "type": "bytes"
                }
              ],
              "name": "ErrorAwardingExternalERC721",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "LiquidityCapSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "address",
                  "name": "prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "PrizeStrategySet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Swept",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "ticket",
                  "type": "address"
                }
              ],
              "name": "TicketSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TransferredExternalERC20",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "operator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract ITicket",
                  "name": "token",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "redeemed",
                  "type": "uint256"
                }
              ],
              "name": "Withdrawal",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "VERSION",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "award",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "awardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "awardExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256[]",
                  "name": "_tokenIds",
                  "type": "uint256[]"
                }
              ],
              "name": "awardExternalERC721",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "balance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                }
              ],
              "name": "canAwardExternal",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "captureAwardBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ICompLike",
                  "name": "_compLike",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "compLikeDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "depositTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegate",
                  "type": "address"
                }
              ],
              "name": "depositToAndDelegate",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAccountedBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getBalanceCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLiquidityCap",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeStrategy",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTicket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_controlledToken",
                  "type": "address"
                }
              ],
              "name": "isControlled",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "name": "onERC721Received",
              "outputs": [
                {
                  "internalType": "bytes4",
                  "name": "",
                  "type": "bytes4"
                }
              ],
              "stateMutability": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_balanceCap",
                  "type": "uint256"
                }
              ],
              "name": "setBalanceCap",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_liquidityCap",
                  "type": "uint256"
                }
              ],
              "name": "setLiquidityCap",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_prizeStrategy",
                  "type": "address"
                }
              ],
              "name": "setPrizeStrategy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                }
              ],
              "name": "setTicket",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "sweep",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_externalToken",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "transferExternalERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_from",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawFrom",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "yieldSource",
              "outputs": [
                {
                  "internalType": "contract IYieldSource",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address)": {
                "details": "Emitted when yield source prize pool is deployed.",
                "params": {
                  "yieldSource": "Address of the yield source."
                }
              },
              "Swept(uint256)": {
                "params": {
                  "amount": "The amount that was swept"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "award(address,uint256)": {
                "details": "The amount awarded must be less than the awardBalance()",
                "params": {
                  "amount": "The amount of assets to be awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardBalance()": {
                "details": "captureAwardBalance() should be called first",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "awardExternalERC20(address,address,uint256)": {
                "details": "Used to award any arbitrary tokens held by the Prize Pool",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "awardExternalERC721(address,address,uint256[])": {
                "details": "Used to award any arbitrary NFTs held by the Prize Pool",
                "params": {
                  "externalToken": "The address of the external NFT token being awarded",
                  "to": "The address of the winner that receives the award",
                  "tokenIds": "An array of NFT Token IDs to be transferred"
                }
              },
              "balance()": {
                "returns": {
                  "_0": "The underlying balance of assets"
                }
              },
              "canAwardExternal(address)": {
                "details": "Checks with the Prize Pool if a specific token type may be awarded as an external prize",
                "params": {
                  "externalToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token may be awarded, false otherwise"
                }
              },
              "captureAwardBalance()": {
                "details": "This function also captures the reserve fees.",
                "returns": {
                  "_0": "The total amount of assets to be awarded for the current prize"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "compLikeDelegate(address,address)": {
                "params": {
                  "compLike": "The COMP-like token held by the prize pool that should be delegated",
                  "to": "The address to delegate to"
                }
              },
              "constructor": {
                "params": {
                  "_owner": "Address of the Yield Source Prize Pool owner",
                  "_yieldSource": "Address of the yield source"
                }
              },
              "depositTo(address,uint256)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "depositToAndDelegate(address,uint256,address)": {
                "params": {
                  "amount": "The amount of assets to deposit",
                  "delegate": "The address to delegate to for the caller",
                  "to": "The address receiving the newly minted tokens"
                }
              },
              "getAccountedBalance()": {
                "returns": {
                  "_0": "uint256 accountBalance"
                }
              },
              "isControlled(address)": {
                "details": "Checks if a specific token is controlled by the Prize Pool",
                "params": {
                  "controlledToken": "The address of the token to check"
                },
                "returns": {
                  "_0": "True if the token is a controlled token, false otherwise"
                }
              },
              "onERC721Received(address,address,uint256,bytes)": {
                "details": "Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setBalanceCap(uint256)": {
                "details": "If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.",
                "params": {
                  "balanceCap": "New balance cap."
                },
                "returns": {
                  "_0": "True if new balance cap has been successfully set."
                }
              },
              "setLiquidityCap(uint256)": {
                "params": {
                  "liquidityCap": "The new liquidity cap for the prize pool"
                }
              },
              "setPrizeStrategy(address)": {
                "params": {
                  "_prizeStrategy": "The new prize strategy."
                }
              },
              "setTicket(address)": {
                "params": {
                  "ticket": "Address of the ticket to set."
                },
                "returns": {
                  "_0": "True if ticket has been successfully set."
                }
              },
              "sweep()": {
                "details": "This becomes prize money"
              },
              "transferExternalERC20(address,address,uint256)": {
                "details": "Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.",
                "params": {
                  "amount": "The amount of external assets to be awarded",
                  "externalToken": "The address of the external asset token being awarded",
                  "to": "The address of the winner that receives the award"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              },
              "withdrawFrom(address,uint256)": {
                "params": {
                  "amount": "The amount of tokens to redeem for assets.",
                  "from": "The address to redeem tokens from."
                },
                "returns": {
                  "_0": "The actual amount withdrawn"
                }
              }
            },
            "title": "PoolTogether V4 YieldSourcePrizePool",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_11006": {
                  "entryPoint": null,
                  "id": 11006,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_12075": {
                  "entryPoint": null,
                  "id": 12075,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_18": {
                  "entryPoint": null,
                  "id": 18,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_11877": {
                  "entryPoint": 654,
                  "id": 11877,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 574,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address_payable_fromMemory": {
                  "entryPoint": 713,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_contract$_IYieldSource_$16357_fromMemory": {
                  "entryPoint": 752,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 815,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 877,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2476:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "103:170:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "149:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "158:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "161:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "151:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "151:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "151:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "133:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "145:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "116:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "116:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "113:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "174:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "193:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "187:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "187:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "178:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "237:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "212:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "212:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "212:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "252:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "262:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "252:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_payable_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "69:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "80:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "92:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "398:287:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "444:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "453:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "456:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "446:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "446:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "446:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "419:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "428:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "415:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "415:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "440:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "411:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "411:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "408:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "469:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "488:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "482:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "482:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "473:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "532:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "507:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "507:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "507:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "547:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "557:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "571:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "596:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "607:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "592:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "592:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "586:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "586:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "575:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "645:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "620:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "620:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "620:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "662:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "672:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "662:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IYieldSource_$16357_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "356:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "367:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "379:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "387:6:94",
                            "type": ""
                          }
                        ],
                        "src": "278:407:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "807:89:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "824:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "833:6:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "845:3:94",
                                            "type": "",
                                            "value": "224"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "850:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "841:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "841:20:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "829:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "829:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "817:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "817:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "817:46:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "872:18:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "883:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "888:1:94",
                                    "type": "",
                                    "value": "4"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "879:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "879:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "872:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "783:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "788:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "799:3:94",
                            "type": ""
                          }
                        ],
                        "src": "690:206:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1038:289:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1048:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1068:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1062:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1062:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1052:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1084:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1093:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1088:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1155:77:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1180:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "1185:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1176:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1176:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1203:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1211:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1199:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1199:14:94"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "1215:4:94",
                                                  "type": "",
                                                  "value": "0x20"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1195:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1195:25:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1189:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1189:32:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1169:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1169:53:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1169:53:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1114:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1117:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1111:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1111:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1125:21:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1127:17:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1136:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1139:4:94",
                                          "type": "",
                                          "value": "0x20"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1132:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1132:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1127:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1107:3:94",
                                "statements": []
                              },
                              "src": "1103:129:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1258:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1271:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "1276:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1267:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1267:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1285:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1260:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1260:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1260:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1247:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1250:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1244:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1244:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1241:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1298:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1309:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1314:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1305:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1305:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1298:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1014:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1019:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1030:3:94",
                            "type": ""
                          }
                        ],
                        "src": "901:426:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1506:231:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1523:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1534:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1516:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1516:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1557:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1568:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1553:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1553:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1573:2:94",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1546:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1596:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1607:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1592:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1592:18:94"
                                  },
                                  {
                                    "hexValue": "5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d796965",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1612:34:94",
                                    "type": "",
                                    "value": "YieldSourcePrizePool/invalid-yie"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1585:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1585:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1585:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1667:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1678:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1663:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1663:18:94"
                                  },
                                  {
                                    "hexValue": "6c642d736f75726365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1683:11:94",
                                    "type": "",
                                    "value": "ld-source"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1656:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1656:39:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1656:39:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1704:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1716:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1727:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1712:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1712:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1704:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1483:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1497:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1332:405:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1916:240:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1933:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1944:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1926:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1926:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1926:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1967:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1978:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1963:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1963:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1983:2:94",
                                    "type": "",
                                    "value": "50"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1956:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1956:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1956:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2006:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2017:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2002:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2002:18:94"
                                  },
                                  {
                                    "hexValue": "5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2022:34:94",
                                    "type": "",
                                    "value": "YieldSourcePrizePool/yield-sourc"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1995:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1995:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1995:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2077:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2088:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2073:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2073:18:94"
                                  },
                                  {
                                    "hexValue": "652d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2093:20:94",
                                    "type": "",
                                    "value": "e-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2066:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2066:48:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2066:48:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2123:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2135:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2146:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2131:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2131:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2123:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1893:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1907:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1742:414:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2262:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2272:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2284:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2295:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2280:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2280:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2272:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2314:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2325:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2307:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2307:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2231:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2242:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2253:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2161:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2388:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2452:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2461:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2464:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2454:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2454:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2454:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2411:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2422:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2437:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2442:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2433:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "2433:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2446:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "2429:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2429:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2418:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2418:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2408:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2408:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2401:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2401:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2398:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2377:5:94",
                            "type": ""
                          }
                        ],
                        "src": "2343:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address_payable_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_contract$_IYieldSource_$16357_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(value0, shl(224, 0xffffffff)))\n        end := add(pos, 4)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 0x20) }\n        {\n            mstore(add(pos, i), mload(add(add(value0, i), 0x20)))\n        }\n        if gt(i, length) { mstore(add(pos, length), 0) }\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 41)\n        mstore(add(headStart, 64), \"YieldSourcePrizePool/invalid-yie\")\n        mstore(add(headStart, 96), \"ld-source\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 50)\n        mstore(add(headStart, 64), \"YieldSourcePrizePool/yield-sourc\")\n        mstore(add(headStart, 96), \"e-not-zero-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b5060405162002bcc38038062002bcc8339810160408190526200003491620002f0565b818062000041816200023e565b506001600255620000546000196200028e565b506001600160a01b038116620000cc5760405162461bcd60e51b815260206004820152603260248201527f5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263604482015271652d6e6f742d7a65726f2d6164647265737360701b60648201526084015b60405180910390fd5b606081901b6001600160601b03191660805260405163c89039c560e01b602082015260009081906001600160a01b0384169060240160408051601f19818403018152908290526200011d916200032f565b600060405180830381855afa9150503d80600081146200015a576040519150601f19603f3d011682016040523d82523d6000602084013e6200015f565b606091505b509150915060008082511115620001895781806020019051810190620001869190620002c9565b90505b8280156200019f57506001600160a01b03811615155b620001ff5760405162461bcd60e51b815260206004820152602960248201527f5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d7969656044820152686c642d736f7572636560b81b6064820152608401620000c3565b6040516001600160a01b038516907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a2505050505062000386565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab9060200160405180910390a150565b600060208284031215620002dc57600080fd5b8151620002e9816200036d565b9392505050565b600080604083850312156200030457600080fd5b825162000311816200036d565b602084015190925062000324816200036d565b809150509250929050565b6000825160005b8181101562000352576020818601810151858301520162000336565b8181111562000362576000828501525b509190910192915050565b6001600160a01b03811681146200038357600080fd5b50565b60805160601c6127fd620003cf600039600081816103d10152818161177301528181611876015281816119a001528181611a0d01528181611c650152611dc301526127fd6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637b99adb11161010f578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b14610441578063f2fde38b14610449578063ffa1ad741461045c578063ffaad6a5146104a557600080fd5b8063c002c4d6146103fb578063d7a169eb1461040c578063d804abaf1461041f578063e30c39781461043057600080fd5b8063aec9c307116100de578063aec9c307146103b1578063b15a49c1146103c4578063b2470e5c146103cc578063b69ef8a8146103f357600080fd5b80637b99adb1146103675780638da5cb5b1461037a57806391ca480e1461038b5780639470b0bd1461039e57600080fd5b806333e5761f11610187578063630665b411610156578063630665b4146103315780636a3fd4f914610339578063715018a61461034c57806378b3d3271461035457600080fd5b806333e5761f1461030657806335faa4161461030e5780634e71e0c8146103165780635d8a776e1461031e57600080fd5b80631c65c78b116101c35780631c65c78b1461029d57806321df0da7146102c05780632b0ab144146102e05780632f7627e3146102f357600080fd5b806308234319146101f557806313f55e391461020c578063150b7a021461022157806316960d551461028a575b600080fd5b6005545b6040519081526020015b60405180910390f35b61021f61021a366004612480565b6104b8565b005b61025961022f3660046124c1565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610203565b61021f6102983660046123eb565b61057a565b6102b06102ab3660046123b1565b610844565b6040519015158152602001610203565b6102c86109eb565b6040516001600160a01b039091168152602001610203565b61021f6102ee366004612480565b6109fa565b61021f6103013660046125f0565b610aa9565b6101f9610c06565b61021f610c10565b61021f610d98565b61021f61032c366004612560565b610e26565b6007546101f9565b6102b06103473660046123b1565b610f4c565b61021f610f5d565b6102b06103623660046123b1565b610fd2565b61021f610375366004612629565b610feb565b6000546001600160a01b03166102c8565b61021f6103993660046123b1565b611060565b6101f96103ac366004612560565b6110d2565b6102b06103bf366004612629565b611233565b6006546101f9565b6102c87f000000000000000000000000000000000000000000000000000000000000000081565b6101f96112a7565b6003546001600160a01b03166102c8565b61021f61041a36600461258c565b6112b1565b6004546001600160a01b03166102c8565b6001546001600160a01b03166102c8565b6101f96113f1565b61021f6104573660046123b1565b6114ef565b6104986040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161020391906126e7565b61021f6104b3366004612560565b61162b565b6004546001600160a01b031633146105175760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6105228383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161056c91815260200190565b60405180910390a35b505050565b6004546001600160a01b031633146105d45760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b6105dd8361176f565b6106295760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b806106335761083e565b60008167ffffffffffffffff81111561064e5761064e61279c565b604051908082528060200260200182016040528015610677578160200160208202803683370190505b5090506000805b838110156107e857856001600160a01b03166342842e0e30898888868181106106a9576106a9612786565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561071857600080fd5b505af1925050508015610729575060015b61079a573d808015610757576040519150601f19603f3d011682016040523d82523d6000602084013e61075c565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161078c91906126e7565b60405180910390a1506107d6565b600191508484828181106107b0576107b0612786565b905060200201358382815181106107c9576107c9612786565b6020026020010181815250505b806107e081612755565b91505061067e565b50801561083b57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161083291906126a3565b60405180910390a35b50505b50505050565b6000336108596000546001600160a01b031690565b6001600160a01b0316146108af5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b03821661092b5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050e565b6003546001600160a01b0316156109845760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d73657400000000604482015260640161050e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109e3600019611836565b506001919050565b60006109f5611872565b905090565b6004546001600160a01b03163314610a545760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b610a5f8383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161056c91815260200190565b33610abc6000546001600160a01b031690565b6001600160a01b031614610b125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8c9190612642565b1115610c02576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bee57600080fd5b505af115801561083b573d6000803e3d6000fd5b5050565b60006109f5611905565b600280541415610c625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b6002805533610c796000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6000610cd9611872565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612642565b9050610d5d8161199b565b6040518181527f7f221332ee403570bf4d61630b58189ea566ff1635269001e9df6a890f413dd89060200160405180910390a1506001600255565b6001546001600160a01b03163314610df25760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161050e565b600154610e07906001600160a01b0316611a74565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e805760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b80610e89575050565b60075480821115610edc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c000000604482015260640161050e565b8181036007556003546001600160a01b0316610ef9848483611ad1565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610f3e91815260200190565b60405180910390a350505050565b6000610f578261176f565b92915050565b33610f706000546001600160a01b031690565b6001600160a01b031614610fc65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b610fd06000611a74565b565b6003546000906001600160a01b03808416911614610f57565b33610ffe6000546001600160a01b031690565b6001600160a01b0316146110545760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b51565b50565b336110736000546001600160a01b031690565b6001600160a01b0316146110c95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b86565b60006002805414156111265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561119957600080fd5b505af11580156111ad573d6000803e3d6000fd5b5050505060006111bc84611c33565b90506111db85826111cb611872565b6001600160a01b03169190611ce9565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336112486000546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6109e382611836565b60006109f5611d92565b6002805414156113035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558161131181611e23565b61135d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b611368338585611e59565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50506001600255505050505050565b60006002805414156114455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556000611453611905565b6007549091506000611463611d92565b9050600083821161147557600061147f565b61147f8483612712565b9050600083821161149157600061149b565b61149b8483612712565b905080156114e157600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336115026000546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60028054141561167d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558061168b81611e23565b6116d75760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b6116e2338484611e59565b5050600160025550565b60006116f78361176f565b6117435760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b8161175057506000611768565b6117646001600160a01b0384168584611ce9565b5060015b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03838116908216148015906117685750806001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e257600080fd5b505afa1580156117f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181a91906123ce565b6001600160a01b0316836001600160a01b031614159392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906123ce565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f59190612642565b6119d87f0000000000000000000000000000000000000000000000000000000000000000826119c8611872565b6001600160a01b03169190611f4b565b6040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018290523060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906387a6eeef90604401600060405180830381600087803b158015611a5957600080fd5b505af1158015611a6d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611867565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f604482015260640161050e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063013054c290602401602060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f579190612642565b6040516001600160a01b0383166024820152604481018290526105759084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261203e565b6040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b99152d090602401602060405180830381600087803b158015611e0f57600080fd5b505af1158015611977573d6000803e3d6000fd5b600654600090600019811415611e3c5750600192915050565b8083611e46611905565b611e5091906126fa565b11159392505050565b611e638282612123565b611eaf5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d636170000000604482015260640161050e565b6003546001600160a01b0316611eda843084611ec9611872565b6001600160a01b03169291906121d1565b611ee5838383611ad1565b611eee8261199b565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611f3d91815260200190565b60405180910390a450505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611fb057600080fd5b505afa158015611fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe89190612642565b611ff291906126fa565b6040516001600160a01b03851660248201526044810182905290915061083e9085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611d2e565b6000612093826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122229092919063ffffffff16565b80519091501561057557808060200190518101906120b191906125ce565b6105755760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050e565b60055460009060001981141561213d576001915050610f57565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190612642565b6121c791906126fa565b1115949350505050565b6040516001600160a01b038085166024830152831660448201526064810182905261083e9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d2e565b60606122318484600085612239565b949350505050565b6060824710156122b15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050e565b843b6122ff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050e565b600080866001600160a01b0316858760405161231b9190612687565b60006040518083038185875af1925050503d8060008114612358576040519150601f19603f3d011682016040523d82523d6000602084013e61235d565b606091505b509150915061236d828286612378565b979650505050505050565b60608315612387575081611768565b8251156123975782518084602001fd5b8160405162461bcd60e51b815260040161050e91906126e7565b6000602082840312156123c357600080fd5b8135611768816127b2565b6000602082840312156123e057600080fd5b8151611768816127b2565b6000806000806060858703121561240157600080fd5b843561240c816127b2565b9350602085013561241c816127b2565b9250604085013567ffffffffffffffff8082111561243957600080fd5b818701915087601f83011261244d57600080fd5b81358181111561245c57600080fd5b8860208260051b850101111561247157600080fd5b95989497505060200194505050565b60008060006060848603121561249557600080fd5b83356124a0816127b2565b925060208401356124b0816127b2565b929592945050506040919091013590565b6000806000806000608086880312156124d957600080fd5b85356124e4816127b2565b945060208601356124f4816127b2565b935060408601359250606086013567ffffffffffffffff8082111561251857600080fd5b818801915088601f83011261252c57600080fd5b81358181111561253b57600080fd5b89602082850101111561254d57600080fd5b9699959850939650602001949392505050565b6000806040838503121561257357600080fd5b823561257e816127b2565b946020939093013593505050565b6000806000606084860312156125a157600080fd5b83356125ac816127b2565b92506020840135915060408401356125c3816127b2565b809150509250925092565b6000602082840312156125e057600080fd5b8151801515811461176857600080fd5b6000806040838503121561260357600080fd5b823561260e816127b2565b9150602083013561261e816127b2565b809150509250929050565b60006020828403121561263b57600080fd5b5035919050565b60006020828403121561265457600080fd5b5051919050565b60008151808452612673816020860160208601612729565b601f01601f19169290920160200192915050565b60008251612699818460208701612729565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156126db578351835292840192918401916001016126bf565b50909695505050505050565b602081526000611768602083018461265b565b6000821982111561270d5761270d612770565b500190565b60008282101561272457612724612770565b500390565b60005b8381101561274457818101518382015260200161272c565b8381111561083e5750506000910152565b600060001982141561276957612769612770565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461105d57600080fdfea26469706673582212202473ef722041e061b88090a40d6ad36949e68f8ad48b96ebdcb68b3385b61be664736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2BCC CODESIZE SUB DUP1 PUSH3 0x2BCC DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x2F0 JUMP JUMPDEST DUP2 DUP1 PUSH3 0x41 DUP2 PUSH3 0x23E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x2 SSTORE PUSH3 0x54 PUSH1 0x0 NOT PUSH3 0x28E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xCC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5969656C64536F757263655072697A65506F6F6C2F7969656C642D736F757263 PUSH1 0x44 DUP3 ADD MSTORE PUSH18 0x652D6E6F742D7A65726F2D61646472657373 PUSH1 0x70 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x60 DUP2 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH4 0xC89039C5 PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH1 0x24 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH3 0x11D SWAP2 PUSH3 0x32F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x15A JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH3 0x15F JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 DUP3 MLOAD GT ISZERO PUSH3 0x189 JUMPI DUP2 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH3 0x186 SWAP2 SWAP1 PUSH3 0x2C9 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP3 DUP1 ISZERO PUSH3 0x19F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO ISZERO JUMPDEST PUSH3 0x1FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5969656C64536F757263655072697A65506F6F6C2F696E76616C69642D796965 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x6C642D736F75726365 PUSH1 0xB8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xF40FCEC21964FFB566044D083B4073F29F7F7929110EA19E1B3EBE375D89055E SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP PUSH3 0x386 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x2DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x2E9 DUP2 PUSH3 0x36D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x304 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x311 DUP2 PUSH3 0x36D JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x324 DUP2 PUSH3 0x36D JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x352 JUMPI PUSH1 0x20 DUP2 DUP7 ADD DUP2 ADD MLOAD DUP6 DUP4 ADD MSTORE ADD PUSH3 0x336 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH3 0x362 JUMPI PUSH1 0x0 DUP3 DUP6 ADD MSTORE JUMPDEST POP SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x383 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x27FD PUSH3 0x3CF PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x3D1 ADD MSTORE DUP2 DUP2 PUSH2 0x1773 ADD MSTORE DUP2 DUP2 PUSH2 0x1876 ADD MSTORE DUP2 DUP2 PUSH2 0x19A0 ADD MSTORE DUP2 DUP2 PUSH2 0x1A0D ADD MSTORE DUP2 DUP2 PUSH2 0x1C65 ADD MSTORE PUSH2 0x1DC3 ADD MSTORE PUSH2 0x27FD PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1F0 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xE6D8A94B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x441 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x449 JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x45C JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x4A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x40C JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAEC9C307 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x3C4 JUMPI DUP1 PUSH4 0xB2470E5C EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x3F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x367 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x38B JUMPI DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x39E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x630665B4 GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x331 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x339 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x34C JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x354 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F EQ PUSH2 0x306 JUMPI DUP1 PUSH4 0x35FAA416 EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x316 JUMPI DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x31E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C65C78B GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x29D JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x2E0 JUMPI DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x2F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x20C JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0x16960D55 EQ PUSH2 0x28A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x4B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x259 PUSH2 0x22F CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x298 CALLDATASIZE PUSH1 0x4 PUSH2 0x23EB JUMP JUMPDEST PUSH2 0x57A JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x2AB CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x844 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x9EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x2EE CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST PUSH2 0x21F PUSH2 0x301 CALLDATASIZE PUSH1 0x4 PUSH2 0x25F0 JUMP JUMPDEST PUSH2 0xAA9 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xC10 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xD98 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x32C CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0xE26 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x347 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xF4C JUMP JUMPDEST PUSH2 0x21F PUSH2 0xF5D JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x362 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xFD2 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x375 CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0xFEB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x399 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x10D2 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x3BF CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0x1233 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2C8 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x12A7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x41A CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x12B1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x13F1 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x457 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x14EF JUMP JUMPDEST PUSH2 0x498 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x203 SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x4B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x162B JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x517 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x522 DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x5D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x5DD DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x629 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0x633 JUMPI PUSH2 0x83E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x64E JUMPI PUSH2 0x64E PUSH2 0x279C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x677 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x6A9 JUMPI PUSH2 0x6A9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x718 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x729 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x79A JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x75C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x78C SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x7B0 JUMPI PUSH2 0x7B0 PUSH2 0x2786 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x7C9 JUMPI PUSH2 0x7C9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x7E0 DUP2 PUSH2 0x2755 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x67E JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x83B JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x832 SWAP2 SWAP1 PUSH2 0x26A3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x859 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x92B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x984 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0x9E3 PUSH1 0x0 NOT PUSH2 0x1836 JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1872 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xA5F DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xABC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB68 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB8C SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST GT ISZERO PUSH2 0xC02 JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0xC62 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE CALLER PUSH2 0xC79 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xCCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD1A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD2E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD52 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST SWAP1 POP PUSH2 0xD5D DUP2 PUSH2 0x199B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x7F221332EE403570BF4D61630B58189EA566FF1635269001E9DF6A890F413DD8 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xDF2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xE07 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A74 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE80 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0xE89 JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xEDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEF9 DUP5 DUP5 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF57 DUP3 PUSH2 0x176F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xF70 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xFD0 PUSH1 0x0 PUSH2 0x1A74 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xF57 JUMP JUMPDEST CALLER PUSH2 0xFFE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1054 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B51 JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0x1073 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B86 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1126 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x11AD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x11BC DUP5 PUSH2 0x1C33 JUMP JUMPDEST SWAP1 POP PUSH2 0x11DB DUP6 DUP3 PUSH2 0x11CB PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1CE9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1248 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x129E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x9E3 DUP3 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1D92 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1303 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x1311 DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x135D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x1368 CALLER DUP6 DUP6 PUSH2 0x1E59 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13E2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1445 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x1453 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x1463 PUSH2 0x1D92 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1475 JUMPI PUSH1 0x0 PUSH2 0x147F JUMP JUMPDEST PUSH2 0x147F DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1491 JUMPI PUSH1 0x0 PUSH2 0x149B JUMP JUMPDEST PUSH2 0x149B DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x14E1 JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x1502 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x168B DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x16D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x16E2 CALLER DUP5 DUP5 PUSH2 0x1E59 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16F7 DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x1743 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 PUSH2 0x1750 JUMPI POP PUSH1 0x0 PUSH2 0x1768 JUMP JUMPDEST PUSH2 0x1764 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1CE9 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND SWAP1 DUP3 AND EQ DUP1 ISZERO SWAP1 PUSH2 0x1768 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17F6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x181A SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18E1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9F5 SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1963 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1977 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9F5 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x19D8 PUSH32 0x0 DUP3 PUSH2 0x19C8 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1F4B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x87A6EEEF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x87A6EEEF SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A6D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B48 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1BDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x13054C200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x13054C2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1CC5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF57 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x575 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xB99152D000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB99152D0 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1E0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1977 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1E3C JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1E46 PUSH2 0x1905 JUMP JUMPDEST PUSH2 0x1E50 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E63 DUP3 DUP3 PUSH2 0x2123 JUMP JUMPDEST PUSH2 0x1EAF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1EDA DUP5 ADDRESS DUP5 PUSH2 0x1EC9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x21D1 JUMP JUMPDEST PUSH2 0x1EE5 DUP4 DUP4 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST PUSH2 0x1EEE DUP3 PUSH2 0x199B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1F3D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FC4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1FE8 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x1FF2 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2093 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2222 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x575 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x20B1 SWAP2 SWAP1 PUSH2 0x25CE JUMP JUMPDEST PUSH2 0x575 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x213D JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2199 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x21BD SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x21C7 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2231 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x2239 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x22B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x22FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x231B SWAP2 SWAP1 PUSH2 0x2687 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2358 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x235D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x236D DUP3 DUP3 DUP7 PUSH2 0x2378 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2387 JUMPI POP DUP2 PUSH2 0x1768 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2397 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2401 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x240C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x241C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2439 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x244D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x245C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2471 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2495 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24A0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24B0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x24D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x24F4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2518 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x252C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x253B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x254D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x257E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x25A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x25AC DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x25C3 DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1768 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2603 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x260E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x261E DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x263B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2654 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2673 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2729 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x2699 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2729 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x26DB JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x26BF JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1768 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x265B JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x270D JUMPI PUSH2 0x270D PUSH2 0x2770 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2724 JUMPI PUSH2 0x2724 PUSH2 0x2770 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2744 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x272C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x83E JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2769 PUSH2 0x2770 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x105D JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x24 PUSH20 0xEF722041E061B88090A40D6AD36949E68F8AD48B SWAP7 0xEB 0xDC 0xB6 DUP12 CALLER DUP6 0xB6 SHL 0xE6 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "641:3753:49:-:0;;;1399:772;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1464:6;;1648:24:19;1464:6:49;1648:9:19;:24::i;:::-;-1:-1:-1;1701:1:0;1806:7;:22;2625:35:48::2;-1:-1:-1::0;;2625:16:48::2;:35::i;:::-;-1:-1:-1::0;;;;;;1503:35:49;::::1;1482:132;;;::::0;-1:-1:-1;;;1482:132:49;;1944:2:94;1482:132:49::1;::::0;::::1;1926:21:94::0;1983:2;1963:18;;;1956:30;2022:34;2002:18;;;1995:62;-1:-1:-1;;;2073:18:94;;;2066:48;2131:19;;1482:132:49::1;;;;;;;;;1625:26;::::0;;;-1:-1:-1;;;;;;1625:26:49;::::1;::::0;1813:52:::1;::::0;-1:-1:-1;;;1813:52:49::1;::::0;::::1;817:46:94::0;1730:14:49::1;::::0;;;-1:-1:-1;;;;;1625:26:49;::::1;::::0;879:11:94;;1813:52:49::1;::::0;;-1:-1:-1;;1813:52:49;;::::1;::::0;;;;;;;1767:108:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1729:146;;;;1885:24;1937:1:::0;1923:4:::1;:11;:15;1919:92;;;1984:4;1973:27;;;;;;;;;;;;:::i;:::-;1954:46;;1919:92;2028:9;:43;;;;-1:-1:-1::0;;;;;;2041:30:49;::::1;::::0;::::1;2028:43;2020:97;;;::::0;-1:-1:-1;;;2020:97:49;;1534:2:94;2020:97:49::1;::::0;::::1;1516:21:94::0;1573:2;1553:18;;;1546:30;1612:34;1592:18;;;1585:62;-1:-1:-1;;;1663:18:94;;;1656:39;1712:19;;2020:97:49::1;1506:231:94::0;2020:97:49::1;2133:31;::::0;-1:-1:-1;;;;;2133:31:49;::::1;::::0;::::1;::::0;;;::::1;1472:699;;;1399:772:::0;;641:3753;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13592:148:48:-;13660:12;:28;;;13703:30;;2307:25:94;;;13703:30:48;;2295:2:94;2280:18;13703:30:48;;;;;;;13592:148;:::o;14:259:94:-;92:6;145:2;133:9;124:7;120:23;116:32;113:2;;;161:1;158;151:12;113:2;193:9;187:16;212:31;237:5;212:31;:::i;:::-;262:5;103:170;-1:-1:-1;;;103:170:94:o;278:407::-;379:6;387;440:2;428:9;419:7;415:23;411:32;408:2;;;456:1;453;446:12;408:2;488:9;482:16;507:31;532:5;507:31;:::i;:::-;607:2;592:18;;586:25;557:5;;-1:-1:-1;620:33:94;586:25;620:33;:::i;:::-;672:7;662:17;;;398:287;;;;;:::o;901:426::-;1030:3;1068:6;1062:13;1093:1;1103:129;1117:6;1114:1;1111:13;1103:129;;;1215:4;1199:14;;;1195:25;;1189:32;1176:11;;;1169:53;1132:12;1103:129;;;1250:6;1247:1;1244:13;1241:2;;;1285:1;1276:6;1271:3;1267:16;1260:27;1241:2;-1:-1:-1;1305:16:94;;;;;1038:289;-1:-1:-1;;1038:289:94:o;2343:131::-;-1:-1:-1;;;;;2418:31:94;;2408:42;;2398:2;;2464:1;2461;2454:12;2398:2;2388:86;:::o;:::-;641:3753:49;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@VERSION_10943": {
                  "entryPoint": null,
                  "id": 10943,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_balance_12148": {
                  "entryPoint": 7570,
                  "id": 12148,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 8254,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_canAddLiquidity_11832": {
                  "entryPoint": 7715,
                  "id": 11832,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canAwardExternal_12132": {
                  "entryPoint": 5999,
                  "id": 12132,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canDeposit_11801": {
                  "entryPoint": 8483,
                  "id": 11801,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_depositTo_11295": {
                  "entryPoint": 7769,
                  "id": 11295,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_isControlled_11847": {
                  "entryPoint": null,
                  "id": 11847,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_11766": {
                  "entryPoint": 6865,
                  "id": 11766,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_redeem_12206": {
                  "entryPoint": 7219,
                  "id": 12206,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setBalanceCap_11862": {
                  "entryPoint": 6198,
                  "id": 11862,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_11877": {
                  "entryPoint": 6993,
                  "id": 11877,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 6772,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setPrizeStrategy_11902": {
                  "entryPoint": 7046,
                  "id": 11902,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_supply_12191": {
                  "entryPoint": 6555,
                  "id": 12191,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_ticketTotalSupply_11913": {
                  "entryPoint": 6405,
                  "id": 11913,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_token_12163": {
                  "entryPoint": 6258,
                  "id": 12163,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transferOut_11747": {
                  "entryPoint": 5868,
                  "id": 11747,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@awardBalance_11027": {
                  "entryPoint": null,
                  "id": 11027,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@awardExternalERC20_11454": {
                  "entryPoint": 2554,
                  "id": 11454,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@awardExternalERC721_11557": {
                  "entryPoint": 1402,
                  "id": 11557,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@award_11400": {
                  "entryPoint": 3622,
                  "id": 11400,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@balance_11017": {
                  "entryPoint": 4775,
                  "id": 11017,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canAwardExternal_11041": {
                  "entryPoint": 3916,
                  "id": 11041,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@captureAwardBalance_11189": {
                  "entryPoint": 5105,
                  "id": 11189,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_3210": {
                  "entryPoint": 3480,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@compLikeDelegate_11690": {
                  "entryPoint": 2729,
                  "id": 11690,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_11243": {
                  "entryPoint": 4785,
                  "id": 11243,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@depositTo_11211": {
                  "entryPoint": 5675,
                  "id": 11211,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1412": {
                  "entryPoint": 8761,
                  "id": 1412,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1342": {
                  "entryPoint": 8738,
                  "id": 1342,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAccountedBalance_11067": {
                  "entryPoint": 3078,
                  "id": 11067,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBalanceCap_11077": {
                  "entryPoint": null,
                  "id": 11077,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLiquidityCap_11087": {
                  "entryPoint": null,
                  "id": 11087,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeStrategy_11108": {
                  "entryPoint": null,
                  "id": 11108,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getTicket_11098": {
                  "entryPoint": null,
                  "id": 11098,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getToken_11122": {
                  "entryPoint": 2539,
                  "id": 11122,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1271": {
                  "entryPoint": null,
                  "id": 1271,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isControlled_11056": {
                  "entryPoint": 4050,
                  "id": 11056,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@onERC721Received_11710": {
                  "entryPoint": null,
                  "id": 11710,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 3933,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1030": {
                  "entryPoint": 8011,
                  "id": 1030,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_950": {
                  "entryPoint": 8657,
                  "id": 950,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 7401,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBalanceCap_11575": {
                  "entryPoint": 4659,
                  "id": 11575,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setLiquidityCap_11589": {
                  "entryPoint": 4075,
                  "id": 11589,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setPrizeStrategy_11660": {
                  "entryPoint": 4192,
                  "id": 11660,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setTicket_11646": {
                  "entryPoint": 2116,
                  "id": 11646,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@sweep_12103": {
                  "entryPoint": 3088,
                  "id": 12103,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferExternalERC20_11427": {
                  "entryPoint": 1208,
                  "id": 11427,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 5359,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1547": {
                  "entryPoint": 9080,
                  "id": 1547,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawFrom_11347": {
                  "entryPoint": 4306,
                  "id": 11347,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@yieldSource_11980": {
                  "entryPoint": null,
                  "id": 11980,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 9137,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 9166,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr": {
                  "entryPoint": 9195,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 9344,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr": {
                  "entryPoint": 9409,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 9568,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256t_address": {
                  "entryPoint": 9612,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 9678,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_ICompLike_$8121t_address": {
                  "entryPoint": 9712,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$9297": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 9769,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 9794,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 9819,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 9863,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 9891,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 9959,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IYieldSource_$16357__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 9978,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 10002,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 10025,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 10069,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 10096,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 10118,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 10140,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 10162,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:16587:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:247:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "347:170:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "393:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "402:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "405:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "395:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "395:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "395:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "368:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "377:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "364:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "364:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "389:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "360:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "360:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "357:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "418:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "437:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "422:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "481:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "456:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "456:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "456:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "496:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "506:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "496:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "313:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "324:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "336:6:94",
                            "type": ""
                          }
                        ],
                        "src": "266:251:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:752:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "758:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "802:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "777:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "777:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "777:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "817:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "827:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "817:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "841:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "884:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "869:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "869:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "845:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "922:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "897:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "939:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "949:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "939:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "965:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "996:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1007:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "992:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "992:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "979:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "979:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "969:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1020:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1030:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1024:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1075:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1084:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1087:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1077:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1077:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1077:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1063:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1071:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1060:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1060:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1057:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1100:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1114:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1125:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1110:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1104:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1180:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1189:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1192:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1182:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1182:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1182:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1159:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1163:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1155:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1155:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1170:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1151:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1151:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1144:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1144:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1141:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1205:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1232:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1219:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1219:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1209:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1262:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1271:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1274:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1264:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1264:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1250:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1258:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1247:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1247:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1244:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1336:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1345:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1348:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1338:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1338:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1338:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1301:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1309:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1312:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1305:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1305:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1297:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1297:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1322:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1293:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1293:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1327:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1290:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1290:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1287:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1361:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1379:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1371:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1371:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1391:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1401:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1391:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "603:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "614:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "626:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "634:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "642:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "650:6:94",
                            "type": ""
                          }
                        ],
                        "src": "522:891:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1522:352:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1568:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1577:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1580:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1570:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1570:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1570:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1543:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1552:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1539:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1539:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1564:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1532:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1593:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1619:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1597:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1663:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1638:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1638:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1638:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1678:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1688:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1678:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1702:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1734:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1745:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1730:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1730:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1717:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1717:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1706:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1783:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1758:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1758:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1758:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1800:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1810:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1826:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1853:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1864:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1849:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1849:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1836:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1836:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1826:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1472:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1483:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1495:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1503:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1511:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1418:456:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2019:796:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2066:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2075:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2078:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2068:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2068:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2068:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2040:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2049:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2036:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2036:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2061:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2032:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2032:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2029:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2091:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2117:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2104:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2095:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2161:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2136:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2136:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2136:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2176:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2186:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2176:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2200:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2232:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2243:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2228:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2228:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2215:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2215:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2204:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2281:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2256:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2256:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2256:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2298:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2308:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2298:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2324:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2351:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2362:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2347:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2347:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2334:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2375:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2406:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2417:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2402:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2402:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2389:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2389:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2379:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2430:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2440:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2434:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2485:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2494:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2497:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2487:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2487:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2487:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2473:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2481:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2470:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2470:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2467:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2510:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2524:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2535:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2520:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2520:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2514:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2590:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2599:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2602:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2592:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2592:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2592:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2569:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2573:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2565:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2565:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2580:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2561:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2561:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2554:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2554:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2551:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2615:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2642:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2629:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2629:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2619:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2672:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2681:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2684:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2674:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2674:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2674:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2660:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2668:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2657:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2657:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2654:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2738:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2747:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2750:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2740:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2740:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2740:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2711:2:94"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "2715:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2707:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2707:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2724:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2703:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2703:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2729:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2700:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2700:37:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2697:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2763:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2777:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2781:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2763:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2793:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2803:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2793:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1953:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1964:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1976:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1984:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1992:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2000:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2008:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1879:936:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2907:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2953:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2962:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2965:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2955:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2955:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2955:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2928:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2937:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2924:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2924:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2949:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2920:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2920:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2917:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2978:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3004:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2991:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2991:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2982:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3048:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3023:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3023:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3023:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3063:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3073:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3063:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3087:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3114:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3125:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3110:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3110:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3097:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3097:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3087:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2865:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2876:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2888:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2896:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2820:315:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3244:352:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3290:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3299:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3302:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3292:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3292:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3292:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3265:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3274:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3261:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3261:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3286:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3257:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3257:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3254:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3315:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3341:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3328:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3328:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3319:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3385:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3360:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3360:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3360:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3400:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3410:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3400:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3424:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3451:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3462:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3447:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3447:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3434:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3434:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3424:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3475:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3507:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3518:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3503:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3503:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3490:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3490:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3479:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3556:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3531:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3531:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3531:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3573:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "3583:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3573:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3194:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3205:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3217:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3225:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3233:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3140:456:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3679:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3725:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3734:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3737:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3727:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3727:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3727:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3709:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3696:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3696:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3721:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3692:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3692:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3689:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3750:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3769:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3763:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3763:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3754:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3832:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3841:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3844:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3834:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3834:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3834:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3801:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3822:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "3815:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3815:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3808:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3808:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3798:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3798:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3791:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3791:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3788:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3857:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3867:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3857:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3645:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3656:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3668:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3601:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3988:301:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4034:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4043:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4046:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4036:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4036:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4036:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4009:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4018:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4005:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4005:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4030:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4001:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4001:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3998:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4059:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4085:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4072:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4072:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4063:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4129:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4104:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4104:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4104:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4144:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4154:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4144:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4168:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4200:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4211:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4196:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4196:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4183:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4183:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4172:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4249:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4224:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4224:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4224:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4266:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4276:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4266:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ICompLike_$8121t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3946:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3957:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3969:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3977:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3883:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4380:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4426:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4435:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4438:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4428:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4428:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4428:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4401:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4410:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4397:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4397:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4422:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4393:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4393:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4390:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4451:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4477:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4464:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4464:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4455:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4521:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4496:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4496:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4496:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4536:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4546:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4536:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$9297",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4346:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4357:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4369:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4294:263:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4632:110:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4678:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4687:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4690:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4680:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4680:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4680:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4653:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4662:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4649:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4649:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4674:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4645:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4645:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4642:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4703:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4726:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4713:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4713:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4703:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4598:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4609:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4621:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4562:180:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4828:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4874:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4883:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4886:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4876:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4876:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4876:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4849:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4858:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4845:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4845:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4870:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4841:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4841:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4838:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4899:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4915:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4909:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4909:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4899:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4794:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4805:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4817:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4747:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4985:267:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4995:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5015:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5009:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5009:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4999:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5037:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5042:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5030:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5030:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5030:19:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5084:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5091:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5080:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5080:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5102:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5107:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5098:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5098:14:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5114:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5058:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5058:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5058:63:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5130:116:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5145:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5158:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5166:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5154:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5154:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5171:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5150:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5150:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5141:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5141:98:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5241:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5137:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5137:109:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5130:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4962:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4969:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4977:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4936:316:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5394:137:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5404:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5424:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5418:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5418:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5408:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5466:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5474:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5462:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5462:17:94"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5481:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5486:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5440:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5440:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5440:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5502:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5513:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5518:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5509:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5509:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5502:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5370:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5375:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5386:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5257:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5637:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5647:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5659:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5670:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5655:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5655:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5647:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5689:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5704:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5712:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5700:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5700:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5682:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5682:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5682:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5606:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5617:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5628:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5536:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5896:198:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5906:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5918:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5929:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5914:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5914:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5906:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5941:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5951:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5945:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6009:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6024:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6032:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6020:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6020:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6002:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6002:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6002:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6056:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6067:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6052:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6052:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6076:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6084:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6072:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6072:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6045:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6045:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6045:43:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5857:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5868:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5876:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5887:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5767:327:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6256:241:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6266:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6278:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6289:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6274:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6274:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6266:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6301:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6311:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6305:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6369:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6384:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6392:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6380:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6380:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6362:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6362:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6362:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6416:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6427:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6412:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6412:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6436:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6444:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6432:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6432:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6405:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6405:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6405:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6468:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6479:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6464:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6464:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6484:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6457:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6457:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6457:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6209:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6220:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6228:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6236:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6247:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6099:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6631:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6641:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6653:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6664:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6649:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6649:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6641:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6683:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6698:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6706:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6694:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6694:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6676:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6676:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6676:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6770:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6781:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6766:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6766:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6786:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6759:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6759:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6759:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6592:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6603:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6611:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6622:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6502:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6955:481:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6965:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6975:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6969:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6986:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7004:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7015:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7000:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7000:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6990:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7034:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7045:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7027:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7027:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7027:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7057:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "7068:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "7061:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7083:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7103:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7097:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7097:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7087:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7126:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7134:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7119:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7119:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7119:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7150:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7161:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7172:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7157:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7157:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7150:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7184:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7202:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7210:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7198:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7198:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7188:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7222:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7231:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7226:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7290:120:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7311:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "7322:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7316:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7316:13:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7304:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7304:26:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7304:26:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7343:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7354:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7359:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7350:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7350:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7343:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7375:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "7389:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7397:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7385:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7385:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "7375:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7252:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7255:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7249:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7249:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7263:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7265:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7274:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7277:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7270:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7270:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7265:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7245:3:94",
                                "statements": []
                              },
                              "src": "7241:169:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7419:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "7427:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7419:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6924:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6935:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6946:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6804:632:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7536:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7546:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7558:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7569:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7554:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7554:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7546:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7588:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7613:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7606:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7606:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7599:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7599:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7581:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7581:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7581:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7505:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7516:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7527:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7441:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7732:149:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7742:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7754:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7765:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7750:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7750:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7742:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7784:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7799:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7807:66:94",
                                        "type": "",
                                        "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7795:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7795:79:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7777:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7777:98:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7777:98:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7701:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7712:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7723:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7633:248:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8005:98:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8022:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8033:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8015:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8015:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8015:21:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8045:52:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8070:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8082:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8093:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8078:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8078:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8053:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8053:44:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8045:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7974:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7985:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7996:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7886:217:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8225:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8235:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8247:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8258:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8243:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8243:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8235:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8277:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8292:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8300:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8288:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8288:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8270:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8270:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8270:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8194:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8205:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8216:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8108:242:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8478:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8488:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8500:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8511:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8496:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8496:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8488:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8530:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8545:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8553:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8541:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8541:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8523:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8523:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8523:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IYieldSource_$16357__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8447:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8458:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8469:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8355:248:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8729:98:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8746:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8757:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8739:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8739:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8739:21:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8769:52:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8794:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8806:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8817:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8802:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8802:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8777:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8777:44:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8769:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8698:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8709:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8720:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8608:219:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9006:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9023:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9034:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9016:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9016:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9016:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9057:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9068:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9053:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9053:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9073:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9046:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9046:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9046:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9096:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9107:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9092:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9092:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9112:34:94",
                                    "type": "",
                                    "value": "PrizePool/prizeStrategy-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9085:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9085:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9085:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9156:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9168:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9179:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9164:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9164:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9156:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8983:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8997:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8832:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9367:178:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9384:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9395:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9377:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9377:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9377:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9418:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9429:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9414:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9414:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9434:2:94",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9407:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9407:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9407:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9457:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9468:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9453:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9453:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9473:30:94",
                                    "type": "",
                                    "value": "PrizePool/only-prizeStrategy"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9446:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9446:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9446:58:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9513:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9525:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9536:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9521:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9521:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9513:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9344:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9358:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9193:352:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9724:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9741:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9752:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9734:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9734:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9775:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9786:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9771:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9771:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9791:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9764:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9764:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9764:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9814:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9825:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9810:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9810:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9830:34:94",
                                    "type": "",
                                    "value": "PrizePool/ticket-not-zero-addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9803:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9803:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9803:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9885:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9896:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9881:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9881:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9901:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9874:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9874:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9874:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9914:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9926:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9937:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9922:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9922:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9914:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9701:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9715:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9550:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10126:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10143:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10154:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10136:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10136:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10136:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10177:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10188:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10173:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10173:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10193:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10166:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10166:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10166:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10216:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10227:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10212:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10212:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10232:34:94",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10205:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10205:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10205:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10287:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10298:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10283:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10283:18:94"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10303:8:94",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10276:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10276:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10276:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10321:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10333:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10344:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10329:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10329:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10321:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10103:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10117:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9952:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10533:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10550:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10561:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10543:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10543:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10543:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10584:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10595:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10580:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10580:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10600:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10573:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10573:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10573:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10623:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10634:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10619:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10619:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10639:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10612:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10612:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10612:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10675:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10687:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10698:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10683:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10683:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10675:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10510:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10524:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10359:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10886:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10903:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10914:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10896:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10896:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10896:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10937:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10948:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10933:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10933:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10953:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10926:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10926:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10926:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10976:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10987:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10972:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10972:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10992:34:94",
                                    "type": "",
                                    "value": "PrizePool/invalid-external-token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10965:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10965:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10965:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11036:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11048:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11059:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11044:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11044:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11036:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10863:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10877:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10712:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11247:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11264:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11275:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11257:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11257:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11257:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11298:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11309:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11294:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11294:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11314:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11287:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11287:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11287:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11337:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11348:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11333:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11333:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11353:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11326:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11326:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11326:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11396:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11408:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11419:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11404:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11404:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11396:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11224:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11238:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11073:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11607:178:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11624:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11635:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11617:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11617:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11617:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11658:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11669:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11654:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11654:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11674:2:94",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11647:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11647:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11647:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11697:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11708:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11693:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11693:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11713:30:94",
                                    "type": "",
                                    "value": "PrizePool/ticket-already-set"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11686:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11686:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11686:58:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11753:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11765:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11776:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11761:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11761:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11753:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11584:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11598:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11433:352:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11964:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11981:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11992:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11974:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11974:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11974:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12015:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12026:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12011:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12011:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12031:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12004:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12004:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12004:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12054:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12065:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12050:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12050:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12070:31:94",
                                    "type": "",
                                    "value": "PrizePool/award-exceeds-avail"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12043:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12043:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12043:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12111:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12123:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12134:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12119:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12119:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12111:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11941:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11955:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11790:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12322:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12339:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12350:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12332:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12332:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12332:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12373:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12384:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12369:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12369:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12389:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12362:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12362:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12362:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12412:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12423:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12408:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12408:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12428:31:94",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12401:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12401:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12401:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12469:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12481:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12492:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12477:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12477:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12469:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12299:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12313:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12148:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12680:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12697:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12708:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12690:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12690:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12690:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12731:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12742:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12727:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12727:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12747:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12720:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12720:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12720:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12770:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12781:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12766:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12766:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12786:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12759:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12759:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12759:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12841:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12852:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12837:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12837:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12857:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12830:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12830:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12830:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12874:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12886:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12897:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12882:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12882:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12874:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12657:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12671:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12506:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13086:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13103:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13114:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13096:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13096:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13096:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13137:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13148:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13133:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13133:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13153:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13126:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13126:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13126:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13176:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13187:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13172:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13172:18:94"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13192:34:94",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13165:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13165:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13165:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13247:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13258:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13243:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13243:18:94"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13263:12:94",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13236:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13236:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13236:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13285:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13297:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13308:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13293:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13293:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13285:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13063:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13077:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12912:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13497:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13514:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13525:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13507:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13507:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13507:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13548:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13559:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13544:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13544:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13564:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13537:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13537:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13537:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13587:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13598:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13583:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13583:18:94"
                                  },
                                  {
                                    "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13603:33:94",
                                    "type": "",
                                    "value": "ReentrancyGuard: reentrant call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13576:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13576:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13576:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13646:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13658:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13669:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13654:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13654:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13646:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13474:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13488:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13323:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13857:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13874:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13885:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13867:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13867:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13867:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13908:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13919:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13904:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13904:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13924:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13897:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13897:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13897:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13947:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13958:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13943:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13943:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13963:33:94",
                                    "type": "",
                                    "value": "PrizePool/exceeds-liquidity-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13936:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13936:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13936:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14006:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14018:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14029:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14014:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14014:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14006:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13834:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13848:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13683:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14217:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14234:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14245:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14227:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14227:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14227:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14268:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14279:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14264:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14264:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14284:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14257:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14257:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14257:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14307:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14318:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14303:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14303:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14323:31:94",
                                    "type": "",
                                    "value": "PrizePool/exceeds-balance-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14296:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14296:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14296:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14364:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14376:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14387:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14372:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14372:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14364:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14194:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14208:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14043:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14502:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14512:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14524:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14535:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14520:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14520:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14512:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14554:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14565:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14547:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14547:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14547:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14471:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14482:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14493:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14401:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14712:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14722:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14734:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14745:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14730:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14730:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14722:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14764:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14775:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14757:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14757:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14757:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14802:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14813:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14798:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14798:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14822:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14830:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14818:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14818:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14791:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14791:83:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14791:83:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14673:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14684:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14692:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14703:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14583:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15014:119:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15024:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15036:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15047:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15032:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15032:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15024:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15066:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "15077:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15059:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15059:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15059:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15104:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15115:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15100:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15100:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15120:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15093:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15093:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15093:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14975:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14986:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14994:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15005:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14885:248:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15186:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15213:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15215:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15215:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15215:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15202:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "15209:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "15205:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15205:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15199:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15199:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15196:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15244:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15255:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15258:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15251:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15251:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "15244:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15169:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15172:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "15178:3:94",
                            "type": ""
                          }
                        ],
                        "src": "15138:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15320:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15342:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15344:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15344:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15344:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15336:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15339:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15333:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15333:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15330:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15373:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15385:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15388:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "15381:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15381:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "15373:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15302:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15305:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "15311:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15271:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15454:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15464:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "15473:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "15468:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15533:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "15558:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "15563:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "15554:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15554:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "15577:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "15582:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "15573:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "15573:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "15567:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15567:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "15547:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15547:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15547:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "15494:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "15497:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15491:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15491:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "15505:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "15507:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "15516:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15519:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "15512:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15512:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "15507:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "15487:3:94",
                                "statements": []
                              },
                              "src": "15483:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15622:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "15635:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "15640:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "15631:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15631:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15649:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "15624:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15624:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15624:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "15611:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "15614:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15608:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15608:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15605:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "15432:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "15437:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "15442:6:94",
                            "type": ""
                          }
                        ],
                        "src": "15401:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15711:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15802:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15804:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15804:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15804:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15727:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15734:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "15724:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15724:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15721:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15833:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15844:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15851:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15840:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15840:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "15833:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "15693:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "15703:3:94",
                            "type": ""
                          }
                        ],
                        "src": "15664:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15896:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15913:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15916:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15906:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15906:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15906:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16010:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16013:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16003:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16003:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16003:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16034:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16037:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16027:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16027:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16027:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15864:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16085:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16102:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16105:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16095:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16095:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16095:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16199:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16202:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16192:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16192:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16192:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16223:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16226:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16216:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16216:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16216:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16053:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16274:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16291:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16294:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16284:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16284:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16284:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16388:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16391:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16381:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16381:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16381:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16412:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16415:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16405:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16405:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16405:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16242:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16476:109:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16563:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16572:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16575:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "16565:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16565:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16565:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16499:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "16510:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16517:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16506:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16506:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "16496:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16496:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "16489:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16489:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "16486:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16465:5:94",
                            "type": ""
                          }
                        ],
                        "src": "16431:154:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let offset := calldataload(add(headStart, 64))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_2, 32)\n        value3 := length\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n        let offset := calldataload(add(headStart, 96))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, length), 32), dataEnd) { revert(0, 0) }\n        value3 := add(_2, 32)\n        value4 := length\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_uint256t_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_address(value_1)\n        value2 := value_1\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_ICompLike_$8121t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$9297(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_bytes(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 0x20)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff00000000000000000000000000000000000000000000000000000000))\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IYieldSource_$16357__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/prizeStrategy-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/only-prizeStrategy\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizePool/ticket-not-zero-addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizePool/invalid-external-token\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"PrizePool/ticket-already-set\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/award-exceeds-avail\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ReentrancyGuard: reentrant call\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-liquidity-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"PrizePool/exceeds-balance-cap\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "11980": [
                  {
                    "length": 32,
                    "start": 977
                  },
                  {
                    "length": 32,
                    "start": 6003
                  },
                  {
                    "length": 32,
                    "start": 6262
                  },
                  {
                    "length": 32,
                    "start": 6560
                  },
                  {
                    "length": 32,
                    "start": 6669
                  },
                  {
                    "length": 32,
                    "start": 7269
                  },
                  {
                    "length": 32,
                    "start": 7619
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101f05760003560e01c80637b99adb11161010f578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b14610441578063f2fde38b14610449578063ffa1ad741461045c578063ffaad6a5146104a557600080fd5b8063c002c4d6146103fb578063d7a169eb1461040c578063d804abaf1461041f578063e30c39781461043057600080fd5b8063aec9c307116100de578063aec9c307146103b1578063b15a49c1146103c4578063b2470e5c146103cc578063b69ef8a8146103f357600080fd5b80637b99adb1146103675780638da5cb5b1461037a57806391ca480e1461038b5780639470b0bd1461039e57600080fd5b806333e5761f11610187578063630665b411610156578063630665b4146103315780636a3fd4f914610339578063715018a61461034c57806378b3d3271461035457600080fd5b806333e5761f1461030657806335faa4161461030e5780634e71e0c8146103165780635d8a776e1461031e57600080fd5b80631c65c78b116101c35780631c65c78b1461029d57806321df0da7146102c05780632b0ab144146102e05780632f7627e3146102f357600080fd5b806308234319146101f557806313f55e391461020c578063150b7a021461022157806316960d551461028a575b600080fd5b6005545b6040519081526020015b60405180910390f35b61021f61021a366004612480565b6104b8565b005b61025961022f3660046124c1565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610203565b61021f6102983660046123eb565b61057a565b6102b06102ab3660046123b1565b610844565b6040519015158152602001610203565b6102c86109eb565b6040516001600160a01b039091168152602001610203565b61021f6102ee366004612480565b6109fa565b61021f6103013660046125f0565b610aa9565b6101f9610c06565b61021f610c10565b61021f610d98565b61021f61032c366004612560565b610e26565b6007546101f9565b6102b06103473660046123b1565b610f4c565b61021f610f5d565b6102b06103623660046123b1565b610fd2565b61021f610375366004612629565b610feb565b6000546001600160a01b03166102c8565b61021f6103993660046123b1565b611060565b6101f96103ac366004612560565b6110d2565b6102b06103bf366004612629565b611233565b6006546101f9565b6102c87f000000000000000000000000000000000000000000000000000000000000000081565b6101f96112a7565b6003546001600160a01b03166102c8565b61021f61041a36600461258c565b6112b1565b6004546001600160a01b03166102c8565b6001546001600160a01b03166102c8565b6101f96113f1565b61021f6104573660046123b1565b6114ef565b6104986040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161020391906126e7565b61021f6104b3366004612560565b61162b565b6004546001600160a01b031633146105175760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6105228383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161056c91815260200190565b60405180910390a35b505050565b6004546001600160a01b031633146105d45760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b6105dd8361176f565b6106295760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b806106335761083e565b60008167ffffffffffffffff81111561064e5761064e61279c565b604051908082528060200260200182016040528015610677578160200160208202803683370190505b5090506000805b838110156107e857856001600160a01b03166342842e0e30898888868181106106a9576106a9612786565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561071857600080fd5b505af1925050508015610729575060015b61079a573d808015610757576040519150601f19603f3d011682016040523d82523d6000602084013e61075c565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161078c91906126e7565b60405180910390a1506107d6565b600191508484828181106107b0576107b0612786565b905060200201358382815181106107c9576107c9612786565b6020026020010181815250505b806107e081612755565b91505061067e565b50801561083b57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161083291906126a3565b60405180910390a35b50505b50505050565b6000336108596000546001600160a01b031690565b6001600160a01b0316146108af5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b03821661092b5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050e565b6003546001600160a01b0316156109845760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d73657400000000604482015260640161050e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109e3600019611836565b506001919050565b60006109f5611872565b905090565b6004546001600160a01b03163314610a545760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b610a5f8383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161056c91815260200190565b33610abc6000546001600160a01b031690565b6001600160a01b031614610b125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8c9190612642565b1115610c02576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bee57600080fd5b505af115801561083b573d6000803e3d6000fd5b5050565b60006109f5611905565b600280541415610c625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b6002805533610c796000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6000610cd9611872565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612642565b9050610d5d8161199b565b6040518181527f7f221332ee403570bf4d61630b58189ea566ff1635269001e9df6a890f413dd89060200160405180910390a1506001600255565b6001546001600160a01b03163314610df25760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161050e565b600154610e07906001600160a01b0316611a74565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e805760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b80610e89575050565b60075480821115610edc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c000000604482015260640161050e565b8181036007556003546001600160a01b0316610ef9848483611ad1565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610f3e91815260200190565b60405180910390a350505050565b6000610f578261176f565b92915050565b33610f706000546001600160a01b031690565b6001600160a01b031614610fc65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b610fd06000611a74565b565b6003546000906001600160a01b03808416911614610f57565b33610ffe6000546001600160a01b031690565b6001600160a01b0316146110545760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b51565b50565b336110736000546001600160a01b031690565b6001600160a01b0316146110c95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b86565b60006002805414156111265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561119957600080fd5b505af11580156111ad573d6000803e3d6000fd5b5050505060006111bc84611c33565b90506111db85826111cb611872565b6001600160a01b03169190611ce9565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336112486000546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6109e382611836565b60006109f5611d92565b6002805414156113035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558161131181611e23565b61135d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b611368338585611e59565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50506001600255505050505050565b60006002805414156114455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556000611453611905565b6007549091506000611463611d92565b9050600083821161147557600061147f565b61147f8483612712565b9050600083821161149157600061149b565b61149b8483612712565b905080156114e157600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336115026000546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60028054141561167d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558061168b81611e23565b6116d75760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b6116e2338484611e59565b5050600160025550565b60006116f78361176f565b6117435760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b8161175057506000611768565b6117646001600160a01b0384168584611ce9565b5060015b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03838116908216148015906117685750806001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e257600080fd5b505afa1580156117f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181a91906123ce565b6001600160a01b0316836001600160a01b031614159392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906123ce565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f59190612642565b6119d87f0000000000000000000000000000000000000000000000000000000000000000826119c8611872565b6001600160a01b03169190611f4b565b6040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018290523060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906387a6eeef90604401600060405180830381600087803b158015611a5957600080fd5b505af1158015611a6d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611867565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f604482015260640161050e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063013054c290602401602060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f579190612642565b6040516001600160a01b0383166024820152604481018290526105759084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261203e565b6040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b99152d090602401602060405180830381600087803b158015611e0f57600080fd5b505af1158015611977573d6000803e3d6000fd5b600654600090600019811415611e3c5750600192915050565b8083611e46611905565b611e5091906126fa565b11159392505050565b611e638282612123565b611eaf5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d636170000000604482015260640161050e565b6003546001600160a01b0316611eda843084611ec9611872565b6001600160a01b03169291906121d1565b611ee5838383611ad1565b611eee8261199b565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611f3d91815260200190565b60405180910390a450505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611fb057600080fd5b505afa158015611fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe89190612642565b611ff291906126fa565b6040516001600160a01b03851660248201526044810182905290915061083e9085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611d2e565b6000612093826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122229092919063ffffffff16565b80519091501561057557808060200190518101906120b191906125ce565b6105755760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050e565b60055460009060001981141561213d576001915050610f57565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190612642565b6121c791906126fa565b1115949350505050565b6040516001600160a01b038085166024830152831660448201526064810182905261083e9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d2e565b60606122318484600085612239565b949350505050565b6060824710156122b15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050e565b843b6122ff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050e565b600080866001600160a01b0316858760405161231b9190612687565b60006040518083038185875af1925050503d8060008114612358576040519150601f19603f3d011682016040523d82523d6000602084013e61235d565b606091505b509150915061236d828286612378565b979650505050505050565b60608315612387575081611768565b8251156123975782518084602001fd5b8160405162461bcd60e51b815260040161050e91906126e7565b6000602082840312156123c357600080fd5b8135611768816127b2565b6000602082840312156123e057600080fd5b8151611768816127b2565b6000806000806060858703121561240157600080fd5b843561240c816127b2565b9350602085013561241c816127b2565b9250604085013567ffffffffffffffff8082111561243957600080fd5b818701915087601f83011261244d57600080fd5b81358181111561245c57600080fd5b8860208260051b850101111561247157600080fd5b95989497505060200194505050565b60008060006060848603121561249557600080fd5b83356124a0816127b2565b925060208401356124b0816127b2565b929592945050506040919091013590565b6000806000806000608086880312156124d957600080fd5b85356124e4816127b2565b945060208601356124f4816127b2565b935060408601359250606086013567ffffffffffffffff8082111561251857600080fd5b818801915088601f83011261252c57600080fd5b81358181111561253b57600080fd5b89602082850101111561254d57600080fd5b9699959850939650602001949392505050565b6000806040838503121561257357600080fd5b823561257e816127b2565b946020939093013593505050565b6000806000606084860312156125a157600080fd5b83356125ac816127b2565b92506020840135915060408401356125c3816127b2565b809150509250925092565b6000602082840312156125e057600080fd5b8151801515811461176857600080fd5b6000806040838503121561260357600080fd5b823561260e816127b2565b9150602083013561261e816127b2565b809150509250929050565b60006020828403121561263b57600080fd5b5035919050565b60006020828403121561265457600080fd5b5051919050565b60008151808452612673816020860160208601612729565b601f01601f19169290920160200192915050565b60008251612699818460208701612729565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156126db578351835292840192918401916001016126bf565b50909695505050505050565b602081526000611768602083018461265b565b6000821982111561270d5761270d612770565b500190565b60008282101561272457612724612770565b500390565b60005b8381101561274457818101518382015260200161272c565b8381111561083e5750506000910152565b600060001982141561276957612769612770565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461105d57600080fdfea26469706673582212202473ef722041e061b88090a40d6ad36949e68f8ad48b96ebdcb68b3385b61be664736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1F0 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7B99ADB1 GT PUSH2 0x10F JUMPI DUP1 PUSH4 0xC002C4D6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xE6D8A94B GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xE6D8A94B EQ PUSH2 0x441 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x449 JUMPI DUP1 PUSH4 0xFFA1AD74 EQ PUSH2 0x45C JUMPI DUP1 PUSH4 0xFFAAD6A5 EQ PUSH2 0x4A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC002C4D6 EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xD7A169EB EQ PUSH2 0x40C JUMPI DUP1 PUSH4 0xD804ABAF EQ PUSH2 0x41F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x430 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAEC9C307 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xAEC9C307 EQ PUSH2 0x3B1 JUMPI DUP1 PUSH4 0xB15A49C1 EQ PUSH2 0x3C4 JUMPI DUP1 PUSH4 0xB2470E5C EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0xB69EF8A8 EQ PUSH2 0x3F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7B99ADB1 EQ PUSH2 0x367 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x37A JUMPI DUP1 PUSH4 0x91CA480E EQ PUSH2 0x38B JUMPI DUP1 PUSH4 0x9470B0BD EQ PUSH2 0x39E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F GT PUSH2 0x187 JUMPI DUP1 PUSH4 0x630665B4 GT PUSH2 0x156 JUMPI DUP1 PUSH4 0x630665B4 EQ PUSH2 0x331 JUMPI DUP1 PUSH4 0x6A3FD4F9 EQ PUSH2 0x339 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x34C JUMPI DUP1 PUSH4 0x78B3D327 EQ PUSH2 0x354 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33E5761F EQ PUSH2 0x306 JUMPI DUP1 PUSH4 0x35FAA416 EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x316 JUMPI DUP1 PUSH4 0x5D8A776E EQ PUSH2 0x31E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C65C78B GT PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x1C65C78B EQ PUSH2 0x29D JUMPI DUP1 PUSH4 0x21DF0DA7 EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0x2B0AB144 EQ PUSH2 0x2E0 JUMPI DUP1 PUSH4 0x2F7627E3 EQ PUSH2 0x2F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8234319 EQ PUSH2 0x1F5 JUMPI DUP1 PUSH4 0x13F55E39 EQ PUSH2 0x20C JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0x16960D55 EQ PUSH2 0x28A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x4B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x259 PUSH2 0x22F CALLDATASIZE PUSH1 0x4 PUSH2 0x24C1 JUMP JUMPDEST PUSH32 0x150B7A0200000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x298 CALLDATASIZE PUSH1 0x4 PUSH2 0x23EB JUMP JUMPDEST PUSH2 0x57A JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x2AB CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x844 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x2C8 PUSH2 0x9EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x203 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x2EE CALLDATASIZE PUSH1 0x4 PUSH2 0x2480 JUMP JUMPDEST PUSH2 0x9FA JUMP JUMPDEST PUSH2 0x21F PUSH2 0x301 CALLDATASIZE PUSH1 0x4 PUSH2 0x25F0 JUMP JUMPDEST PUSH2 0xAA9 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xC10 JUMP JUMPDEST PUSH2 0x21F PUSH2 0xD98 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x32C CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0xE26 JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x347 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xF4C JUMP JUMPDEST PUSH2 0x21F PUSH2 0xF5D JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x362 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0xFD2 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x375 CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0xFEB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x399 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x3AC CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x10D2 JUMP JUMPDEST PUSH2 0x2B0 PUSH2 0x3BF CALLDATASIZE PUSH1 0x4 PUSH2 0x2629 JUMP JUMPDEST PUSH2 0x1233 JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x1F9 JUMP JUMPDEST PUSH2 0x2C8 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x12A7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x41A CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x12B1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2C8 JUMP JUMPDEST PUSH2 0x1F9 PUSH2 0x13F1 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x457 CALLDATASIZE PUSH1 0x4 PUSH2 0x23B1 JUMP JUMPDEST PUSH2 0x14EF JUMP JUMPDEST PUSH2 0x498 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x342E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x203 SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH2 0x21F PUSH2 0x4B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2560 JUMP JUMPDEST PUSH2 0x162B JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x517 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x522 DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB0BAC59718CD343C80A813518AFCF36846CFCFE6D56E2B3CAB9BD49F5F9B251C DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x5D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x5DD DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x629 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0x633 JUMPI PUSH2 0x83E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x64E JUMPI PUSH2 0x64E PUSH2 0x279C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x677 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x42842E0E ADDRESS DUP10 DUP9 DUP9 DUP7 DUP2 DUP2 LT PUSH2 0x6A9 JUMPI PUSH2 0x6A9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP9 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP5 SWAP1 SWAP4 AND PUSH1 0x24 DUP6 ADD MSTORE POP PUSH1 0x20 SWAP1 SWAP2 MUL ADD CALLDATALOAD PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x718 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x729 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x79A JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x757 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x75C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH32 0x17E975018310F88872B58D4D8263ADCA83CF5C1893496EA2A86923DAB15276AD DUP2 PUSH1 0x40 MLOAD PUSH2 0x78C SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP DUP5 DUP5 DUP3 DUP2 DUP2 LT PUSH2 0x7B0 JUMPI PUSH2 0x7B0 PUSH2 0x2786 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x7C9 JUMPI PUSH2 0x7C9 PUSH2 0x2786 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x7E0 DUP2 PUSH2 0x2755 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x67E JUMP JUMPDEST POP DUP1 ISZERO PUSH2 0x83B JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x69C2DE32BC4D47F488E72626A6CFDEE85089342E52675E7DE79C4B417623960C DUP5 PUSH1 0x40 MLOAD PUSH2 0x832 SWAP2 SWAP1 PUSH2 0x26A3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x859 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x92B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D6E6F742D7A65726F2D616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x984 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7469636B65742D616C72656164792D73657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH2 0x9E3 PUSH1 0x0 NOT PUSH2 0x1836 JUMP JUMPDEST POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1872 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xA54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xA5F DUP4 DUP4 DUP4 PUSH2 0x16EC JUMP JUMPDEST ISZERO PUSH2 0x575 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC65F48ACA3B7A99B7443D04B8FFBB073156179BC628DC3F7DEF5047748973469 DUP4 PUSH1 0x40 MLOAD PUSH2 0x56C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST CALLER PUSH2 0xABC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB12 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB68 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB8C SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST GT ISZERO PUSH2 0xC02 JUMPI PUSH1 0x40 MLOAD PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 AND SWAP1 PUSH4 0x5C19A95C SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xBEE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0xC62 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE CALLER PUSH2 0xC79 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xCCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD1A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD2E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD52 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST SWAP1 POP PUSH2 0xD5D DUP2 PUSH2 0x199B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x7F221332EE403570BF4D61630B58189EA566FF1635269001E9DF6A890F413DD8 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP PUSH1 0x1 PUSH1 0x2 SSTORE JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xDF2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0xE07 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A74 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE80 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F6F6E6C792D7072697A65537472617465677900000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP1 PUSH2 0xE89 JUMPI POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP1 DUP3 GT ISZERO PUSH2 0xEDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F61776172642D657863656564732D617661696C000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x7 SSTORE PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEF9 DUP5 DUP5 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE2554529D99AB7A67DB6B4CEA2B32C7D55AE325F958861E05F304FDDED867E31 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF57 DUP3 PUSH2 0x176F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0xF70 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0xFD0 PUSH1 0x0 PUSH2 0x1A74 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND SWAP2 AND EQ PUSH2 0xF57 JUMP JUMPDEST CALLER PUSH2 0xFFE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1054 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B51 JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0x1073 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x105D DUP2 PUSH2 0x1B86 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1126 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x631B5DFB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 DUP2 SWAP1 PUSH4 0x631B5DFB SWAP1 PUSH1 0x64 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x11AD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH2 0x11BC DUP5 PUSH2 0x1C33 JUMP JUMPDEST SWAP1 POP PUSH2 0x11DB DUP6 DUP3 PUSH2 0x11CB PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1CE9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND SWAP3 SWAP1 DUP9 AND SWAP2 CALLER SWAP2 PUSH32 0xE56473357106D0CDEA364A045D5AB7ABB44B6BD1C0F092BA3734983A43459F8F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 PUSH1 0x2 SSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1248 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x129E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x9E3 DUP3 PUSH2 0x1836 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F5 PUSH2 0x1D92 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1303 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP2 PUSH2 0x1311 DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x135D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x1368 CALLER DUP6 DUP6 PUSH2 0x1E59 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x33E39B6100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x33E39B61 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13E2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x1445 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE PUSH1 0x0 PUSH2 0x1453 PUSH2 0x1905 JUMP JUMPDEST PUSH1 0x7 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 PUSH2 0x1463 PUSH2 0x1D92 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1475 JUMPI PUSH1 0x0 PUSH2 0x147F JUMP JUMPDEST PUSH2 0x147F DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP3 GT PUSH2 0x1491 JUMPI PUSH1 0x0 PUSH2 0x149B JUMP JUMPDEST PUSH2 0x149B DUP5 DUP4 PUSH2 0x2712 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x14E1 JUMPI PUSH1 0x7 DUP3 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE SWAP2 SWAP4 POP DUP4 SWAP2 PUSH32 0xCE2B6E507C7CA1A20CE136810F524EEFC19BA4C7E4866EB6CC0CBA76E778D4BE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x1502 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD EQ ISZERO PUSH2 0x167D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x2 DUP1 SSTORE DUP1 PUSH2 0x168B DUP2 PUSH2 0x1E23 JUMP JUMPDEST PUSH2 0x16D7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D6C69717569646974792D63617000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH2 0x16E2 CALLER DUP5 DUP5 PUSH2 0x1E59 JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x2 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16F7 DUP4 PUSH2 0x176F JUMP JUMPDEST PUSH2 0x1743 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F696E76616C69642D65787465726E616C2D746F6B656E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST DUP2 PUSH2 0x1750 JUMPI POP PUSH1 0x0 PUSH2 0x1768 JUMP JUMPDEST PUSH2 0x1764 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP6 DUP5 PUSH2 0x1CE9 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND SWAP1 DUP3 AND EQ DUP1 ISZERO SWAP1 PUSH2 0x1768 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17F6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x181A SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x5 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x439B9AC8F2088164A8D80921758209DB1623CF1A37A48913679EF3A43D7A5CF7 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC89039C5 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18E1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9F5 SWAP2 SWAP1 PUSH2 0x23CE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x18160DDD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x18160DDD SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1963 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1977 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9F5 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x19D8 PUSH32 0x0 DUP3 PUSH2 0x19C8 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x1F4B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x87A6EEEF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x87A6EEEF SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A59 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A6D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D7B075800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND SWAP1 PUSH4 0x5D7B0758 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B48 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x3FF20538222F568F27FF436C0C49DFD3E48D5B8F86533A3F759DC1C7089775AB SWAP1 PUSH1 0x20 ADD PUSH2 0x1867 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1BDC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F7072697A6553747261746567792D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x7F58DC86BC2E435CB77CA0EDB1DF55E25F90CAF2D6BD866971715437D456A212 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x13054C200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x13054C2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1CB1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1CC5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF57 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x575 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x203E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xB99152D000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB99152D0 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1E0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1977 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x1E3C JUMPI POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP4 PUSH2 0x1E46 PUSH2 0x1905 JUMP JUMPDEST PUSH2 0x1E50 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E63 DUP3 DUP3 PUSH2 0x2123 JUMP JUMPDEST PUSH2 0x1EAF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A65506F6F6C2F657863656564732D62616C616E63652D636170000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1EDA DUP5 ADDRESS DUP5 PUSH2 0x1EC9 PUSH2 0x1872 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x21D1 JUMP JUMPDEST PUSH2 0x1EE5 DUP4 DUP4 DUP4 PUSH2 0x1AD1 JUMP JUMPDEST PUSH2 0x1EEE DUP3 PUSH2 0x199B JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4174A9435A04D04D274C76779CAD136A41FDE6937C56241C09AB9D3C7064A1A9 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1F3D SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xDD62ED3E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 DUP4 SWAP2 DUP7 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1FB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FC4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1FE8 SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x1FF2 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2093 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2222 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x575 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x20B1 SWAP2 SWAP1 PUSH2 0x25CE JUMP JUMPDEST PUSH2 0x575 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x0 NOT DUP2 EQ ISZERO PUSH2 0x213D JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xF57 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP4 SWAP3 DUP7 SWAP3 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2199 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x21BD SWAP2 SWAP1 PUSH2 0x2642 JUMP JUMPDEST PUSH2 0x21C7 SWAP2 SWAP1 PUSH2 0x26FA JUMP JUMPDEST GT ISZERO SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x83E SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x1D2E JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2231 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x2239 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x22B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x50E JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x22FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x50E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x231B SWAP2 SWAP1 PUSH2 0x2687 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2358 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x235D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x236D DUP3 DUP3 DUP7 PUSH2 0x2378 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2387 JUMPI POP DUP2 PUSH2 0x1768 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2397 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x26E7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23C3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x23E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1768 DUP2 PUSH2 0x27B2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2401 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x240C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x241C DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2439 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x244D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x245C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2471 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2495 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24A0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24B0 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x24D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x24F4 DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x2518 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x252C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x253B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x254D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP PUSH1 0x20 ADD SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x257E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x25A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x25AC DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x25C3 DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x1768 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2603 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x260E DUP2 PUSH2 0x27B2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x261E DUP2 PUSH2 0x27B2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x263B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2654 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x2673 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2729 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x2699 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2729 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x26DB JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x26BF JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1768 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x265B JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x270D JUMPI PUSH2 0x270D PUSH2 0x2770 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2724 JUMPI PUSH2 0x2724 PUSH2 0x2770 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2744 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x272C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x83E JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2769 JUMPI PUSH2 0x2769 PUSH2 0x2770 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x105D JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x24 PUSH20 0xEF722041E061B88090A40D6AD36949E68F8AD48B SWAP7 0xEB 0xDC 0xB6 DUP12 CALLER DUP6 0xB6 SHL 0xE6 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "641:3753:49:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545:100:48;3628:10;;3545:100;;;14547:25:94;;;14535:2;14520:18;3545:100:48;;;;;;;;7453:299;;;;;;:::i;:::-;;:::i;:::-;;10285:212;;;;;;:::i;:::-;10449:41;10285:212;;;;;;;;;;;7807:66:94;7795:79;;;7777:98;;7765:2;7750:18;10285:212:48;7732:149:94;8118:961:48;;;;;;:::i;:::-;;:::i;9466:379::-;;;;;;:::i;:::-;;:::i;:::-;;;7606:14:94;;7599:22;7581:41;;7569:2;7554:18;9466:379:48;7536:92:94;4095:102:48;;;:::i;:::-;;;-1:-1:-1;;;;;5700:55:94;;;5682:74;;5670:2;5655:18;4095:102:48;5637:125:94;7789:292:48;;;;;;:::i;:::-;;:::i;10047:196::-;;;;;;:::i;:::-;;:::i;3392:116::-;;;:::i;2297:173:49:-;;;:::i;3147:129:19:-;;;:::i;6909:507:48:-;;;;;;:::i;:::-;;:::i;2886:109::-;2968:20;;2886:109;;3032:145;;;;;;:::i;:::-;;:::i;2508:94:19:-;;;:::i;3214:141:48:-;;;;;;:::i;:::-;;:::i;9305:124::-;;;;;;:::i;:::-;;:::i;1814:85:19:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;9882:128:48;;;;;;:::i;:::-;;:::i;6371:501::-;;;;;;:::i;:::-;;:::i;9116:152::-;;;;;;:::i;:::-;;:::i;3682:104::-;3767:12;;3682:104;;799:41:49;;;;;2760:89:48;;;:::i;3823:92::-;3902:6;;-1:-1:-1;;;;;3902:6:48;3823:92;;5405:285;;;;;;:::i;:::-;;:::i;3952:106::-;4038:13;;-1:-1:-1;;;;;4038:13:48;3952:106;;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;4234:903:48;;;:::i;2751:234:19:-;;;;;;:::i;:::-;;:::i;1362:40:48:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5174:194::-;;;;;;:::i;:::-;;:::i;7453:299::-;2094:13;;-1:-1:-1;;;;;2094:13:48;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:48;;9395:2:94;2072:68:48;;;9377:21:94;9434:2;9414:18;;;9407:30;9473;9453:18;;;9446:58;9521:18;;2072:68:48;;;;;;;;;7618:42:::1;7631:3;7636:14;7652:7;7618:12;:42::i;:::-;7614:132;;;7711:14;-1:-1:-1::0;;;;;7681:54:48::1;7706:3;-1:-1:-1::0;;;;;7681:54:48::1;;7727:7;7681:54;;;;14547:25:94::0;;14535:2;14520:18;;14502:76;7681:54:48::1;;;;;;;;7614:132;7453:299:::0;;;:::o;8118:961::-;2094:13;;-1:-1:-1;;;;;2094:13:48;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:48;;9395:2:94;2072:68:48;;;9377:21:94;9434:2;9414:18;;;9407:30;9473;9453:18;;;9446:58;9521:18;;2072:68:48;9367:178:94;2072:68:48;8298:33:::1;8316:14;8298:17;:33::i;:::-;8290:78;;;::::0;-1:-1:-1;;;8290:78:48;;10914:2:94;8290:78:48::1;::::0;::::1;10896:21:94::0;;;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;11044:18;;8290:78:48::1;10886:182:94::0;8290:78:48::1;8383:21:::0;8379:58:::1;;8420:7;;8379:58;8447:33;8497:9:::0;8483:31:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8483:31:48::1;-1:-1:-1::0;8447:67:48;-1:-1:-1;8525:23:48::1;::::0;8559:390:::1;8579:20:::0;;::::1;8559:390;;;8632:14;-1:-1:-1::0;;;;;8624:40:48::1;;8673:4;8680:3;8685:9;;8695:1;8685:12;;;;;;;:::i;:::-;8624:74;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6380:15:94;;;8624:74:48::1;::::0;::::1;6362:34:94::0;6432:15;;;;6412:18;;;6405:43;-1:-1:-1;8685:12:48::1;::::0;;::::1;;;6464:18:94::0;;;6457:34;6274:18;;8624:74:48::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;8620:319;;;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8890:34;8918:5;8890:34;;;;;;:::i;:::-;;;;;;;;8810:129;8620:319;;;8738:4;8717:25;;8782:9;;8792:1;8782:12;;;;;;;:::i;:::-;;;;;;;8760:16;8777:1;8760:19;;;;;;;;:::i;:::-;;;;;;:34;;;::::0;::::1;8620:319;8601:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8559:390;;;;8962:18;8958:115;;;9029:14;-1:-1:-1::0;;;;;9002:60:48::1;9024:3;-1:-1:-1::0;;;;;9002:60:48::1;;9045:16;9002:60;;;;;;:::i;:::-;;;;;;;;8958:115;8280:799;;2150:1;8118:961:::0;;;;:::o;9466:379::-;9539:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19;;;10543:21:94;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19;10533:174:94;3819:58:19;-1:-1:-1;;;;;9563:30:48;::::1;9555:76;;;::::0;-1:-1:-1;;;9555:76:48;;9752:2:94;9555:76:48::1;::::0;::::1;9734:21:94::0;9791:2;9771:18;;;9764:30;9830:34;9810:18;;;9803:62;9901:3;9881:18;;;9874:31;9922:19;;9555:76:48::1;9724:223:94::0;9555:76:48::1;9657:6;::::0;-1:-1:-1;;;;;9657:6:48::1;9649:29:::0;9641:70:::1;;;::::0;-1:-1:-1;;;9641:70:48;;11635:2:94;9641:70:48::1;::::0;::::1;11617:21:94::0;11674:2;11654:18;;;11647:30;11713;11693:18;;;11686:58;11761:18;;9641:70:48::1;11607:178:94::0;9641:70:48::1;9722:6;:16:::0;;-1:-1:-1;;9722:16:48::1;-1:-1:-1::0;;;;;9722:16:48;::::1;::::0;;::::1;::::0;;;9754:18:::1;::::0;::::1;::::0;-1:-1:-1;;9754:18:48::1;9783:33;-1:-1:-1::0;;9783:14:48::1;:33::i;:::-;-1:-1:-1::0;9834:4:48::1;9466:379:::0;;;:::o;4095:102::-;4147:7;4181:8;:6;:8::i;:::-;4166:24;;4095:102;:::o;7789:292::-;2094:13;;-1:-1:-1;;;;;2094:13:48;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:48;;9395:2:94;2072:68:48;;;9377:21:94;9434:2;9414:18;;;9407:30;9473;9453:18;;;9446:58;9521:18;;2072:68:48;9367:178:94;2072:68:48;7951:42:::1;7964:3;7969:14;7985:7;7951:12;:42::i;:::-;7947:128;;;8040:14;-1:-1:-1::0;;;;;8014:50:48::1;8035:3;-1:-1:-1::0;;;;;8014:50:48::1;;8056:7;8014:50;;;;14547:25:94::0;;14535:2;14520:18;;14502:76;10047:196:48;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19;;;10543:21:94;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19;10533:174:94;3819:58:19;10149:34:48::1;::::0;-1:-1:-1;;;10149:34:48;;10177:4:::1;10149:34;::::0;::::1;5682:74:94::0;10186:1:48::1;::::0;-1:-1:-1;;;;;10149:19:48;::::1;::::0;::::1;::::0;5655:18:94;;10149:34:48::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;10145:92;;;10203:23;::::0;;;;-1:-1:-1;;;;;5700:55:94;;;10203:23:48::1;::::0;::::1;5682:74:94::0;10203:18:48;::::1;::::0;::::1;::::0;5655::94;;10203:23:48::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;10145:92;10047:196:::0;;:::o;3392:116::-;3455:7;3481:20;:18;:20::i;2297:173:49:-;1744:1:0;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:0;;13525:2:94;2317:63:0;;;13507:21:94;13564:2;13544:18;;;13537:30;13603:33;13583:18;;;13576:61;13654:18;;2317:63:0;13497:181:94;2317:63:0;1744:1;2455:18;;3838:10:19::1;3827:7;1860::::0;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7:::1;-1:-1:-1::0;;;;;3827:21:19::1;;3819:58;;;::::0;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19::1;::::0;::::1;10543:21:94::0;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19::1;10533:174:94::0;3819:58:19::1;2356:15:49::2;2374:8;:6;:8::i;:::-;:33;::::0;-1:-1:-1;;;2374:33:49;;2401:4:::2;2374:33;::::0;::::2;5682:74:94::0;-1:-1:-1;;;;;2374:18:49;;;::::2;::::0;::::2;::::0;5655::94;;2374:33:49::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2356:51;;2417:16;2425:7;2417;:16::i;:::-;2449:14;::::0;14547:25:94;;;2449:14:49::2;::::0;14535:2:94;14520:18;2449:14:49::2;;;;;;;-1:-1:-1::0;1701:1:0;2628:7;:22;2297:173:49:o;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;11275:2:94;4028:71:19;;;11257:21:94;11314:2;11294:18;;;11287:30;11353:33;11333:18;;;11326:61;11404:18;;4028:71:19;11247:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;6909:507:48:-;2094:13;;-1:-1:-1;;;;;2094:13:48;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:48;;9395:2:94;2072:68:48;;;9377:21:94;9434:2;9414:18;;;9407:30;9473;9453:18;;;9446:58;9521:18;;2072:68:48;9367:178:94;2072:68:48;7004:12;7000:49:::1;;10047:196:::0;;:::o;7000:49::-:1;7089:20;::::0;7128:30;;::::1;;7120:72;;;::::0;-1:-1:-1;;;7120:72:48;;11992:2:94;7120:72:48::1;::::0;::::1;11974:21:94::0;12031:2;12011:18;;;12004:30;12070:31;12050:18;;;12043:59;12119:18;;7120:72:48::1;11964:179:94::0;7120:72:48::1;7250:29:::0;;::::1;7227:20;:52:::0;7318:6:::1;::::0;-1:-1:-1;;;;;7318:6:48::1;7335:28;7341:3:::0;7272:7;7318:6;7335:5:::1;:28::i;:::-;7392:7;-1:-1:-1::0;;;;;7379:30:48::1;7387:3;-1:-1:-1::0;;;;;7379:30:48::1;;7401:7;7379:30;;;;14547:25:94::0;;14535:2;14520:18;;14502:76;7379:30:48::1;;;;;;;;6990:426;;6909:507:::0;;:::o;3032:145::-;3114:4;3137:33;3155:14;3137:17;:33::i;:::-;3130:40;3032:145;-1:-1:-1;;3032:145:48:o;2508:94:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19;;;10543:21:94;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19;10533:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;3214:141:48:-;13170:6;;3294:4;;-1:-1:-1;;;;;13170:26:48;;;:6;;:26;3317:31;13074:130;9305:124;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19;;;10543:21:94;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19;10533:174:94;3819:58:19;9391:31:48::1;9408:13;9391:16;:31::i;:::-;9305:124:::0;:::o;9882:128::-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19;;;10543:21:94;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19;10533:174:94;3819:58:19;9970:33:48::1;9988:14;9970:17;:33::i;6371:501::-:0;6497:7;1744:1:0;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:0;;13525:2:94;2317:63:0;;;13507:21:94;13564:2;13544:18;;;13537:30;13603:33;13583:18;;;13576:61;13654:18;;2317:63:0;13497:181:94;2317:63:0;1744:1;2455:18;;6538:6:48::1;::::0;6583:54:::1;::::0;;;;6610:10:::1;6583:54;::::0;::::1;6362:34:94::0;-1:-1:-1;;;;;6432:15:94;;;6412:18;;;6405:43;6464:18;;;6457:34;;;6538:6:48;;::::1;::::0;;;6583:26:::1;::::0;6274:18:94;;6583:54:48::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6678:17;6698:16;6706:7;6698;:16::i;:::-;6678:36;;6725:39;6747:5;6754:9;6725:8;:6;:8::i;:::-;-1:-1:-1::0;;;;;6725:21:48::1;::::0;:39;:21:::1;:39::i;:::-;6780:58;::::0;;15059:25:94;;;15115:2;15100:18;;15093:34;;;-1:-1:-1;;;;;6780:58:48;;::::1;::::0;;;::::1;::::0;6791:10:::1;::::0;6780:58:::1;::::0;15032:18:94;6780:58:48::1;;;;;;;1701:1:0::0;2628:7;:22;6856:9:48;6371:501;-1:-1:-1;;;;6371:501:48:o;9116:152::-;9197:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19;;;10543:21:94;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19;10533:174:94;3819:58:19;9213:27:48::1;9228:11;9213:14;:27::i;2760:89::-:0;2806:7;2832:10;:8;:10::i;5405:285::-;1744:1:0;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:0;;13525:2:94;2317:63:0;;;13507:21:94;13564:2;13544:18;;;13537:30;13603:33;13583:18;;;13576:61;13654:18;;2317:63:0;13497:181:94;2317:63:0;1744:1;2455:18;;5563:7:48;2327:25:::1;5563:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:48;;13885:2:94;2319:69:48::1;::::0;::::1;13867:21:94::0;13924:2;13904:18;;;13897:30;13963:33;13943:18;;;13936:61;14014:18;;2319:69:48::1;13857:181:94::0;2319:69:48::1;5586:36:::2;5597:10;5609:3;5614:7;5586:10;:36::i;:::-;5632:6;::::0;:51:::2;::::0;;;;5661:10:::2;5632:51;::::0;::::2;6002:34:94::0;-1:-1:-1;;;;;6072:15:94;;;6052:18;;;6045:43;5632:6:48;;::::2;::::0;:28:::2;::::0;5914:18:94;;5632:51:48::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1701:1:0;2628:7;:22;-1:-1:-1;;;;;;5405:285:48:o;4234:903::-;4305:7;1744:1:0;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:0;;13525:2:94;2317:63:0;;;13507:21:94;13564:2;13544:18;;;13537:30;13603:33;13583:18;;;13576:61;13654:18;;2317:63:0;13497:181:94;2317:63:0;1744:1;2455:18;;4324:25:48::1;4352:20;:18;:20::i;:::-;4412;::::0;4324:48;;-1:-1:-1;4382:27:48::1;4583:10;:8;:10::i;:::-;4558:35;;4603:21;4645:17;4628:14;:34;4627:101;;4727:1;4627:101;;;4678:34;4695:17:::0;4678:14;:34:::1;:::i;:::-;4603:125;;4739:31;4790:19;4774:13;:35;4773:103;;4875:1;4773:103;;;4825:35;4841:19:::0;4825:13;:35:::1;:::i;:::-;4739:137:::0;-1:-1:-1;4891:27:48;;4887:207:::1;;4983:20;:42:::0;;;5045:38:::1;::::0;14547:25:94;;;4956:13:48;;-1:-1:-1;4956:13:48;;5045:38:::1;::::0;14535:2:94;14520:18;5045:38:48::1;;;;;;;4887:207;-1:-1:-1::0;;1701:1:0;2628:7;:22;-1:-1:-1;5111:19:48;4234:903;-1:-1:-1;;4234:903:48:o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10561:2:94;3819:58:19;;;10543:21:94;10600:2;10580:18;;;10573:30;10639:26;10619:18;;;10612:54;10683:18;;3819:58:19;10533:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;12708:2:94;2826:73:19::1;::::0;::::1;12690:21:94::0;12747:2;12727:18;;;12720:30;12786:34;12766:18;;;12759:62;12857:7;12837:18;;;12830:35;12882:19;;2826:73:19::1;12680:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;5174:194:48:-;1744:1:0;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:0;;13525:2:94;2317:63:0;;;13507:21:94;13564:2;13544:18;;;13537:30;13603:33;13583:18;;;13576:61;13654:18;;2317:63:0;13497:181:94;2317:63:0;1744:1;2455:18;;5302:7:48;2327:25:::1;5302:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:48;;13885:2:94;2319:69:48::1;::::0;::::1;13867:21:94::0;13924:2;13904:18;;;13897:30;13963:33;13943:18;;;13936:61;14014:18;;2319:69:48::1;13857:181:94::0;2319:69:48::1;5325:36:::2;5336:10;5348:3;5353:7;5325:10;:36::i;:::-;-1:-1:-1::0;;1701:1:0;2628:7;:22;-1:-1:-1;5174:194:48:o;10936:372::-;11060:4;11084:33;11102:14;11084:17;:33::i;:::-;11076:78;;;;-1:-1:-1;;;11076:78:48;;10914:2:94;11076:78:48;;;10896:21:94;;;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;11044:18;;11076:78:48;10886:182:94;11076:78:48;11169:12;11165:55;;-1:-1:-1;11204:5:48;11197:12;;11165:55;11230:49;-1:-1:-1;;;;;11230:35:48;;11266:3;11271:7;11230:35;:49::i;:::-;-1:-1:-1;11297:4:48;10936:372;;;;;;:::o;2887:286:49:-;2970:4;3014:11;-1:-1:-1;;;;;3056:39:49;;;;;;;;;;:100;;;3129:12;-1:-1:-1;;;;;3129:25:49;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3111:45:49;:14;-1:-1:-1;;;;;3111:45:49;;;3035:131;2887:286;-1:-1:-1;;;2887:286:49:o;13334:136:48:-;13398:10;:24;;;13437:26;;14547:25:94;;;13437:26:48;;14535:2:94;14520:18;13437:26:48;;;;;;;;13334:136;:::o;3594:116:49:-;3644:6;3676:11;-1:-1:-1;;;;;3676:24:49;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14215:106:48:-;14294:6;;:20;;;;;;;;14268:7;;-1:-1:-1;;;;;14294:6:48;;:18;;:20;;;;;;;;;;;;;;:6;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3844:201:49:-;3910:65;3949:11;3963;3910:8;:6;:8::i;:::-;-1:-1:-1;;;;;3910:30:49;;:65;:30;:65::i;:::-;3985:53;;;;;;;;14757:25:94;;;4032:4:49;14798:18:94;;;14791:83;3985:11:49;-1:-1:-1;;;;;3985:25:49;;;;14730:18:94;;3985:53:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3844:201;:::o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;11602:172:48:-;11722:45;;;;;-1:-1:-1;;;;;6694:55:94;;;11722:45:48;;;6676:74:94;6766:18;;;6759:34;;;11722:31:48;;;;;6649:18:94;;11722:45:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11602:172;;;:::o;13592:148::-;13660:12;:28;;;13703:30;;14547:25:94;;;13703:30:48;;14535:2:94;14520:18;13703:30:48;14502:76:94;13887:239:48;-1:-1:-1;;;;;13965:28:48;;13957:73;;;;-1:-1:-1;;;13957:73:48;;9034:2:94;13957:73:48;;;9016:21:94;;;9053:18;;;9046:30;9112:34;9092:18;;;9085:62;9164:18;;13957:73:48;9006:182:94;13957:73:48;14041:13;:30;;-1:-1:-1;;14041:30:48;-1:-1:-1;;;;;14041:30:48;;;;;;;;14087:32;;;;-1:-1:-1;;14087:32:48;13887:239;:::o;4254:138:49:-;4347:38;;;;;;;;14547:25:94;;;4321:7:49;;4347:11;-1:-1:-1;;;;;4347:23:49;;;;14520:18:94;;4347:38:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;701:205:6:-;840:58;;-1:-1:-1;;;;;6694:55:94;;840:58:6;;;6676:74:94;6766:18;;;6759:34;;;813:86:6;;833:5;;863:23;;6649:18:94;;840:58:6;;;;-1:-1:-1;;840:58:6;;;;;;;;;;;;;;;;;;;;;;;;;;;813:19;:86::i;3337:121:49:-;3410:41;;;;;3445:4;3410:41;;;5682:74:94;3384:7:49;;3410:11;-1:-1:-1;;;;;3410:26:49;;;;5655:18:94;;3410:41:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12605:252:48;12711:12;;12671:4;;-1:-1:-1;;12737:34:48;;12733:51;;;-1:-1:-1;12780:4:48;;12605:252;-1:-1:-1;;12605:252:48:o;12733:51::-;12836:13;12825:7;12802:20;:18;:20::i;:::-;:30;;;;:::i;:::-;:47;;;12605:252;-1:-1:-1;;;12605:252:48:o;5938:396::-;6038:25;6050:3;6055:7;6038:11;:25::i;:::-;6030:67;;;;-1:-1:-1;;;6030:67:48;;14245:2:94;6030:67:48;;;14227:21:94;14284:2;14264:18;;;14257:30;14323:31;14303:18;;;14296:59;14372:18;;6030:67:48;14217:179:94;6030:67:48;6126:6;;-1:-1:-1;;;;;6126:6:48;6143:60;6169:9;6188:4;6195:7;6143:8;:6;:8::i;:::-;-1:-1:-1;;;;;6143:25:48;;:60;;:25;:60::i;:::-;6214:28;6220:3;6225:7;6234;6214:5;:28::i;:::-;6252:16;6260:7;6252;:16::i;:::-;6310:7;-1:-1:-1;;;;;6284:43:48;6305:3;-1:-1:-1;;;;;6284:43:48;6294:9;-1:-1:-1;;;;;6284:43:48;;6319:7;6284:43;;;;14547:25:94;;14535:2;14520:18;;14502:76;6284:43:48;;;;;;;;6020:314;5938:396;;;:::o;2022:310:6:-;2171:39;;;;;2195:4;2171:39;;;6002:34:94;-1:-1:-1;;;;;6072:15:94;;;6052:18;;;6045:43;2148:20:6;;2213:5;;2171:15;;;;;5914:18:94;;2171:39:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;-1:-1:-1;;;;;6694:55:94;;2255:69:6;;;6676:74:94;6766:18;;;6759:34;;;2148:70:6;;-1:-1:-1;2228:97:6;;2248:5;;2278:22;;6649:18:94;;2255:69:6;6631:168:94;3207:706:6;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:6;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:6;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:6;;13114:2:94;3811:85:6;;;13096:21:94;13153:2;13133:18;;;13126:30;13192:34;13172:18;;;13165:62;13263:12;13243:18;;;13236:40;13293:19;;3811:85:6;13086:232:94;12093:259:48;12207:10;;12169:4;;-1:-1:-1;;12232:32:48;;12228:49;;;12273:4;12266:11;;;;;12228:49;12296:6;;:23;;-1:-1:-1;;;12296:23:48;;-1:-1:-1;;;;;5700:55:94;;;12296:23:48;;;5682:74:94;12333:11:48;;12322:7;;12296:6;;;:16;;5655:18:94;;12296:23:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;;;:::i;:::-;:48;;;12093:259;-1:-1:-1;;;;12093:259:48:o;912:241:6:-;1077:68;;-1:-1:-1;;;;;6380:15:94;;;1077:68:6;;;6362:34:94;6432:15;;6412:18;;;6405:43;6464:18;;;6457:34;;;1050:96:6;;1070:5;;1100:27;;6274:18:94;;1077:68:6;6256:241:94;3514:223:9;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;:::-;3671:59;3514:223;-1:-1:-1;;;;3514:223:9:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:9;;10154:2:94;4790:81:9;;;10136:21:94;10193:2;10173:18;;;10166:30;10232:34;10212:18;;;10205:62;10303:8;10283:18;;;10276:36;10329:19;;4790:81:9;10126:228:94;4790:81:9;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:9;;12350:2:94;4881:60:9;;;12332:21:94;12389:2;12369:18;;;12362:30;12428:31;12408:18;;;12401:59;12477:18;;4881:60:9;12322:179:94;4881:60:9;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:9;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:9:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:9;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:9;;;;;;;;:::i;14:247:94:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:2;;;405:1;402;395:12;357:2;437:9;431:16;456:31;481:5;456:31;:::i;522:891::-;626:6;634;642;650;703:2;691:9;682:7;678:23;674:32;671:2;;;719:1;716;709:12;671:2;758:9;745:23;777:31;802:5;777:31;:::i;:::-;827:5;-1:-1:-1;884:2:94;869:18;;856:32;897:33;856:32;897:33;:::i;:::-;949:7;-1:-1:-1;1007:2:94;992:18;;979:32;1030:18;1060:14;;;1057:2;;;1087:1;1084;1077:12;1057:2;1125:6;1114:9;1110:22;1100:32;;1170:7;1163:4;1159:2;1155:13;1151:27;1141:2;;1192:1;1189;1182:12;1141:2;1232;1219:16;1258:2;1250:6;1247:14;1244:2;;;1274:1;1271;1264:12;1244:2;1327:7;1322:2;1312:6;1309:1;1305:14;1301:2;1297:23;1293:32;1290:45;1287:2;;;1348:1;1345;1338:12;1287:2;661:752;;;;-1:-1:-1;;1379:2:94;1371:11;;-1:-1:-1;;;661:752:94:o;1418:456::-;1495:6;1503;1511;1564:2;1552:9;1543:7;1539:23;1535:32;1532:2;;;1580:1;1577;1570:12;1532:2;1619:9;1606:23;1638:31;1663:5;1638:31;:::i;:::-;1688:5;-1:-1:-1;1745:2:94;1730:18;;1717:32;1758:33;1717:32;1758:33;:::i;:::-;1522:352;;1810:7;;-1:-1:-1;;;1864:2:94;1849:18;;;;1836:32;;1522:352::o;1879:936::-;1976:6;1984;1992;2000;2008;2061:3;2049:9;2040:7;2036:23;2032:33;2029:2;;;2078:1;2075;2068:12;2029:2;2117:9;2104:23;2136:31;2161:5;2136:31;:::i;:::-;2186:5;-1:-1:-1;2243:2:94;2228:18;;2215:32;2256:33;2215:32;2256:33;:::i;:::-;2308:7;-1:-1:-1;2362:2:94;2347:18;;2334:32;;-1:-1:-1;2417:2:94;2402:18;;2389:32;2440:18;2470:14;;;2467:2;;;2497:1;2494;2487:12;2467:2;2535:6;2524:9;2520:22;2510:32;;2580:7;2573:4;2569:2;2565:13;2561:27;2551:2;;2602:1;2599;2592:12;2551:2;2642;2629:16;2668:2;2660:6;2657:14;2654:2;;;2684:1;2681;2674:12;2654:2;2729:7;2724:2;2715:6;2711:2;2707:15;2703:24;2700:37;2697:2;;;2750:1;2747;2740:12;2697:2;2019:796;;;;-1:-1:-1;2019:796:94;;-1:-1:-1;2781:2:94;2773:11;;2803:6;2019:796;-1:-1:-1;;;2019:796:94:o;2820:315::-;2888:6;2896;2949:2;2937:9;2928:7;2924:23;2920:32;2917:2;;;2965:1;2962;2955:12;2917:2;3004:9;2991:23;3023:31;3048:5;3023:31;:::i;:::-;3073:5;3125:2;3110:18;;;;3097:32;;-1:-1:-1;;;2907:228:94:o;3140:456::-;3217:6;3225;3233;3286:2;3274:9;3265:7;3261:23;3257:32;3254:2;;;3302:1;3299;3292:12;3254:2;3341:9;3328:23;3360:31;3385:5;3360:31;:::i;:::-;3410:5;-1:-1:-1;3462:2:94;3447:18;;3434:32;;-1:-1:-1;3518:2:94;3503:18;;3490:32;3531:33;3490:32;3531:33;:::i;:::-;3583:7;3573:17;;;3244:352;;;;;:::o;3601:277::-;3668:6;3721:2;3709:9;3700:7;3696:23;3692:32;3689:2;;;3737:1;3734;3727:12;3689:2;3769:9;3763:16;3822:5;3815:13;3808:21;3801:5;3798:32;3788:2;;3844:1;3841;3834:12;3883:406;3969:6;3977;4030:2;4018:9;4009:7;4005:23;4001:32;3998:2;;;4046:1;4043;4036:12;3998:2;4085:9;4072:23;4104:31;4129:5;4104:31;:::i;:::-;4154:5;-1:-1:-1;4211:2:94;4196:18;;4183:32;4224:33;4183:32;4224:33;:::i;:::-;4276:7;4266:17;;;3988:301;;;;;:::o;4562:180::-;4621:6;4674:2;4662:9;4653:7;4649:23;4645:32;4642:2;;;4690:1;4687;4680:12;4642:2;-1:-1:-1;4713:23:94;;4632:110;-1:-1:-1;4632:110:94:o;4747:184::-;4817:6;4870:2;4858:9;4849:7;4845:23;4841:32;4838:2;;;4886:1;4883;4876:12;4838:2;-1:-1:-1;4909:16:94;;4828:103;-1:-1:-1;4828:103:94:o;4936:316::-;4977:3;5015:5;5009:12;5042:6;5037:3;5030:19;5058:63;5114:6;5107:4;5102:3;5098:14;5091:4;5084:5;5080:16;5058:63;:::i;:::-;5166:2;5154:15;-1:-1:-1;;5150:88:94;5141:98;;;;5241:4;5137:109;;4985:267;-1:-1:-1;;4985:267:94:o;5257:274::-;5386:3;5424:6;5418:13;5440:53;5486:6;5481:3;5474:4;5466:6;5462:17;5440:53;:::i;:::-;5509:16;;;;;5394:137;-1:-1:-1;;5394:137:94:o;6804:632::-;6975:2;7027:21;;;7097:13;;7000:18;;;7119:22;;;6946:4;;6975:2;7198:15;;;;7172:2;7157:18;;;6946:4;7241:169;7255:6;7252:1;7249:13;7241:169;;;7316:13;;7304:26;;7385:15;;;;7350:12;;;;7277:1;7270:9;7241:169;;;-1:-1:-1;7427:3:94;;6955:481;-1:-1:-1;;;;;;6955:481:94:o;7886:217::-;8033:2;8022:9;8015:21;7996:4;8053:44;8093:2;8082:9;8078:18;8070:6;8053:44;:::i;15138:128::-;15178:3;15209:1;15205:6;15202:1;15199:13;15196:2;;;15215:18;;:::i;:::-;-1:-1:-1;15251:9:94;;15186:80::o;15271:125::-;15311:4;15339:1;15336;15333:8;15330:2;;;15344:18;;:::i;:::-;-1:-1:-1;15381:9:94;;15320:76::o;15401:258::-;15473:1;15483:113;15497:6;15494:1;15491:13;15483:113;;;15573:11;;;15567:18;15554:11;;;15547:39;15519:2;15512:10;15483:113;;;15614:6;15611:1;15608:13;15605:2;;;-1:-1:-1;;15649:1:94;15631:16;;15624:27;15454:205::o;15664:195::-;15703:3;-1:-1:-1;;15727:5:94;15724:77;15721:2;;;15804:18;;:::i;:::-;-1:-1:-1;15851:1:94;15840:13;;15711:148::o;15864:184::-;-1:-1:-1;;;15913:1:94;15906:88;16013:4;16010:1;16003:15;16037:4;16034:1;16027:15;16053:184;-1:-1:-1;;;16102:1:94;16095:88;16202:4;16199:1;16192:15;16226:4;16223:1;16216:15;16242:184;-1:-1:-1;;;16291:1:94;16284:88;16391:4;16388:1;16381:15;16415:4;16412:1;16405:15;16431:154;-1:-1:-1;;;;;16510:5:94;16506:54;16499:5;16496:65;16486:2;;16575:1;16572;16565:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "2047400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "VERSION()": "infinite",
                "award(address,uint256)": "infinite",
                "awardBalance()": "2326",
                "awardExternalERC20(address,address,uint256)": "infinite",
                "awardExternalERC721(address,address,uint256[])": "infinite",
                "balance()": "infinite",
                "canAwardExternal(address)": "infinite",
                "captureAwardBalance()": "infinite",
                "claimOwnership()": "54531",
                "compLikeDelegate(address,address)": "infinite",
                "depositTo(address,uint256)": "infinite",
                "depositToAndDelegate(address,uint256,address)": "infinite",
                "getAccountedBalance()": "infinite",
                "getBalanceCap()": "2317",
                "getLiquidityCap()": "2348",
                "getPrizeStrategy()": "2420",
                "getTicket()": "2376",
                "getToken()": "infinite",
                "isControlled(address)": "2634",
                "onERC721Received(address,address,uint256,bytes)": "infinite",
                "owner()": "2399",
                "pendingOwner()": "2442",
                "renounceOwnership()": "28224",
                "setBalanceCap(uint256)": "25708",
                "setLiquidityCap(uint256)": "25649",
                "setPrizeStrategy(address)": "infinite",
                "setTicket(address)": "53354",
                "sweep()": "infinite",
                "transferExternalERC20(address,address,uint256)": "infinite",
                "transferOwnership(address)": "27966",
                "withdrawFrom(address,uint256)": "infinite",
                "yieldSource()": "infinite"
              },
              "internal": {
                "_balance()": "infinite",
                "_canAwardExternal(address)": "infinite",
                "_redeem(uint256)": "infinite",
                "_supply(uint256)": "infinite",
                "_token()": "infinite"
              }
            },
            "methodIdentifiers": {
              "VERSION()": "ffa1ad74",
              "award(address,uint256)": "5d8a776e",
              "awardBalance()": "630665b4",
              "awardExternalERC20(address,address,uint256)": "2b0ab144",
              "awardExternalERC721(address,address,uint256[])": "16960d55",
              "balance()": "b69ef8a8",
              "canAwardExternal(address)": "6a3fd4f9",
              "captureAwardBalance()": "e6d8a94b",
              "claimOwnership()": "4e71e0c8",
              "compLikeDelegate(address,address)": "2f7627e3",
              "depositTo(address,uint256)": "ffaad6a5",
              "depositToAndDelegate(address,uint256,address)": "d7a169eb",
              "getAccountedBalance()": "33e5761f",
              "getBalanceCap()": "08234319",
              "getLiquidityCap()": "b15a49c1",
              "getPrizeStrategy()": "d804abaf",
              "getTicket()": "c002c4d6",
              "getToken()": "21df0da7",
              "isControlled(address)": "78b3d327",
              "onERC721Received(address,address,uint256,bytes)": "150b7a02",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setBalanceCap(uint256)": "aec9c307",
              "setLiquidityCap(uint256)": "7b99adb1",
              "setPrizeStrategy(address)": "91ca480e",
              "setTicket(address)": "1c65c78b",
              "sweep()": "35faa416",
              "transferExternalERC20(address,address,uint256)": "13f55e39",
              "transferOwnership(address)": "f2fde38b",
              "withdrawFrom(address,uint256)": "9470b0bd",
              "yieldSource()": "b2470e5c"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IYieldSource\",\"name\":\"_yieldSource\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardCaptured\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Awarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"AwardedExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"winner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"AwardedExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceCap\",\"type\":\"uint256\"}],\"name\":\"BalanceCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"ControlledTokenAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"yieldSource\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposited\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"error\",\"type\":\"bytes\"}],\"name\":\"ErrorAwardingExternalERC721\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"liquidityCap\",\"type\":\"uint256\"}],\"name\":\"LiquidityCapSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"address\",\"name\":\"prizeStrategy\",\"type\":\"address\"}],\"name\":\"PrizeStrategySet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Swept\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"ticket\",\"type\":\"address\"}],\"name\":\"TicketSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TransferredExternalERC20\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract ITicket\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"redeemed\",\"type\":\"uint256\"}],\"name\":\"Withdrawal\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"award\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"awardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"awardExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"_tokenIds\",\"type\":\"uint256[]\"}],\"name\":\"awardExternalERC721\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"}],\"name\":\"canAwardExternal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"captureAwardBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICompLike\",\"name\":\"_compLike\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"compLikeDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegate\",\"type\":\"address\"}],\"name\":\"depositToAndDelegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAccountedBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getBalanceCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLiquidityCap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeStrategy\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTicket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_controlledToken\",\"type\":\"address\"}],\"name\":\"isControlled\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_balanceCap\",\"type\":\"uint256\"}],\"name\":\"setBalanceCap\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_liquidityCap\",\"type\":\"uint256\"}],\"name\":\"setLiquidityCap\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_prizeStrategy\",\"type\":\"address\"}],\"name\":\"setPrizeStrategy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"}],\"name\":\"setTicket\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"sweep\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_externalToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"transferExternalERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFrom\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldSource\",\"outputs\":[{\"internalType\":\"contract IYieldSource\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address)\":{\"details\":\"Emitted when yield source prize pool is deployed.\",\"params\":{\"yieldSource\":\"Address of the yield source.\"}},\"Swept(uint256)\":{\"params\":{\"amount\":\"The amount that was swept\"}}},\"kind\":\"dev\",\"methods\":{\"award(address,uint256)\":{\"details\":\"The amount awarded must be less than the awardBalance()\",\"params\":{\"amount\":\"The amount of assets to be awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardBalance()\":{\"details\":\"captureAwardBalance() should be called first\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"awardExternalERC20(address,address,uint256)\":{\"details\":\"Used to award any arbitrary tokens held by the Prize Pool\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"awardExternalERC721(address,address,uint256[])\":{\"details\":\"Used to award any arbitrary NFTs held by the Prize Pool\",\"params\":{\"externalToken\":\"The address of the external NFT token being awarded\",\"to\":\"The address of the winner that receives the award\",\"tokenIds\":\"An array of NFT Token IDs to be transferred\"}},\"balance()\":{\"returns\":{\"_0\":\"The underlying balance of assets\"}},\"canAwardExternal(address)\":{\"details\":\"Checks with the Prize Pool if a specific token type may be awarded as an external prize\",\"params\":{\"externalToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token may be awarded, false otherwise\"}},\"captureAwardBalance()\":{\"details\":\"This function also captures the reserve fees.\",\"returns\":{\"_0\":\"The total amount of assets to be awarded for the current prize\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"compLikeDelegate(address,address)\":{\"params\":{\"compLike\":\"The COMP-like token held by the prize pool that should be delegated\",\"to\":\"The address to delegate to\"}},\"constructor\":{\"params\":{\"_owner\":\"Address of the Yield Source Prize Pool owner\",\"_yieldSource\":\"Address of the yield source\"}},\"depositTo(address,uint256)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"to\":\"The address receiving the newly minted tokens\"}},\"depositToAndDelegate(address,uint256,address)\":{\"params\":{\"amount\":\"The amount of assets to deposit\",\"delegate\":\"The address to delegate to for the caller\",\"to\":\"The address receiving the newly minted tokens\"}},\"getAccountedBalance()\":{\"returns\":{\"_0\":\"uint256 accountBalance\"}},\"isControlled(address)\":{\"details\":\"Checks if a specific token is controlled by the Prize Pool\",\"params\":{\"controlledToken\":\"The address of the token to check\"},\"returns\":{\"_0\":\"True if the token is a controlled token, false otherwise\"}},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\"},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setBalanceCap(uint256)\":{\"details\":\"If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.Needs to be called after deploying a prize pool to be able to deposit into it.\",\"params\":{\"balanceCap\":\"New balance cap.\"},\"returns\":{\"_0\":\"True if new balance cap has been successfully set.\"}},\"setLiquidityCap(uint256)\":{\"params\":{\"liquidityCap\":\"The new liquidity cap for the prize pool\"}},\"setPrizeStrategy(address)\":{\"params\":{\"_prizeStrategy\":\"The new prize strategy.\"}},\"setTicket(address)\":{\"params\":{\"ticket\":\"Address of the ticket to set.\"},\"returns\":{\"_0\":\"True if ticket has been successfully set.\"}},\"sweep()\":{\"details\":\"This becomes prize money\"},\"transferExternalERC20(address,address,uint256)\":{\"details\":\"Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\",\"params\":{\"amount\":\"The amount of external assets to be awarded\",\"externalToken\":\"The address of the external asset token being awarded\",\"to\":\"The address of the winner that receives the award\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}},\"withdrawFrom(address,uint256)\":{\"params\":{\"amount\":\"The amount of tokens to redeem for assets.\",\"from\":\"The address to redeem tokens from.\"},\"returns\":{\"_0\":\"The actual amount withdrawn\"}}},\"title\":\"PoolTogether V4 YieldSourcePrizePool\",\"version\":1},\"userdoc\":{\"events\":{\"Swept(uint256)\":{\"notice\":\"Emitted when stray deposit token balance in this contract is swept\"}},\"kind\":\"user\",\"methods\":{\"VERSION()\":{\"notice\":\"Semver Version\"},\"award(address,uint256)\":{\"notice\":\"Called by the prize strategy to award prizes.\"},\"awardBalance()\":{\"notice\":\"Returns the balance that is available to award.\"},\"awardExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to award external ERC20 prizes\"},\"awardExternalERC721(address,address,uint256[])\":{\"notice\":\"Called by the prize strategy to award external ERC721 prizes\"},\"captureAwardBalance()\":{\"notice\":\"Captures any available interest as award balance.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"compLikeDelegate(address,address)\":{\"notice\":\"Delegate the votes for a Compound COMP-like token held by the prize pool\"},\"constructor\":{\"notice\":\"Deploy the Prize Pool and Yield Service with the required contract connections\"},\"depositTo(address,uint256)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens\"},\"depositToAndDelegate(address,uint256,address)\":{\"notice\":\"Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller.\"},\"getAccountedBalance()\":{\"notice\":\"Read internal Ticket accounted balance.\"},\"getBalanceCap()\":{\"notice\":\"Read internal balanceCap variable\"},\"getLiquidityCap()\":{\"notice\":\"Read internal liquidityCap variable\"},\"getPrizeStrategy()\":{\"notice\":\"Read prizeStrategy variable\"},\"getTicket()\":{\"notice\":\"Read ticket variable\"},\"getToken()\":{\"notice\":\"Read token variable\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setBalanceCap(uint256)\":{\"notice\":\"Allows the owner to set a balance cap per `token` for the pool.\"},\"setLiquidityCap(uint256)\":{\"notice\":\"Allows the Governor to set a cap on the amount of liquidity that he pool can hold\"},\"setPrizeStrategy(address)\":{\"notice\":\"Sets the prize strategy of the prize pool.  Only callable by the owner.\"},\"setTicket(address)\":{\"notice\":\"Set prize pool ticket.\"},\"sweep()\":{\"notice\":\"Sweeps any stray balance of deposit tokens into the yield source.\"},\"transferExternalERC20(address,address,uint256)\":{\"notice\":\"Called by the Prize-Strategy to transfer out external ERC20 tokens\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"},\"withdrawFrom(address,uint256)\":{\"notice\":\"Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\"},\"yieldSource()\":{\"notice\":\"Address of the yield source.\"}},\"notice\":\"The Yield Source Prize Pool uses a yield source contract to generate prizes.         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol\":\"YieldSourcePrizePool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.0;\\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    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        // On the first call to nonReentrant, _notEntered will be true\\n        require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n        // Any calls to nonReentrant after this point will fail\\n        _status = _ENTERED;\\n\\n        _;\\n\\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\",\"keccak256\":\"0x0e9621f60b2faabe65549f7ed0f24e8853a45c1b7990d47e8160e523683f3935\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../../utils/introspection/IERC165.sol\\\";\\n\\n/**\\n * @dev Required interface of an ERC721 compliant contract.\\n */\\ninterface IERC721 is IERC165 {\\n    /**\\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\\n     */\\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\\n     */\\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\\n\\n    /**\\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\\n     */\\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\\n\\n    /**\\n     * @dev Returns the number of tokens in ``owner``'s account.\\n     */\\n    function balanceOf(address owner) external view returns (uint256 balance);\\n\\n    /**\\n     * @dev Returns the owner of the `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function ownerOf(uint256 tokenId) external view returns (address owner);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\\n     * are aware of the ERC721 protocol to prevent tokens from being forever locked.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Transfers `tokenId` token from `from` to `to`.\\n     *\\n     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId\\n    ) external;\\n\\n    /**\\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\\n     * The approval is cleared when the token is transferred.\\n     *\\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\\n     *\\n     * Requirements:\\n     *\\n     * - The caller must own the token or be an approved operator.\\n     * - `tokenId` must exist.\\n     *\\n     * Emits an {Approval} event.\\n     */\\n    function approve(address to, uint256 tokenId) external;\\n\\n    /**\\n     * @dev Returns the account approved for `tokenId` token.\\n     *\\n     * Requirements:\\n     *\\n     * - `tokenId` must exist.\\n     */\\n    function getApproved(uint256 tokenId) external view returns (address operator);\\n\\n    /**\\n     * @dev Approve or remove `operator` as an operator for the caller.\\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\\n     *\\n     * Requirements:\\n     *\\n     * - The `operator` cannot be the caller.\\n     *\\n     * Emits an {ApprovalForAll} event.\\n     */\\n    function setApprovalForAll(address operator, bool _approved) external;\\n\\n    /**\\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\\n     *\\n     * See {setApprovalForAll}\\n     */\\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\\n\\n    /**\\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\\n     *\\n     * Requirements:\\n     *\\n     * - `from` cannot be the zero address.\\n     * - `to` cannot be the zero address.\\n     * - `tokenId` token must exist and be owned by `from`.\\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function safeTransferFrom(\\n        address from,\\n        address to,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external;\\n}\\n\",\"keccak256\":\"0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title ERC721 token receiver interface\\n * @dev Interface for any contract that wants to support safeTransfers\\n * from ERC721 asset contracts.\\n */\\ninterface IERC721Receiver {\\n    /**\\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\\n     * by `operator` from `from`, this function is called.\\n     *\\n     * It must return its Solidity selector to confirm the token transfer.\\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\\n     *\\n     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.\\n     */\\n    function onERC721Received(\\n        address operator,\\n        address from,\\n        uint256 tokenId,\\n        bytes calldata data\\n    ) external returns (bytes4);\\n}\\n\",\"keccak256\":\"0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Checker.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC165.sol\\\";\\n\\n/**\\n * @dev Library used to query support of an interface declared via {IERC165}.\\n *\\n * Note that these functions return the actual result of the query: they do not\\n * `revert` if an interface is not supported. It is up to the caller to decide\\n * what to do in these cases.\\n */\\nlibrary ERC165Checker {\\n    // As per the EIP-165 spec, no interface should ever match 0xffffffff\\n    bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;\\n\\n    /**\\n     * @dev Returns true if `account` supports the {IERC165} interface,\\n     */\\n    function supportsERC165(address account) internal view returns (bool) {\\n        // Any contract that implements ERC165 must explicitly indicate support of\\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\\n        return\\n            _supportsERC165Interface(account, type(IERC165).interfaceId) &&\\n            !_supportsERC165Interface(account, _INTERFACE_ID_INVALID);\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports the interface defined by\\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\\n        // query support of both ERC165 as per the spec and support of _interfaceId\\n        return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);\\n    }\\n\\n    /**\\n     * @dev Returns a boolean array where each value corresponds to the\\n     * interfaces passed in and whether they're supported or not. This allows\\n     * you to batch check interfaces for a contract where your expectation\\n     * is that some interfaces may not be supported.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)\\n        internal\\n        view\\n        returns (bool[] memory)\\n    {\\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\\n\\n        // query support of ERC165 itself\\n        if (supportsERC165(account)) {\\n            // query support of each interface in interfaceIds\\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\\n                interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);\\n            }\\n        }\\n\\n        return interfaceIdsSupported;\\n    }\\n\\n    /**\\n     * @dev Returns true if `account` supports all the interfaces defined in\\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\\n     *\\n     * Batch-querying can lead to gas savings by skipping repeated checks for\\n     * {IERC165} support.\\n     *\\n     * See {IERC165-supportsInterface}.\\n     */\\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\\n        // query support of ERC165 itself\\n        if (!supportsERC165(account)) {\\n            return false;\\n        }\\n\\n        // query support of each interface in _interfaceIds\\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\\n            if (!_supportsERC165Interface(account, interfaceIds[i])) {\\n                return false;\\n            }\\n        }\\n\\n        // all interfaces supported\\n        return true;\\n    }\\n\\n    /**\\n     * @notice Query if a contract implements an interface, does not check ERC165 support\\n     * @param account The address of the contract to query for support of an interface\\n     * @param interfaceId The interface identifier, as specified in ERC-165\\n     * @return true if the contract at account indicates support of the interface with\\n     * identifier interfaceId, false otherwise\\n     * @dev Assumes that account contains a contract that supports ERC165, otherwise\\n     * the behavior of this method is undefined. This precondition can be checked\\n     * with {supportsERC165}.\\n     * Interface identification is specified in ERC-165.\\n     */\\n    function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {\\n        bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);\\n        (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);\\n        if (result.length < 32) return false;\\n        return success && abi.decode(result, (bool));\\n    }\\n}\\n\",\"keccak256\":\"0xf7291d7213336b00ee7edbf7cd5034778dd7b0bda2a7489e664f1e5cacc6c24e\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC165 standard, as defined in the\\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\\n *\\n * Implementers can declare support of contract interfaces, which can then be\\n * queried by others ({ERC165Checker}).\\n *\\n * For an implementation, see {ERC165}.\\n */\\ninterface IERC165 {\\n    /**\\n     * @dev Returns true if this contract implements the interface defined by\\n     * `interfaceId`. See the corresponding\\n     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\\n     * to learn more about how these ids are created.\\n     *\\n     * This function call must use less than 30 000 gas.\\n     */\\n    function supportsInterface(bytes4 interfaceId) external view returns (bool);\\n}\\n\",\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0x1dd613819255c4af91347b88cd156724df2a594c909bd9d2207bebc560a254fa\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizePool\\n  * @author PoolTogether Inc Team\\n  * @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\\n            Users deposit and withdraw from this contract to participate in Prize Pool.\\n            Accounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\\n            Must be inherited to provide specific yield-bearing asset control, such as Compound cTokens\\n*/\\nabstract contract PrizePool is IPrizePool, Ownable, ReentrancyGuard, IERC721Receiver {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n    using ERC165Checker for address;\\n\\n    /// @notice Semver Version\\n    string public constant VERSION = \\\"4.0.0\\\";\\n\\n    /// @notice Prize Pool ticket. Can only be set once by calling `setTicket()`.\\n    ITicket internal ticket;\\n\\n    /// @notice The Prize Strategy that this Prize Pool is bound to.\\n    address internal prizeStrategy;\\n\\n    /// @notice The total amount of tickets a user can hold.\\n    uint256 internal balanceCap;\\n\\n    /// @notice The total amount of funds that the prize pool can hold.\\n    uint256 internal liquidityCap;\\n\\n    /// @notice the The awardable balance\\n    uint256 internal _currentAwardBalance;\\n\\n    /* ============ Modifiers ============ */\\n\\n    /// @dev Function modifier to ensure caller is the prize-strategy\\n    modifier onlyPrizeStrategy() {\\n        require(msg.sender == prizeStrategy, \\\"PrizePool/only-prizeStrategy\\\");\\n        _;\\n    }\\n\\n    /// @dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)\\n    modifier canAddLiquidity(uint256 _amount) {\\n        require(_canAddLiquidity(_amount), \\\"PrizePool/exceeds-liquidity-cap\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /// @notice Deploy the Prize Pool\\n    /// @param _owner Address of the Prize Pool owner\\n    constructor(address _owner) Ownable(_owner) ReentrancyGuard() {\\n        _setLiquidityCap(type(uint256).max);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizePool\\n    function balance() external override returns (uint256) {\\n        return _balance();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardBalance() external view override returns (uint256) {\\n        return _currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function canAwardExternal(address _externalToken) external view override returns (bool) {\\n        return _canAwardExternal(_externalToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function isControlled(ITicket _controlledToken) external view override returns (bool) {\\n        return _isControlled(_controlledToken);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getAccountedBalance() external view override returns (uint256) {\\n        return _ticketTotalSupply();\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getBalanceCap() external view override returns (uint256) {\\n        return balanceCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getLiquidityCap() external view override returns (uint256) {\\n        return liquidityCap;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getTicket() external view override returns (ITicket) {\\n        return ticket;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getPrizeStrategy() external view override returns (address) {\\n        return prizeStrategy;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function getToken() external view override returns (address) {\\n        return address(_token());\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function captureAwardBalance() external override nonReentrant returns (uint256) {\\n        uint256 ticketTotalSupply = _ticketTotalSupply();\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        // it's possible for the balance to be slightly less due to rounding errors in the underlying yield source\\n        uint256 currentBalance = _balance();\\n        uint256 totalInterest = (currentBalance > ticketTotalSupply)\\n            ? currentBalance - ticketTotalSupply\\n            : 0;\\n\\n        uint256 unaccountedPrizeBalance = (totalInterest > currentAwardBalance)\\n            ? totalInterest - currentAwardBalance\\n            : 0;\\n\\n        if (unaccountedPrizeBalance > 0) {\\n            currentAwardBalance = totalInterest;\\n            _currentAwardBalance = currentAwardBalance;\\n\\n            emit AwardCaptured(unaccountedPrizeBalance);\\n        }\\n\\n        return currentAwardBalance;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositTo(address _to, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function depositToAndDelegate(address _to, uint256 _amount, address _delegate)\\n        external\\n        override\\n        nonReentrant\\n        canAddLiquidity(_amount)\\n    {\\n        _depositTo(msg.sender, _to, _amount);\\n        ticket.controllerDelegateFor(msg.sender, _delegate);\\n    }\\n\\n    /// @notice Transfers tokens in from one user and mints tickets to another\\n    /// @notice _operator The user to transfer tokens from\\n    /// @notice _to The user to mint tickets to\\n    /// @notice _amount The amount to transfer and mint\\n    function _depositTo(address _operator, address _to, uint256 _amount) internal\\n    {\\n        require(_canDeposit(_to, _amount), \\\"PrizePool/exceeds-balance-cap\\\");\\n\\n        ITicket _ticket = ticket;\\n\\n        _token().safeTransferFrom(_operator, address(this), _amount);\\n\\n        _mint(_to, _amount, _ticket);\\n        _supply(_amount);\\n\\n        emit Deposited(_operator, _to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function withdrawFrom(address _from, uint256 _amount)\\n        external\\n        override\\n        nonReentrant\\n        returns (uint256)\\n    {\\n        ITicket _ticket = ticket;\\n\\n        // burn the tickets\\n        _ticket.controllerBurnFrom(msg.sender, _from, _amount);\\n\\n        // redeem the tickets\\n        uint256 _redeemed = _redeem(_amount);\\n\\n        _token().safeTransfer(_from, _redeemed);\\n\\n        emit Withdrawal(msg.sender, _from, _ticket, _amount, _redeemed);\\n\\n        return _redeemed;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function award(address _to, uint256 _amount) external override onlyPrizeStrategy {\\n        if (_amount == 0) {\\n            return;\\n        }\\n\\n        uint256 currentAwardBalance = _currentAwardBalance;\\n\\n        require(_amount <= currentAwardBalance, \\\"PrizePool/award-exceeds-avail\\\");\\n\\n        unchecked {\\n            _currentAwardBalance = currentAwardBalance - _amount;\\n        }\\n\\n        ITicket _ticket = ticket;\\n\\n        _mint(_to, _amount, _ticket);\\n\\n        emit Awarded(_to, _ticket, _amount);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function transferExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit TransferredExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC20(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) external override onlyPrizeStrategy {\\n        if (_transferOut(_to, _externalToken, _amount)) {\\n            emit AwardedExternalERC20(_to, _externalToken, _amount);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function awardExternalERC721(\\n        address _to,\\n        address _externalToken,\\n        uint256[] calldata _tokenIds\\n    ) external override onlyPrizeStrategy {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_tokenIds.length == 0) {\\n            return;\\n        }\\n\\n        uint256[] memory _awardedTokenIds = new uint256[](_tokenIds.length); \\n        bool hasAwardedTokenIds;\\n\\n        for (uint256 i = 0; i < _tokenIds.length; i++) {\\n            try IERC721(_externalToken).safeTransferFrom(address(this), _to, _tokenIds[i]) {\\n                hasAwardedTokenIds = true;\\n                _awardedTokenIds[i] = _tokenIds[i];\\n            } catch (\\n                bytes memory error\\n            ) {\\n                emit ErrorAwardingExternalERC721(error);\\n            }\\n        }\\n        if (hasAwardedTokenIds) { \\n            emit AwardedExternalERC721(_to, _externalToken, _awardedTokenIds);\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setBalanceCap(uint256 _balanceCap) external override onlyOwner returns (bool) {\\n        _setBalanceCap(_balanceCap);\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setLiquidityCap(uint256 _liquidityCap) external override onlyOwner {\\n        _setLiquidityCap(_liquidityCap);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setTicket(ITicket _ticket) external override onlyOwner returns (bool) {\\n        require(address(_ticket) != address(0), \\\"PrizePool/ticket-not-zero-address\\\");\\n        require(address(ticket) == address(0), \\\"PrizePool/ticket-already-set\\\");\\n\\n        ticket = _ticket;\\n\\n        emit TicketSet(_ticket);\\n\\n        _setBalanceCap(type(uint256).max);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function setPrizeStrategy(address _prizeStrategy) external override onlyOwner {\\n        _setPrizeStrategy(_prizeStrategy);\\n    }\\n\\n    /// @inheritdoc IPrizePool\\n    function compLikeDelegate(ICompLike _compLike, address _to) external override onlyOwner {\\n        if (_compLike.balanceOf(address(this)) > 0) {\\n            _compLike.delegate(_to);\\n        }\\n    }\\n\\n    /// @inheritdoc IERC721Receiver\\n    function onERC721Received(\\n        address,\\n        address,\\n        uint256,\\n        bytes calldata\\n    ) external pure override returns (bytes4) {\\n        return IERC721Receiver.onERC721Received.selector;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /// @notice Transfer out `amount` of `externalToken` to recipient `to`\\n    /// @dev Only awardable `externalToken` can be transferred out\\n    /// @param _to Recipient address\\n    /// @param _externalToken Address of the external asset token being transferred\\n    /// @param _amount Amount of external assets to be transferred\\n    /// @return True if transfer is successful\\n    function _transferOut(\\n        address _to,\\n        address _externalToken,\\n        uint256 _amount\\n    ) internal returns (bool) {\\n        require(_canAwardExternal(_externalToken), \\\"PrizePool/invalid-external-token\\\");\\n\\n        if (_amount == 0) {\\n            return false;\\n        }\\n\\n        IERC20(_externalToken).safeTransfer(_to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\\n    /// @param _to The user who is receiving the tokens\\n    /// @param _amount The amount of tokens they are receiving\\n    /// @param _controlledToken The token that is going to be minted\\n    function _mint(\\n        address _to,\\n        uint256 _amount,\\n        ITicket _controlledToken\\n    ) internal {\\n        _controlledToken.controllerMint(_to, _amount);\\n    }\\n\\n    /// @dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\\n    /// @param _user Address of the user depositing.\\n    /// @param _amount The amount of tokens to be deposited into the Prize Pool.\\n    /// @return True if the Prize Pool can receive the specified `amount` of tokens.\\n    function _canDeposit(address _user, uint256 _amount) internal view returns (bool) {\\n        uint256 _balanceCap = balanceCap;\\n\\n        if (_balanceCap == type(uint256).max) return true;\\n\\n        return (ticket.balanceOf(_user) + _amount <= _balanceCap);\\n    }\\n\\n    /// @dev Checks if the Prize Pool can receive liquidity based on the current cap\\n    /// @param _amount The amount of liquidity to be added to the Prize Pool\\n    /// @return True if the Prize Pool can receive the specified amount of liquidity\\n    function _canAddLiquidity(uint256 _amount) internal view returns (bool) {\\n        uint256 _liquidityCap = liquidityCap;\\n        if (_liquidityCap == type(uint256).max) return true;\\n        return (_ticketTotalSupply() + _amount <= _liquidityCap);\\n    }\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param _controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function _isControlled(ITicket _controlledToken) internal view returns (bool) {\\n        return (ticket == _controlledToken);\\n    }\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @param _balanceCap New balance cap.\\n    function _setBalanceCap(uint256 _balanceCap) internal {\\n        balanceCap = _balanceCap;\\n        emit BalanceCapSet(_balanceCap);\\n    }\\n\\n    /// @notice Allows the owner to set a liquidity cap for the pool\\n    /// @param _liquidityCap New liquidity cap\\n    function _setLiquidityCap(uint256 _liquidityCap) internal {\\n        liquidityCap = _liquidityCap;\\n        emit LiquidityCapSet(_liquidityCap);\\n    }\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy\\n    function _setPrizeStrategy(address _prizeStrategy) internal {\\n        require(_prizeStrategy != address(0), \\\"PrizePool/prizeStrategy-not-zero\\\");\\n\\n        prizeStrategy = _prizeStrategy;\\n\\n        emit PrizeStrategySet(_prizeStrategy);\\n    }\\n\\n    /// @notice The current total of tickets.\\n    /// @return Ticket total supply.\\n    function _ticketTotalSupply() internal view returns (uint256) {\\n        return ticket.totalSupply();\\n    }\\n\\n    /// @dev Gets the current time as represented by the current block\\n    /// @return The timestamp of the current block\\n    function _currentTime() internal view virtual returns (uint256) {\\n        return block.timestamp;\\n    }\\n\\n    /* ============ Abstract Contract Implementatiton ============ */\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view virtual returns (bool);\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token\\n    function _token() internal view virtual returns (IERC20);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal virtual returns (uint256);\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal virtual;\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal virtual returns (uint256);\\n}\\n\",\"keccak256\":\"0x7b5a51eb6c75a9a88a6f36c76cbaaab6db5396bacb2c82b3a2aeada33b3ca103\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/Address.sol\\\";\\nimport \\\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\\\";\\n\\nimport \\\"./PrizePool.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 YieldSourcePrizePool\\n * @author PoolTogether Inc Team\\n * @notice The Yield Source Prize Pool uses a yield source contract to generate prizes.\\n *         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)\\n */\\ncontract YieldSourcePrizePool is PrizePool {\\n    using SafeERC20 for IERC20;\\n    using Address for address;\\n\\n    /// @notice Address of the yield source.\\n    IYieldSource public immutable yieldSource;\\n\\n    /// @dev Emitted when yield source prize pool is deployed.\\n    /// @param yieldSource Address of the yield source.\\n    event Deployed(address indexed yieldSource);\\n\\n    /// @notice Emitted when stray deposit token balance in this contract is swept\\n    /// @param amount The amount that was swept\\n    event Swept(uint256 amount);\\n\\n    /// @notice Deploy the Prize Pool and Yield Service with the required contract connections\\n    /// @param _owner Address of the Yield Source Prize Pool owner\\n    /// @param _yieldSource Address of the yield source\\n    constructor(address _owner, IYieldSource _yieldSource) PrizePool(_owner) {\\n        require(\\n            address(_yieldSource) != address(0),\\n            \\\"YieldSourcePrizePool/yield-source-not-zero-address\\\"\\n        );\\n\\n        yieldSource = _yieldSource;\\n\\n        // A hack to determine whether it's an actual yield source\\n        (bool succeeded, bytes memory data) = address(_yieldSource).staticcall(\\n            abi.encodePacked(_yieldSource.depositToken.selector)\\n        );\\n        address resultingAddress;\\n        if (data.length > 0) {\\n            resultingAddress = abi.decode(data, (address));\\n        }\\n        require(succeeded && resultingAddress != address(0), \\\"YieldSourcePrizePool/invalid-yield-source\\\");\\n\\n        emit Deployed(address(_yieldSource));\\n    }\\n\\n    /// @notice Sweeps any stray balance of deposit tokens into the yield source.\\n    /// @dev This becomes prize money\\n    function sweep() external nonReentrant onlyOwner {\\n        uint256 balance = _token().balanceOf(address(this));\\n        _supply(balance);\\n\\n        emit Swept(balance);\\n    }\\n\\n    /// @notice Determines whether the passed token can be transferred out as an external award.\\n    /// @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\\n    /// prize strategy should not be allowed to move those tokens.\\n    /// @param _externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function _canAwardExternal(address _externalToken) internal view override returns (bool) {\\n        IYieldSource _yieldSource = yieldSource;\\n        return (\\n            _externalToken != address(_yieldSource) &&\\n            _externalToken != _yieldSource.depositToken()\\n        );\\n    }\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens\\n    function _balance() internal override returns (uint256) {\\n        return yieldSource.balanceOfToken(address(this));\\n    }\\n\\n    /// @notice Returns the address of the ERC20 asset token used for deposits.\\n    /// @return Address of the ERC20 asset token.\\n    function _token() internal view override returns (IERC20) {\\n        return IERC20(yieldSource.depositToken());\\n    }\\n\\n    /// @notice Supplies asset tokens to the yield source.\\n    /// @param _mintAmount The amount of asset tokens to be supplied\\n    function _supply(uint256 _mintAmount) internal override {\\n        _token().safeIncreaseAllowance(address(yieldSource), _mintAmount);\\n        yieldSource.supplyTokenTo(_mintAmount, address(this));\\n    }\\n\\n    /// @notice Redeems asset tokens from the yield source.\\n    /// @param _redeemAmount The amount of yield-bearing tokens to be redeemed\\n    /// @return The actual amount of tokens that were redeemed.\\n    function _redeem(uint256 _redeemAmount) internal override returns (uint256) {\\n        return yieldSource.redeemToken(_redeemAmount);\\n    }\\n}\\n\",\"keccak256\":\"0xea1dbad0263a736729c5f212befe3cba0bf6f7d1625731779cdab56cd02e41df\",\"license\":\"GPL-3.0\"},\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 10,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 10947,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)9297"
              },
              {
                "astId": 10950,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 10953,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 10956,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 10959,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_currentAwardBalance",
                "offset": 0,
                "slot": "7",
                "type": "t_uint256"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(ITicket)9297": {
                "encoding": "inplace",
                "label": "contract ITicket",
                "numberOfBytes": "20"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "events": {
              "Swept(uint256)": {
                "notice": "Emitted when stray deposit token balance in this contract is swept"
              }
            },
            "kind": "user",
            "methods": {
              "VERSION()": {
                "notice": "Semver Version"
              },
              "award(address,uint256)": {
                "notice": "Called by the prize strategy to award prizes."
              },
              "awardBalance()": {
                "notice": "Returns the balance that is available to award."
              },
              "awardExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to award external ERC20 prizes"
              },
              "awardExternalERC721(address,address,uint256[])": {
                "notice": "Called by the prize strategy to award external ERC721 prizes"
              },
              "captureAwardBalance()": {
                "notice": "Captures any available interest as award balance."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "compLikeDelegate(address,address)": {
                "notice": "Delegate the votes for a Compound COMP-like token held by the prize pool"
              },
              "constructor": {
                "notice": "Deploy the Prize Pool and Yield Service with the required contract connections"
              },
              "depositTo(address,uint256)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens"
              },
              "depositToAndDelegate(address,uint256,address)": {
                "notice": "Deposit assets into the Prize Pool in exchange for tokens, then sets the delegate on behalf of the caller."
              },
              "getAccountedBalance()": {
                "notice": "Read internal Ticket accounted balance."
              },
              "getBalanceCap()": {
                "notice": "Read internal balanceCap variable"
              },
              "getLiquidityCap()": {
                "notice": "Read internal liquidityCap variable"
              },
              "getPrizeStrategy()": {
                "notice": "Read prizeStrategy variable"
              },
              "getTicket()": {
                "notice": "Read ticket variable"
              },
              "getToken()": {
                "notice": "Read token variable"
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setBalanceCap(uint256)": {
                "notice": "Allows the owner to set a balance cap per `token` for the pool."
              },
              "setLiquidityCap(uint256)": {
                "notice": "Allows the Governor to set a cap on the amount of liquidity that he pool can hold"
              },
              "setPrizeStrategy(address)": {
                "notice": "Sets the prize strategy of the prize pool.  Only callable by the owner."
              },
              "setTicket(address)": {
                "notice": "Set prize pool ticket."
              },
              "sweep()": {
                "notice": "Sweeps any stray balance of deposit tokens into the yield source."
              },
              "transferExternalERC20(address,address,uint256)": {
                "notice": "Called by the Prize-Strategy to transfer out external ERC20 tokens"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              },
              "withdrawFrom(address,uint256)": {
                "notice": "Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit."
              },
              "yieldSource()": {
                "notice": "Address of the yield source."
              }
            },
            "notice": "The Yield Source Prize Pool uses a yield source contract to generate prizes.         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol": {
        "PrizeSplit": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "ONE_AS_FIXED_POINT_3",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "_prizeSplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "_prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "_newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PrizeSplit Interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "ONE_AS_FIXED_POINT_3()": "45a9f187",
              "claimOwnership()": "4e71e0c8",
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ONE_AS_FIXED_POINT_3\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"_prizeSplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"_newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PrizeSplit Interface\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol\":\"PrizeSplit\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0x1dd613819255c4af91347b88cd156724df2a594c909bd9d2207bebc560a254fa\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../interfaces/IPrizeSplit.sol\\\";\\n\\n/**\\n * @title PrizeSplit Interface\\n * @author PoolTogether Inc Team\\n */\\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\\n    /* ============ Global Variables ============ */\\n    PrizeSplitConfig[] internal _prizeSplits;\\n\\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplit(uint256 _prizeSplitIndex)\\n        external\\n        view\\n        override\\n        returns (PrizeSplitConfig memory)\\n    {\\n        return _prizeSplits[_prizeSplitIndex];\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\\n        return _prizeSplits;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\\n        require(newPrizeSplitsLength <= type(uint8).max, \\\"PrizeSplit/invalid-prizesplits-length\\\");\\n\\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\\n\\n            // REVERT when setting the canonical burn address.\\n            require(split.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\\n            // PUSH the PrizeSplit struct to end of the list.\\n            if (_prizeSplits.length <= index) {\\n                _prizeSplits.push(split);\\n            } else {\\n                // ELSE update an existing PrizeSplit struct with new parameters\\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\\n\\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\\n                // WRITE to STORAGE with the new PrizeSplit\\n                if (\\n                    split.target != currentSplit.target ||\\n                    split.percentage != currentSplit.percentage\\n                ) {\\n                    _prizeSplits[index] = split;\\n                } else {\\n                    continue;\\n                }\\n            }\\n\\n            // Emit the added/updated prize split config.\\n            emit PrizeSplitSet(split.target, split.percentage, index);\\n        }\\n\\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\\n        while (_prizeSplits.length > newPrizeSplitsLength) {\\n            uint256 _index;\\n            unchecked {\\n                _index = _prizeSplits.length - 1;\\n            }\\n            _prizeSplits.pop();\\n            emit PrizeSplitRemoved(_index);\\n        }\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        require(_prizeSplitIndex < _prizeSplits.length, \\\"PrizeSplit/nonexistent-prizesplit\\\");\\n        require(_prizeSplit.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n        // Update the prize split config\\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n\\n        // Emit updated prize split config\\n        emit PrizeSplitSet(\\n            _prizeSplit.target,\\n            _prizeSplit.percentage,\\n            _prizeSplitIndex\\n        );\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates total prize split percentage amount.\\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\\n     * @return Total prize split(s) percentage amount\\n     */\\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\\n        uint256 _tempTotalPercentage;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            _tempTotalPercentage += _prizeSplits[index].percentage;\\n        }\\n\\n        return _tempTotalPercentage;\\n    }\\n\\n    /**\\n     * @notice Distributes prize split(s).\\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\\n     * @param _prize Starting prize award amount\\n     * @return The remainder after splits are taken\\n     */\\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\\n        uint256 _prizeTemp = _prize;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _prizeSplits[index];\\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\\n\\n            // Award the prize split distribution amount.\\n            _awardPrizeSplitAmount(split.target, _splitAmount);\\n\\n            // Update the remaining prize amount after distributing the prize split percentage.\\n            _prizeTemp -= _splitAmount;\\n        }\\n\\n        return _prizeTemp;\\n    }\\n\\n    /**\\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _target Recipient of minted tokens\\n     * @param _amount Amount of minted tokens\\n     */\\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\\n}\\n\",\"keccak256\":\"0x1d11be0738fa1cbcfd6ad33a417c30116cd202a311828e3cfe6a176eaee53dbe\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 12220,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)8987_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)8987_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)8987_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)8987_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 8984,
                    "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 8986,
                    "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                    "label": "percentage",
                    "offset": 20,
                    "slot": "0",
                    "type": "t_uint16"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint16": {
                "encoding": "inplace",
                "label": "uint16",
                "numberOfBytes": "2"
              }
            }
          },
          "userdoc": {
            "events": {
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "PrizeSplitStrategy": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizePool",
                  "name": "_prizePool",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "contract IPrizePool",
                  "name": "prizePool",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalPrizeCaptured",
                  "type": "uint256"
                }
              ],
              "name": "Distributed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "prizeAwarded",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IControlledToken",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "PrizeSplitAwarded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "target",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitRemoved",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint16",
                  "name": "percentage",
                  "type": "uint16"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "PrizeSplitSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "ONE_AS_FIXED_POINT_3",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "distribute",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizePool",
              "outputs": [
                {
                  "internalType": "contract IPrizePool",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_prizeSplitIndex",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeSplit",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPrizeSplits",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig",
                  "name": "_prizeSplit",
                  "type": "tuple"
                },
                {
                  "internalType": "uint8",
                  "name": "_prizeSplitIndex",
                  "type": "uint8"
                }
              ],
              "name": "setPrizeSplit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "target",
                      "type": "address"
                    },
                    {
                      "internalType": "uint16",
                      "name": "percentage",
                      "type": "uint16"
                    }
                  ],
                  "internalType": "struct IPrizeSplit.PrizeSplitConfig[]",
                  "name": "_newPrizeSplits",
                  "type": "tuple[]"
                }
              ],
              "name": "setPrizeSplits",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address,address)": {
                "params": {
                  "owner": "Contract owner",
                  "prizePool": "Linked PrizePool contract"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_owner": "Owner address",
                  "_prizePool": "PrizePool address"
                }
              },
              "distribute()": {
                "details": "Permissionless function to initialize distribution of interst",
                "returns": {
                  "_0": "Prize captured from PrizePool"
                }
              },
              "getPrizePool()": {
                "returns": {
                  "_0": "IPrizePool"
                }
              },
              "getPrizeSplit(uint256)": {
                "details": "Read PrizeSplitConfig struct from prizeSplits array.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig"
                },
                "returns": {
                  "_0": "PrizeSplitConfig Single prize split config"
                }
              },
              "getPrizeSplits()": {
                "details": "Read all PrizeSplitConfig structs stored in prizeSplits.",
                "returns": {
                  "_0": "Array of PrizeSplitConfig structs"
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "details": "Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.",
                "params": {
                  "prizeSplitIndex": "Index position of PrizeSplitConfig to update",
                  "prizeStrategySplit": "PrizeSplitConfig config struct"
                }
              },
              "setPrizeSplits((address,uint16)[])": {
                "details": "Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.",
                "params": {
                  "newPrizeSplits": "Array of PrizeSplitConfig structs"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 PrizeSplitStrategy",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_12614": {
                  "entryPoint": null,
                  "id": 12614,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 269,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizePool_$8967_fromMemory": {
                  "entryPoint": 349,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$8967__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 412,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1198:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "131:287:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "177:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "186:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "189:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "179:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "179:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "179:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "152:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "161:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "148:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "148:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "173:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "144:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "144:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "141:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "202:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "221:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "215:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "215:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "206:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "265:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "240:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "240:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "280:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "290:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "280:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "304:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "329:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "340:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "325:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "325:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "319:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "319:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "308:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "378:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "353:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "353:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "353:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "395:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "405:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "395:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizePool_$8967_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "89:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "100:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "112:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "120:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "543:102:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "553:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "565:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "576:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "561:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "561:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "553:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "595:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "610:6:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "626:3:94",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "631:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "622:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "622:11:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "635:1:94",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "618:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "618:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "606:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "606:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "588:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "588:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "588:51:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$8967__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "512:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "523:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "534:4:94",
                            "type": ""
                          }
                        ],
                        "src": "423:222:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "824:236:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "841:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "852:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "834:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "834:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "834:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "875:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "886:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "871:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "871:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "891:2:94",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "864:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "864:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "864:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "914:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "925:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "910:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "910:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "930:34:94",
                                    "type": "",
                                    "value": "PrizeSplitStrategy/prize-pool-no"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "903:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "903:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "903:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "985:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "996:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "981:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "981:18:94"
                                  },
                                  {
                                    "hexValue": "742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1001:16:94",
                                    "type": "",
                                    "value": "t-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "974:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "974:44:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "974:44:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1027:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1039:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1050:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1027:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "801:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "815:4:94",
                            "type": ""
                          }
                        ],
                        "src": "650:410:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1110:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1174:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1183:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1186:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1176:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1176:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1176:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1133:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1144:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1159:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1164:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1155:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1155:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1168:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1151:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1151:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1140:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1140:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1130:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1130:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1123:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1123:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1120:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1099:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1065:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizePool_$8967_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPrizePool_$8967__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"PrizeSplitStrategy/prize-pool-no\")\n        mstore(add(headStart, 96), \"t-zero-address\")\n        tail := add(headStart, 128)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b506040516200154e3803806200154e83398101604081905262000034916200015d565b8162000040816200010d565b506001600160a01b038116620000b35760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f60448201526d742d7a65726f2d6164647265737360901b606482015260840160405180910390fd5b606081901b6001600160601b0319166080526040516001600160a01b0380831682528316907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec209060200160405180910390a25050620001b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200017157600080fd5b82516200017e816200019c565b602084015190925062000191816200019c565b809150509250929050565b6001600160a01b0381168114620001b257600080fd5b50565b60805160601c611365620001e96000396000818161013401528181610b0d01528181610eab0152610f7c01526113656000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c80638da5cb5b11610081578063e30c39781161005b578063e30c3978146101cd578063e4fc6b6d146101de578063f2fde38b146101f457600080fd5b80638da5cb5b1461016c578063cf1e3b591461017d578063cf713d6e1461019257600080fd5b80634e71e0c8116100b25780634e71e0c814610122578063715018a61461012a578063884bf67c1461013257600080fd5b8063056ea84f146100d9578063063a2298146100ee57806345a9f18714610101575b600080fd5b6100ec6100e7366004611176565b610207565b005b6100ec6100fc3660046110c8565b6104b6565b61010a6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec61092b565b6100ec6109b9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610119565b6000546001600160a01b0316610154565b610185610a2e565b60405161011991906111e6565b6101a56101a03660046111b4565b610aa5565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610119565b6001546001600160a01b0316610154565b6101e6610b08565b604051908152602001610119565b6100ec6102023660046110a4565b610bfc565b3361021a6000546001600160a01b031690565b6001600160a01b0316146102755760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161026c565b81516001600160a01b031661036b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b8160028260ff168154811061038257610382611301565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103da610d38565b90506103e88111156104545760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104a992919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104c96000546001600160a01b031690565b6001600160a01b03161461051f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b8060ff8111156105975760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161026c565b60005b8181101561081b5760008484838181106105b6576105b6611301565b9050604002018036038101906105cc919061115a565b80519091506001600160a01b031661064b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b60025482106106d0576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107b6565b6000600283815481106106e5576106e5611301565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107425750806020015161ffff16826020015161ffff1614155b156107ad57816002848154811061075b5761075b611301565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107b4565b5050610809565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b80610813816112ba565b91505061059a565b505b6002548110156108a15760028054600019810191908061083f5761083f6112eb565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061081d565b60006108ab610d38565b90506103e88111156109255760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b50505050565b6001546001600160a01b031633146109855760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161026c565b60015461099a906001600160a01b0316610d9a565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109cc6000546001600160a01b031690565b6001600160a01b031614610a225760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b610a2c6000610d9a565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a9c57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a52565b50505050905090565b604080518082019091526000808252602082015260028281548110610acc57610acc611301565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e91906111cd565b905080610bad57600091505090565b6000610bb882610df7565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610be582846112a3565b60405190815260200160405180910390a150919050565b33610c0f6000546001600160a01b031690565b6001600160a01b031614610c655760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161026c565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610d925760028181548110610d5d57610d5d611301565b600091825260209091200154610d7e90600160a01b900461ffff168461124a565b925080610d8a816112ba565b915050610d42565b509092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b81811015610e9e57600060028281548110610e1e57610e1e611301565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e890610e639089611284565b610e6d9190611262565b9050610e7d826000015182610ea7565b610e8781866112a3565b945050508080610e96906112ba565b915050610e01565b50909392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0257600080fd5b505afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a919061113d565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a78460405161101f91815260200190565b60405180910390a3505050565b60006040828403121561103e57600080fd5b6040516040810181811067ffffffffffffffff8211171561106f57634e487b7160e01b600052604160045260246000fd5b604052905080823561108081611317565b8152602083013561ffff8116811461109757600080fd5b6020919091015292915050565b6000602082840312156110b657600080fd5b81356110c181611317565b9392505050565b600080602083850312156110db57600080fd5b823567ffffffffffffffff808211156110f357600080fd5b818501915085601f83011261110757600080fd5b81358181111561111657600080fd5b8660208260061b850101111561112b57600080fd5b60209290920196919550909350505050565b60006020828403121561114f57600080fd5b81516110c181611317565b60006040828403121561116c57600080fd5b6110c1838361102c565b6000806060838503121561118957600080fd5b611193848461102c565b9150604083013560ff811681146111a957600080fd5b809150509250929050565b6000602082840312156111c657600080fd5b5035919050565b6000602082840312156111df57600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b8281101561123d5761122d84835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101611203565b5091979650505050505050565b6000821982111561125d5761125d6112d5565b500190565b60008261127f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561129e5761129e6112d5565b500290565b6000828210156112b5576112b56112d5565b500390565b60006000198214156112ce576112ce6112d5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461132c57600080fd5b5056fea264697066735822122040de670f2f6ca837c989f32d575d8a0bcd8bd016d53919692794e611b3b557fa64736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x154E CODESIZE SUB DUP1 PUSH3 0x154E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x15D JUMP JUMPDEST DUP2 PUSH3 0x40 DUP2 PUSH3 0x10D JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xB3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C697453747261746567792F7072697A652D706F6F6C2D6E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x742D7A65726F2D61646472657373 PUSH1 0x90 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x60 DUP2 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND DUP3 MSTORE DUP4 AND SWAP1 PUSH32 0x9E48DF7857BD0C1E0D31BB8A85D42CF1874817895F171C917F6EE2CEA73EC20 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH3 0x1B5 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x171 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH3 0x17E DUP2 PUSH3 0x19C JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x191 DUP2 PUSH3 0x19C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x1B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x1365 PUSH3 0x1E9 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x134 ADD MSTORE DUP2 DUP2 PUSH2 0xB0D ADD MSTORE DUP2 DUP2 PUSH2 0xEAB ADD MSTORE PUSH2 0xF7C ADD MSTORE PUSH2 0x1365 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xD4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1CD JUMPI DUP1 PUSH4 0xE4FC6B6D EQ PUSH2 0x1DE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x192 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0x884BF67C EQ PUSH2 0x132 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x101 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC PUSH2 0xE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1176 JUMP JUMPDEST PUSH2 0x207 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEC PUSH2 0xFC CALLDATASIZE PUSH1 0x4 PUSH2 0x10C8 JUMP JUMPDEST PUSH2 0x4B6 JUMP JUMPDEST PUSH2 0x10A PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEC PUSH2 0x92B JUMP JUMPDEST PUSH2 0xEC PUSH2 0x9B9 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x185 PUSH2 0xA2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST PUSH2 0x1A5 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0xAA5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x1E6 PUSH2 0xB08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x202 CALLDATASIZE PUSH1 0x4 PUSH2 0x10A4 JUMP JUMPDEST PUSH2 0xBFC JUMP JUMPDEST CALLER PUSH2 0x21A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x275 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x36B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3DA PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x4A9 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4C9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x51F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x597 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x81B JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x5B6 JUMPI PUSH2 0x5B6 PUSH2 0x1301 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x115A JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x64B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6D0 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x6E5 JUMPI PUSH2 0x6E5 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x742 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x7AD JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x75B JUMPI PUSH2 0x75B PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B4 JUMP JUMPDEST POP POP PUSH2 0x809 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x813 DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x59A JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x8A1 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x83F JUMPI PUSH2 0x83F PUSH2 0x12EB JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x81D JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AB PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x925 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x985 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x99A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9CC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH2 0xA2C PUSH1 0x0 PUSH2 0xD9A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xA9C JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA52 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xACC JUMPI PUSH2 0xACC PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6D8A94B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB7A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB9E SWAP2 SWAP1 PUSH2 0x11CD JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBAD JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB8 DUP3 PUSH2 0xDF7 JUMP JUMPDEST SWAP1 POP PUSH32 0xDDC9C30275A04C48091F24199F9C405765DE34D979D6847F5B9798A57232D2E5 PUSH2 0xBE5 DUP3 DUP5 PUSH2 0x12A3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xC0F PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC65 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCE1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xD5D JUMPI PUSH2 0xD5D PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xD7E SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0x124A JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xD8A DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD42 JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP3 SWAP1 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE9E JUMPI PUSH1 0x0 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xE1E JUMPI PUSH2 0xE1E PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP3 POP PUSH2 0x3E8 SWAP1 PUSH2 0xE63 SWAP1 DUP10 PUSH2 0x1284 JUMP JUMPDEST PUSH2 0xE6D SWAP2 SWAP1 PUSH2 0x1262 JUMP JUMPDEST SWAP1 POP PUSH2 0xE7D DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH2 0xEA7 JUMP JUMPDEST PUSH2 0xE87 DUP2 DUP7 PUSH2 0x12A3 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0xE96 SWAP1 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE01 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF16 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF3A SWAP2 SWAP1 PUSH2 0x113D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D8A776E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D8A776E SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFD6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x101F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x106F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 DUP3 CALLDATALOAD PUSH2 0x1080 DUP2 PUSH2 0x1317 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x1097 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x10F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1107 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x112B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x114F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x116C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C1 DUP4 DUP4 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1189 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1193 DUP5 DUP5 PUSH2 0x102C JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x11A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x123D JUMPI PUSH2 0x122D DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1203 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x125D JUMPI PUSH2 0x125D PUSH2 0x12D5 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x127F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x129E JUMPI PUSH2 0x129E PUSH2 0x12D5 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x12B5 JUMPI PUSH2 0x12B5 PUSH2 0x12D5 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x12CE JUMPI PUSH2 0x12CE PUSH2 0x12D5 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x132C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 BLOCKHASH 0xDE PUSH8 0xF2F6CA837C989F3 0x2D JUMPI 0x5D DUP11 SIGNEXTEND 0xCD DUP12 0xD0 AND 0xD5 CODECOPY NOT PUSH10 0x2794E611B3B557FA6473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "877:1936:51:-:0;;;1436:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1495:6;1648:24:19;1495:6:51;1648:9:19;:24::i;:::-;-1:-1:-1;;;;;;1534:33:51;::::1;1513:126;;;::::0;-1:-1:-1;;;1513:126:51;;852:2:94;1513:126:51::1;::::0;::::1;834:21:94::0;891:2;871:18;;;864:30;930:34;910:18;;;903:62;-1:-1:-1;;;981:18:94;;;974:44;1035:19;;1513:126:51::1;;;;;;;;1649:22;::::0;;;-1:-1:-1;;;;;;1649:22:51;::::1;::::0;1686:28:::1;::::0;-1:-1:-1;;;;;606:32:94;;;588:51;;1686:28:51;::::1;::::0;::::1;::::0;576:2:94;561:18;1686:28:51::1;;;;;;;1436:285:::0;;877:1936;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:404:94:-;112:6;120;173:2;161:9;152:7;148:23;144:32;141:2;;;189:1;186;179:12;141:2;221:9;215:16;240:31;265:5;240:31;:::i;:::-;340:2;325:18;;319:25;290:5;;-1:-1:-1;353:33:94;319:25;353:33;:::i;:::-;405:7;395:17;;;131:287;;;;;:::o;1065:131::-;-1:-1:-1;;;;;1140:31:94;;1130:42;;1120:2;;1186:1;1183;1176:12;1120:2;1110:86;:::o;:::-;877:1936:51;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@ONE_AS_FIXED_POINT_3_12223": {
                  "entryPoint": null,
                  "id": 12223,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_awardPrizeSplitAmount_12689": {
                  "entryPoint": 3751,
                  "id": 12689,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_distributePrizeSplits_12548": {
                  "entryPoint": 3575,
                  "id": 12548,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 3482,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_totalPrizeSplitPercentageAmount_12489": {
                  "entryPoint": 3384,
                  "id": 12489,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_3210": {
                  "entryPoint": 2347,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@distribute_12648": {
                  "entryPoint": 2824,
                  "id": 12648,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizePool_12659": {
                  "entryPoint": null,
                  "id": 12659,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeSplit_12238": {
                  "entryPoint": 2725,
                  "id": 12238,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeSplits_12250": {
                  "entryPoint": 2606,
                  "id": 12250,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 2489,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setPrizeSplit_12453": {
                  "entryPoint": 519,
                  "id": 12453,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@setPrizeSplits_12395": {
                  "entryPoint": 1206,
                  "id": 12395,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 3068,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_struct_PrizeSplitConfig": {
                  "entryPoint": 4140,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4260,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$8987_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 4296,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory": {
                  "entryPoint": 4413,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptr": {
                  "entryPoint": 4442,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptrt_uint8": {
                  "entryPoint": 4470,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 4532,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 4557,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_struct_PrizeSplitConfig": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4582,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$8967__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptr__to_t_struct$_PrizeSplitConfig_$8987_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4682,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 4706,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 4740,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 4771,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 4794,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4821,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x31": {
                  "entryPoint": 4843,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 4865,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 4887,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:10439:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "87:740:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "131:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "140:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "143:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "133:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "133:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "133:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "108:3:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "113:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "104:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "104:19:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "125:4:94",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "100:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "100:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "97:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "156:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "176:4:94",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "170:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "170:11:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "160:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "190:35:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "212:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "220:4:94",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "208:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "208:17:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "194:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "308:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "329:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "332:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "322:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "322:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "322:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "430:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "433:4:94",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "423:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "423:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "423:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "458:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "461:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "451:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "451:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "451:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "243:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "255:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "240:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "240:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "279:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "276:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "276:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "237:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "237:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "234:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:4:94",
                                    "type": "",
                                    "value": "0x40"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:24:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:24:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "518:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "527:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "518:5:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "542:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "570:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "557:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "546:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "614:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "589:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "589:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "589:33:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "638:6:94"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "646:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "631:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "631:23:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "631:23:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "663:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "706:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "691:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "691:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "678:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "678:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "667:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "764:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "773:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "776:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "766:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "766:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "766:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "732:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "745:7:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "754:6:94",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "741:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "741:20:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "729:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "729:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "722:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "722:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "719:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "800:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "808:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "796:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "796:15:94"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "813:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "789:32:94"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "58:9:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "69:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "77:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:813:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "902:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "923:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "932:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "919:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "919:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "944:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "915:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "915:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "912:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "999:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "986:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "986:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "977:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1043:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1018:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1018:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1018:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1058:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1068:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1058:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "868:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "879:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "891:6:94",
                            "type": ""
                          }
                        ],
                        "src": "832:247:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1225:510:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1271:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1280:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1283:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1273:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1273:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1273:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1246:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1242:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1242:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1267:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1238:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1238:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1235:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1296:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1323:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1310:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1310:23:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1300:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1342:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1352:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1346:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1397:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1406:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1409:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1399:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1399:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1399:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1385:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1393:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1382:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1382:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1379:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1422:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1436:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1447:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1432:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1432:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1426:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1502:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1511:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1514:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1504:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1504:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1504:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1481:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1485:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1477:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1477:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1492:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1473:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1473:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1466:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1466:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1463:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1527:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1554:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1541:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1541:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1531:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1584:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1593:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1596:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1586:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1586:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1586:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1572:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1580:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1569:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1569:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1566:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1658:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1667:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1670:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1660:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1660:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1660:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1623:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1631:1:94",
                                                "type": "",
                                                "value": "6"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1634:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1627:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1627:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1619:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1619:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1644:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1615:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1615:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1649:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1612:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1609:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1683:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1697:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1701:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1683:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1713:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1723:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1713:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$8987_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1183:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1194:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1206:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1214:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1084:651:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1837:170:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1883:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1892:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1895:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1885:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1885:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1885:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1858:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1867:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1854:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1854:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1879:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1850:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1850:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1847:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1908:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1927:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1921:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1921:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1912:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1971:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1946:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1946:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1946:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1986:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1996:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1986:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1803:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1814:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1826:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1740:267:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2116:141:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2162:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2171:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2174:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2164:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2164:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2164:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2137:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2146:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2133:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2133:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2158:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2129:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2129:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2126:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2187:64:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2232:9:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2243:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:34:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:54:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2187:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2082:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2093:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2105:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2012:245:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2381:283:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2427:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2436:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2439:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2429:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2429:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2429:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2402:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2411:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2398:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2398:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2423:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2394:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2394:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2391:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2452:64:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2497:9:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2508:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2462:34:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2462:54:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2452:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2525:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2555:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2566:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2551:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2551:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2538:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2538:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2529:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2618:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2627:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2630:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2620:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2620:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2620:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2592:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2603:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2610:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2599:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2599:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2589:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2589:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2582:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2582:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2579:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2643:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2653:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2643:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptrt_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2339:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2350:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2362:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2370:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2262:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2739:110:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2785:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2794:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2797:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2787:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2787:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2787:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2760:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2769:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2756:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2756:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2781:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2752:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2752:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2749:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2810:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2833:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2820:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2820:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2810:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2705:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2716:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2728:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2669:180:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2935:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2981:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2990:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2993:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2983:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2983:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2983:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2956:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2965:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2952:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2952:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2977:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2948:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2948:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2945:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3006:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3022:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3016:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3016:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3006:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2901:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2912:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2924:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2854:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3103:159:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3120:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3135:5:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3129:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3129:12:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3143:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3125:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3125:61:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3113:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3113:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3113:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3207:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3212:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3203:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3203:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3233:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3240:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3229:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3229:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3223:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3223:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3248:6:94",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3219:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3219:36:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3196:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3196:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3196:60:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3087:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3094:3:94",
                            "type": ""
                          }
                        ],
                        "src": "3043:219:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3368:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3378:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3390:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3401:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3386:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3386:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3378:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3420:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3435:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3443:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3431:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3431:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3413:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3413:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3413:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3337:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3348:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3359:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3267:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3627:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3637:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3649:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3660:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3645:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3645:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3637:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3679:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3694:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3702:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3690:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3690:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3672:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3672:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3672:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3766:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3777:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3762:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3762:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3782:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3755:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3755:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3755:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3588:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3599:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3607:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3618:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3498:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4019:530:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4029:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4039:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4033:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4050:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4068:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4079:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4064:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4064:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4054:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4098:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4109:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4091:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4091:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4091:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4121:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "4132:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "4125:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4147:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4167:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4161:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4161:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4151:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4190:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4198:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4183:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4183:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4183:22:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4214:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4224:2:94",
                                "type": "",
                                "value": "64"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4218:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4235:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4246:9:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4257:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4242:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4242:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4235:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4269:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4287:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4295:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4283:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4283:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4273:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4307:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4316:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4311:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4375:148:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "4430:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4424:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4424:13:94"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4439:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeSplitConfig",
                                        "nodeType": "YulIdentifier",
                                        "src": "4389:34:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4389:54:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4389:54:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4456:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4467:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4472:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4463:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4463:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4456:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4488:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4502:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4510:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4498:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4498:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4488:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4337:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4340:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4334:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4334:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4348:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4350:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4359:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4362:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4355:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4355:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4350:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4330:3:94",
                                "statements": []
                              },
                              "src": "4326:197:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4532:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4540:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4532:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3988:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3999:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4010:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3800:749:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4674:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4684:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4696:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4707:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4692:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4692:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4684:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4726:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4741:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4749:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4737:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4737:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4719:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4719:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4719:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$8967__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4643:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4654:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4665:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4554:245:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4978:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4995:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5006:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4988:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4988:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4988:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5029:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5040:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5025:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5025:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5045:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5018:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5018:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5018:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5068:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5079:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5064:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5064:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5084:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5057:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5057:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5057:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5120:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5132:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5143:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5128:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5128:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5120:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4955:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4969:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4804:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5331:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5348:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5359:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5341:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5341:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5341:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5382:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5393:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5378:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5378:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5398:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5371:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5371:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5371:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5421:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5432:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5417:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5417:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5437:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5410:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5410:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5410:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5480:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5492:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5503:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5488:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5488:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5480:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5308:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5322:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5157:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5691:236:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5708:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5719:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5701:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5701:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5701:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5742:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5753:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5738:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5738:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5758:2:94",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5731:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5731:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5731:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5781:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5792:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5777:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5777:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7065",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5797:34:94",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-pe"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5770:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5770:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5770:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5852:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5863:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5848:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5848:18:94"
                                  },
                                  {
                                    "hexValue": "7263656e746167652d746f74616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5868:16:94",
                                    "type": "",
                                    "value": "rcentage-total"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5841:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5841:44:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5841:44:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5894:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5906:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5917:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5902:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5902:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5894:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5668:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5682:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5517:410:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6106:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6123:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6134:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6116:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6116:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6116:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6157:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6168:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6153:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6153:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6173:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6146:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6146:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6146:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6196:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6207:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6192:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6192:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7461",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6212:34:94",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-ta"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6185:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6185:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6185:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6267:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6278:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6263:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6263:18:94"
                                  },
                                  {
                                    "hexValue": "72676574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6283:6:94",
                                    "type": "",
                                    "value": "rget"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6256:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6256:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6256:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6299:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6311:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6322:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6307:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6307:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6299:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6083:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6097:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5932:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6511:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6528:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6539:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6521:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6521:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6521:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6562:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6573:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6558:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6558:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6578:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6551:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6551:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6551:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6601:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6612:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6597:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6597:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6617:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6590:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6590:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6590:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6672:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6683:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6668:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6668:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6688:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6661:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6661:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6661:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6705:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6717:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6728:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6713:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6713:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6705:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6488:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6502:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6337:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6917:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6934:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6945:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6927:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6927:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6927:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6968:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6979:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6964:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6964:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6984:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6957:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6957:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6957:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7007:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7018:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7003:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7003:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7023:34:94",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplits-l"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6996:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6996:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6996:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7078:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7089:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7074:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7074:18:94"
                                  },
                                  {
                                    "hexValue": "656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7094:7:94",
                                    "type": "",
                                    "value": "ength"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7067:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7067:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7067:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7111:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7123:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7134:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7119:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7119:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7111:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6894:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6908:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6743:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7323:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7340:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7351:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7333:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7333:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7333:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7374:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7385:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7370:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7370:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7390:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7363:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7363:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7363:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7413:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7424:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7409:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7409:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c69",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7429:34:94",
                                    "type": "",
                                    "value": "PrizeSplit/nonexistent-prizespli"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7402:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7402:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7402:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7484:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7495:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7480:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7480:18:94"
                                  },
                                  {
                                    "hexValue": "74",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7500:3:94",
                                    "type": "",
                                    "value": "t"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7473:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7473:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7473:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7513:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7525:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7536:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7521:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7521:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7513:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7300:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7314:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7149:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7720:104:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7730:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7742:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7753:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7738:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7738:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7730:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7800:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7808:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "7765:34:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7765:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7765:53:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptr__to_t_struct$_PrizeSplitConfig_$8987_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7689:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7700:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7711:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7551:273:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7928:89:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7938:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7950:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7961:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7946:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7946:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7938:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7980:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7995:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8003:6:94",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7991:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7991:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7973:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7973:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7973:38:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7897:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7908:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7919:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7829:188:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8149:132:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8159:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8171:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8182:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8167:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8167:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8159:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8201:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8216:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8224:6:94",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8212:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8212:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8194:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8194:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8194:38:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8252:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8263:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8248:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8248:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8268:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8241:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8241:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8241:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8110:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8121:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8129:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8140:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8022:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8411:143:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8421:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8433:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8444:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8429:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8429:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8421:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8463:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8478:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8486:6:94",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8474:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8474:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8456:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8456:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8456:38:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8514:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8525:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8510:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8534:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8542:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8530:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8530:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8503:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8503:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8503:45:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8372:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8383:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8391:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8402:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8286:268:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8660:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8670:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8682:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8693:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8678:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8678:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8670:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8712:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8723:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8705:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8705:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8705:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8629:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8640:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8651:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8559:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8789:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8816:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8818:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8818:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8818:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8805:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8812:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8808:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8808:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8802:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8802:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8799:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8847:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8858:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8861:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8854:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8854:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8847:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8772:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8775:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8781:3:94",
                            "type": ""
                          }
                        ],
                        "src": "8741:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8920:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8951:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8972:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8975:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8965:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8965:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8965:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9073:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9076:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9066:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9066:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9066:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9101:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9104:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9094:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9094:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9094:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8940:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8933:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8933:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8930:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9128:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9137:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9140:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "9133:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9133:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9128:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8905:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8908:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8914:1:94",
                            "type": ""
                          }
                        ],
                        "src": "8874:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9205:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9324:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9326:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9326:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9326:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9236:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "9229:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9229:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "9222:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9222:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "9244:1:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9251:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9319:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "9247:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9247:74:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9241:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9241:81:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9218:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9218:105:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9215:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9355:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9370:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9373:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "9366:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9366:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "9355:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9184:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9187:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "9193:7:94",
                            "type": ""
                          }
                        ],
                        "src": "9153:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9435:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9457:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9459:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9459:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9459:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9451:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9454:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9448:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9448:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9445:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9488:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9500:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9503:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9496:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9496:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9488:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9417:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9420:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9426:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9386:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9563:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9654:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9656:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9656:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9656:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9579:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9586:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "9576:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9576:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9573:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9685:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9696:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9703:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9692:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9692:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "9685:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9545:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "9555:3:94",
                            "type": ""
                          }
                        ],
                        "src": "9516:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9748:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9765:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9768:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9758:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9758:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9758:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9862:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9865:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9855:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9855:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9855:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9886:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9889:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9879:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9879:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9879:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9716:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9937:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9954:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9957:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9947:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9947:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9947:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10051:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10054:4:94",
                                    "type": "",
                                    "value": "0x31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10044:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10044:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10044:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10075:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10078:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10068:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10068:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10068:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x31",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9905:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10126:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10143:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10146:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10136:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10136:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10136:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10240:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10243:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10233:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10233:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10233:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10264:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10267:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10257:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10257:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10257:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10094:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10328:109:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10415:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10424:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10427:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10417:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10417:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10417:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "10351:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "10362:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10369:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "10358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10358:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "10348:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10348:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10341:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10341:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "10338:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10317:5:94",
                            "type": ""
                          }
                        ],
                        "src": "10283:154:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_struct_PrizeSplitConfig(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x40) { revert(0, 0) }\n        let memPtr := mload(0x40)\n        let newFreePtr := add(memPtr, 0x40)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(0x40, newFreePtr)\n        value := memPtr\n        let value_1 := calldataload(headStart)\n        validator_revert_address(value_1)\n        mstore(memPtr, value_1)\n        let value_2 := calldataload(add(headStart, 32))\n        if iszero(eq(value_2, and(value_2, 0xffff))) { revert(0, 0) }\n        mstore(add(memPtr, 32), value_2)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$8987_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(6, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptrt_uint8(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_struct_PrizeSplitConfig(headStart, dataEnd)\n        let value := calldataload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value1 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_struct_PrizeSplitConfig(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xffff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        let _2 := 64\n        pos := add(headStart, _2)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_PrizeSplitConfig(mload(srcPtr), pos)\n            pos := add(pos, _2)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_contract$_IPrizePool_$8967__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 46)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-pe\")\n        mstore(add(headStart, 96), \"rcentage-total\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplit-ta\")\n        mstore(add(headStart, 96), \"rget\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"PrizeSplit/invalid-prizesplits-l\")\n        mstore(add(headStart, 96), \"ength\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizeSplit/nonexistent-prizespli\")\n        mstore(add(headStart, 96), \"t\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_PrizeSplitConfig_$8987_memory_ptr__to_t_struct$_PrizeSplitConfig_$8987_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_struct_PrizeSplitConfig(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffff))\n    }\n    function abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffff))\n        mstore(add(headStart, 32), and(value1, 0xff))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x31()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x31)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "12571": [
                  {
                    "length": 32,
                    "start": 308
                  },
                  {
                    "length": 32,
                    "start": 2829
                  },
                  {
                    "length": 32,
                    "start": 3755
                  },
                  {
                    "length": 32,
                    "start": 3964
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100d45760003560e01c80638da5cb5b11610081578063e30c39781161005b578063e30c3978146101cd578063e4fc6b6d146101de578063f2fde38b146101f457600080fd5b80638da5cb5b1461016c578063cf1e3b591461017d578063cf713d6e1461019257600080fd5b80634e71e0c8116100b25780634e71e0c814610122578063715018a61461012a578063884bf67c1461013257600080fd5b8063056ea84f146100d9578063063a2298146100ee57806345a9f18714610101575b600080fd5b6100ec6100e7366004611176565b610207565b005b6100ec6100fc3660046110c8565b6104b6565b61010a6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec61092b565b6100ec6109b9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610119565b6000546001600160a01b0316610154565b610185610a2e565b60405161011991906111e6565b6101a56101a03660046111b4565b610aa5565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610119565b6001546001600160a01b0316610154565b6101e6610b08565b604051908152602001610119565b6100ec6102023660046110a4565b610bfc565b3361021a6000546001600160a01b031690565b6001600160a01b0316146102755760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161026c565b81516001600160a01b031661036b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b8160028260ff168154811061038257610382611301565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103da610d38565b90506103e88111156104545760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104a992919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104c96000546001600160a01b031690565b6001600160a01b03161461051f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b8060ff8111156105975760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161026c565b60005b8181101561081b5760008484838181106105b6576105b6611301565b9050604002018036038101906105cc919061115a565b80519091506001600160a01b031661064b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b60025482106106d0576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107b6565b6000600283815481106106e5576106e5611301565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107425750806020015161ffff16826020015161ffff1614155b156107ad57816002848154811061075b5761075b611301565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107b4565b5050610809565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b80610813816112ba565b91505061059a565b505b6002548110156108a15760028054600019810191908061083f5761083f6112eb565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061081d565b60006108ab610d38565b90506103e88111156109255760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b50505050565b6001546001600160a01b031633146109855760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161026c565b60015461099a906001600160a01b0316610d9a565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109cc6000546001600160a01b031690565b6001600160a01b031614610a225760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b610a2c6000610d9a565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a9c57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a52565b50505050905090565b604080518082019091526000808252602082015260028281548110610acc57610acc611301565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e91906111cd565b905080610bad57600091505090565b6000610bb882610df7565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610be582846112a3565b60405190815260200160405180910390a150919050565b33610c0f6000546001600160a01b031690565b6001600160a01b031614610c655760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161026c565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610d925760028181548110610d5d57610d5d611301565b600091825260209091200154610d7e90600160a01b900461ffff168461124a565b925080610d8a816112ba565b915050610d42565b509092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b81811015610e9e57600060028281548110610e1e57610e1e611301565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e890610e639089611284565b610e6d9190611262565b9050610e7d826000015182610ea7565b610e8781866112a3565b945050508080610e96906112ba565b915050610e01565b50909392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0257600080fd5b505afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a919061113d565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a78460405161101f91815260200190565b60405180910390a3505050565b60006040828403121561103e57600080fd5b6040516040810181811067ffffffffffffffff8211171561106f57634e487b7160e01b600052604160045260246000fd5b604052905080823561108081611317565b8152602083013561ffff8116811461109757600080fd5b6020919091015292915050565b6000602082840312156110b657600080fd5b81356110c181611317565b9392505050565b600080602083850312156110db57600080fd5b823567ffffffffffffffff808211156110f357600080fd5b818501915085601f83011261110757600080fd5b81358181111561111657600080fd5b8660208260061b850101111561112b57600080fd5b60209290920196919550909350505050565b60006020828403121561114f57600080fd5b81516110c181611317565b60006040828403121561116c57600080fd5b6110c1838361102c565b6000806060838503121561118957600080fd5b611193848461102c565b9150604083013560ff811681146111a957600080fd5b809150509250929050565b6000602082840312156111c657600080fd5b5035919050565b6000602082840312156111df57600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b8281101561123d5761122d84835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101611203565b5091979650505050505050565b6000821982111561125d5761125d6112d5565b500190565b60008261127f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561129e5761129e6112d5565b500290565b6000828210156112b5576112b56112d5565b500390565b60006000198214156112ce576112ce6112d5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461132c57600080fd5b5056fea264697066735822122040de670f2f6ca837c989f32d575d8a0bcd8bd016d53919692794e611b3b557fa64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xD4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1CD JUMPI DUP1 PUSH4 0xE4FC6B6D EQ PUSH2 0x1DE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x16C JUMPI DUP1 PUSH4 0xCF1E3B59 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0xCF713D6E EQ PUSH2 0x192 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x12A JUMPI DUP1 PUSH4 0x884BF67C EQ PUSH2 0x132 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x56EA84F EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0x63A2298 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0x45A9F187 EQ PUSH2 0x101 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC PUSH2 0xE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x1176 JUMP JUMPDEST PUSH2 0x207 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEC PUSH2 0xFC CALLDATASIZE PUSH1 0x4 PUSH2 0x10C8 JUMP JUMPDEST PUSH2 0x4B6 JUMP JUMPDEST PUSH2 0x10A PUSH2 0x3E8 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xEC PUSH2 0x92B JUMP JUMPDEST PUSH2 0xEC PUSH2 0x9B9 JUMP JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x185 PUSH2 0xA2E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x11E6 JUMP JUMPDEST PUSH2 0x1A5 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x11B4 JUMP JUMPDEST PUSH2 0xAA5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0xFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x119 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x154 JUMP JUMPDEST PUSH2 0x1E6 PUSH2 0xB08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x119 JUMP JUMPDEST PUSH2 0xEC PUSH2 0x202 CALLDATASIZE PUSH1 0x4 PUSH2 0x10A4 JUMP JUMPDEST PUSH2 0xBFC JUMP JUMPDEST CALLER PUSH2 0x21A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x275 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0xFF DUP3 AND LT PUSH2 0x2EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F6E6F6E6578697374656E742D7072697A6573706C69 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7400000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x36B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP2 PUSH1 0x2 DUP3 PUSH1 0xFF AND DUP2 SLOAD DUP2 LT PUSH2 0x382 JUMPI PUSH2 0x382 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH2 0x3DA PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 DUP5 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x4A9 SWAP3 SWAP2 SWAP1 PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND DUP3 MSTORE PUSH1 0xFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x4C9 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x51F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST DUP1 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x597 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C6974732D6C PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x656E677468000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x81B JUMPI PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x5B6 JUMPI PUSH2 0x5B6 PUSH2 0x1301 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MUL ADD DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x115A JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x64B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7461 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7267657400000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x2 SLOAD DUP3 LT PUSH2 0x6D0 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH32 0x405787FA12A823E0F2B7631CC41B3BA8828B3321CA811111FA75CD3AA3BB5ACE SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x6E5 JUMPI PUSH2 0x6E5 PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP3 DIV PUSH2 0xFFFF AND SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE DUP5 MLOAD SWAP2 SWAP4 POP SWAP2 AND EQ ISZERO DUP1 PUSH2 0x742 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND DUP3 PUSH1 0x20 ADD MLOAD PUSH2 0xFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x7AD JUMPI DUP2 PUSH1 0x2 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x75B JUMPI PUSH2 0x75B PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD SWAP2 ADD DUP1 SLOAD SWAP4 SWAP1 SWAP3 ADD MLOAD PUSH2 0xFFFF AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND OR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x7B4 JUMP JUMPDEST POP POP PUSH2 0x809 JUMP JUMPDEST POP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 MLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND DUP3 MSTORE SWAP2 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 PUSH32 0x865D776FD684728838C688D6A6A82888F61C57A4032C8C320C24949317B9A34 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMPDEST DUP1 PUSH2 0x813 DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0x59A JUMP JUMPDEST POP JUMPDEST PUSH1 0x2 SLOAD DUP2 LT ISZERO PUSH2 0x8A1 JUMPI PUSH1 0x2 DUP1 SLOAD PUSH1 0x0 NOT DUP2 ADD SWAP2 SWAP1 DUP1 PUSH2 0x83F JUMPI PUSH2 0x83F PUSH2 0x12EB JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 DUP3 ADD PUSH1 0x0 NOT SWAP1 DUP2 ADD DUP1 SLOAD PUSH22 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE SWAP1 SWAP2 ADD SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD DUP3 SWAP2 PUSH32 0x99FA473FDF53414BCD014CF6E7509FC58C68F7B86174767FAA6AD5100CD5BAE5 SWAP2 LOG2 POP PUSH2 0x81D JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AB PUSH2 0xD38 JUMP JUMPDEST SWAP1 POP PUSH2 0x3E8 DUP2 GT ISZERO PUSH2 0x925 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6553706C69742F696E76616C69642D7072697A6573706C69742D7065 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7263656E746167652D746F74616C000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x985 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x99A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD9A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9CC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA22 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH2 0xA2C PUSH1 0x0 PUSH2 0xD9A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0xA9C JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP2 DUP4 ADD MSTORE DUP3 MSTORE PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0xA52 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xACC JUMPI PUSH2 0xACC PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6D8A94B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB7A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB9E SWAP2 SWAP1 PUSH2 0x11CD JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBAD JUMPI PUSH1 0x0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB8 DUP3 PUSH2 0xDF7 JUMP JUMPDEST SWAP1 POP PUSH32 0xDDC9C30275A04C48091F24199F9C405765DE34D979D6847F5B9798A57232D2E5 PUSH2 0xBE5 DUP3 DUP5 PUSH2 0x12A3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xC0F PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC65 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xCE1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x26C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xD5D JUMPI PUSH2 0xD5D PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 ADD SLOAD PUSH2 0xD7E SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND DUP5 PUSH2 0x124A JUMP JUMPDEST SWAP3 POP DUP1 PUSH2 0xD8A DUP2 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD42 JUMP JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 DUP3 SWAP1 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE9E JUMPI PUSH1 0x0 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xE1E JUMPI PUSH2 0xE1E PUSH2 0x1301 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE SWAP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE SWAP1 SWAP3 POP PUSH2 0x3E8 SWAP1 PUSH2 0xE63 SWAP1 DUP10 PUSH2 0x1284 JUMP JUMPDEST PUSH2 0xE6D SWAP2 SWAP1 PUSH2 0x1262 JUMP JUMPDEST SWAP1 POP PUSH2 0xE7D DUP3 PUSH1 0x0 ADD MLOAD DUP3 PUSH2 0xEA7 JUMP JUMPDEST PUSH2 0xE87 DUP2 DUP7 PUSH2 0x12A3 JUMP JUMPDEST SWAP5 POP POP POP DUP1 DUP1 PUSH2 0xE96 SWAP1 PUSH2 0x12BA JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE01 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC002C4D6 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF16 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF3A SWAP2 SWAP1 PUSH2 0x113D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x5D8A776E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D8A776E SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xFC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xFD6 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x40B9722744D0BA62D8B847077D65A712335B6769AA37FFF7AD7852EC299222A7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x101F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x106F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 POP DUP1 DUP3 CALLDATALOAD PUSH2 0x1080 DUP2 PUSH2 0x1317 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x1097 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x10DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x10F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1107 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x6 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x112B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x114F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x10C1 DUP2 PUSH2 0x1317 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x116C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C1 DUP4 DUP4 PUSH2 0x102C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x60 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1189 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1193 DUP5 DUP5 PUSH2 0x102C JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP4 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x11A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x123D JUMPI PUSH2 0x122D DUP5 DUP4 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH2 0xFFFF AND SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1203 JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x125D JUMPI PUSH2 0x125D PUSH2 0x12D5 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x127F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x129E JUMPI PUSH2 0x129E PUSH2 0x12D5 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x12B5 JUMPI PUSH2 0x12B5 PUSH2 0x12D5 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x12CE JUMPI PUSH2 0x12CE PUSH2 0x12D5 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x132C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 BLOCKHASH 0xDE PUSH8 0xF2F6CA837C989F3 0x2D JUMPI 0x5D DUP11 SIGNEXTEND 0xCD DUP12 0xD0 AND 0xD5 CODECOPY NOT PUSH10 0x2794E611B3B557FA6473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "877:1936:51:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3265:835:50;;;;;;:::i;:::-;;:::i;:::-;;942:2285;;;;;;:::i;:::-;;:::i;404:50::-;;450:4;404:50;;;;;8003:6:94;7991:19;;;7973:38;;7961:2;7946:18;404:50:50;;;;;;;;3147:129:19;;;:::i;2508:94::-;;;:::i;2147:101:51:-;2232:9;2147:101;;;-1:-1:-1;;;;;3431:55:94;;;3413:74;;3401:2;3386:18;2147:101:51;3368:125:94;1814:85:19;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;783:121:50;;;:::i;:::-;;;;;;;:::i;549:196::-;;;;;;:::i;:::-;;:::i;:::-;;;;3129:12:94;;-1:-1:-1;;;;;3125:61:94;3113:74;;3240:4;3229:16;;;3223:23;3248:6;3219:36;3203:14;;;3196:60;;;;7738:18;549:196:50;7720:104:94;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;1813:296:51;;;:::i;:::-;;;8705:25:94;;;8693:2;8678:18;1813:296:51;8660:76:94;2751:234:19;;;;;;:::i;:::-;;:::i;3265:835:50:-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;5006:2:94;3819:58:19;;;4988:21:94;5045:2;5025:18;;;5018:30;5084:26;5064:18;;;5057:54;5128:18;;3819:58:19;;;;;;;;;3442:12:50::1;:19:::0;3423:38:::1;::::0;::::1;;3415:84;;;::::0;-1:-1:-1;;;3415:84:50;;7351:2:94;3415:84:50::1;::::0;::::1;7333:21:94::0;7390:2;7370:18;;;7363:30;7429:34;7409:18;;;7402:62;7500:3;7480:18;;;7473:31;7521:19;;3415:84:50::1;7323:223:94::0;3415:84:50::1;3517:18:::0;;-1:-1:-1;;;;;3517:32:50::1;3509:81;;;::::0;-1:-1:-1;;;3509:81:50;;6134:2:94;3509:81:50::1;::::0;::::1;6116:21:94::0;6173:2;6153:18;;;6146:30;6212:34;6192:18;;;6185:62;6283:6;6263:18;;;6256:34;6307:19;;3509:81:50::1;6106:226:94::0;3509:81:50::1;3675:11;3642:12;3655:16;3642:30;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:44;;:30;::::1;:44:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;3642:44:50::1;-1:-1:-1::0;;3642:44:50;;;-1:-1:-1;;;;;3642:44:50;;::::1;::::0;;;;;;;::::1;::::0;;;3771:34:::1;:32;:34::i;:::-;3745:60:::0;-1:-1:-1;450:4:50::1;3823:39:::0;::::1;;3815:98;;;::::0;-1:-1:-1;;;3815:98:50;;5719:2:94;3815:98:50::1;::::0;::::1;5701:21:94::0;5758:2;5738:18;;;5731:30;5797:34;5777:18;;;5770:62;5868:16;5848:18;;;5841:44;5902:19;;3815:98:50::1;5691:236:94::0;3815:98:50::1;3999:11;:18;;;-1:-1:-1::0;;;;;3972:121:50::1;;4031:11;:22;;;4067:16;3972:121;;;;;;8486:6:94::0;8474:19;;;;8456:38;;8542:4;8530:17;8525:2;8510:18;;8503:45;8444:2;8429:18;;8411:143;3972:121:50::1;;;;;;;;3405:695;3265:835:::0;;:::o;942:2285::-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;5006:2:94;3819:58:19;;;4988:21:94;5045:2;5025:18;;;5018:30;5084:26;5064:18;;;5057:54;5128:18;;3819:58:19;4978:174:94;3819:58:19;1108:15:50;1172::::1;1148:39:::0;::::1;;1140:89;;;::::0;-1:-1:-1;;;1140:89:50;;6945:2:94;1140:89:50::1;::::0;::::1;6927:21:94::0;6984:2;6964:18;;;6957:30;7023:34;7003:18;;;6996:62;7094:7;7074:18;;;7067:35;7119:19;;1140:89:50::1;6917:227:94::0;1140:89:50::1;1348:13;1343:1270;1375:20;1367:5;:28;1343:1270;;;1420:29;1452:15;;1468:5;1452:22;;;;;;;:::i;:::-;;;;;;1420:54;;;;;;;;;;:::i;:::-;1560:12:::0;;1420:54;;-1:-1:-1;;;;;;1560:26:50::1;1552:75;;;::::0;-1:-1:-1;;;1552:75:50;;6134:2:94;1552:75:50::1;::::0;::::1;6116:21:94::0;6173:2;6153:18;;;6146:30;6212:34;6192:18;;;6185:62;6283:6;6263:18;;;6256:34;6307:19;;1552:75:50::1;6106:226:94::0;1552:75:50::1;1786:12;:19:::0;:28;-1:-1:-1;1782:691:50::1;;1834:12;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;1834:24:50;;;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;;-1:-1:-1::0;;;1834:24:50::1;-1:-1:-1::0;;1834:24:50;;;-1:-1:-1;;;;;1834:24:50;;::::1;::::0;;;;;;;::::1;::::0;;1782:691:::1;;;1978:36;2017:12;2030:5;2017:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;1978:58:::1;::::0;;;;::::1;::::0;;;2017:19;::::1;1978:58:::0;-1:-1:-1;;;;;1978:58:50;;::::1;::::0;;;-1:-1:-1;;;1978:58:50;;::::1;;;::::0;;::::1;::::0;;;;2215:12;;1978:58;;-1:-1:-1;2215:35:50;::::1;;;::::0;:102:::1;;;2294:12;:23;;;2274:43;;:5;:16;;;:43;;;;2215:102;2190:269;;;2380:5;2358:12;2371:5;2358:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;:27;;:19;::::1;:27:::0;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;2358:27:50::1;-1:-1:-1::0;;2358:27:50;;;-1:-1:-1;;;;;2358:27:50;;::::1;::::0;;;;::::1;::::0;;2190:269:::1;;;2432:8;;;;2190:269;1879:594;1782:691;2564:12:::0;;2578:16:::1;::::0;;::::1;::::0;2550:52:::1;::::0;;8224:6:94;8212:19;;;8194:38;;8248:18;;;8241:34;;;-1:-1:-1;;;;;2550:52:50;;::::1;::::0;::::1;::::0;8167:18:94;2550:52:50::1;;;;;;;1406:1207;1343:1270;1397:7:::0;::::1;::::0;::::1;:::i;:::-;;;;1343:1270;;;;2740:254;2747:12;:19:::0;:42;-1:-1:-1;2740:254:50::1;;;2870:12;:19:::0;;-1:-1:-1;;2870:23:50;;;:12;:19;2921:18:::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;2921:18:50;;;;;-1:-1:-1;;2921:18:50;;;;;;;;;2958:25:::1;::::0;2976:6;;2958:25:::1;::::0;::::1;2791:203;2740:254;;;3052:23;3078:34;:32;:34::i;:::-;3052:60:::0;-1:-1:-1;450:4:50::1;3130:39:::0;::::1;;3122:98;;;::::0;-1:-1:-1;;;3122:98:50;;5719:2:94;3122:98:50::1;::::0;::::1;5701:21:94::0;5758:2;5738:18;;;5731:30;5797:34;5777:18;;;5770:62;5868:16;5848:18;;;5841:44;5902:19;;3122:98:50::1;5691:236:94::0;3122:98:50::1;1067:2160;;942:2285:::0;;:::o;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;5359:2:94;4028:71:19;;;5341:21:94;5398:2;5378:18;;;5371:30;5437:33;5417:18;;;5410:61;5488:18;;4028:71:19;5331:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;5006:2:94;3819:58:19;;;4988:21:94;5045:2;5025:18;;;5018:30;5084:26;5064:18;;;5057:54;5128:18;;3819:58:19;4978:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;783:121:50:-;841:25;885:12;878:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;878:19:50;;;;-1:-1:-1;;;878:19:50;;;;;;;;;;;;;;;;;;;;;;;;;783:121;:::o;549:196::-;-1:-1:-1;;;;;;;;;;;;;;;;;708:12:50;721:16;708:30;;;;;;;;:::i;:::-;;;;;;;;;;701:37;;;;;;;;;708:30;;701:37;-1:-1:-1;;;;;701:37:50;;;;-1:-1:-1;;;701:37:50;;;;;;;;;;;;;-1:-1:-1;;549:196:50:o;1813:296:51:-;1862:7;1881:13;1897:9;-1:-1:-1;;;;;1897:29:51;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1881:47;-1:-1:-1;1943:10:51;1939:24;;1962:1;1955:8;;;1813:296;:::o;1939:24::-;1974:22;1999:29;2022:5;1999:22;:29::i;:::-;1974:54;-1:-1:-1;2044:35:51;2056:22;1974:54;2056:5;:22;:::i;:::-;2044:35;;8705:25:94;;;8693:2;8678:18;2044:35:51;;;;;;;-1:-1:-1;2097:5:51;1813:296;-1:-1:-1;1813:296:51:o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;5006:2:94;3819:58:19;;;4988:21:94;5045:2;5025:18;;;5018:30;5084:26;5064:18;;;5057:54;5128:18;;3819:58:19;4978:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;6539:2:94;2826:73:19::1;::::0;::::1;6521:21:94::0;6578:2;6558:18;;;6551:30;6617:34;6597:18;;;6590:62;6688:7;6668:18;;;6661:35;6713:19;;2826:73:19::1;6511:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;4431:365:50:-;4583:12;:19;4498:7;;;;;4613:139;4645:17;4637:5;:25;4613:139;;;4711:12;4724:5;4711:19;;;;;;;;:::i;:::-;;;;;;;;;;:30;4687:54;;-1:-1:-1;;;4711:30:50;;;;4687:54;;:::i;:::-;;-1:-1:-1;4664:7:50;;;;:::i;:::-;;;;4613:139;;;-1:-1:-1;4769:20:50;;4431:365;-1:-1:-1;;4431:365:50:o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5043:681:50:-;5193:12;:19;5109:7;;5149:6;;5109:7;5223:467;5255:17;5247:5;:25;5223:467;;;5297:29;5329:12;5342:5;5329:19;;;;;;;;:::i;:::-;;;;;;;;;5297:51;;;;;;;;;5329:19;;5297:51;-1:-1:-1;;;;;5297:51:50;;;;-1:-1:-1;;;5297:51:50;;;;;;;;;;;;-1:-1:-1;5415:4:50;;5386:25;;:6;:25;:::i;:::-;5385:34;;;;:::i;:::-;5362:57;;5492:50;5515:5;:12;;;5529;5492:22;:50::i;:::-;5653:26;5667:12;5653:26;;:::i;:::-;;;5283:407;;5274:7;;;;;:::i;:::-;;;;5223:467;;;-1:-1:-1;5707:10:50;;5043:681;-1:-1:-1;;;5043:681:50:o;2572:239:51:-;2662:24;2689:9;-1:-1:-1;;;;;2689:19:51;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2720:29;;;;;-1:-1:-1;;;;;3690:55:94;;;2720:29:51;;;3672:74:94;3762:18;;;3755:34;;;2662:48:51;;-1:-1:-1;2720:9:51;:15;;;;;;3645:18:94;;2720:29:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2796:7;-1:-1:-1;;;;;2764:40:51;2782:3;-1:-1:-1;;;;;2764:40:51;;2787:7;2764:40;;;;8705:25:94;;8693:2;8678:18;;8660:76;2764:40:51;;;;;;;;2652:159;2572:239;;:::o;14:813:94:-;77:5;125:4;113:9;108:3;104:19;100:30;97:2;;;143:1;140;133:12;97:2;176:4;170:11;220:4;212:6;208:17;291:6;279:10;276:22;255:18;243:10;240:34;237:62;234:2;;;-1:-1:-1;;;329:1:94;322:88;433:4;430:1;423:15;461:4;458:1;451:15;234:2;492:4;485:24;527:6;-1:-1:-1;527:6:94;557:23;;589:33;557:23;589:33;:::i;:::-;631:23;;706:2;691:18;;678:32;754:6;741:20;;729:33;;719:2;;776:1;773;766:12;719:2;808;796:15;;;;789:32;87:740;;-1:-1:-1;;87:740:94:o;832:247::-;891:6;944:2;932:9;923:7;919:23;915:32;912:2;;;960:1;957;950:12;912:2;999:9;986:23;1018:31;1043:5;1018:31;:::i;:::-;1068:5;902:177;-1:-1:-1;;;902:177:94:o;1084:651::-;1206:6;1214;1267:2;1255:9;1246:7;1242:23;1238:32;1235:2;;;1283:1;1280;1273:12;1235:2;1323:9;1310:23;1352:18;1393:2;1385:6;1382:14;1379:2;;;1409:1;1406;1399:12;1379:2;1447:6;1436:9;1432:22;1422:32;;1492:7;1485:4;1481:2;1477:13;1473:27;1463:2;;1514:1;1511;1504:12;1463:2;1554;1541:16;1580:2;1572:6;1569:14;1566:2;;;1596:1;1593;1586:12;1566:2;1649:7;1644:2;1634:6;1631:1;1627:14;1623:2;1619:23;1615:32;1612:45;1609:2;;;1670:1;1667;1660:12;1609:2;1701;1693:11;;;;;1723:6;;-1:-1:-1;1225:510:94;;-1:-1:-1;;;;1225:510:94:o;1740:267::-;1826:6;1879:2;1867:9;1858:7;1854:23;1850:32;1847:2;;;1895:1;1892;1885:12;1847:2;1927:9;1921:16;1946:31;1971:5;1946:31;:::i;2012:245::-;2105:6;2158:2;2146:9;2137:7;2133:23;2129:32;2126:2;;;2174:1;2171;2164:12;2126:2;2197:54;2243:7;2232:9;2197:54;:::i;2262:402::-;2362:6;2370;2423:2;2411:9;2402:7;2398:23;2394:32;2391:2;;;2439:1;2436;2429:12;2391:2;2462:54;2508:7;2497:9;2462:54;:::i;:::-;2452:64;;2566:2;2555:9;2551:18;2538:32;2610:4;2603:5;2599:16;2592:5;2589:27;2579:2;;2630:1;2627;2620:12;2579:2;2653:5;2643:15;;;2381:283;;;;;:::o;2669:180::-;2728:6;2781:2;2769:9;2760:7;2756:23;2752:32;2749:2;;;2797:1;2794;2787:12;2749:2;-1:-1:-1;2820:23:94;;2739:110;-1:-1:-1;2739:110:94:o;2854:184::-;2924:6;2977:2;2965:9;2956:7;2952:23;2948:32;2945:2;;;2993:1;2990;2983:12;2945:2;-1:-1:-1;3016:16:94;;2935:103;-1:-1:-1;2935:103:94:o;3800:749::-;4039:2;4091:21;;;4161:13;;4064:18;;;4183:22;;;4010:4;;4039:2;4224;;4242:18;;;;4283:15;;;4010:4;4326:197;4340:6;4337:1;4334:13;4326:197;;;4389:54;4439:3;4430:6;4424:13;3129:12;;-1:-1:-1;;;;;3125:61:94;3113:74;;3240:4;3229:16;;;3223:23;3248:6;3219:36;3203:14;;3196:60;3103:159;4389:54;4463:12;;;;4498:15;;;;4362:1;4355:9;4326:197;;;-1:-1:-1;4540:3:94;;4019:530;-1:-1:-1;;;;;;;4019:530:94:o;8741:128::-;8781:3;8812:1;8808:6;8805:1;8802:13;8799:2;;;8818:18;;:::i;:::-;-1:-1:-1;8854:9:94;;8789:80::o;8874:274::-;8914:1;8940;8930:2;;-1:-1:-1;;;8972:1:94;8965:88;9076:4;9073:1;9066:15;9104:4;9101:1;9094:15;8930:2;-1:-1:-1;9133:9:94;;8920:228::o;9153:::-;9193:7;9319:1;-1:-1:-1;;9247:74:94;9244:1;9241:81;9236:1;9229:9;9222:17;9218:105;9215:2;;;9326:18;;:::i;:::-;-1:-1:-1;9366:9:94;;9205:176::o;9386:125::-;9426:4;9454:1;9451;9448:8;9445:2;;;9459:18;;:::i;:::-;-1:-1:-1;9496:9:94;;9435:76::o;9516:195::-;9555:3;-1:-1:-1;;9579:5:94;9576:77;9573:2;;;9656:18;;:::i;:::-;-1:-1:-1;9703:1:94;9692:13;;9563:148::o;9716:184::-;-1:-1:-1;;;9765:1:94;9758:88;9865:4;9862:1;9855:15;9889:4;9886:1;9879:15;9905:184;-1:-1:-1;;;9954:1:94;9947:88;10054:4;10051:1;10044:15;10078:4;10075:1;10068:15;10094:184;-1:-1:-1;;;10143:1:94;10136:88;10243:4;10240:1;10233:15;10267:4;10264:1;10257:15;10283:154;-1:-1:-1;;;;;10362:5:94;10358:54;10351:5;10348:65;10338:2;;10427:1;10424;10417:12;10338:2;10328:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "993000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "ONE_AS_FIXED_POINT_3()": "261",
                "claimOwnership()": "54464",
                "distribute()": "infinite",
                "getPrizePool()": "infinite",
                "getPrizeSplit(uint256)": "4877",
                "getPrizeSplits()": "infinite",
                "owner()": "2354",
                "pendingOwner()": "2353",
                "renounceOwnership()": "28180",
                "setPrizeSplit((address,uint16),uint8)": "infinite",
                "setPrizeSplits((address,uint16)[])": "infinite",
                "transferOwnership(address)": "27966"
              },
              "internal": {
                "_awardPrizeSplitAmount(address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "ONE_AS_FIXED_POINT_3()": "45a9f187",
              "claimOwnership()": "4e71e0c8",
              "distribute()": "e4fc6b6d",
              "getPrizePool()": "884bf67c",
              "getPrizeSplit(uint256)": "cf713d6e",
              "getPrizeSplits()": "cf1e3b59",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setPrizeSplit((address,uint16),uint8)": "056ea84f",
              "setPrizeSplits((address,uint16)[])": "063a2298",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IPrizePool\",\"name\":\"_prizePool\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IPrizePool\",\"name\":\"prizePool\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalPrizeCaptured\",\"type\":\"uint256\"}],\"name\":\"Distributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"prizeAwarded\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IControlledToken\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"PrizeSplitAwarded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"target\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"PrizeSplitSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ONE_AS_FIXED_POINT_3\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"distribute\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizePool\",\"outputs\":[{\"internalType\":\"contract IPrizePool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint256\"}],\"name\":\"getPrizeSplit\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPrizeSplits\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig\",\"name\":\"_prizeSplit\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"_prizeSplitIndex\",\"type\":\"uint8\"}],\"name\":\"setPrizeSplit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"percentage\",\"type\":\"uint16\"}],\"internalType\":\"struct IPrizeSplit.PrizeSplitConfig[]\",\"name\":\"_newPrizeSplits\",\"type\":\"tuple[]\"}],\"name\":\"setPrizeSplits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address,address)\":{\"params\":{\"owner\":\"Contract owner\",\"prizePool\":\"Linked PrizePool contract\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_owner\":\"Owner address\",\"_prizePool\":\"PrizePool address\"}},\"distribute()\":{\"details\":\"Permissionless function to initialize distribution of interst\",\"returns\":{\"_0\":\"Prize captured from PrizePool\"}},\"getPrizePool()\":{\"returns\":{\"_0\":\"IPrizePool\"}},\"getPrizeSplit(uint256)\":{\"details\":\"Read PrizeSplitConfig struct from prizeSplits array.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig\"},\"returns\":{\"_0\":\"PrizeSplitConfig Single prize split config\"}},\"getPrizeSplits()\":{\"details\":\"Read all PrizeSplitConfig structs stored in prizeSplits.\",\"returns\":{\"_0\":\"Array of PrizeSplitConfig structs\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"details\":\"Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\",\"params\":{\"prizeSplitIndex\":\"Index position of PrizeSplitConfig to update\",\"prizeStrategySplit\":\"PrizeSplitConfig config struct\"}},\"setPrizeSplits((address,uint16)[])\":{\"details\":\"Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\",\"params\":{\"newPrizeSplits\":\"Array of PrizeSplitConfig structs\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 PrizeSplitStrategy\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address)\":{\"notice\":\"Deployed Event\"},\"Distributed(uint256)\":{\"notice\":\"Emit when a strategy captures award amount from PrizePool.\"},\"PrizeSplitAwarded(address,uint256,address)\":{\"notice\":\"Emit when an individual prize split is awarded.\"},\"PrizeSplitRemoved(uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is removed.\"},\"PrizeSplitSet(address,uint16,uint256)\":{\"notice\":\"Emitted when a PrizeSplitConfig config is added or updated.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Deploy the PrizeSplitStrategy smart contract.\"},\"distribute()\":{\"notice\":\"Capture the award balance and distribute to prize splits.\"},\"getPrizePool()\":{\"notice\":\"Get PrizePool address\"},\"getPrizeSplit(uint256)\":{\"notice\":\"Read prize split config from active PrizeSplits.\"},\"getPrizeSplits()\":{\"notice\":\"Read all prize splits configs.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setPrizeSplit((address,uint16),uint8)\":{\"notice\":\"Updates a previously set prize split config.\"},\"setPrizeSplits((address,uint16)[])\":{\"notice\":\"Set and remove prize split(s) configs. Only callable by owner.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients. The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol\":\"PrizeSplitStrategy\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/external/compound/ICompLike.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface ICompLike is IERC20 {\\n    function getCurrentVotes(address account) external view returns (uint96);\\n\\n    function delegate(address delegate) external;\\n}\\n\",\"keccak256\":\"0x34d2c8a57ca27b9c58ec07c4bd8d263c71a25d194068ad9403f3895dc99a7122\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../external/compound/ICompLike.sol\\\";\\nimport \\\"../interfaces/ITicket.sol\\\";\\n\\ninterface IPrizePool {\\n    /// @dev Event emitted when controlled token is added\\n    event ControlledTokenAdded(ITicket indexed token);\\n\\n    event AwardCaptured(uint256 amount);\\n\\n    /// @dev Event emitted when assets are deposited\\n    event Deposited(\\n        address indexed operator,\\n        address indexed to,\\n        ITicket indexed token,\\n        uint256 amount\\n    );\\n\\n    /// @dev Event emitted when interest is awarded to a winner\\n    event Awarded(address indexed winner, ITicket indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are awarded to a winner\\n    event AwardedExternalERC20(address indexed winner, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC20s are transferred out\\n    event TransferredExternalERC20(address indexed to, address indexed token, uint256 amount);\\n\\n    /// @dev Event emitted when external ERC721s are awarded to a winner\\n    event AwardedExternalERC721(address indexed winner, address indexed token, uint256[] tokenIds);\\n\\n    /// @dev Event emitted when assets are withdrawn\\n    event Withdrawal(\\n        address indexed operator,\\n        address indexed from,\\n        ITicket indexed token,\\n        uint256 amount,\\n        uint256 redeemed\\n    );\\n\\n    /// @dev Event emitted when the Balance Cap is set\\n    event BalanceCapSet(uint256 balanceCap);\\n\\n    /// @dev Event emitted when the Liquidity Cap is set\\n    event LiquidityCapSet(uint256 liquidityCap);\\n\\n    /// @dev Event emitted when the Prize Strategy is set\\n    event PrizeStrategySet(address indexed prizeStrategy);\\n\\n    /// @dev Event emitted when the Ticket is set\\n    event TicketSet(ITicket indexed ticket);\\n\\n    /// @dev Emitted when there was an error thrown awarding an External ERC721\\n    event ErrorAwardingExternalERC721(bytes error);\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    function depositTo(address to, uint256 amount) external;\\n\\n    /// @notice Deposit assets into the Prize Pool in exchange for tokens,\\n    /// then sets the delegate on behalf of the caller.\\n    /// @param to The address receiving the newly minted tokens\\n    /// @param amount The amount of assets to deposit\\n    /// @param delegate The address to delegate to for the caller\\n    function depositToAndDelegate(address to, uint256 amount, address delegate) external;\\n\\n    /// @notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\\n    /// @param from The address to redeem tokens from.\\n    /// @param amount The amount of tokens to redeem for assets.\\n    /// @return The actual amount withdrawn\\n    function withdrawFrom(address from, uint256 amount) external returns (uint256);\\n\\n    /// @notice Called by the prize strategy to award prizes.\\n    /// @dev The amount awarded must be less than the awardBalance()\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of assets to be awarded\\n    function award(address to, uint256 amount) external;\\n\\n    /// @notice Returns the balance that is available to award.\\n    /// @dev captureAwardBalance() should be called first\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function awardBalance() external view returns (uint256);\\n\\n    /// @notice Captures any available interest as award balance.\\n    /// @dev This function also captures the reserve fees.\\n    /// @return The total amount of assets to be awarded for the current prize\\n    function captureAwardBalance() external returns (uint256);\\n\\n    /// @dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\\n    /// @param externalToken The address of the token to check\\n    /// @return True if the token may be awarded, false otherwise\\n    function canAwardExternal(address externalToken) external view returns (bool);\\n\\n    // @dev Returns the total underlying balance of all assets. This includes both principal and interest.\\n    /// @return The underlying balance of assets\\n    function balance() external returns (uint256);\\n\\n    /**\\n     * @notice Read internal Ticket accounted balance.\\n     * @return uint256 accountBalance\\n     */\\n    function getAccountedBalance() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal balanceCap variable\\n     */\\n    function getBalanceCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read internal liquidityCap variable\\n     */\\n    function getLiquidityCap() external view returns (uint256);\\n\\n    /**\\n     * @notice Read ticket variable\\n     */\\n    function getTicket() external view returns (ITicket);\\n\\n    /**\\n     * @notice Read token variable\\n     */\\n    function getToken() external view returns (address);\\n\\n    /**\\n     * @notice Read prizeStrategy variable\\n     */\\n    function getPrizeStrategy() external view returns (address);\\n\\n    /// @dev Checks if a specific token is controlled by the Prize Pool\\n    /// @param controlledToken The address of the token to check\\n    /// @return True if the token is a controlled token, false otherwise\\n    function isControlled(ITicket controlledToken) external view returns (bool);\\n\\n    /// @notice Called by the Prize-Strategy to transfer out external ERC20 tokens\\n    /// @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external asset token being awarded\\n    /// @param amount The amount of external assets to be awarded\\n    function transferExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the Prize-Strategy to award external ERC20 prizes\\n    /// @dev Used to award any arbitrary tokens held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param amount The amount of external assets to be awarded\\n    /// @param externalToken The address of the external asset token being awarded\\n    function awardExternalERC20(\\n        address to,\\n        address externalToken,\\n        uint256 amount\\n    ) external;\\n\\n    /// @notice Called by the prize strategy to award external ERC721 prizes\\n    /// @dev Used to award any arbitrary NFTs held by the Prize Pool\\n    /// @param to The address of the winner that receives the award\\n    /// @param externalToken The address of the external NFT token being awarded\\n    /// @param tokenIds An array of NFT Token IDs to be transferred\\n    function awardExternalERC721(\\n        address to,\\n        address externalToken,\\n        uint256[] calldata tokenIds\\n    ) external;\\n\\n    /// @notice Allows the owner to set a balance cap per `token` for the pool.\\n    /// @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\\n    /// @dev Needs to be called after deploying a prize pool to be able to deposit into it.\\n    /// @param balanceCap New balance cap.\\n    /// @return True if new balance cap has been successfully set.\\n    function setBalanceCap(uint256 balanceCap) external returns (bool);\\n\\n    /// @notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\\n    /// @param liquidityCap The new liquidity cap for the prize pool\\n    function setLiquidityCap(uint256 liquidityCap) external;\\n\\n    /// @notice Sets the prize strategy of the prize pool.  Only callable by the owner.\\n    /// @param _prizeStrategy The new prize strategy.\\n    function setPrizeStrategy(address _prizeStrategy) external;\\n\\n    /// @notice Set prize pool ticket.\\n    /// @param ticket Address of the ticket to set.\\n    /// @return True if ticket has been successfully set.\\n    function setTicket(ITicket ticket) external returns (bool);\\n\\n    /// @notice Delegate the votes for a Compound COMP-like token held by the prize pool\\n    /// @param compLike The COMP-like token held by the prize pool that should be delegated\\n    /// @param to The address to delegate to\\n    function compLikeDelegate(ICompLike compLike, address to) external;\\n}\\n\",\"keccak256\":\"0x1dd613819255c4af91347b88cd156724df2a594c909bd9d2207bebc560a254fa\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IControlledToken.sol\\\";\\nimport \\\"./IPrizePool.sol\\\";\\n\\n/**\\n * @title Abstract prize split contract for adding unique award distribution to static addresses.\\n * @author PoolTogether Inc Team\\n */\\ninterface IPrizeSplit {\\n    /**\\n     * @notice Emit when an individual prize split is awarded.\\n     * @param user          User address being awarded\\n     * @param prizeAwarded  Awarded prize amount\\n     * @param token         Token address\\n     */\\n    event PrizeSplitAwarded(\\n        address indexed user,\\n        uint256 prizeAwarded,\\n        IControlledToken indexed token\\n    );\\n\\n    /**\\n     * @notice The prize split configuration struct.\\n     * @dev    The prize split configuration struct used to award prize splits during distribution.\\n     * @param target     Address of recipient receiving the prize split distribution\\n     * @param percentage Percentage of prize split using a 0-1000 range for single decimal precision i.e. 125 = 12.5%\\n     */\\n    struct PrizeSplitConfig {\\n        address target;\\n        uint16 percentage;\\n    }\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is added or updated.\\n     * @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\\n     * @param target     Address of prize split recipient\\n     * @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\\n     * @param index      Index of prize split in the prizeSplts array\\n     */\\n    event PrizeSplitSet(address indexed target, uint16 percentage, uint256 index);\\n\\n    /**\\n     * @notice Emitted when a PrizeSplitConfig config is removed.\\n     * @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\\n     * @param target Index of a previously active prize split config\\n     */\\n    event PrizeSplitRemoved(uint256 indexed target);\\n\\n    /**\\n     * @notice Read prize split config from active PrizeSplits.\\n     * @dev    Read PrizeSplitConfig struct from prizeSplits array.\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig\\n     * @return PrizeSplitConfig Single prize split config\\n     */\\n    function getPrizeSplit(uint256 prizeSplitIndex) external view returns (PrizeSplitConfig memory);\\n\\n    /**\\n     * @notice Read all prize splits configs.\\n     * @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\\n     * @return Array of PrizeSplitConfig structs\\n     */\\n    function getPrizeSplits() external view returns (PrizeSplitConfig[] memory);\\n\\n    /**\\n     * @notice Get PrizePool address\\n     * @return IPrizePool\\n     */\\n    function getPrizePool() external view returns (IPrizePool);\\n\\n    /**\\n     * @notice Set and remove prize split(s) configs. Only callable by owner.\\n     * @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\\n     * @param newPrizeSplits Array of PrizeSplitConfig structs\\n     */\\n    function setPrizeSplits(PrizeSplitConfig[] calldata newPrizeSplits) external;\\n\\n    /**\\n     * @notice Updates a previously set prize split config.\\n     * @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\\n     * @param prizeStrategySplit PrizeSplitConfig config struct\\n     * @param prizeSplitIndex Index position of PrizeSplitConfig to update\\n     */\\n    function setPrizeSplit(PrizeSplitConfig memory prizeStrategySplit, uint8 prizeSplitIndex)\\n        external;\\n}\\n\",\"keccak256\":\"0xf9946a5bbe45641a0f86674135eb56310b3a97f09e5665fd1c11bc213d42d2ac\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\ninterface IStrategy {\\n    /**\\n     * @notice Emit when a strategy captures award amount from PrizePool.\\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\\n     */\\n    event Distributed(uint256 totalPrizeCaptured);\\n\\n    /**\\n     * @notice Capture the award balance and distribute to prize splits.\\n     * @dev    Permissionless function to initialize distribution of interst\\n     * @return Prize captured from PrizePool\\n     */\\n    function distribute() external returns (uint256);\\n}\\n\",\"keccak256\":\"0x3c30617be7a8c311c320fe3b50c77c4270333ddcfe5b01822fcbe85e2db4623e\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"../interfaces/IPrizeSplit.sol\\\";\\n\\n/**\\n * @title PrizeSplit Interface\\n * @author PoolTogether Inc Team\\n */\\nabstract contract PrizeSplit is IPrizeSplit, Ownable {\\n    /* ============ Global Variables ============ */\\n    PrizeSplitConfig[] internal _prizeSplits;\\n\\n    uint16 public constant ONE_AS_FIXED_POINT_3 = 1000;\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplit(uint256 _prizeSplitIndex)\\n        external\\n        view\\n        override\\n        returns (PrizeSplitConfig memory)\\n    {\\n        return _prizeSplits[_prizeSplitIndex];\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizeSplits() external view override returns (PrizeSplitConfig[] memory) {\\n        return _prizeSplits;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplits(PrizeSplitConfig[] calldata _newPrizeSplits)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        uint256 newPrizeSplitsLength = _newPrizeSplits.length;\\n        require(newPrizeSplitsLength <= type(uint8).max, \\\"PrizeSplit/invalid-prizesplits-length\\\");\\n\\n        // Add and/or update prize split configs using _newPrizeSplits PrizeSplitConfig structs array.\\n        for (uint256 index = 0; index < newPrizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _newPrizeSplits[index];\\n\\n            // REVERT when setting the canonical burn address.\\n            require(split.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n            // IF the CURRENT prizeSplits length is below the NEW prizeSplits\\n            // PUSH the PrizeSplit struct to end of the list.\\n            if (_prizeSplits.length <= index) {\\n                _prizeSplits.push(split);\\n            } else {\\n                // ELSE update an existing PrizeSplit struct with new parameters\\n                PrizeSplitConfig memory currentSplit = _prizeSplits[index];\\n\\n                // IF new PrizeSplit DOES NOT match the current PrizeSplit\\n                // WRITE to STORAGE with the new PrizeSplit\\n                if (\\n                    split.target != currentSplit.target ||\\n                    split.percentage != currentSplit.percentage\\n                ) {\\n                    _prizeSplits[index] = split;\\n                } else {\\n                    continue;\\n                }\\n            }\\n\\n            // Emit the added/updated prize split config.\\n            emit PrizeSplitSet(split.target, split.percentage, index);\\n        }\\n\\n        // Remove old prize splits configs. Match storage _prizesSplits.length with the passed newPrizeSplits.length\\n        while (_prizeSplits.length > newPrizeSplitsLength) {\\n            uint256 _index;\\n            unchecked {\\n                _index = _prizeSplits.length - 1;\\n            }\\n            _prizeSplits.pop();\\n            emit PrizeSplitRemoved(_index);\\n        }\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function setPrizeSplit(PrizeSplitConfig memory _prizeSplit, uint8 _prizeSplitIndex)\\n        external\\n        override\\n        onlyOwner\\n    {\\n        require(_prizeSplitIndex < _prizeSplits.length, \\\"PrizeSplit/nonexistent-prizesplit\\\");\\n        require(_prizeSplit.target != address(0), \\\"PrizeSplit/invalid-prizesplit-target\\\");\\n\\n        // Update the prize split config\\n        _prizeSplits[_prizeSplitIndex] = _prizeSplit;\\n\\n        // Total prize split do not exceed 100%\\n        uint256 totalPercentage = _totalPrizeSplitPercentageAmount();\\n        require(totalPercentage <= ONE_AS_FIXED_POINT_3, \\\"PrizeSplit/invalid-prizesplit-percentage-total\\\");\\n\\n        // Emit updated prize split config\\n        emit PrizeSplitSet(\\n            _prizeSplit.target,\\n            _prizeSplit.percentage,\\n            _prizeSplitIndex\\n        );\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates total prize split percentage amount.\\n     * @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\\n     * @return Total prize split(s) percentage amount\\n     */\\n    function _totalPrizeSplitPercentageAmount() internal view returns (uint256) {\\n        uint256 _tempTotalPercentage;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            _tempTotalPercentage += _prizeSplits[index].percentage;\\n        }\\n\\n        return _tempTotalPercentage;\\n    }\\n\\n    /**\\n     * @notice Distributes prize split(s).\\n     * @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\\n     * @param _prize Starting prize award amount\\n     * @return The remainder after splits are taken\\n     */\\n    function _distributePrizeSplits(uint256 _prize) internal returns (uint256) {\\n        uint256 _prizeTemp = _prize;\\n        uint256 prizeSplitsLength = _prizeSplits.length;\\n\\n        for (uint256 index = 0; index < prizeSplitsLength; index++) {\\n            PrizeSplitConfig memory split = _prizeSplits[index];\\n            uint256 _splitAmount = (_prize * split.percentage) / 1000;\\n\\n            // Award the prize split distribution amount.\\n            _awardPrizeSplitAmount(split.target, _splitAmount);\\n\\n            // Update the remaining prize amount after distributing the prize split percentage.\\n            _prizeTemp -= _splitAmount;\\n        }\\n\\n        return _prizeTemp;\\n    }\\n\\n    /**\\n     * @notice Mints ticket or sponsorship tokens to prize split recipient.\\n     * @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _target Recipient of minted tokens\\n     * @param _amount Amount of minted tokens\\n     */\\n    function _awardPrizeSplitAmount(address _target, uint256 _amount) internal virtual;\\n}\\n\",\"keccak256\":\"0x1d11be0738fa1cbcfd6ad33a417c30116cd202a311828e3cfe6a176eaee53dbe\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./PrizeSplit.sol\\\";\\nimport \\\"../interfaces/IStrategy.sol\\\";\\nimport \\\"../interfaces/IPrizePool.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeSplitStrategy\\n  * @author PoolTogether Inc Team\\n  * @notice Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients.\\n            The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured\\n            interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on\\n            the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether\\n            iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest\\n            is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).\\n*/\\ncontract PrizeSplitStrategy is PrizeSplit, IStrategy {\\n    /**\\n     * @notice PrizePool address\\n     */\\n    IPrizePool internal immutable prizePool;\\n\\n    /**\\n     * @notice Deployed Event\\n     * @param owner Contract owner\\n     * @param prizePool Linked PrizePool contract\\n     */\\n    event Deployed(address indexed owner, IPrizePool prizePool);\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the PrizeSplitStrategy smart contract.\\n     * @param _owner     Owner address\\n     * @param _prizePool PrizePool address\\n     */\\n    constructor(address _owner, IPrizePool _prizePool) Ownable(_owner) {\\n        require(\\n            address(_prizePool) != address(0),\\n            \\\"PrizeSplitStrategy/prize-pool-not-zero-address\\\"\\n        );\\n        prizePool = _prizePool;\\n        emit Deployed(_owner, _prizePool);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IStrategy\\n    function distribute() external override returns (uint256) {\\n        uint256 prize = prizePool.captureAwardBalance();\\n\\n        if (prize == 0) return 0;\\n\\n        uint256 prizeRemaining = _distributePrizeSplits(prize);\\n\\n        emit Distributed(prize - prizeRemaining);\\n\\n        return prize;\\n    }\\n\\n    /// @inheritdoc IPrizeSplit\\n    function getPrizePool() external view override returns (IPrizePool) {\\n        return prizePool;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Award ticket tokens to prize split recipient.\\n     * @dev Award ticket tokens to prize split recipient via the linked PrizePool contract.\\n     * @param _to Recipient of minted tokens.\\n     * @param _amount Amount of minted tokens.\\n     */\\n    function _awardPrizeSplitAmount(address _to, uint256 _amount) internal override {\\n        IControlledToken _ticket = prizePool.getTicket();\\n        prizePool.award(_to, _amount);\\n        emit PrizeSplitAwarded(_to, _amount, _ticket);\\n    }\\n}\\n\",\"keccak256\":\"0x96db683d90ff551b707be4868fa227c0d1be35d1f58897d084e09cc5a115913b\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 12220,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)8987_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)8987_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)8987_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)8987_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 8984,
                    "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 8986,
                    "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                    "label": "percentage",
                    "offset": 20,
                    "slot": "0",
                    "type": "t_uint16"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint16": {
                "encoding": "inplace",
                "label": "uint16",
                "numberOfBytes": "2"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address)": {
                "notice": "Deployed Event"
              },
              "Distributed(uint256)": {
                "notice": "Emit when a strategy captures award amount from PrizePool."
              },
              "PrizeSplitAwarded(address,uint256,address)": {
                "notice": "Emit when an individual prize split is awarded."
              },
              "PrizeSplitRemoved(uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is removed."
              },
              "PrizeSplitSet(address,uint16,uint256)": {
                "notice": "Emitted when a PrizeSplitConfig config is added or updated."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Deploy the PrizeSplitStrategy smart contract."
              },
              "distribute()": {
                "notice": "Capture the award balance and distribute to prize splits."
              },
              "getPrizePool()": {
                "notice": "Get PrizePool address"
              },
              "getPrizeSplit(uint256)": {
                "notice": "Read prize split config from active PrizeSplits."
              },
              "getPrizeSplits()": {
                "notice": "Read all prize splits configs."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setPrizeSplit((address,uint16),uint8)": {
                "notice": "Updates a previously set prize split config."
              },
              "setPrizeSplits((address,uint16)[])": {
                "notice": "Set and remove prize split(s) configs. Only callable by owner."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients. The PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured interest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on the deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether iterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest is only captured when also distributing the captured prize(s) to applicable Prize Distributor(s).",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol": {
        "ERC20Mintable": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "masterTransfer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "decimals()": {
                "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "mint(address,uint256)": {
                "details": "See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_12708": {
                  "entryPoint": null,
                  "id": 12708,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_84": {
                  "entryPoint": null,
                  "id": 84,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 276,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
                  "entryPoint": 459,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "extract_byte_array_length": {
                  "entryPoint": 565,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 626,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1985:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:94"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:94",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:94"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:94"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:94"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:94",
                                "statements": []
                              },
                              "src": "647:133:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:885:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1022:444:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1068:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1077:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1080:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1070:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1070:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1070:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1052:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1039:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1039:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1064:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1032:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1093:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1097:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1132:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1150:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1154:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1158:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1136:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1187:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1196:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1199:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1189:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1189:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1189:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1175:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1183:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1169:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1212:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1251:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1251:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1222:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1222:61:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1292:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1318:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1329:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1314:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1314:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1308:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1308:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1296:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1348:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1342:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1387:73:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1426:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1426:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:63:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1387:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "980:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "991:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1003:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1011:6:94",
                            "type": ""
                          }
                        ],
                        "src": "904:562:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1526:325:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1536:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1550:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1553:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1536:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1567:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1603:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1593:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1593:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1571:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1644:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1646:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1660:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1656:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1646:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1617:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1614:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1734:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1762:3:94",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1767:10:94",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1758:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1758:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1799:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1792:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1792:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1792:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1827:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1830:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1820:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1820:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1820:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1690:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1713:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1721:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1687:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1687:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1684:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1506:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1515:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1471:380:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1888:95:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1905:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1912:3:94",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1917:10:94",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1908:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1908:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1898:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1898:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1898:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1945:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1948:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1938:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1938:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1938:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1969:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "1962:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1962:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1962:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "1856:127:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000f7f38038062000f7f8339810160408190526200003491620001cb565b8151829082906200004d9060039060208501906200006e565b508051620000639060049060208401906200006e565b505050505062000288565b8280546200007c9062000235565b90600052602060002090601f016020900481019282620000a05760008555620000eb565b82601f10620000bb57805160ff1916838001178555620000eb565b82800160010185558215620000eb579182015b82811115620000eb578251825591602001919060010190620000ce565b50620000f9929150620000fd565b5090565b5b80821115620000f95760008155600101620000fe565b600082601f8301126200012657600080fd5b81516001600160401b038082111562000143576200014362000272565b604051601f8301601f19908116603f011681019082821181831017156200016e576200016e62000272565b816040528381526020925086838588010111156200018b57600080fd5b600091505b83821015620001af578582018301518183018401529082019062000190565b83821115620001c15760008385830101525b9695505050505050565b60008060408385031215620001df57600080fd5b82516001600160401b0380821115620001f757600080fd5b620002058683870162000114565b935060208501519150808211156200021c57600080fd5b506200022b8582860162000114565b9150509250929050565b600181811c908216806200024a57607f821691505b602082108114156200026c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ce780620002986000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d0578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e1461020957600080fd5b806340c10f191461018c57806370a082311461019f57806395d89b41146101c857600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610242565b6040516101049190610b8c565b60405180910390f35b61012061011b366004610b62565b6102d4565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b26565b6102ea565b005b610120610165366004610b26565b6102fa565b60405160128152602001610104565b610120610187366004610b62565b6103be565b61015561019a366004610b62565b6103fa565b6101346101ad366004610ad1565b6001600160a01b031660009081526020819052604090205490565b6100f7610408565b6101206101de366004610b62565b610417565b6101206101f1366004610b62565b610423565b610120610204366004610b62565b6104d4565b610134610217366004610af3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025190610c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461027d90610c2e565b80156102ca5780601f1061029f576101008083540402835291602001916102ca565b820191906000526020600020905b8154815290600101906020018083116102ad57829003601f168201915b5050505050905090565b60006102e13384846104e1565b50600192915050565b6102f5838383610639565b505050565b6000610307848484610639565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103a65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b385338584036104e1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e19185906103f5908690610bff565b6104e1565b6104048282610851565b5050565b60606004805461025190610c2e565b60006102e18383610930565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161039d565b6104ca33858584036104e1565b5060019392505050565b60006102e1338484610639565b6001600160a01b03831661055c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166105d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166107315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038316600090815260208190526040902054818110156107c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107f7908490610bff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084391815260200190565b60405180910390a350505050565b6001600160a01b0382166108a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161039d565b80600260008282546108b99190610bff565b90915550506001600160a01b038216600090815260208190526040812080548392906108e6908490610bff565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109ac5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b03821660009081526020819052604090205481811015610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6a908490610c17565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610acc57600080fd5b919050565b600060208284031215610ae357600080fd5b610aec82610ab5565b9392505050565b60008060408385031215610b0657600080fd5b610b0f83610ab5565b9150610b1d60208401610ab5565b90509250929050565b600080600060608486031215610b3b57600080fd5b610b4484610ab5565b9250610b5260208501610ab5565b9150604084013590509250925092565b60008060408385031215610b7557600080fd5b610b7e83610ab5565b946020939093013593505050565b600060208083528351808285015260005b81811015610bb957858101830151858201604001528201610b9d565b81811115610bcb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1257610c12610c82565b500190565b600082821015610c2957610c29610c82565b500390565b600181811c90821680610c4257607f821691505b60208210811415610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122064c7927bee5968c97c36f2f1892f553236b38941860320d12e82ea43ddae054564736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xF7F CODESIZE SUB DUP1 PUSH3 0xF7F DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1CB JUMP JUMPDEST DUP2 MLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH3 0x4D SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x6E JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x63 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x6E JUMP JUMPDEST POP POP POP POP POP PUSH3 0x288 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7C SWAP1 PUSH3 0x235 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xEB JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xBB JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xEB JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xEB JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xEB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xCE JUMP JUMPDEST POP PUSH3 0xF9 SWAP3 SWAP2 POP PUSH3 0xFD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF9 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xFE JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x126 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x143 JUMPI PUSH3 0x143 PUSH3 0x272 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x16E JUMPI PUSH3 0x16E PUSH3 0x272 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x18B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1AF JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x190 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1C1 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x205 DUP7 DUP4 DUP8 ADD PUSH3 0x114 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x21C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x22B DUP6 DUP3 DUP7 ADD PUSH3 0x114 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x24A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x26C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xCE7 DUP1 PUSH3 0x298 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x209 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x18C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x242 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x2D4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2EA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x155 PUSH2 0x19A CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3FA JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1AD CALLDATASIZE PUSH1 0x4 PUSH2 0xAD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x408 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x417 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F1 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x423 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xAF3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x27D SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2CA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x29F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2CA JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2AD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F5 DUP4 DUP4 DUP4 PUSH2 0x639 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x307 DUP5 DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B3 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E1 SWAP2 DUP6 SWAP1 PUSH2 0x3F5 SWAP1 DUP7 SWAP1 PUSH2 0xBFF JUMP JUMPDEST PUSH2 0x4E1 JUMP JUMPDEST PUSH2 0x404 DUP3 DUP3 PUSH2 0x851 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 DUP4 DUP4 PUSH2 0x930 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH2 0x4CA CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x731 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7F7 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x843 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x39D JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8B9 SWAP2 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8E6 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6A SWAP1 DUP5 SWAP1 PUSH2 0xC17 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xACC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAEC DUP3 PUSH2 0xAB5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB06 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB0F DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH2 0xB1D PUSH1 0x20 DUP5 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB44 DUP5 PUSH2 0xAB5 JUMP JUMPDEST SWAP3 POP PUSH2 0xB52 PUSH1 0x20 DUP6 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB9 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xB9D JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCB JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC12 JUMPI PUSH2 0xC12 PUSH2 0xC82 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC29 JUMPI PUSH2 0xC29 PUSH2 0xC82 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC42 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC7C JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0xC7927BEE59 PUSH9 0xC97C36F2F1892F5532 CALLDATASIZE 0xB3 DUP10 COINBASE DUP7 SUB KECCAK256 0xD1 0x2E DUP3 0xEA NUMBER 0xDD 0xAE SDIV GASLIMIT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "348:637:52:-:0;;;386:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2029:13:1;;448:5:52;;455:7;;2029:13:1;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2052:17:1;;;;:7;;:17;;;;;:::i;:::-;;1963:113;;386:80:52;;348:637;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;348:637:52;;;-1:-1:-1;348:637:52;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:94;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:94;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:94;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:94:o;904:562::-;1003:6;1011;1064:2;1052:9;1043:7;1039:23;1035:32;1032:2;;;1080:1;1077;1070:12;1032:2;1107:16;;-1:-1:-1;;;;;1172:14:94;;;1169:2;;;1199:1;1196;1189:12;1169:2;1222:61;1275:7;1266:6;1255:9;1251:22;1222:61;:::i;:::-;1212:71;;1329:2;1318:9;1314:18;1308:25;1292:41;;1358:2;1348:8;1345:16;1342:2;;;1374:1;1371;1364:12;1342:2;;1397:63;1452:7;1441:8;1430:9;1426:24;1397:63;:::i;:::-;1387:73;;;1022:444;;;;;:::o;1471:380::-;1550:1;1546:12;;;;1593;;;1614:2;;1668:4;1660:6;1656:17;1646:27;;1614:2;1721;1713:6;1710:14;1690:18;1687:38;1684:2;;;1767:10;1762:3;1758:20;1755:1;1748:31;1802:4;1799:1;1792:15;1830:4;1827:1;1820:15;1684:2;;1526:325;;;:::o;1856:127::-;1917:10;1912:3;1908:20;1905:1;1898:31;1948:4;1945:1;1938:15;1972:4;1969:1;1962:15;1888:95;348:637:52;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_584": {
                  "entryPoint": null,
                  "id": 584,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_562": {
                  "entryPoint": 1249,
                  "id": 562,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_573": {
                  "entryPoint": null,
                  "id": 573,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_517": {
                  "entryPoint": 2352,
                  "id": 517,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_445": {
                  "entryPoint": 2129,
                  "id": 445,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_1560": {
                  "entryPoint": null,
                  "id": 1560,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transfer_389": {
                  "entryPoint": 1593,
                  "id": 389,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_177": {
                  "entryPoint": null,
                  "id": 177,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_198": {
                  "entryPoint": 724,
                  "id": 198,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_138": {
                  "entryPoint": null,
                  "id": 138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@burn_12739": {
                  "entryPoint": 1047,
                  "id": 12739,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decimals_114": {
                  "entryPoint": null,
                  "id": 114,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_312": {
                  "entryPoint": 1059,
                  "id": 312,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_273": {
                  "entryPoint": 958,
                  "id": 273,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@masterTransfer_12755": {
                  "entryPoint": 746,
                  "id": 12755,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@mint_12722": {
                  "entryPoint": 1018,
                  "id": 12722,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@name_94": {
                  "entryPoint": 578,
                  "id": 94,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_104": {
                  "entryPoint": 1032,
                  "id": 104,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_124": {
                  "entryPoint": null,
                  "id": 124,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_246": {
                  "entryPoint": 762,
                  "id": 246,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_159": {
                  "entryPoint": 1236,
                  "id": 159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 2741,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2769,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2803,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2854,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2914,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2956,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 3071,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 3095,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 3118,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 3202,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:7383:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:94",
                            "type": ""
                          }
                        ],
                        "src": "406:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:94",
                            "type": ""
                          }
                        ],
                        "src": "671:328:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:94",
                                "statements": []
                              },
                              "src": "1735:140:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:94",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:94"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:94",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:94",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3288:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3300:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3311:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3296:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3296:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3288:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2923:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3500:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3517:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3528:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3510:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3510:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3510:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3551:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3562:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3547:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3547:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3567:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3540:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3540:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3540:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3590:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3601:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3586:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3586:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3606:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3579:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3579:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3579:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3661:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3672:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3657:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3657:18:94"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3677:8:94",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3650:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3650:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3650:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3695:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3707:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3718:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3703:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3703:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3695:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3477:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3491:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3326:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3907:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3924:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3935:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3917:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3917:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3917:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3958:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3969:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3954:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3954:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3974:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3947:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3947:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3947:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3997:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4008:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3993:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3993:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4013:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3986:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3986:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3986:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4068:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4079:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:18:94"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4084:10:94",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4057:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4057:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4057:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4104:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4116:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4127:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4112:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4112:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4104:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3884:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3898:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3733:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4316:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4333:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4344:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4326:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4326:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4326:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4367:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4378:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4363:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4363:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4383:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4356:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4356:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4356:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4406:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4417:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4402:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4402:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4422:34:94",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4395:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4395:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4395:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4477:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4488:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4473:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4473:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4493:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4466:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4506:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4518:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4529:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4514:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4514:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4506:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4293:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4307:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4142:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4718:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4735:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4746:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4728:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4728:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4728:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4769:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4780:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4765:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4765:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4785:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4758:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4758:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4758:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4808:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4819:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4804:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4804:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4824:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4797:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4797:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4797:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4879:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4890:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4875:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4875:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4895:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4868:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4868:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4868:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4912:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4924:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4935:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4920:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4920:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4912:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4695:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4709:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4544:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5124:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5141:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5152:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5134:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5134:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5134:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5175:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5186:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5171:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5171:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5191:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5164:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5164:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5164:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5214:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5225:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5210:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5210:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5230:34:94",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5203:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5203:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5203:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5285:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5296:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5281:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5281:18:94"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5301:6:94",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5274:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5274:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5274:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5317:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5329:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5340:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5325:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5325:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5317:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5101:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5115:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4950:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5529:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5546:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5557:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5539:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5539:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5539:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5580:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5591:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5576:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5576:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5596:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5569:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5569:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5569:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5619:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5630:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5615:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5615:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5635:34:94",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5608:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5608:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5608:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5690:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5701:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5686:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5686:18:94"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5706:7:94",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5679:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5679:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5723:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5735:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5731:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5731:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5723:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5506:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5520:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5355:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5935:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5952:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5963:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5945:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5945:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5945:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5986:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5997:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5982:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5982:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6002:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5975:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5975:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5975:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6025:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6036:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6021:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6021:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6041:33:94",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6014:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6014:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6014:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6084:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6096:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6107:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6092:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6092:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6084:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5912:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5926:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5761:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6222:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6232:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6244:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6255:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6240:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6240:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6232:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6274:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6285:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6267:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6267:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6267:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6191:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6202:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6213:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6121:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6400:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6410:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6422:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6433:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6418:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6418:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6410:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6452:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6467:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6475:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6463:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6463:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6445:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6445:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6445:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6369:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6380:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6391:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6303:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6540:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6567:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6569:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6569:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6569:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6556:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "6563:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "6559:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6559:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6553:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6553:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6550:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6598:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6609:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6612:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6605:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6605:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "6598:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6523:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6526:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6532:3:94",
                            "type": ""
                          }
                        ],
                        "src": "6492:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6674:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6696:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6698:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6698:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6698:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6690:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6693:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6687:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6687:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6684:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6727:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6739:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6742:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "6735:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6735:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "6727:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6656:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6659:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "6665:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6625:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6810:382:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6820:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6834:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6837:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "6830:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6830:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "6820:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6851:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6881:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6887:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6877:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6877:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "6855:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6928:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6930:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "6944:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6952:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "6940:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6940:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6930:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6908:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "6901:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6901:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6898:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7018:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7039:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7042:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7032:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7032:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7032:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7140:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7143:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7133:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7133:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7133:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7168:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7171:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7161:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7161:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7161:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6974:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6997:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7005:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "6994:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6994:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "6971:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6971:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6968:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "6790:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "6799:6:94",
                            "type": ""
                          }
                        ],
                        "src": "6755:437:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7229:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7246:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7249:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7239:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7239:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7239:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7343:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7346:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7336:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7336:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7336:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7367:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7370:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "7360:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7360:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7360:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "7197:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d0578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e1461020957600080fd5b806340c10f191461018c57806370a082311461019f57806395d89b41146101c857600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610242565b6040516101049190610b8c565b60405180910390f35b61012061011b366004610b62565b6102d4565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b26565b6102ea565b005b610120610165366004610b26565b6102fa565b60405160128152602001610104565b610120610187366004610b62565b6103be565b61015561019a366004610b62565b6103fa565b6101346101ad366004610ad1565b6001600160a01b031660009081526020819052604090205490565b6100f7610408565b6101206101de366004610b62565b610417565b6101206101f1366004610b62565b610423565b610120610204366004610b62565b6104d4565b610134610217366004610af3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025190610c2e565b80601f016020809104026020016040519081016040528092919081815260200182805461027d90610c2e565b80156102ca5780601f1061029f576101008083540402835291602001916102ca565b820191906000526020600020905b8154815290600101906020018083116102ad57829003601f168201915b5050505050905090565b60006102e13384846104e1565b50600192915050565b6102f5838383610639565b505050565b6000610307848484610639565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103a65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b385338584036104e1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e19185906103f5908690610bff565b6104e1565b6104048282610851565b5050565b60606004805461025190610c2e565b60006102e18383610930565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161039d565b6104ca33858584036104e1565b5060019392505050565b60006102e1338484610639565b6001600160a01b03831661055c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166105d85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166107315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038316600090815260208190526040902054818110156107c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107f7908490610bff565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084391815260200190565b60405180910390a350505050565b6001600160a01b0382166108a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161039d565b80600260008282546108b99190610bff565b90915550506001600160a01b038216600090815260208190526040812080548392906108e6908490610bff565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109ac5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b03821660009081526020819052604090205481811015610a3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6a908490610c17565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610acc57600080fd5b919050565b600060208284031215610ae357600080fd5b610aec82610ab5565b9392505050565b60008060408385031215610b0657600080fd5b610b0f83610ab5565b9150610b1d60208401610ab5565b90509250929050565b600080600060608486031215610b3b57600080fd5b610b4484610ab5565b9250610b5260208501610ab5565b9150604084013590509250925092565b60008060408385031215610b7557600080fd5b610b7e83610ab5565b946020939093013593505050565b600060208083528351808285015260005b81811015610bb957858101830151858201604001528201610b9d565b81811115610bcb576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1257610c12610c82565b500190565b600082821015610c2957610c29610c82565b500390565b600181811c90821680610c4257607f821691505b60208210811415610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122064c7927bee5968c97c36f2f1892f553236b38941860320d12e82ea43ddae054564736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D0 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1F6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x209 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x18C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x242 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x2D4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2EA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x187 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x155 PUSH2 0x19A CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x3FA JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1AD CALLDATASIZE PUSH1 0x4 PUSH2 0xAD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x408 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1DE CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x417 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F1 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x423 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0xB62 JUMP JUMPDEST PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xAF3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x27D SWAP1 PUSH2 0xC2E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2CA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x29F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2CA JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2AD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2F5 DUP4 DUP4 DUP4 PUSH2 0x639 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x307 DUP5 DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B3 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E1 SWAP2 DUP6 SWAP1 PUSH2 0x3F5 SWAP1 DUP7 SWAP1 PUSH2 0xBFF JUMP JUMPDEST PUSH2 0x4E1 JUMP JUMPDEST PUSH2 0x404 DUP3 DUP3 PUSH2 0x851 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x251 SWAP1 PUSH2 0xC2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 DUP4 DUP4 PUSH2 0x930 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4BD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH2 0x4CA CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 CALLER DUP5 DUP5 PUSH2 0x639 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5D8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x731 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7F7 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x843 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x39D JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8B9 SWAP2 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8E6 SWAP1 DUP5 SWAP1 PUSH2 0xBFF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x39D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6A SWAP1 DUP5 SWAP1 PUSH2 0xC17 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xACC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAEC DUP3 PUSH2 0xAB5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB06 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB0F DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH2 0xB1D PUSH1 0x20 DUP5 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB44 DUP5 PUSH2 0xAB5 JUMP JUMPDEST SWAP3 POP PUSH2 0xB52 PUSH1 0x20 DUP6 ADD PUSH2 0xAB5 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 PUSH2 0xAB5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBB9 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xB9D JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCB JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC12 JUMPI PUSH2 0xC12 PUSH2 0xC82 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC29 JUMPI PUSH2 0xC29 PUSH2 0xC82 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC42 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC7C JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0xC7927BEE59 PUSH9 0xC97C36F2F1892F5532 CALLDATASIZE 0xB3 DUP10 COINBASE DUP7 SUB KECCAK256 0xD1 0x2E DUP3 0xEA NUMBER 0xDD 0xAE SDIV GASLIMIT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "348:637:52:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:94;;1421:22;1403:41;;1391:2;1376:18;4238:166:1;1358:92:94;3229:106:1;3316:12;;3229:106;;;6267:25:94;;;6255:2;6240:18;3229:106:1;6222:76:94;836:147:52;;;;;;:::i;:::-;;:::i;:::-;;4871:478:1;;;;;;:::i;:::-;;:::i;3078:91::-;;;3160:2;6445:36:94;;6433:2;6418:18;3078:91:1;6400:87:94;5744:212:1;;;;;;:::i;:::-;;:::i;602:93:52:-;;;;;;:::i;:::-;;:::i;3393:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:1;3467:7;3493:18;;;;;;;;;;;;3393:125;2352:102;;;:::i;701:129:52:-;;;;;;:::i;:::-;;:::i;6443:405:1:-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;3951:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:1;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;2141:98;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:10;4360:7:1;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:1;4238:166;;;;:::o;836:147:52:-;949:27;959:4;965:2;969:6;949:9;:27::i;:::-;836:147;;;:::o;4871:478:1:-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:1;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:10;5097:33:1;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:1;;3935:2:94;5140:79:1;;;3917:21:94;3974:2;3954:18;;;3947:30;4013:34;3993:18;;;3986:62;4084:10;4064:18;;;4057:38;4112:19;;5140:79:1;;;;;;;;;5253:57;5262:6;719:10:10;5303:6:1;5284:16;:25;5253:8;:57::i;:::-;-1:-1:-1;5338:4:1;;4871:478;-1:-1:-1;;;;4871:478:1:o;5744:212::-;719:10:10;5832:4:1;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:1;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;602:93:52:-;666:22;672:7;681:6;666:5;:22::i;:::-;602:93;;:::o;2352:102:1:-;2408:13;2440:7;2433:14;;;;;:::i;701:129:52:-;764:4;780:22;786:7;795:6;780:5;:22::i;6443:405:1:-;719:10:10;6536:4:1;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:1;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:1;;5557:2:94;6623:85:1;;;5539:21:94;5596:2;5576:18;;;5569:30;5635:34;5615:18;;;5608:62;5706:7;5686:18;;;5679:35;5731:19;;6623:85:1;5529:227:94;6623:85:1;6742:67;719:10:10;6765:7:1;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:1;;6443:405;-1:-1:-1;;;6443:405:1:o;3721:172::-;3807:4;3823:42;719:10:10;3847:9:1;3858:6;3823:9;:42::i;10019:370::-;-1:-1:-1;;;;;10150:19:1;;10142:68;;;;-1:-1:-1;;;10142:68:1;;5152:2:94;10142:68:1;;;5134:21:94;5191:2;5171:18;;;5164:30;5230:34;5210:18;;;5203:62;5301:6;5281:18;;;5274:34;5325:19;;10142:68:1;5124:226:94;10142:68:1;-1:-1:-1;;;;;10228:21:1;;10220:68;;;;-1:-1:-1;;;10220:68:1;;3125:2:94;10220:68:1;;;3107:21:94;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:4;3254:18;;;3247:32;3296:19;;10220:68:1;3097:224:94;10220:68:1;-1:-1:-1;;;;;10299:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;6267:25:94;;;10350:32:1;;6240:18:94;10350:32:1;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:1;;7449:70;;;;-1:-1:-1;;;7449:70:1;;4746:2:94;7449:70:1;;;4728:21:94;4785:2;4765:18;;;4758:30;4824:34;4804:18;;;4797:62;4895:7;4875:18;;;4868:35;4920:19;;7449:70:1;4718:227:94;7449:70:1;-1:-1:-1;;;;;7537:23:1;;7529:71;;;;-1:-1:-1;;;7529:71:1;;2318:2:94;7529:71:1;;;2300:21:94;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7529:71:1;2290:225:94;7529:71:1;-1:-1:-1;;;;;7693:17:1;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:1;;3528:2:94;7720:74:1;;;3510:21:94;3567:2;3547:18;;;3540:30;3606:34;3586:18;;;3579:62;3677:8;3657:18;;;3650:36;3703:19;;7720:74:1;3500:228:94;7720:74:1;-1:-1:-1;;;;;7828:17:1;;;:9;:17;;;;;;;;;;;7848:22;;;7828:42;;7890:20;;;;;;;;:30;;7864:6;;7828:9;7890:30;;7864:6;;7890:30;:::i;:::-;;;;;;;;7953:9;-1:-1:-1;;;;;7936:35:1;7945:6;-1:-1:-1;;;;;7936:35:1;;7964:6;7936:35;;;;6267:25:94;;6255:2;6240:18;;6222:76;7936:35:1;;;;;;;;7439:596;7322:713;;;:::o;8311:389::-;-1:-1:-1;;;;;8394:21:1;;8386:65;;;;-1:-1:-1;;;8386:65:1;;5963:2:94;8386:65:1;;;5945:21:94;6002:2;5982:18;;;5975:30;6041:33;6021:18;;;6014:61;6092:18;;8386:65:1;5935:181:94;8386:65:1;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:1;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:1;;6267:25:94;;;-1:-1:-1;;;;;8597:37:1;;;8614:1;;8597:37;;6255:2:94;6240:18;8597:37:1;;;;;;;602:93:52;;:::o;9020:576:1:-;-1:-1:-1;;;;;9103:21:1;;9095:67;;;;-1:-1:-1;;;9095:67:1;;4344:2:94;9095:67:1;;;4326:21:94;4383:2;4363:18;;;4356:30;4422:34;4402:18;;;4395:62;4493:3;4473:18;;;4466:31;4514:19;;9095:67:1;4316:223:94;9095:67:1;-1:-1:-1;;;;;9258:18:1;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:1;;2722:2:94;9286:71:1;;;2704:21:94;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;9286:71:1;2694:224:94;9286:71:1;-1:-1:-1;;;;;9391:18:1;;:9;:18;;;;;;;;;;9412:23;;;9391:44;;9455:12;:22;;9429:6;;9391:9;9455:22;;9429:6;;9455:22;:::i;:::-;;;;-1:-1:-1;;9493:37:1;;6267:25:94;;;9519:1:1;;-1:-1:-1;;;;;9493:37:1;;;;;6255:2:94;6240:18;9493:37:1;;;;;;;836:147:52;;;:::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:94:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:94:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:94;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:94:o;6492:128::-;6532:3;6563:1;6559:6;6556:1;6553:13;6550:2;;;6569:18;;:::i;:::-;-1:-1:-1;6605:9:94;;6540:80::o;6625:125::-;6665:4;6693:1;6690;6687:8;6684:2;;;6698:18;;:::i;:::-;-1:-1:-1;6735:9:94;;6674:76::o;6755:437::-;6834:1;6830:12;;;;6877;;;6898:2;;6952:4;6944:6;6940:17;6930:27;;6898:2;7005;6997:6;6994:14;6974:18;6971:38;6968:2;;;7042:77;7039:1;7032:88;7143:4;7140:1;7133:15;7171:4;7168:1;7161:15;6968:2;;6810:382;;;:::o;7197:184::-;7249:77;7246:1;7239:88;7346:4;7343:1;7336:15;7370:4;7367:1;7360:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "660600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2585",
                "burn(address,uint256)": "51047",
                "decimals()": "244",
                "decreaseAllowance(address,uint256)": "26932",
                "increaseAllowance(address,uint256)": "27023",
                "masterTransfer(address,address,uint256)": "infinite",
                "mint(address,uint256)": "infinite",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51231",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(address,uint256)": "9dc29fac",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "masterTransfer(address,address,uint256)": "1c9c7903",
              "mint(address,uint256)": "40c10f19",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"masterTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"mint(address,uint256)\":{\"details\":\"See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/test/ERC20Mintable.sol\":\"ERC20Mintable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./IERC20.sol\\\";\\nimport \\\"./extensions/IERC20Metadata.sol\\\";\\nimport \\\"../../utils/Context.sol\\\";\\n\\n/**\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\\n * instead returning `false` on failure. This behavior is nonetheless\\n * conventional and does not conflict with the expectations of ERC20\\n * applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 is Context, IERC20, IERC20Metadata {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n\\n    /**\\n     * @dev Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(string memory name_, string memory symbol_) {\\n        _name = name_;\\n        _symbol = symbol_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual override returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual override returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual override returns (uint8) {\\n        return 18;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual override returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual override returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {\\n        _transfer(_msgSender(), recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual override returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual override returns (bool) {\\n        _approve(_msgSender(), spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual override returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][_msgSender()];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, _msgSender(), currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\\n        uint256 currentAllowance = _allowances[_msgSender()][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(_msgSender(), spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n}\\n\",\"keccak256\":\"0xd1d8caaeb45f78e0b0715664d56c220c283c89bf8b8c02954af86404d6b367f8\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\n\\n/**\\n * @dev Interface for the optional metadata functions from the ERC20 standard.\\n *\\n * _Available since v4.1._\\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\",\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\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\",\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/test/ERC20Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract ERC20Mintable is ERC20 {\\n    constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public {\\n        _mint(account, amount);\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0xb12c70d2e26ca0478bc0b2a7923519275e2b7edf75eb4d66abdb492091f02984\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 55,
                "contract": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 61,
                "contract": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 63,
                "contract": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 65,
                "contract": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 67,
                "contract": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol": {
        "PrizeDistributionFactory": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeTierHistory",
                  "name": "_prizeTierHistory",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "_prizeDistributionBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_minPickCost",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "PrizeDistributionPushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "PrizeDistributionSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint256",
                  "name": "_totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "calculatePrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint256",
                  "name": "_totalNetworkTicketSupply",
                  "type": "uint256"
                },
                {
                  "internalType": "uint32",
                  "name": "_beaconPeriodSeconds",
                  "type": "uint32"
                },
                {
                  "internalType": "uint64",
                  "name": "_drawTimestamp",
                  "type": "uint64"
                }
              ],
              "name": "calculatePrizeDistributionWithDrawData",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "minPickCost",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeTierHistory",
              "outputs": [
                {
                  "internalType": "contract IPrizeTierHistory",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint256",
                  "name": "_totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "pushPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint256",
                  "name": "_totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "setPrizeDistribution",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc.",
            "events": {
              "PrizeDistributionPushed(uint32,uint256)": {
                "params": {
                  "drawId": "The draw id for which the prize dist was pushed",
                  "totalNetworkTicketSupply": "The total network ticket supply that was used to compute the cardinality and portion of picks"
                }
              },
              "PrizeDistributionSet(uint32,uint256)": {
                "params": {
                  "drawId": "The draw id for which the prize dist was set",
                  "totalNetworkTicketSupply": "The total network ticket supply that was used to compute the cardinality and portion of picks"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "calculatePrizeDistribution(uint32,uint256)": {
                "params": {
                  "_drawId": "The draw id to pull from the Draw Buffer and Prize Tier History",
                  "_totalNetworkTicketSupply": "The total of all ticket supplies across all prize pools in this network"
                },
                "returns": {
                  "_0": "PrizeDistribution using info from the Draw for the given draw id, total network ticket supply, and PrizeTier for the draw."
                }
              },
              "calculatePrizeDistributionWithDrawData(uint32,uint256,uint32,uint64)": {
                "params": {
                  "_beaconPeriodSeconds": "The beacon period in seconds",
                  "_drawId": "The draw from which to use the Draw and",
                  "_drawTimestamp": "The timestamp at which the draw RNG request started.",
                  "_totalNetworkTicketSupply": "The sum of all ticket supplies across all prize pools on the network"
                },
                "returns": {
                  "_0": "A PrizeDistribution based on the given params and PrizeTier for the passed draw id"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "pushPrizeDistribution(uint32,uint256)": {
                "params": {
                  "_drawId": "The draw id to compute for",
                  "_totalNetworkTicketSupply": "The total supply of tickets across all prize pools for the network that the ticket belongs to."
                },
                "returns": {
                  "_0": "The resulting Prize Distribution"
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "setPrizeDistribution(uint32,uint256)": {
                "params": {
                  "_drawId": "The draw id to compute for",
                  "_totalNetworkTicketSupply": "The total supply of tickets across all prize pools for the network that the ticket belongs to."
                },
                "returns": {
                  "_0": "The resulting Prize Distribution"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "Prize Distribution Factory",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_12913": {
                  "entryPoint": null,
                  "id": 12913,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 564,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizeTierHistory_$15371t_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587t_contract$_ITicket_$9297t_uint256_fromMemory": {
                  "entryPoint": 644,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 6
                },
                "abi_encode_tuple_t_stringliteral_4b6a084e55ce2a02dd1eaee0b8f72caa953f3ed6f5f0d571541ab2e8e83c9530__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_503a092c54aaa3fa2f9b51b3dca33729a46ff840115098c67ea55b9ec72c4b24__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8eff9d63213830effddd352d6f4a50103a4e78538d2af639d3ae9ce00bee0c4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_906a604d090908eb95a86e72d7404f097e78a489fa981d5dfa52fd586f810998__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_911ff912b881d890b2380e6f728f53a43d73a86f1fec87958febfd7b14c8d9b2__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_991aefb82934e4bcd364457a3dcd3651f35d3a5ae68c94d1920b7942f8c2a77e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 780,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:3158:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "276:685:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "323:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "332:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "335:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "325:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "325:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "325:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "297:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "293:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "293:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "318:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "289:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "289:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "286:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "348:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "367:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "361:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "361:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "352:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "411:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "386:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "386:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "386:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "426:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "436:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "426:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "450:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "475:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "486:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "471:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "471:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "465:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "465:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "454:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "524:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "499:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "499:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "499:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "541:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "551:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "541:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "567:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "592:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "603:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "588:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "588:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "582:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "582:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "571:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "641:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "616:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "616:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "616:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "658:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "668:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "658:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "684:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "720:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "705:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "705:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "699:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "699:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "688:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "758:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "733:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "733:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "733:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "775:17:94",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "785:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "775:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "801:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "826:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "837:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "822:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "822:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "816:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "816:26:94"
                              },
                              "variables": [
                                {
                                  "name": "value_4",
                                  "nodeType": "YulTypedName",
                                  "src": "805:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "876:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "851:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "851:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "851:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "893:17:94",
                              "value": {
                                "name": "value_4",
                                "nodeType": "YulIdentifier",
                                "src": "903:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "893:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "919:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "939:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "950:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "935:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "935:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "929:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "929:26:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "919:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizeTierHistory_$15371t_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587t_contract$_ITicket_$9297t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "202:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "213:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "225:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "233:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "241:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "249:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "257:6:94",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "265:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:947:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1140:162:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1157:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1168:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1150:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1150:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1150:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1191:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1202:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1187:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1187:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1207:2:94",
                                    "type": "",
                                    "value": "12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1180:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1180:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1180:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1230:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1241:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1226:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1226:18:94"
                                  },
                                  {
                                    "hexValue": "5044432f7064622d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1246:14:94",
                                    "type": "",
                                    "value": "PDC/pdb-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1219:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1219:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1219:42:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1270:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1282:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1293:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1278:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1278:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1270:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4b6a084e55ce2a02dd1eaee0b8f72caa953f3ed6f5f0d571541ab2e8e83c9530__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1117:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1131:4:94",
                            "type": ""
                          }
                        ],
                        "src": "966:336:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1481:171:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1498:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1509:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1491:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1491:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1491:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1532:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1543:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1528:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1528:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1548:2:94",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1521:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1521:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1521:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1571:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1582:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1567:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1567:18:94"
                                  },
                                  {
                                    "hexValue": "5044432f7069636b2d636f73742d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1587:23:94",
                                    "type": "",
                                    "value": "PDC/pick-cost-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1560:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1560:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1560:51:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1620:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1632:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1643:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1628:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1628:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1620:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_503a092c54aaa3fa2f9b51b3dca33729a46ff840115098c67ea55b9ec72c4b24__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1458:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1472:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1307:345:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1831:165:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1848:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1859:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1841:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1841:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1841:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1882:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1893:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1878:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1878:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1898:2:94",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1871:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1871:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1871:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1921:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1932:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1917:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1917:18:94"
                                  },
                                  {
                                    "hexValue": "5044432f7469636b65742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1937:17:94",
                                    "type": "",
                                    "value": "PDC/ticket-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1910:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1910:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1910:45:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1964:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1976:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1987:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1972:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1972:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1964:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8eff9d63213830effddd352d6f4a50103a4e78538d2af639d3ae9ce00bee0c4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1808:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1822:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1657:339:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2175:161:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2192:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2203:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2185:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2185:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2185:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2226:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2237:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2222:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2222:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2242:2:94",
                                    "type": "",
                                    "value": "11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2215:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2215:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2215:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2265:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2276:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2261:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2261:18:94"
                                  },
                                  {
                                    "hexValue": "5044432f64622d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2281:13:94",
                                    "type": "",
                                    "value": "PDC/db-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2254:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2254:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2254:41:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2304:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2316:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2327:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2312:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2312:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2304:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_906a604d090908eb95a86e72d7404f097e78a489fa981d5dfa52fd586f810998__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2152:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2166:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2001:335:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2515:162:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2532:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2543:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2525:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2525:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2525:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2566:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2577:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2562:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2562:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2582:2:94",
                                    "type": "",
                                    "value": "12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2555:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2555:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2555:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2605:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2616:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2601:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2601:18:94"
                                  },
                                  {
                                    "hexValue": "5044432f7074682d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2621:14:94",
                                    "type": "",
                                    "value": "PDC/pth-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2594:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2594:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2594:42:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2645:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2657:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2668:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2653:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2653:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2645:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_911ff912b881d890b2380e6f728f53a43d73a86f1fec87958febfd7b14c8d9b2__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2492:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2506:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2341:336:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2856:164:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2873:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2884:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2866:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2866:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2866:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2907:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2918:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2903:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2903:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2923:2:94",
                                    "type": "",
                                    "value": "14"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2896:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2896:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2896:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2946:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2957:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2942:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2942:18:94"
                                  },
                                  {
                                    "hexValue": "5044432f6f776e65722d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2962:16:94",
                                    "type": "",
                                    "value": "PDC/owner-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2935:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2935:44:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2935:44:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2988:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3000:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3011:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2996:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2996:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2988:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_991aefb82934e4bcd364457a3dcd3651f35d3a5ae68c94d1920b7942f8c2a77e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2833:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2847:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2682:338:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3070:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3134:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3143:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3146:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3136:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3136:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3136:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3093:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3104:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "3119:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "3124:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3115:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "3115:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3128:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "3111:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3111:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3100:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3100:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3090:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3090:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3083:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3083:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3080:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3059:5:94",
                            "type": ""
                          }
                        ],
                        "src": "3025:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizeTierHistory_$15371t_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587t_contract$_ITicket_$9297t_uint256_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := mload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n        let value_4 := mload(add(headStart, 128))\n        validator_revert_address(value_4)\n        value4 := value_4\n        value5 := mload(add(headStart, 160))\n    }\n    function abi_encode_tuple_t_stringliteral_4b6a084e55ce2a02dd1eaee0b8f72caa953f3ed6f5f0d571541ab2e8e83c9530__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 12)\n        mstore(add(headStart, 64), \"PDC/pdb-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_503a092c54aaa3fa2f9b51b3dca33729a46ff840115098c67ea55b9ec72c4b24__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 21)\n        mstore(add(headStart, 64), \"PDC/pick-cost-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8eff9d63213830effddd352d6f4a50103a4e78538d2af639d3ae9ce00bee0c4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 15)\n        mstore(add(headStart, 64), \"PDC/ticket-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_906a604d090908eb95a86e72d7404f097e78a489fa981d5dfa52fd586f810998__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 11)\n        mstore(add(headStart, 64), \"PDC/db-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_911ff912b881d890b2380e6f728f53a43d73a86f1fec87958febfd7b14c8d9b2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 12)\n        mstore(add(headStart, 64), \"PDC/pth-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_991aefb82934e4bcd364457a3dcd3651f35d3a5ae68c94d1920b7942f8c2a77e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 14)\n        mstore(add(headStart, 64), \"PDC/owner-zero\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101206040523480156200001257600080fd5b5060405162001b5b38038062001b5b833981016040819052620000359162000284565b85620000418162000234565b506001600160a01b0386166200008f5760405162461bcd60e51b815260206004820152600e60248201526d5044432f6f776e65722d7a65726f60901b60448201526064015b60405180910390fd5b6001600160a01b038516620000d65760405162461bcd60e51b815260206004820152600c60248201526b5044432f7074682d7a65726f60a01b604482015260640162000086565b6001600160a01b0384166200011c5760405162461bcd60e51b815260206004820152600b60248201526a5044432f64622d7a65726f60a81b604482015260640162000086565b6001600160a01b038316620001635760405162461bcd60e51b815260206004820152600c60248201526b5044432f7064622d7a65726f60a01b604482015260640162000086565b6001600160a01b038216620001ad5760405162461bcd60e51b815260206004820152600f60248201526e5044432f7469636b65742d7a65726f60881b604482015260640162000086565b60008111620001ff5760405162461bcd60e51b815260206004820152601560248201527f5044432f7069636b2d636f73742d67742d7a65726f0000000000000000000000604482015260640162000086565b610100526001600160601b0319606094851b811660805292841b831660a05290831b821660c05290911b1660e0525062000325565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060008060008060c087890312156200029e57600080fd5b8651620002ab816200030c565b6020880151909650620002be816200030c565b6040880151909550620002d1816200030c565b6060880151909450620002e4816200030c565b6080880151909350620002f7816200030c565b8092505060a087015190509295509295509295565b6001600160a01b03811681146200032257600080fd5b50565b60805160601c60a05160601c60c05160601c60e05160601c610100516117bb620003a06000396000818161013301526106ac01526000818161020f01526107de015260008181610168015281816103ca015261054d0152600081816102620152610a0a0152600081816101a70152610cfe01526117bb6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80636cc25db711610097578063ce343bb611610066578063ce343bb61461025d578063d0ebdbe714610284578063e30c3978146102a7578063f2fde38b146102b857600080fd5b80636cc25db71461020a578063715018a6146102315780638bf02df8146102395780638da5cb5b1461024c57600080fd5b80633ec018fc116100d35780633ec018fc146101c9578063481c6a75146101dc5780634e71e0c8146101ed5780636665f32b146101f757600080fd5b80630348b07614610105578063082d80ff1461012e5780630840bbdd146101635780633cd4b918146101a2575b600080fd5b61011861011336600461131f565b6102cb565b60405161012591906114f7565b60405180910390f35b6101557f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610125565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610125565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6101186101d736600461131f565b61049d565b6002546001600160a01b031661018a565b6101f561060f565b005b61011861020536600461134b565b61069d565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6101f5610956565b61011861024736600461131f565b6109cb565b6000546001600160a01b031661018a565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6102976102923660046110e6565b610aaa565b6040519015158152602001610125565b6001546001600160a01b031661018a565b6101f56102c63660046110e6565b610b26565b6102d3610fe6565b336102e66002546001600160a01b031690565b6001600160a01b031614806103145750336103096000546001600160a01b031690565b6001600160a01b0316145b61038b5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b600061039784846109cb565b6040517f1124e1dc0000000000000000000000000000000000000000000000000000000081529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631124e1dc906104019087908590600401611506565b602060405180830381600087803b15801561041b57600080fd5b505af115801561042f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045391906111bc565b508363ffffffff167f362b45fbcdb636bf7950cef7aeb4d38e93501268c3627eb4fd7c68d1550eaea98460405161048c91815260200190565b60405180910390a290505b92915050565b6104a5610fe6565b336104b86000546001600160a01b031690565b6001600160a01b03161461050e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b600061051a84846109cb565b6040517fce336ce90000000000000000000000000000000000000000000000000000000081529091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063ce336ce9906105849087908590600401611506565b602060405180830381600087803b15801561059e57600080fd5b505af11580156105b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d69190611302565b508363ffffffff167f62230ad64212d08d65551ffdab2c5eb6be8c31bea5d493cac0a51a65f84758e98460405161048c91815260200190565b6001546001600160a01b031633146106695760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610382565b60015461067e906001600160a01b0316610c62565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6106a5610fe6565b60006106d17f0000000000000000000000000000000000000000000000000000000000000000866115a0565b905060006106e0878684610cbf565b60408051600180825281830190925291925060009190602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337505050604084015190915061073e9063ffffffff16876116cf565b826000815181106107515761075161172e565b67ffffffffffffffff90921660209283029190910190910152606083015161077f9063ffffffff16876116cf565b816000815181106107925761079261172e565b67ffffffffffffffff909216602092830291909101909101526040517f8e6d536a0000000000000000000000000000000000000000000000000000000081526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690638e6d536a9061081590869086906004016114c9565b60006040518083038186803b15801561082d57600080fd5b505afa158015610841573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610869919081019061110f565b90508060008151811061087e5761087e61172e565b60200260200101518910156108d55760405162461bcd60e51b815260206004820152601a60248201527f5044462f696e76616c69642d6e6574776f726b2d737570706c790000000000006044820152606401610382565b88156109405761092789826000815181106108f2576108f261172e565b60200260200101518660c001516cffffffffffffffffffffffffff1661091891906116b0565b61092291906115a0565b610e71565b6cffffffffffffffffffffffffff1660c0850152610948565b600060c08501525b509198975050505050505050565b336109696000546001600160a01b031690565b6001600160a01b0316146109bf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b6109c96000610c62565b565b6109d3610fe6565b6040517f83c34aaf00000000000000000000000000000000000000000000000000000000815263ffffffff841660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906383c34aaf9060240160a06040518083038186803b158015610a5457600080fd5b505afa158015610a68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8c91906111de565b9050610aa284848360800151846040015161069d565b949350505050565b600033610abf6000546001600160a01b031690565b6001600160a01b031614610b155760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b610b1e82610efa565b90505b919050565b33610b396000546001600160a01b031690565b6001600160a01b031614610b8f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b6001600160a01b038116610c0b5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610382565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cc7610fe6565b6040517f4aac253d00000000000000000000000000000000000000000000000000000000815263ffffffff851660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634aac253d906024016102c06040518083038186803b158015610d4957600080fd5b505afa158015610d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d81919061126d565b905060005b80610d90816116f8565b9150849050610da082600161157b565b8351610dad906002611605565b610db79190611605565b10610d86576000604051806101200160405280846000015160ff1681526020018360ff1681526020018763ffffffff168152602001846080015163ffffffff168152602001846040015163ffffffff168152602001846060015163ffffffff168152602001610e3b8486600001516002610e319190611605565b6109229190611605565b6cffffffffffffffffffffffffff1681526020018460c0015181526020018460a0015181525090508093505050505b9392505050565b60006cffffffffffffffffffffffffff821115610ef65760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203160448201527f30342062697473000000000000000000000000000000000000000000000000006064820152608401610382565b5090565b6002546000906001600160a01b03908116908316811415610f835760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610382565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e0810161102c611039565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b600082601f83011261106957600080fd5b60405161020080820182811067ffffffffffffffff8211171561108e5761108e611744565b60405281848281018710156110a257600080fd5b600092505b60108310156110d05780516110bb8161175a565b825260019290920191602091820191016110a7565b509195945050505050565b8051610b218161175a565b6000602082840312156110f857600080fd5b81356001600160a01b0381168114610e6a57600080fd5b6000602080838503121561112257600080fd5b825167ffffffffffffffff8082111561113a57600080fd5b818501915085601f83011261114e57600080fd5b81518181111561116057611160611744565b8060051b915061117184830161154a565b8181528481019084860184860187018a101561118c57600080fd5b600095505b838610156111af578051835260019590950194918601918601611191565b5098975050505050505050565b6000602082840312156111ce57600080fd5b81518015158114610e6a57600080fd5b600060a082840312156111f057600080fd5b60405160a0810181811067ffffffffffffffff8211171561121357611213611744565b6040528251815260208301516112288161175a565b6020820152604083015161123b8161176f565b6040820152606083015161124e8161176f565b606082015260808301516112618161175a565b60808201529392505050565b60006102c0828403121561128057600080fd5b611288611521565b825160ff8116811461129957600080fd5b81526112a7602084016110db565b60208201526112b8604084016110db565b60408201526112c9606084016110db565b60608201526112da608084016110db565b608082015260a083015160a08201526112f68460c08501611058565b60c08201529392505050565b60006020828403121561131457600080fd5b8151610e6a8161175a565b6000806040838503121561133257600080fd5b823561133d8161175a565b946020939093013593505050565b6000806000806080858703121561136157600080fd5b843561136c8161175a565b93506020850135925060408501356113838161175a565b915060608501356113938161176f565b939692955090935050565b8060005b60108110156113c757815163ffffffff168452602093840193909101906001016113a2565b50505050565b600081518084526020808501945080840160005b8381101561140757815167ffffffffffffffff16875295820195908201906001016113e1565b509495945050505050565b60ff815116825260ff6020820151166020830152604081015161143d604084018263ffffffff169052565b506060810151611455606084018263ffffffff169052565b50608081015161146d608084018263ffffffff169052565b5060a081015161148560a084018263ffffffff169052565b5060c08101516114a660c08401826cffffffffffffffffffffffffff169052565b5060e08101516114b960e084018261139e565b5061010001516102e09190910152565b6040815260006114dc60408301856113cd565b82810360208401526114ee81856113cd565b95945050505050565b61030081016104978284611412565b63ffffffff831681526103208101610e6a6020830184611412565b60405160e0810167ffffffffffffffff8111828210171561154457611544611744565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561157357611573611744565b604052919050565b600060ff821660ff84168060ff0382111561159857611598611718565b019392505050565b6000826115bd57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156115fd5781600019048211156115e3576115e3611718565b808516156115f057918102915b93841c93908002906115c7565b509250929050565b6000610e6a60ff84168360008261161e57506001610497565b8161162b57506000610497565b8160018114611641576002811461164b57611667565b6001915050610497565b60ff84111561165c5761165c611718565b50506001821b610497565b5060208310610133831016604e8410600b841016171561168a575081810a610497565b61169483836115c2565b80600019048211156116a8576116a8611718565b029392505050565b60008160001904831182151516156116ca576116ca611718565b500290565b600067ffffffffffffffff838116908316818110156116f0576116f0611718565b039392505050565b600060ff821660ff81141561170f5761170f611718565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff8116811461176c57600080fd5b50565b67ffffffffffffffff8116811461176c57600080fdfea2646970667358221220d55bac8ee961bc22c530dcc98e239bfb8ad7b1a3ad04310d64ddbbabea6605b864736f6c63430008060033",
              "opcodes": "PUSH2 0x120 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x12 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1B5B CODESIZE SUB DUP1 PUSH3 0x1B5B DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x35 SWAP2 PUSH3 0x284 JUMP JUMPDEST DUP6 PUSH3 0x41 DUP2 PUSH3 0x234 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH3 0x8F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x5044432F6F776E65722D7A65726F PUSH1 0x90 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH3 0xD6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5044432F7074682D7A65726F PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x86 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH3 0x11C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x5044432F64622D7A65726F PUSH1 0xA8 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x86 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0x163 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x5044432F7064622D7A65726F PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x86 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x1AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x5044432F7469636B65742D7A65726F PUSH1 0x88 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x86 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH3 0x1FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5044432F7069636B2D636F73742D67742D7A65726F0000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x86 JUMP JUMPDEST PUSH2 0x100 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 SWAP5 DUP6 SHL DUP2 AND PUSH1 0x80 MSTORE SWAP3 DUP5 SHL DUP4 AND PUSH1 0xA0 MSTORE SWAP1 DUP4 SHL DUP3 AND PUSH1 0xC0 MSTORE SWAP1 SWAP2 SHL AND PUSH1 0xE0 MSTORE POP PUSH3 0x325 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH3 0x29E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 MLOAD PUSH3 0x2AB DUP2 PUSH3 0x30C JUMP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD SWAP1 SWAP7 POP PUSH3 0x2BE DUP2 PUSH3 0x30C JUMP JUMPDEST PUSH1 0x40 DUP9 ADD MLOAD SWAP1 SWAP6 POP PUSH3 0x2D1 DUP2 PUSH3 0x30C JUMP JUMPDEST PUSH1 0x60 DUP9 ADD MLOAD SWAP1 SWAP5 POP PUSH3 0x2E4 DUP2 PUSH3 0x30C JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x2F7 DUP2 PUSH3 0x30C JUMP JUMPDEST DUP1 SWAP3 POP POP PUSH1 0xA0 DUP8 ADD MLOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x322 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH1 0xE0 MLOAD PUSH1 0x60 SHR PUSH2 0x100 MLOAD PUSH2 0x17BB PUSH3 0x3A0 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x133 ADD MSTORE PUSH2 0x6AC ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x20F ADD MSTORE PUSH2 0x7DE ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x168 ADD MSTORE DUP2 DUP2 PUSH2 0x3CA ADD MSTORE PUSH2 0x54D ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x262 ADD MSTORE PUSH2 0xA0A ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x1A7 ADD MSTORE PUSH2 0xCFE ADD MSTORE PUSH2 0x17BB PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6CC25DB7 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xCE343BB6 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x2B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x8BF02DF8 EQ PUSH2 0x239 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x24C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3EC018FC GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x3EC018FC EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x1DC JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1ED JUMPI DUP1 PUSH4 0x6665F32B EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x348B076 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x82D80FF EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x840BBDD EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0x3CD4B918 EQ PUSH2 0x1A2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x2CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x14F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x155 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x125 JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x125 JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x1D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x49D JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1F5 PUSH2 0x60F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x118 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x134B JUMP JUMPDEST PUSH2 0x69D JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1F5 PUSH2 0x956 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x247 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x297 PUSH2 0x292 CALLDATASIZE PUSH1 0x4 PUSH2 0x10E6 JUMP JUMPDEST PUSH2 0xAAA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x125 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1F5 PUSH2 0x2C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10E6 JUMP JUMPDEST PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2D3 PUSH2 0xFE6 JUMP JUMPDEST CALLER PUSH2 0x2E6 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x314 JUMPI POP CALLER PUSH2 0x309 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x38B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x397 DUP5 DUP5 PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x1124E1DC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x1124E1DC SWAP1 PUSH2 0x401 SWAP1 DUP8 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1506 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x41B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x42F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x453 SWAP2 SWAP1 PUSH2 0x11BC JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH32 0x362B45FBCDB636BF7950CEF7AEB4D38E93501268C3627EB4FD7C68D1550EAEA9 DUP5 PUSH1 0x40 MLOAD PUSH2 0x48C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4A5 PUSH2 0xFE6 JUMP JUMPDEST CALLER PUSH2 0x4B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x50E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x51A DUP5 DUP5 PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xCE336CE900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xCE336CE9 SWAP1 PUSH2 0x584 SWAP1 DUP8 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1506 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x59E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5B2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5D6 SWAP2 SWAP1 PUSH2 0x1302 JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH32 0x62230AD64212D08D65551FFDAB2C5EB6BE8C31BEA5D493CAC0A51A65F84758E9 DUP5 PUSH1 0x40 MLOAD PUSH2 0x48C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x669 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x67E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xC62 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x6A5 PUSH2 0xFE6 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D1 PUSH32 0x0 DUP7 PUSH2 0x15A0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6E0 DUP8 DUP7 DUP5 PUSH2 0xCBF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP PUSH1 0x0 SWAP3 SWAP2 POP PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP PUSH1 0x40 DUP5 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x73E SWAP1 PUSH4 0xFFFFFFFF AND DUP8 PUSH2 0x16CF JUMP JUMPDEST DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x751 JUMPI PUSH2 0x751 PUSH2 0x172E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0x77F SWAP1 PUSH4 0xFFFFFFFF AND DUP8 PUSH2 0x16CF JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x792 JUMPI PUSH2 0x792 PUSH2 0x172E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0x8E6D536A00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x8E6D536A SWAP1 PUSH2 0x815 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x841 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x869 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x110F JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x87E JUMPI PUSH2 0x87E PUSH2 0x172E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP10 LT ISZERO PUSH2 0x8D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5044462F696E76616C69642D6E6574776F726B2D737570706C79000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST DUP9 ISZERO PUSH2 0x940 JUMPI PUSH2 0x927 DUP10 DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x8F2 JUMPI PUSH2 0x8F2 PUSH2 0x172E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP7 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x16B0 JUMP JUMPDEST PUSH2 0x922 SWAP2 SWAP1 PUSH2 0x15A0 JUMP JUMPDEST PUSH2 0xE71 JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP6 ADD MSTORE PUSH2 0x948 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP6 ADD MSTORE JUMPDEST POP SWAP2 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x969 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9BF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH2 0x9C9 PUSH1 0x0 PUSH2 0xC62 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x9D3 PUSH2 0xFE6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x83C34AAF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x83C34AAF SWAP1 PUSH1 0x24 ADD PUSH1 0xA0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA68 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA8C SWAP2 SWAP1 PUSH2 0x11DE JUMP JUMPDEST SWAP1 POP PUSH2 0xAA2 DUP5 DUP5 DUP4 PUSH1 0x80 ADD MLOAD DUP5 PUSH1 0x40 ADD MLOAD PUSH2 0x69D JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xABF PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH2 0xB1E DUP3 PUSH2 0xEFA JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xB39 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB8F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC0B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xCC7 PUSH2 0xFE6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x4AAC253D00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x4AAC253D SWAP1 PUSH1 0x24 ADD PUSH2 0x2C0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD5D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD81 SWAP2 SWAP1 PUSH2 0x126D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP1 PUSH2 0xD90 DUP2 PUSH2 0x16F8 JUMP JUMPDEST SWAP2 POP DUP5 SWAP1 POP PUSH2 0xDA0 DUP3 PUSH1 0x1 PUSH2 0x157B JUMP JUMPDEST DUP4 MLOAD PUSH2 0xDAD SWAP1 PUSH1 0x2 PUSH2 0x1605 JUMP JUMPDEST PUSH2 0xDB7 SWAP2 SWAP1 PUSH2 0x1605 JUMP JUMPDEST LT PUSH2 0xD86 JUMPI PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 DUP5 PUSH1 0x0 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3B DUP5 DUP7 PUSH1 0x0 ADD MLOAD PUSH1 0x2 PUSH2 0xE31 SWAP2 SWAP1 PUSH2 0x1605 JUMP JUMPDEST PUSH2 0x922 SWAP2 SWAP1 PUSH2 0x1605 JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0xC0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0xA0 ADD MLOAD DUP2 MSTORE POP SWAP1 POP DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xEF6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2031 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3034206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x382 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xF83 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xE0 DUP2 ADD PUSH2 0x102C PUSH2 0x1039 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1069 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x108E JUMPI PUSH2 0x108E PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x10A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x10D0 JUMPI DUP1 MLOAD PUSH2 0x10BB DUP2 PUSH2 0x175A JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x10A7 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xB21 DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1122 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x113A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x114E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x1160 JUMPI PUSH2 0x1160 PUSH2 0x1744 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL SWAP2 POP PUSH2 0x1171 DUP5 DUP4 ADD PUSH2 0x154A JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 DUP2 ADD SWAP1 DUP5 DUP7 ADD DUP5 DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x118C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x11AF JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x1191 JUMP JUMPDEST POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1213 JUMPI PUSH2 0x1213 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x1228 DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH2 0x123B DUP2 PUSH2 0x176F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0x124E DUP2 PUSH2 0x176F JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0x1261 DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1280 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1288 PUSH2 0x1521 JUMP JUMPDEST DUP3 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1299 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x12A7 PUSH1 0x20 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x12B8 PUSH1 0x40 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x12C9 PUSH1 0x60 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x12DA PUSH1 0x80 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP3 ADD MSTORE PUSH2 0x12F6 DUP5 PUSH1 0xC0 DUP6 ADD PUSH2 0x1058 JUMP JUMPDEST PUSH1 0xC0 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xE6A DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1332 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x133D DUP2 PUSH2 0x175A JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x136C DUP2 PUSH2 0x175A JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x1383 DUP2 PUSH2 0x175A JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x1393 DUP2 PUSH2 0x176F JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x13C7 JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x13A2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1407 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x13E1 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x143D PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x1455 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0x146D PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0x1485 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0x14A6 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x14B9 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0x139E JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x14DC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x13CD JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x14EE DUP2 DUP6 PUSH2 0x13CD JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x497 DUP3 DUP5 PUSH2 0x1412 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND DUP2 MSTORE PUSH2 0x320 DUP2 ADD PUSH2 0xE6A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1412 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1544 JUMPI PUSH2 0x1544 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1573 JUMPI PUSH2 0x1573 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1598 JUMPI PUSH2 0x1598 PUSH2 0x1718 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x15BD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x15FD JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x15E3 JUMPI PUSH2 0x15E3 PUSH2 0x1718 JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x15F0 JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x15C7 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE6A PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x161E JUMPI POP PUSH1 0x1 PUSH2 0x497 JUMP JUMPDEST DUP2 PUSH2 0x162B JUMPI POP PUSH1 0x0 PUSH2 0x497 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1641 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x164B JUMPI PUSH2 0x1667 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x497 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x165C JUMPI PUSH2 0x165C PUSH2 0x1718 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x497 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x168A JUMPI POP DUP2 DUP2 EXP PUSH2 0x497 JUMP JUMPDEST PUSH2 0x1694 DUP4 DUP4 PUSH2 0x15C2 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x16A8 JUMPI PUSH2 0x16A8 PUSH2 0x1718 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x16CA JUMPI PUSH2 0x16CA PUSH2 0x1718 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x16F0 JUMPI PUSH2 0x16F0 PUSH2 0x1718 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x170F JUMPI PUSH2 0x170F PUSH2 0x1718 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x176C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x176C JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 JUMPDEST 0xAC DUP15 0xE9 PUSH2 0xBC22 0xC5 ADDRESS 0xDC 0xC9 DUP15 0x23 SWAP12 0xFB DUP11 0xD7 0xB1 LOG3 0xAD DIV BALANCE 0xD PUSH5 0xDDBBABEA66 SDIV 0xB8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "701:9181:53:-:0;;;2219:870;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2461:6;1648:24:19;2461:6:53;1648:9:19;:24::i;:::-;-1:-1:-1;;;;;;2487:20:53;::::1;2479:47;;;::::0;-1:-1:-1;;;2479:47:53;;2884:2:94;2479:47:53::1;::::0;::::1;2866:21:94::0;2923:2;2903:18;;;2896:30;-1:-1:-1;;;2942:18:94;;;2935:44;2996:18;;2479:47:53::1;;;;;;;;;-1:-1:-1::0;;;;;2544:40:53;::::1;2536:65;;;::::0;-1:-1:-1;;;2536:65:53;;2543:2:94;2536:65:53::1;::::0;::::1;2525:21:94::0;2582:2;2562:18;;;2555:30;-1:-1:-1;;;2601:18:94;;;2594:42;2653:18;;2536:65:53::1;2515:162:94::0;2536:65:53::1;-1:-1:-1::0;;;;;2619:34:53;::::1;2611:58;;;::::0;-1:-1:-1;;;2611:58:53;;2203:2:94;2611:58:53::1;::::0;::::1;2185:21:94::0;2242:2;2222:18;;;2215:30;-1:-1:-1;;;2261:18:94;;;2254:41;2312:18;;2611:58:53::1;2175:161:94::0;2611:58:53::1;-1:-1:-1::0;;;;;2687:47:53;::::1;2679:72;;;::::0;-1:-1:-1;;;2679:72:53;;1168:2:94;2679:72:53::1;::::0;::::1;1150:21:94::0;1207:2;1187:18;;;1180:30;-1:-1:-1;;;1226:18:94;;;1219:42;1278:18;;2679:72:53::1;1140:162:94::0;2679:72:53::1;-1:-1:-1::0;;;;;2769:30:53;::::1;2761:58;;;::::0;-1:-1:-1;;;2761:58:53;;1859:2:94;2761:58:53::1;::::0;::::1;1841:21:94::0;1898:2;1878:18;;;1871:30;-1:-1:-1;;;1917:18:94;;;1910:45;1972:18;;2761:58:53::1;1831:165:94::0;2761:58:53::1;2852:1;2837:12;:16;2829:50;;;::::0;-1:-1:-1;;;2829:50:53;;1509:2:94;2829:50:53::1;::::0;::::1;1491:21:94::0;1548:2;1528:18;;;1521:30;1587:23;1567:18;;;1560:51;1628:18;;2829:50:53::1;1481:171:94::0;2829:50:53::1;2890:26;::::0;-1:-1:-1;;;;;;2926:36:53::1;::::0;;;;;::::1;::::0;2972:24;;;;;::::1;::::0;3006:50;;;;;::::1;::::0;3066:16;;;;::::1;::::0;-1:-1:-1;701:9181:53;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:947:94:-;225:6;233;241;249;257;265;318:3;306:9;297:7;293:23;289:33;286:2;;;335:1;332;325:12;286:2;367:9;361:16;386:31;411:5;386:31;:::i;:::-;486:2;471:18;;465:25;436:5;;-1:-1:-1;499:33:94;465:25;499:33;:::i;:::-;603:2;588:18;;582:25;551:7;;-1:-1:-1;616:33:94;582:25;616:33;:::i;:::-;720:2;705:18;;699:25;668:7;;-1:-1:-1;733:33:94;699:25;733:33;:::i;:::-;837:3;822:19;;816:26;785:7;;-1:-1:-1;851:33:94;816:26;851:33;:::i;:::-;903:7;893:17;;;950:3;939:9;935:19;929:26;919:36;;276:685;;;;;;;;:::o;3025:131::-;-1:-1:-1;;;;;3100:31:94;;3090:42;;3080:2;;3146:1;3143;3136:12;3080:2;3070:86;:::o;:::-;701:9181:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_calculatePrizeDistribution_13227": {
                  "entryPoint": 3263,
                  "id": 13227,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_setManager_3068": {
                  "entryPoint": 3834,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 3170,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@calculatePrizeDistributionWithDrawData_13146": {
                  "entryPoint": 1693,
                  "id": 13146,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@calculatePrizeDistribution_13020": {
                  "entryPoint": 2507,
                  "id": 13020,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@claimOwnership_3210": {
                  "entryPoint": 1551,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@drawBuffer_12790": {
                  "entryPoint": null,
                  "id": 12790,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@minPickCost_12801": {
                  "entryPoint": null,
                  "id": 12801,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_12794": {
                  "entryPoint": null,
                  "id": 12794,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@prizeTierHistory_12786": {
                  "entryPoint": null,
                  "id": 12786,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@pushPrizeDistribution_12951": {
                  "entryPoint": 715,
                  "id": 12951,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 2390,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 2730,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setPrizeDistribution_12989": {
                  "entryPoint": 1181,
                  "id": 12989,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@ticket_12798": {
                  "entryPoint": null,
                  "id": 12798,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@toUint104_9466": {
                  "entryPoint": 3697,
                  "id": 9466,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_3192": {
                  "entryPoint": 2854,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_array_uint32_fromMemory": {
                  "entryPoint": 4184,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 4326,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 4367,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 4540,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptr_fromMemory": {
                  "entryPoint": 4574,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeTier_$15287_memory_ptr_fromMemory": {
                  "entryPoint": 4717,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32_fromMemory": {
                  "entryPoint": 4866,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint256": {
                  "entryPoint": 4895,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32t_uint256t_uint32t_uint64": {
                  "entryPoint": 4939,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_uint32_fromMemory": {
                  "entryPoint": 4315,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint32": {
                  "entryPoint": 5022,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_array_uint64_dyn": {
                  "entryPoint": 5069,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_struct_PrizeDistribution": {
                  "entryPoint": 5138,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5321,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeTierHistory_$15371__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e9b0b4ed351e34ee0787adc486f269a9758328e3248031262d3b0e01948b6ce__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5367,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 5382,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_uint104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "allocate_memory": {
                  "entryPoint": 5450,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory_2450": {
                  "entryPoint": 5409,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "checked_add_t_uint8": {
                  "entryPoint": 5499,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 5536,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_helper": {
                  "entryPoint": 5570,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "checked_exp_t_uint256_t_uint8": {
                  "entryPoint": 5637,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_exp_unsigned": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 5808,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint64": {
                  "entryPoint": 5839,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint8": {
                  "entryPoint": 5880,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 5912,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 5934,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 5956,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 5978,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint64": {
                  "entryPoint": 5999,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:17134:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:711:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "133:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "145:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "135:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "135:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "135:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "112:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "120:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "108:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "108:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "127:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "104:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "104:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "158:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "178:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "172:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "172:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "162:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "190:13:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "200:3:94",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "194:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "212:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "234:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "242:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "230:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "230:15:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "216:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "320:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "322:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "322:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "322:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "263:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "275:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "260:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "260:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "299:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "311:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "296:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "296:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "257:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "257:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "254:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "358:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "362:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "351:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "351:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "351:22:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "382:17:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "393:6:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "386:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "408:17:94",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "419:6:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "412:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "462:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "471:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "474:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "464:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "464:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "444:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "452:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "440:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "440:15:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "457:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "437:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "437:24:94"
                              },
                              "nodeType": "YulIf",
                              "src": "434:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "487:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "496:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "491:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "553:212:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "567:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "586:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "580:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "580:10:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "571:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "627:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "603:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "603:30:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "603:30:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "653:3:94"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "658:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "646:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "646:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "646:18:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "677:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "687:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "681:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "704:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "715:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "720:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "711:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "711:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "704:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "736:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "747:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "752:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "743:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "743:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "736:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "517:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "520:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "514:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "514:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "526:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "528:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "537:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "540:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "533:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "533:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "528:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "510:3:94",
                                "statements": []
                              },
                              "src": "506:259:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "774:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "783:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "774:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "58:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "66:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "74:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:781:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "859:77:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "869:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "884:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "878:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "869:5:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "924:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "900:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "900:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "900:30:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "838:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "849:5:94",
                            "type": ""
                          }
                        ],
                        "src": "800:136:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1011:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1057:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1066:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1069:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1059:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1059:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1059:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1032:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1041:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1028:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1028:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1053:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1024:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1024:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1021:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1082:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1108:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1095:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1095:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1086:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1204:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1213:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1216:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1206:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1206:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1206:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1140:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1151:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1158:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1147:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1147:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1137:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1137:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1130:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1130:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1127:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1229:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1239:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1229:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "977:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "988:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1000:6:94",
                            "type": ""
                          }
                        ],
                        "src": "941:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1361:841:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1371:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1381:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1375:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1428:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1437:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1440:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1430:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1430:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1403:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1412:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1399:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1399:23:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1424:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1395:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1395:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1392:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1453:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1473:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1467:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1467:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1457:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1492:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1502:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1496:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1547:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1556:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1559:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1549:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1549:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1549:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1535:6:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1543:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1532:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1532:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1529:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1572:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1586:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1582:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1582:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "1576:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1652:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1661:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1664:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1654:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1654:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1654:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1631:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1635:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1627:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1627:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1642:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1623:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1623:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1616:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1616:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1613:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1677:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1693:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1687:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1687:9:94"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "1681:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1719:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1721:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1721:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1721:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1711:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1715:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1708:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1708:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1705:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1750:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1764:1:94",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1767:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "1760:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1760:10:94"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "1754:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1779:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulIdentifier",
                                        "src": "1810:2:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1814:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1806:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1806:11:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1790:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1790:28:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "1783:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1827:16:94",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "1840:3:94"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1831:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "1859:3:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1864:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1852:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1852:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1852:15:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1876:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "1887:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1892:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1883:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1883:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "1876:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1904:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1919:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1923:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1915:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1915:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "1908:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1972:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1981:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1984:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1974:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1974:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1974:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1949:2:94"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "1953:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1945:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1945:11:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1958:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1941:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1941:20:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1963:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1938:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1938:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1935:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1997:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2006:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2001:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2061:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "2082:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "2093:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2087:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2087:10:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2075:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2075:23:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2075:23:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2111:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "2122:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2127:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2118:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2118:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "2111:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2143:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "2154:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2159:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2150:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2150:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "2143:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2027:1:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "2030:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2024:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2024:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2034:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2036:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2045:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2048:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2041:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2041:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2036:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2020:3:94",
                                "statements": []
                              },
                              "src": "2016:156:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2181:15:94",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "2191:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2181:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1338:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1350:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1255:947:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2285:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2306:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2302:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2298:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2295:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2356:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2375:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2360:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2438:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2447:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2450:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2440:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2440:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2440:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2407:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2428:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "2421:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2421:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2414:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2414:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2404:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2404:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2397:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2397:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2394:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2463:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2473:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2463:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2251:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2262:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2274:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2207:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2592:858:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2639:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2648:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2651:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2641:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2641:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2641:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2613:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2609:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2609:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2634:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2605:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2605:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2602:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2664:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2684:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2678:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2678:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2668:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2696:34:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2718:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2726:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2714:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2714:16:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2700:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2805:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "2807:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2807:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2807:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2748:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2760:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2745:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2745:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2781:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2781:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "2742:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2742:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2739:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2843:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2847:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2836:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2836:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2836:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2874:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2888:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2882:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2882:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2867:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2867:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2867:32:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2908:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2931:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2942:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2927:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2927:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2921:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2921:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2912:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2979:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2955:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2955:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2955:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3005:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3013:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3001:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3001:15:94"
                                  },
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3018:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2994:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2994:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2994:30:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3033:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3058:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3069:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3054:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3054:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3048:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3048:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3037:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3106:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "3082:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3082:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3082:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3134:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3142:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3130:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3130:15:94"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3147:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3123:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3123:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3123:32:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3164:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3189:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3200:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3185:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3185:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3179:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3179:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3168:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3237:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "3213:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3213:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3213:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3265:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3273:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3261:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3261:15:94"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3278:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3254:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3254:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3254:32:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3295:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3320:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3331:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3316:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3316:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3310:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3310:26:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3299:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3369:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3345:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3345:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3345:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3397:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3405:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3393:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3393:16:94"
                                  },
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3411:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3386:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3386:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3386:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3428:16:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "3438:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3428:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2558:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2569:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2581:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2489:961:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3564:760:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3611:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3620:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3623:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3613:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3613:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3613:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3585:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3594:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3581:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3581:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3606:3:94",
                                    "type": "",
                                    "value": "704"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3577:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3577:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3574:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3636:35:94",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_2450",
                                  "nodeType": "YulIdentifier",
                                  "src": "3649:20:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3649:22:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3640:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3680:31:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3701:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3695:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3695:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3684:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3763:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3772:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3775:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3765:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3765:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3765:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3733:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "3746:7:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3755:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3742:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3742:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3730:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3730:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3723:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3723:39:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3720:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3795:5:94"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3802:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3788:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3788:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3788:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3830:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3837:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3826:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3826:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3875:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3886:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3871:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3871:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32_fromMemory",
                                      "nodeType": "YulIdentifier",
                                      "src": "3842:28:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3842:48:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3819:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3819:72:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3819:72:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3911:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3918:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3907:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3907:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3956:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3967:2:94",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3952:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3952:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32_fromMemory",
                                      "nodeType": "YulIdentifier",
                                      "src": "3923:28:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3923:48:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3900:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3900:72:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3900:72:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3992:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3999:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3988:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3988:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "4037:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4048:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4033:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4033:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32_fromMemory",
                                      "nodeType": "YulIdentifier",
                                      "src": "4004:28:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4004:48:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3981:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3981:72:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3981:72:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4073:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4080:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4069:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4069:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "4119:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4130:3:94",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4115:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4115:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32_fromMemory",
                                      "nodeType": "YulIdentifier",
                                      "src": "4086:28:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4086:49:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4062:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4062:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4062:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4156:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4163:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4152:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4152:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "4179:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4190:3:94",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4175:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4175:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4169:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4169:26:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4145:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4145:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4145:51:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4216:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4223:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4212:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4212:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "4268:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4279:3:94",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4264:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4264:19:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4285:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_array_uint32_fromMemory",
                                      "nodeType": "YulIdentifier",
                                      "src": "4229:34:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4229:64:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4205:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4205:89:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4205:89:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4303:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4313:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4303:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeTier_$15287_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3530:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3541:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3553:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3455:869:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4409:169:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4455:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4464:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4467:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4457:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4457:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4457:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4430:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4439:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4426:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4426:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4451:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4422:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4422:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4419:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4480:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4499:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4493:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4493:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4484:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4542:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4518:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4518:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4518:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4557:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4567:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4557:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4375:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4386:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4398:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4329:249:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4669:227:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4715:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4724:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4727:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4717:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4717:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4717:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4690:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4699:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4686:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4686:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4711:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4682:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4682:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4679:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4740:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4766:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4753:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4753:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4744:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4809:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4785:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4785:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4785:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4824:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4834:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4824:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4848:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4875:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4886:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4871:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4871:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4858:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4858:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4848:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4627:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4638:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4650:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4658:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4583:313:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5019:474:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5066:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5075:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5078:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5068:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5068:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5068:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5040:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5049:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5036:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5036:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5061:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5032:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5032:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5029:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5091:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5117:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5104:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5104:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "5095:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5160:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5136:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5136:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5136:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5175:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "5185:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5175:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5199:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5226:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5237:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5222:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5222:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5209:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5209:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5199:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5250:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5282:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5293:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5278:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5278:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5265:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5265:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5254:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5330:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5306:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5306:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5306:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5347:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "5357:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "5347:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5373:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5405:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5416:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5401:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5401:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5388:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5388:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5377:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5453:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5429:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5429:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5429:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5470:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "5480:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "5470:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint256t_uint32t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4961:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4972:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4984:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4992:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5000:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5008:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4901:592:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5547:293:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5557:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "5564:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "5557:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5576:19:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "5590:5:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "5580:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5604:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5613:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5608:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5670:164:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5691:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5706:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "5700:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5700:13:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "5715:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "5696:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5696:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5684:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5684:43:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5684:43:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "5740:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "5750:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "5744:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5767:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5778:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5783:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5774:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5774:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5767:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5799:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "5813:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5821:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5809:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5809:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "5799:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5634:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5637:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5631:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5631:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5643:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5645:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5654:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5657:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5650:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5650:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5645:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5627:3:94",
                                "statements": []
                              },
                              "src": "5623:211:94"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5531:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5538:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5498:342:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5905:399:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5915:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5935:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5929:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5929:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5919:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5957:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5962:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5950:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5950:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5950:19:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5978:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5988:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5982:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6001:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "6012:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6017:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6008:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6008:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "6001:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6029:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "6047:5:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6054:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6043:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6043:14:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6033:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6066:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6075:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "6070:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6134:145:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6155:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6170:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "6164:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6164:13:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "6179:18:94",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "6160:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6160:38:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6148:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6148:51:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6148:51:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6212:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6223:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6228:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6219:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6219:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6212:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6244:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "6258:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6266:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6254:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6254:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6244:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "6096:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6099:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6093:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6093:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6107:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6109:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "6118:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6121:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6114:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6114:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "6109:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "6089:3:94",
                                "statements": []
                              },
                              "src": "6085:194:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6288:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "6295:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "6288:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5882:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5889:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5897:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5845:459:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6370:854:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "6387:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "6402:5:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "6396:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6396:12:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6410:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6392:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6392:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6380:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6380:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6380:36:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6436:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6441:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6432:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6432:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "6462:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6469:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6458:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6458:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "6452:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6452:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6477:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6448:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6448:34:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6425:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6425:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6425:58:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6492:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "6522:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6529:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6518:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6518:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6512:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6512:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "6496:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6562:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6580:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6585:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6576:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6576:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "6544:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6544:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6544:47:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6600:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "6632:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6639:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6628:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6628:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6622:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6622:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6604:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6672:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6692:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6697:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6688:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6688:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "6654:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6654:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6654:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6712:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "6744:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6751:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6740:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6740:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6734:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6734:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "6716:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6784:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6804:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6809:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6800:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6800:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "6766:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6766:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6766:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6824:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "6856:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6863:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6852:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6852:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6846:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6846:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "6828:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "6896:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6916:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6921:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6912:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6912:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "6878:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6878:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6878:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6936:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "6968:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6975:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6964:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6964:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6958:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6958:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "6940:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "7009:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7029:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7034:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7025:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7025:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "6990:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6990:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6990:50:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7049:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "7081:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7088:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7077:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7077:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7071:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7071:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "7053:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "7127:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7147:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7152:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7143:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7143:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "7103:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7103:55:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7103:55:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7178:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7183:6:94",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7174:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7174:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "7202:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7209:6:94",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7198:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7198:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "7192:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7192:25:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7167:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7167:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7167:51:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "6354:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "6361:3:94",
                            "type": ""
                          }
                        ],
                        "src": "6309:915:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7273:69:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7290:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "7299:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7306:28:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7295:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7295:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7283:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7283:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7283:53:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "7257:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "7264:3:94",
                            "type": ""
                          }
                        ],
                        "src": "7229:113:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7390:51:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7407:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "7416:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7423:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7412:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7412:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7400:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7400:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7400:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "7374:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "7381:3:94",
                            "type": ""
                          }
                        ],
                        "src": "7347:94:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7547:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7557:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7569:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7580:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7565:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7565:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7557:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7599:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7614:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7622:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7610:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7610:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7592:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7592:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7592:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7516:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7527:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7538:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7446:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7902:234:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7919:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7930:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7912:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7912:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7912:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7942:69:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7984:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7996:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8007:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7992:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7992:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "7956:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7956:55:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7946:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8031:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8042:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8027:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8027:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8051:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8059:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8047:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8047:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8020:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8020:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8020:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8079:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8115:6:94"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8123:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "8087:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8087:43:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8079:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7863:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7874:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7882:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7893:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7677:459:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8236:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8246:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8258:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8269:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8254:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8254:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8246:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8288:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8313:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8306:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8306:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8299:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8299:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8281:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8281:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8281:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8205:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8216:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8227:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8141:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8454:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8464:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8476:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8487:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8472:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8472:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8464:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8506:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8521:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8529:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8517:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8517:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8499:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8499:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8499:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8423:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8434:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8445:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8333:246:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8718:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8728:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8740:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8751:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8736:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8736:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8728:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8770:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8785:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8793:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8781:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8781:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8763:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8763:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8763:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8687:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8698:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8709:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8584:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8976:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8986:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8998:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9009:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8994:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8994:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8986:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9028:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9043:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9051:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9039:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9039:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9021:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9021:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9021:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeTierHistory_$15371__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8945:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8956:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8967:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8848:253:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9223:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9233:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9245:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9256:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9241:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9241:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9233:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9275:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9290:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9298:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9286:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9286:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9268:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9268:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9268:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9192:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9203:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9214:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9106:242:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9527:176:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9544:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9555:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9537:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9537:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9537:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9578:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9589:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9574:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9574:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9594:2:94",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9567:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9567:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9567:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9617:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9628:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9613:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9613:18:94"
                                  },
                                  {
                                    "hexValue": "5044462f696e76616c69642d6e6574776f726b2d737570706c79",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9633:28:94",
                                    "type": "",
                                    "value": "PDF/invalid-network-supply"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9606:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9606:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9606:56:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9671:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9683:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9694:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9679:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9679:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9671:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e9b0b4ed351e34ee0787adc486f269a9758328e3248031262d3b0e01948b6ce__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9504:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9518:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9353:350:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9882:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9899:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9910:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9892:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9892:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9892:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9933:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9944:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9929:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9929:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9949:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9922:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9922:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9922:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9972:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9983:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9968:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9968:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9988:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9961:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9961:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9961:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10043:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10054:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10039:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10039:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10059:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10032:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10032:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10032:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10074:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10086:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10097:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10082:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10082:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10074:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9859:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9873:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9708:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10286:229:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10303:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10314:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10296:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10296:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10296:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10337:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10348:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10333:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10333:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10353:2:94",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10326:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10326:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10326:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10376:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10387:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10372:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10372:18:94"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10392:34:94",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 1"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10365:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10365:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10365:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10447:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10458:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10443:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10443:18:94"
                                  },
                                  {
                                    "hexValue": "30342062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10463:9:94",
                                    "type": "",
                                    "value": "04 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10436:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10436:37:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10436:37:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10482:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10505:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10490:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10482:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10263:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10277:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10112:403:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10694:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10711:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10722:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10704:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10704:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10704:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10745:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10756:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10741:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10741:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10761:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10734:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10734:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10784:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10795:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10780:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10780:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10800:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10773:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10773:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10773:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10836:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10848:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10859:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10844:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10844:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10836:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10671:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10685:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10520:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11047:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11064:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11075:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11057:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11057:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11057:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11098:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11109:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11094:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11094:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11114:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11087:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11087:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11087:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11137:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11148:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11133:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11133:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11153:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11126:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11126:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11126:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11196:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11208:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11219:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11204:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11204:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11196:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11024:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11038:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10873:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11407:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11424:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11435:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11417:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11417:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11417:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11458:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11469:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11454:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11454:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11474:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11447:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11447:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11447:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11497:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11508:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11493:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11493:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11513:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11486:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11486:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11486:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11568:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11579:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11564:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11564:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11584:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11557:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11557:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11557:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11602:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11614:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11625:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11610:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11610:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11602:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11384:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11398:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11233:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11814:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11831:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11842:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11824:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11824:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11824:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11865:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11876:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11861:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11861:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11881:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11854:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11854:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11854:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11904:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11915:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11900:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11900:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11920:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11893:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11893:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11893:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11975:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11986:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11971:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11971:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11991:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11964:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11964:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11964:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12008:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12020:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12031:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12016:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12016:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12008:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11791:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11805:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11640:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12217:106:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12227:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12239:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12250:3:94",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12235:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12235:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12227:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12299:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12307:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12263:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12263:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12263:54:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12186:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12197:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12208:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12046:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12429:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12439:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12451:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12462:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12447:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12447:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12439:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12481:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12492:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12474:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12474:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12474:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12398:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12409:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12420:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12328:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12609:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12619:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12631:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12642:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12627:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12627:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12619:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12661:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12676:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12684:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12672:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12672:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12654:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12654:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12654:42:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12578:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12589:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12600:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12510:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12904:166:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12914:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12926:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12937:3:94",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12922:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12922:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12914:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12957:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12972:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12980:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12968:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12968:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12950:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12950:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12950:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13037:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13049:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13060:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13045:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13045:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "13001:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13001:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13001:63:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12865:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12876:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12884:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12895:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12707:363:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13121:207:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "13131:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13147:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13141:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13141:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "13131:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13159:35:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "13181:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13189:4:94",
                                    "type": "",
                                    "value": "0xe0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13177:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13177:17:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "13163:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13269:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "13271:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13271:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13271:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "13212:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13224:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13209:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13209:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "13248:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "13260:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13245:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13245:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "13206:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13206:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13203:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13307:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "13311:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13300:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13300:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13300:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory_2450",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "13110:6:94",
                            "type": ""
                          }
                        ],
                        "src": "13075:253:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13378:289:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "13388:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13404:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13398:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13398:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "13388:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13416:117:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "13438:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "13454:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13460:2:94",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13450:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13450:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13465:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13446:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13446:86:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13434:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13434:99:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "13420:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13608:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "13610:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13610:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13610:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "13551:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13563:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13548:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13548:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "13587:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "13599:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13584:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13584:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "13545:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13545:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13542:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13646:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "13650:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13639:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13639:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13639:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "13358:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "13367:6:94",
                            "type": ""
                          }
                        ],
                        "src": "13333:334:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13718:158:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13728:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13743:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13746:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13739:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13739:12:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13732:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13760:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13775:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13778:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13771:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13771:12:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13764:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13819:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13821:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13821:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13821:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13798:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13807:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13813:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13803:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13803:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13795:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13795:23:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13792:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13850:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13861:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13866:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13857:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13857:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13850:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13701:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13704:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13710:3:94",
                            "type": ""
                          }
                        ],
                        "src": "13672:204:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13927:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13958:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13979:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13982:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13972:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13972:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13972:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14080:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14083:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14073:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14073:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14073:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14108:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14111:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14101:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14101:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14101:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13947:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13940:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13940:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "13937:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14135:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "14144:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "14147:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "14140:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14140:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "14135:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13912:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13915:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13921:1:94",
                            "type": ""
                          }
                        ],
                        "src": "13881:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14224:418:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14234:16:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14249:1:94",
                                "type": "",
                                "value": "1"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14238:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14259:16:94",
                              "value": {
                                "name": "power_1",
                                "nodeType": "YulIdentifier",
                                "src": "14268:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "14259:5:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14284:13:94",
                              "value": {
                                "name": "_base",
                                "nodeType": "YulIdentifier",
                                "src": "14292:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "base",
                                  "nodeType": "YulIdentifier",
                                  "src": "14284:4:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14348:288:94",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "14453:22:94",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x11",
                                              "nodeType": "YulIdentifier",
                                              "src": "14455:16:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14455:18:94"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "14455:18:94"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "14368:4:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "14378:66:94",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                            },
                                            {
                                              "name": "base",
                                              "nodeType": "YulIdentifier",
                                              "src": "14446:4:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "div",
                                            "nodeType": "YulIdentifier",
                                            "src": "14374:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14374:77:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "14365:2:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14365:87:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "14362:2:94"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "14514:29:94",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "14516:25:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "power",
                                                "nodeType": "YulIdentifier",
                                                "src": "14529:5:94"
                                              },
                                              {
                                                "name": "base",
                                                "nodeType": "YulIdentifier",
                                                "src": "14536:4:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "14525:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14525:16:94"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "power",
                                              "nodeType": "YulIdentifier",
                                              "src": "14516:5:94"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "14495:8:94"
                                        },
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14505:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "14491:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14491:22:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "14488:2:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14556:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "14568:4:94"
                                        },
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "14574:4:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mul",
                                        "nodeType": "YulIdentifier",
                                        "src": "14564:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14564:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "base",
                                        "nodeType": "YulIdentifier",
                                        "src": "14556:4:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14592:34:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14608:7:94"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "14617:8:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14604:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14604:22:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "14592:8:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "14317:8:94"
                                  },
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14327:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14314:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14314:21:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14336:3:94",
                                "statements": []
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14310:3:94",
                                "statements": []
                              },
                              "src": "14306:330:94"
                            }
                          ]
                        },
                        "name": "checked_exp_helper",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "_base",
                            "nodeType": "YulTypedName",
                            "src": "14188:5:94",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "14195:8:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "14208:5:94",
                            "type": ""
                          },
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "14215:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14160:482:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14715:72:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14725:56:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "14755:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "14765:8:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14775:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14761:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14761:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_unsigned",
                                  "nodeType": "YulIdentifier",
                                  "src": "14734:20:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14734:47:94"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "14725:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_t_uint256_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "14686:4:94",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "14692:8:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "14705:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14647:140:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14851:807:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14889:52:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14903:10:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "14912:1:94",
                                      "type": "",
                                      "value": "1"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "14903:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "14926:5:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "14871:8:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14864:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14864:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14861:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14974:52:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14988:10:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "14997:1:94",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "14988:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "15011:5:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "14960:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14953:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14953:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14950:2:94"
                            },
                            {
                              "cases": [
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "15062:52:94",
                                    "statements": [
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "15076:10:94",
                                        "value": {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15085:1:94",
                                          "type": "",
                                          "value": "1"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "15076:5:94"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "15099:5:94"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "15055:59:94",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15060:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                },
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "15130:123:94",
                                    "statements": [
                                      {
                                        "body": {
                                          "nodeType": "YulBlock",
                                          "src": "15165:22:94",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "panic_error_0x11",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "15167:16:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "15167:18:94"
                                              },
                                              "nodeType": "YulExpressionStatement",
                                              "src": "15167:18:94"
                                            }
                                          ]
                                        },
                                        "condition": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "15150:8:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "15160:3:94",
                                              "type": "",
                                              "value": "255"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "gt",
                                            "nodeType": "YulIdentifier",
                                            "src": "15147:2:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15147:17:94"
                                        },
                                        "nodeType": "YulIf",
                                        "src": "15144:2:94"
                                      },
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "15200:25:94",
                                        "value": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "15213:8:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "15223:1:94",
                                              "type": "",
                                              "value": "1"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "15209:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15209:16:94"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "15200:5:94"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "15238:5:94"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "15123:130:94",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15128:1:94",
                                    "type": "",
                                    "value": "2"
                                  }
                                }
                              ],
                              "expression": {
                                "name": "base",
                                "nodeType": "YulIdentifier",
                                "src": "15042:4:94"
                              },
                              "nodeType": "YulSwitch",
                              "src": "15035:218:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15351:70:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "15365:28:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "15378:4:94"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "15384:8:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "exp",
                                        "nodeType": "YulIdentifier",
                                        "src": "15374:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15374:19:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "15365:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "15406:5:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "15275:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15281:2:94",
                                            "type": "",
                                            "value": "11"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "15272:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15272:12:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "15289:8:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15299:2:94",
                                            "type": "",
                                            "value": "78"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "15286:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15286:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15268:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15268:35:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "15312:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15318:3:94",
                                            "type": "",
                                            "value": "307"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "15309:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15309:13:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "15327:8:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15337:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "15324:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15324:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15305:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15305:36:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "15265:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15265:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15262:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15430:57:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "15472:4:94"
                                  },
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "15478:8:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_helper",
                                  "nodeType": "YulIdentifier",
                                  "src": "15453:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15453:34:94"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "15434:7:94",
                                  "type": ""
                                },
                                {
                                  "name": "base_1",
                                  "nodeType": "YulTypedName",
                                  "src": "15443:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15592:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15594:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15594:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15594:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15502:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15515:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      },
                                      {
                                        "name": "base_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "15583:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "div",
                                      "nodeType": "YulIdentifier",
                                      "src": "15511:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15511:79:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15499:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15499:92:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15496:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15623:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15636:7:94"
                                  },
                                  {
                                    "name": "base_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15645:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "15632:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15632:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "15623:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_unsigned",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "14822:4:94",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "14828:8:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "14841:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14792:866:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15715:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15834:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15836:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15836:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15836:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "15746:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "15739:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15739:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "15732:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15732:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "15754:1:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "15761:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "15829:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "15757:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15757:74:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "15751:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15751:81:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "15728:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15728:105:94"
                              },
                              "nodeType": "YulIf",
                              "src": "15725:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15865:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15880:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15883:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "15876:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15876:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "15865:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15694:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15697:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "15703:7:94",
                            "type": ""
                          }
                        ],
                        "src": "15663:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15944:181:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15954:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "15964:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "15958:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15991:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "16006:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16009:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "16002:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16002:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "15995:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16021:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "16036:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16039:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "16032:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16032:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16025:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16067:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "16069:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16069:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16069:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16057:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16062:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "16054:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16054:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "16051:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16098:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16110:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16115:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "16106:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16106:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "16098:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15926:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15929:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "15935:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15896:229:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16175:130:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16185:31:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16204:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16211:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "16200:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16200:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16189:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16246:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "16248:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16248:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16248:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16231:7:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16240:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "16228:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16228:17:94"
                              },
                              "nodeType": "YulIf",
                              "src": "16225:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16277:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16288:7:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16297:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16284:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16284:15:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "16277:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16157:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "16167:3:94",
                            "type": ""
                          }
                        ],
                        "src": "16130:175:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16342:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16359:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16362:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16352:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16352:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16352:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16456:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16459:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16449:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16449:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16449:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16480:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16483:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16473:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16473:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16473:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16310:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16531:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16548:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16551:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16541:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16541:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16541:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16645:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16648:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16638:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16638:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16638:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16669:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16672:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16662:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16662:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16662:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16499:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16720:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16737:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16740:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16730:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16730:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16730:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16834:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16837:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16827:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16827:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16827:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16858:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16861:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16851:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16851:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16851:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16688:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16921:77:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16976:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16985:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16988:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "16978:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16978:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16978:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16944:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "16955:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16962:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16951:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16951:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "16941:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16941:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "16934:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16934:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "16931:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16910:5:94",
                            "type": ""
                          }
                        ],
                        "src": "16877:121:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17047:85:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17110:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17119:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17122:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "17112:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17112:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17112:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "17070:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17081:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17088:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17077:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17077:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "17067:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17067:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "17060:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17060:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "17057:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "17036:5:94",
                            "type": ""
                          }
                        ],
                        "src": "17003:129:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_array_uint32_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let memPtr := mload(64)\n        let _1 := 512\n        let newFreePtr := add(memPtr, _1)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        let src := offset\n        if gt(add(offset, _1), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := mload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _2 := 0x20\n            dst := add(dst, _2)\n            src := add(src, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_uint32_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := mload(_3)\n        if gt(_4, _2) { panic_error_0x41() }\n        let _5 := shl(5, _4)\n        let dst := allocate_memory(add(_5, _1))\n        let dst_1 := dst\n        mstore(dst, _4)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, _5), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := dst_1\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_Draw_$8176_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 160)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, mload(headStart))\n        let value := mload(add(headStart, 32))\n        validator_revert_uint32(value)\n        mstore(add(memPtr, 32), value)\n        let value_1 := mload(add(headStart, 64))\n        validator_revert_uint64(value_1)\n        mstore(add(memPtr, 64), value_1)\n        let value_2 := mload(add(headStart, 96))\n        validator_revert_uint64(value_2)\n        mstore(add(memPtr, 96), value_2)\n        let value_3 := mload(add(headStart, 128))\n        validator_revert_uint32(value_3)\n        mstore(add(memPtr, 128), value_3)\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_struct$_PrizeTier_$15287_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 704) { revert(0, 0) }\n        let value := allocate_memory_2450()\n        let value_1 := mload(headStart)\n        if iszero(eq(value_1, and(value_1, 0xff))) { revert(0, 0) }\n        mstore(value, value_1)\n        mstore(add(value, 32), abi_decode_uint32_fromMemory(add(headStart, 32)))\n        mstore(add(value, 64), abi_decode_uint32_fromMemory(add(headStart, 64)))\n        mstore(add(value, 96), abi_decode_uint32_fromMemory(add(headStart, 96)))\n        mstore(add(value, 128), abi_decode_uint32_fromMemory(add(headStart, 128)))\n        mstore(add(value, 160), mload(add(headStart, 160)))\n        mstore(add(value, 192), abi_decode_array_uint32_fromMemory(add(headStart, 192), dataEnd))\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint32t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint32t_uint256t_uint32t_uint64(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_1)\n        value2 := value_1\n        let value_2 := calldataload(add(headStart, 96))\n        validator_revert_uint64(value_2)\n        value3 := value_2\n    }\n    function abi_encode_array_uint32(value, pos)\n    {\n        pos := pos\n        let srcPtr := value\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_array_uint64_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_struct_PrizeDistribution(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xff))\n        let memberValue0 := mload(add(value, 0x40))\n        abi_encode_uint32(memberValue0, add(pos, 0x40))\n        let memberValue0_1 := mload(add(value, 0x60))\n        abi_encode_uint32(memberValue0_1, add(pos, 0x60))\n        let memberValue0_2 := mload(add(value, 0x80))\n        abi_encode_uint32(memberValue0_2, add(pos, 0x80))\n        let memberValue0_3 := mload(add(value, 0xa0))\n        abi_encode_uint32(memberValue0_3, add(pos, 0xa0))\n        let memberValue0_4 := mload(add(value, 0xc0))\n        abi_encode_uint104(memberValue0_4, add(pos, 0xc0))\n        let memberValue0_5 := mload(add(value, 0xe0))\n        abi_encode_array_uint32(memberValue0_5, add(pos, 0xe0))\n        mstore(add(pos, 0x02e0), mload(add(value, 0x0100)))\n    }\n    function abi_encode_uint104(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffffffffffffff))\n    }\n    function abi_encode_uint32(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint64_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeTierHistory_$15371__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_2e9b0b4ed351e34ee0787adc486f269a9758328e3248031262d3b0e01948b6ce__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 26)\n        mstore(add(headStart, 64), \"PDF/invalid-network-supply\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 39)\n        mstore(add(headStart, 64), \"SafeCast: value doesn't fit in 1\")\n        mstore(add(headStart, 96), \"04 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PrizeDistribution(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 800)\n        mstore(headStart, and(value0, 0xffffffff))\n        abi_encode_struct_PrizeDistribution(value1, add(headStart, 32))\n    }\n    function allocate_memory_2450() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if gt(x_1, sub(0xff, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_exp_helper(_base, exponent) -> power, base\n    {\n        let power_1 := 1\n        power := power_1\n        base := _base\n        for { } gt(exponent, power_1) { }\n        {\n            if gt(base, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base)) { panic_error_0x11() }\n            if and(exponent, power_1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(power_1, exponent)\n        }\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent)\n        if gt(power_1, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint64(x, y) -> diff\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function increment_t_uint8(value) -> ret\n    {\n        let value_1 := and(value, 0xff)\n        if eq(value_1, 0xff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint64(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "12786": [
                  {
                    "length": 32,
                    "start": 423
                  },
                  {
                    "length": 32,
                    "start": 3326
                  }
                ],
                "12790": [
                  {
                    "length": 32,
                    "start": 610
                  },
                  {
                    "length": 32,
                    "start": 2570
                  }
                ],
                "12794": [
                  {
                    "length": 32,
                    "start": 360
                  },
                  {
                    "length": 32,
                    "start": 970
                  },
                  {
                    "length": 32,
                    "start": 1357
                  }
                ],
                "12798": [
                  {
                    "length": 32,
                    "start": 527
                  },
                  {
                    "length": 32,
                    "start": 2014
                  }
                ],
                "12801": [
                  {
                    "length": 32,
                    "start": 307
                  },
                  {
                    "length": 32,
                    "start": 1708
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101005760003560e01c80636cc25db711610097578063ce343bb611610066578063ce343bb61461025d578063d0ebdbe714610284578063e30c3978146102a7578063f2fde38b146102b857600080fd5b80636cc25db71461020a578063715018a6146102315780638bf02df8146102395780638da5cb5b1461024c57600080fd5b80633ec018fc116100d35780633ec018fc146101c9578063481c6a75146101dc5780634e71e0c8146101ed5780636665f32b146101f757600080fd5b80630348b07614610105578063082d80ff1461012e5780630840bbdd146101635780633cd4b918146101a2575b600080fd5b61011861011336600461131f565b6102cb565b60405161012591906114f7565b60405180910390f35b6101557f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610125565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610125565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6101186101d736600461131f565b61049d565b6002546001600160a01b031661018a565b6101f561060f565b005b61011861020536600461134b565b61069d565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6101f5610956565b61011861024736600461131f565b6109cb565b6000546001600160a01b031661018a565b61018a7f000000000000000000000000000000000000000000000000000000000000000081565b6102976102923660046110e6565b610aaa565b6040519015158152602001610125565b6001546001600160a01b031661018a565b6101f56102c63660046110e6565b610b26565b6102d3610fe6565b336102e66002546001600160a01b031690565b6001600160a01b031614806103145750336103096000546001600160a01b031690565b6001600160a01b0316145b61038b5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b600061039784846109cb565b6040517f1124e1dc0000000000000000000000000000000000000000000000000000000081529091506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631124e1dc906104019087908590600401611506565b602060405180830381600087803b15801561041b57600080fd5b505af115801561042f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045391906111bc565b508363ffffffff167f362b45fbcdb636bf7950cef7aeb4d38e93501268c3627eb4fd7c68d1550eaea98460405161048c91815260200190565b60405180910390a290505b92915050565b6104a5610fe6565b336104b86000546001600160a01b031690565b6001600160a01b03161461050e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b600061051a84846109cb565b6040517fce336ce90000000000000000000000000000000000000000000000000000000081529091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063ce336ce9906105849087908590600401611506565b602060405180830381600087803b15801561059e57600080fd5b505af11580156105b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d69190611302565b508363ffffffff167f62230ad64212d08d65551ffdab2c5eb6be8c31bea5d493cac0a51a65f84758e98460405161048c91815260200190565b6001546001600160a01b031633146106695760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610382565b60015461067e906001600160a01b0316610c62565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6106a5610fe6565b60006106d17f0000000000000000000000000000000000000000000000000000000000000000866115a0565b905060006106e0878684610cbf565b60408051600180825281830190925291925060009190602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337505050604084015190915061073e9063ffffffff16876116cf565b826000815181106107515761075161172e565b67ffffffffffffffff90921660209283029190910190910152606083015161077f9063ffffffff16876116cf565b816000815181106107925761079261172e565b67ffffffffffffffff909216602092830291909101909101526040517f8e6d536a0000000000000000000000000000000000000000000000000000000081526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690638e6d536a9061081590869086906004016114c9565b60006040518083038186803b15801561082d57600080fd5b505afa158015610841573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610869919081019061110f565b90508060008151811061087e5761087e61172e565b60200260200101518910156108d55760405162461bcd60e51b815260206004820152601a60248201527f5044462f696e76616c69642d6e6574776f726b2d737570706c790000000000006044820152606401610382565b88156109405761092789826000815181106108f2576108f261172e565b60200260200101518660c001516cffffffffffffffffffffffffff1661091891906116b0565b61092291906115a0565b610e71565b6cffffffffffffffffffffffffff1660c0850152610948565b600060c08501525b509198975050505050505050565b336109696000546001600160a01b031690565b6001600160a01b0316146109bf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b6109c96000610c62565b565b6109d3610fe6565b6040517f83c34aaf00000000000000000000000000000000000000000000000000000000815263ffffffff841660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906383c34aaf9060240160a06040518083038186803b158015610a5457600080fd5b505afa158015610a68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8c91906111de565b9050610aa284848360800151846040015161069d565b949350505050565b600033610abf6000546001600160a01b031690565b6001600160a01b031614610b155760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b610b1e82610efa565b90505b919050565b33610b396000546001600160a01b031690565b6001600160a01b031614610b8f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610382565b6001600160a01b038116610c0b5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610382565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cc7610fe6565b6040517f4aac253d00000000000000000000000000000000000000000000000000000000815263ffffffff851660048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634aac253d906024016102c06040518083038186803b158015610d4957600080fd5b505afa158015610d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d81919061126d565b905060005b80610d90816116f8565b9150849050610da082600161157b565b8351610dad906002611605565b610db79190611605565b10610d86576000604051806101200160405280846000015160ff1681526020018360ff1681526020018763ffffffff168152602001846080015163ffffffff168152602001846040015163ffffffff168152602001846060015163ffffffff168152602001610e3b8486600001516002610e319190611605565b6109229190611605565b6cffffffffffffffffffffffffff1681526020018460c0015181526020018460a0015181525090508093505050505b9392505050565b60006cffffffffffffffffffffffffff821115610ef65760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203160448201527f30342062697473000000000000000000000000000000000000000000000000006064820152608401610382565b5090565b6002546000906001600160a01b03908116908316811415610f835760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610382565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e0810161102c611039565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b600082601f83011261106957600080fd5b60405161020080820182811067ffffffffffffffff8211171561108e5761108e611744565b60405281848281018710156110a257600080fd5b600092505b60108310156110d05780516110bb8161175a565b825260019290920191602091820191016110a7565b509195945050505050565b8051610b218161175a565b6000602082840312156110f857600080fd5b81356001600160a01b0381168114610e6a57600080fd5b6000602080838503121561112257600080fd5b825167ffffffffffffffff8082111561113a57600080fd5b818501915085601f83011261114e57600080fd5b81518181111561116057611160611744565b8060051b915061117184830161154a565b8181528481019084860184860187018a101561118c57600080fd5b600095505b838610156111af578051835260019590950194918601918601611191565b5098975050505050505050565b6000602082840312156111ce57600080fd5b81518015158114610e6a57600080fd5b600060a082840312156111f057600080fd5b60405160a0810181811067ffffffffffffffff8211171561121357611213611744565b6040528251815260208301516112288161175a565b6020820152604083015161123b8161176f565b6040820152606083015161124e8161176f565b606082015260808301516112618161175a565b60808201529392505050565b60006102c0828403121561128057600080fd5b611288611521565b825160ff8116811461129957600080fd5b81526112a7602084016110db565b60208201526112b8604084016110db565b60408201526112c9606084016110db565b60608201526112da608084016110db565b608082015260a083015160a08201526112f68460c08501611058565b60c08201529392505050565b60006020828403121561131457600080fd5b8151610e6a8161175a565b6000806040838503121561133257600080fd5b823561133d8161175a565b946020939093013593505050565b6000806000806080858703121561136157600080fd5b843561136c8161175a565b93506020850135925060408501356113838161175a565b915060608501356113938161176f565b939692955090935050565b8060005b60108110156113c757815163ffffffff168452602093840193909101906001016113a2565b50505050565b600081518084526020808501945080840160005b8381101561140757815167ffffffffffffffff16875295820195908201906001016113e1565b509495945050505050565b60ff815116825260ff6020820151166020830152604081015161143d604084018263ffffffff169052565b506060810151611455606084018263ffffffff169052565b50608081015161146d608084018263ffffffff169052565b5060a081015161148560a084018263ffffffff169052565b5060c08101516114a660c08401826cffffffffffffffffffffffffff169052565b5060e08101516114b960e084018261139e565b5061010001516102e09190910152565b6040815260006114dc60408301856113cd565b82810360208401526114ee81856113cd565b95945050505050565b61030081016104978284611412565b63ffffffff831681526103208101610e6a6020830184611412565b60405160e0810167ffffffffffffffff8111828210171561154457611544611744565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561157357611573611744565b604052919050565b600060ff821660ff84168060ff0382111561159857611598611718565b019392505050565b6000826115bd57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b808511156115fd5781600019048211156115e3576115e3611718565b808516156115f057918102915b93841c93908002906115c7565b509250929050565b6000610e6a60ff84168360008261161e57506001610497565b8161162b57506000610497565b8160018114611641576002811461164b57611667565b6001915050610497565b60ff84111561165c5761165c611718565b50506001821b610497565b5060208310610133831016604e8410600b841016171561168a575081810a610497565b61169483836115c2565b80600019048211156116a8576116a8611718565b029392505050565b60008160001904831182151516156116ca576116ca611718565b500290565b600067ffffffffffffffff838116908316818110156116f0576116f0611718565b039392505050565b600060ff821660ff81141561170f5761170f611718565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff8116811461176c57600080fd5b50565b67ffffffffffffffff8116811461176c57600080fdfea2646970667358221220d55bac8ee961bc22c530dcc98e239bfb8ad7b1a3ad04310d64ddbbabea6605b864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6CC25DB7 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xCE343BB6 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x284 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x2B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x20A JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x8BF02DF8 EQ PUSH2 0x239 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x24C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3EC018FC GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x3EC018FC EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x1DC JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1ED JUMPI DUP1 PUSH4 0x6665F32B EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x348B076 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x82D80FF EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0x840BBDD EQ PUSH2 0x163 JUMPI DUP1 PUSH4 0x3CD4B918 EQ PUSH2 0x1A2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x2CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x14F7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x155 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x125 JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x125 JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x1D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x49D JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1F5 PUSH2 0x60F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x118 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x134B JUMP JUMPDEST PUSH2 0x69D JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1F5 PUSH2 0x956 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x247 CALLDATASIZE PUSH1 0x4 PUSH2 0x131F JUMP JUMPDEST PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x18A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x297 PUSH2 0x292 CALLDATASIZE PUSH1 0x4 PUSH2 0x10E6 JUMP JUMPDEST PUSH2 0xAAA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x125 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x18A JUMP JUMPDEST PUSH2 0x1F5 PUSH2 0x2C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x10E6 JUMP JUMPDEST PUSH2 0xB26 JUMP JUMPDEST PUSH2 0x2D3 PUSH2 0xFE6 JUMP JUMPDEST CALLER PUSH2 0x2E6 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x314 JUMPI POP CALLER PUSH2 0x309 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x38B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x397 DUP5 DUP5 PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x1124E1DC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x1124E1DC SWAP1 PUSH2 0x401 SWAP1 DUP8 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1506 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x41B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x42F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x453 SWAP2 SWAP1 PUSH2 0x11BC JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH32 0x362B45FBCDB636BF7950CEF7AEB4D38E93501268C3627EB4FD7C68D1550EAEA9 DUP5 PUSH1 0x40 MLOAD PUSH2 0x48C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4A5 PUSH2 0xFE6 JUMP JUMPDEST CALLER PUSH2 0x4B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x50E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x51A DUP5 DUP5 PUSH2 0x9CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xCE336CE900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xCE336CE9 SWAP1 PUSH2 0x584 SWAP1 DUP8 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1506 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x59E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5B2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5D6 SWAP2 SWAP1 PUSH2 0x1302 JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH32 0x62230AD64212D08D65551FFDAB2C5EB6BE8C31BEA5D493CAC0A51A65F84758E9 DUP5 PUSH1 0x40 MLOAD PUSH2 0x48C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x669 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x67E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xC62 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x6A5 PUSH2 0xFE6 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D1 PUSH32 0x0 DUP7 PUSH2 0x15A0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6E0 DUP8 DUP7 DUP5 PUSH2 0xCBF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP3 SWAP4 POP PUSH1 0x0 SWAP3 SWAP2 POP PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP PUSH1 0x40 DUP5 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x73E SWAP1 PUSH4 0xFFFFFFFF AND DUP8 PUSH2 0x16CF JUMP JUMPDEST DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x751 JUMPI PUSH2 0x751 PUSH2 0x172E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0x77F SWAP1 PUSH4 0xFFFFFFFF AND DUP8 PUSH2 0x16CF JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x792 JUMPI PUSH2 0x792 PUSH2 0x172E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0x8E6D536A00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x8E6D536A SWAP1 PUSH2 0x815 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x82D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x841 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x869 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x110F JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x87E JUMPI PUSH2 0x87E PUSH2 0x172E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP10 LT ISZERO PUSH2 0x8D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5044462F696E76616C69642D6E6574776F726B2D737570706C79000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST DUP9 ISZERO PUSH2 0x940 JUMPI PUSH2 0x927 DUP10 DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x8F2 JUMPI PUSH2 0x8F2 PUSH2 0x172E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP7 PUSH1 0xC0 ADD MLOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x918 SWAP2 SWAP1 PUSH2 0x16B0 JUMP JUMPDEST PUSH2 0x922 SWAP2 SWAP1 PUSH2 0x15A0 JUMP JUMPDEST PUSH2 0xE71 JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP6 ADD MSTORE PUSH2 0x948 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP6 ADD MSTORE JUMPDEST POP SWAP2 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x969 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9BF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH2 0x9C9 PUSH1 0x0 PUSH2 0xC62 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x9D3 PUSH2 0xFE6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x83C34AAF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x83C34AAF SWAP1 PUSH1 0x24 ADD PUSH1 0xA0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA68 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA8C SWAP2 SWAP1 PUSH2 0x11DE JUMP JUMPDEST SWAP1 POP PUSH2 0xAA2 DUP5 DUP5 DUP4 PUSH1 0x80 ADD MLOAD DUP5 PUSH1 0x40 ADD MLOAD PUSH2 0x69D JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xABF PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB15 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH2 0xB1E DUP3 PUSH2 0xEFA JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0xB39 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xB8F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xC0B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0xCC7 PUSH2 0xFE6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x4AAC253D00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x4AAC253D SWAP1 PUSH1 0x24 ADD PUSH2 0x2C0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xD49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD5D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD81 SWAP2 SWAP1 PUSH2 0x126D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP1 PUSH2 0xD90 DUP2 PUSH2 0x16F8 JUMP JUMPDEST SWAP2 POP DUP5 SWAP1 POP PUSH2 0xDA0 DUP3 PUSH1 0x1 PUSH2 0x157B JUMP JUMPDEST DUP4 MLOAD PUSH2 0xDAD SWAP1 PUSH1 0x2 PUSH2 0x1605 JUMP JUMPDEST PUSH2 0xDB7 SWAP2 SWAP1 PUSH2 0x1605 JUMP JUMPDEST LT PUSH2 0xD86 JUMPI PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 DUP5 PUSH1 0x0 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x40 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x60 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3B DUP5 DUP7 PUSH1 0x0 ADD MLOAD PUSH1 0x2 PUSH2 0xE31 SWAP2 SWAP1 PUSH2 0x1605 JUMP JUMPDEST PUSH2 0x922 SWAP2 SWAP1 PUSH2 0x1605 JUMP JUMPDEST PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0xC0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0xA0 ADD MLOAD DUP2 MSTORE POP SWAP1 POP DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xEF6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x27 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x53616665436173743A2076616C756520646F65736E27742066697420696E2031 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x3034206269747300000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x382 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xF83 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x382 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x120 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xE0 DUP2 ADD PUSH2 0x102C PUSH2 0x1039 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1069 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x108E JUMPI PUSH2 0x108E PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x10A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x10D0 JUMPI DUP1 MLOAD PUSH2 0x10BB DUP2 PUSH2 0x175A JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x10A7 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xB21 DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1122 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x113A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x114E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x1160 JUMPI PUSH2 0x1160 PUSH2 0x1744 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL SWAP2 POP PUSH2 0x1171 DUP5 DUP4 ADD PUSH2 0x154A JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 DUP2 ADD SWAP1 DUP5 DUP7 ADD DUP5 DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x118C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x11AF JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH2 0x1191 JUMP JUMPDEST POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x11F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1213 JUMPI PUSH2 0x1213 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0x1228 DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH2 0x123B DUP2 PUSH2 0x176F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0x124E DUP2 PUSH2 0x176F JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0x1261 DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1280 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1288 PUSH2 0x1521 JUMP JUMPDEST DUP3 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1299 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x12A7 PUSH1 0x20 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x12B8 PUSH1 0x40 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x12C9 PUSH1 0x60 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x12DA PUSH1 0x80 DUP5 ADD PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP3 ADD MSTORE PUSH2 0x12F6 DUP5 PUSH1 0xC0 DUP6 ADD PUSH2 0x1058 JUMP JUMPDEST PUSH1 0xC0 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1314 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xE6A DUP2 PUSH2 0x175A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1332 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x133D DUP2 PUSH2 0x175A JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1361 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x136C DUP2 PUSH2 0x175A JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x1383 DUP2 PUSH2 0x175A JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x1393 DUP2 PUSH2 0x176F JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x13C7 JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x13A2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1407 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x13E1 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x143D PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x1455 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0x146D PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0x1485 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0x14A6 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x14B9 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0x139E JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x14DC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x13CD JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x14EE DUP2 DUP6 PUSH2 0x13CD JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x497 DUP3 DUP5 PUSH2 0x1412 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND DUP2 MSTORE PUSH2 0x320 DUP2 ADD PUSH2 0xE6A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1412 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1544 JUMPI PUSH2 0x1544 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1573 JUMPI PUSH2 0x1573 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1598 JUMPI PUSH2 0x1598 PUSH2 0x1718 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x15BD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 JUMPDEST DUP1 DUP6 GT ISZERO PUSH2 0x15FD JUMPI DUP2 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x15E3 JUMPI PUSH2 0x15E3 PUSH2 0x1718 JUMP JUMPDEST DUP1 DUP6 AND ISZERO PUSH2 0x15F0 JUMPI SWAP2 DUP2 MUL SWAP2 JUMPDEST SWAP4 DUP5 SHR SWAP4 SWAP1 DUP1 MUL SWAP1 PUSH2 0x15C7 JUMP JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE6A PUSH1 0xFF DUP5 AND DUP4 PUSH1 0x0 DUP3 PUSH2 0x161E JUMPI POP PUSH1 0x1 PUSH2 0x497 JUMP JUMPDEST DUP2 PUSH2 0x162B JUMPI POP PUSH1 0x0 PUSH2 0x497 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1641 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x164B JUMPI PUSH2 0x1667 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x497 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x165C JUMPI PUSH2 0x165C PUSH2 0x1718 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x497 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x168A JUMPI POP DUP2 DUP2 EXP PUSH2 0x497 JUMP JUMPDEST PUSH2 0x1694 DUP4 DUP4 PUSH2 0x15C2 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x16A8 JUMPI PUSH2 0x16A8 PUSH2 0x1718 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x16CA JUMPI PUSH2 0x16CA PUSH2 0x1718 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND DUP2 DUP2 LT ISZERO PUSH2 0x16F0 JUMPI PUSH2 0x16F0 PUSH2 0x1718 JUMP JUMPDEST SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 EQ ISZERO PUSH2 0x170F JUMPI PUSH2 0x170F PUSH2 0x1718 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x176C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x176C JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 JUMPDEST 0xAC DUP15 0xE9 PUSH2 0xBC22 0xC5 ADDRESS 0xDC 0xC9 DUP15 0x23 SWAP12 0xFB DUP11 0xD7 0xB1 LOG3 0xAD DIV BALANCE 0xD PUSH5 0xDDBBABEA66 SDIV 0xB8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "701:9181:53:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3582:598;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2176:36;;;;;;;;12474:25:94;;;12462:2;12447:18;2176:36:53;12429:76:94;1878:65:53;;;;;;;;-1:-1:-1;;;;;7610:55:94;;;7592:74;;7580:2;7565:18;1878:65:53;7547:125:94;1598:51:53;;;;;4681:584;;;;;;:::i;:::-;;:::i;1403:89:18:-;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;3147:129:19;;;:::i;:::-;;6785:1524:53;;;;;;:::i;:::-;;:::i;2055:31::-;;;;;2508:94:19;;;:::i;5735:501:53:-;;;;;;:::i;:::-;;:::i;1814:85:19:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;1710:39:53;;;;;1744:123:18;;;;;;:::i;:::-;;:::i;:::-;;;8306:14:94;;8299:22;8281:41;;8269:2;8254:18;1744:123:18;8236:92:94;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3582:598:53:-;3725:49;;:::i;:::-;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;11435:2:94;2840:99:18;;;11417:21:94;11474:2;11454:18;;;11447:30;11513:34;11493:18;;;11486:62;11584:8;11564:18;;;11557:36;11610:19;;2840:99:18;;;;;;;;;3790:79:53::1;3872:108;3916:7;3941:25;3872:26;:108::i;:::-;3990:73;::::0;;;;3790:190;;-1:-1:-1;;;;;;3990:23:53::1;:45;::::0;::::1;::::0;:73:::1;::::0;4036:7;;3790:190;;3990:73:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4103:7;4079:59;;;4112:25;4079:59;;;;12474:25:94::0;;12462:2;12447:18;;12429:76;4079:59:53::1;;;;;;;;4156:17:::0;-1:-1:-1;2949:1:18::1;3582:598:53::0;;;;:::o;4681:584::-;4814:49;;:::i;:::-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10722:2:94;3819:58:19;;;10704:21:94;10761:2;10741:18;;;10734:30;10800:26;10780:18;;;10773:54;10844:18;;3819:58:19;10694:174:94;3819:58:19;4879:79:53::1;4961:108;5005:7;5030:25;4961:26;:108::i;:::-;5079:72;::::0;;;;4879:190;;-1:-1:-1;;;;;;5079:23:53::1;:44;::::0;::::1;::::0;:72:::1;::::0;5124:7;;4879:190;;5079:72:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5188:7;5167:56;;;5197:25;5167:56;;;;12474:25:94::0;;12462:2;12447:18;;12429:76;3147:129:19;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;11075:2:94;4028:71:19;;;11057:21:94;11114:2;11094:18;;;11087:30;11153:33;11133:18;;;11126:61;11204:18;;4028:71:19;11047:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;6785:1524:53:-;7003:49;;:::i;:::-;7064:16;7083:39;7111:11;7083:25;:39;:::i;:::-;7064:58;;7133:79;7215:130;7260:7;7285:20;7323:8;7215:27;:130::i;:::-;7390:15;;;7403:1;7390:15;;;;;;;;;7133:212;;-1:-1:-1;7356:31:53;;7390:15;;;;;;;;;;-1:-1:-1;;7447:15:53;;;7460:1;7447:15;;;;;;;;;7356:49;;-1:-1:-1;7415:29:53;;7447:15;-1:-1:-1;7447:15:53;;;;;;;;;-1:-1:-1;;;7511:38:53;;;;7415:47;;-1:-1:-1;7494:55:53;;;;:14;:55;:::i;:::-;7473:15;7489:1;7473:18;;;;;;;;:::i;:::-;:76;;;;:18;;;;;;;;;;;:76;7595:36;;;;7578:53;;;;:14;:53;:::i;:::-;7559:13;7573:1;7559:16;;;;;;;;:::i;:::-;:72;;;;:16;;;;;;;;;;;:72;7688:103;;;;;7642:43;;-1:-1:-1;;;;;7688:6:53;:37;;;;:103;;7739:15;;7768:13;;7688:103;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7688:103:53;;;;;;;;;;;;:::i;:::-;7642:149;;7852:26;7879:1;7852:29;;;;;;;;:::i;:::-;;;;;;;7823:25;:58;;7802:131;;;;-1:-1:-1;;;7802:131:53;;9555:2:94;7802:131:53;;;9537:21:94;9594:2;9574:18;;;9567:30;9633:28;9613:18;;;9606:56;9679:18;;7802:131:53;9527:176:94;7802:131:53;7948:29;;7944:324;;8027:164;8140:25;8087:26;8114:1;8087:29;;;;;;;;:::i;:::-;;;;;;;8053:17;:31;;;:63;;;;;;:::i;:::-;8052:113;;;;:::i;:::-;8027:162;:164::i;:::-;7993:198;;:31;;;:198;7944:324;;;8256:1;8222:31;;;:35;7944:324;-1:-1:-1;8285:17:53;;6785:1524;-1:-1:-1;;;;;;;;6785:1524:53:o;2508:94:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10722:2:94;3819:58:19;;;10704:21:94;10761:2;10741:18;;;10734:30;10800:26;10780:18;;;10773:54;10844:18;;3819:58:19;10694:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;5735:501:53:-;5883:49;;:::i;:::-;5979:27;;;;;12684:10:94;12672:23;;5979:27:53;;;12654:42:94;5948:28:53;;5979:10;-1:-1:-1;;;;;5979:18:53;;;;12627::94;;5979:27:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5948:58;;6035:194;6091:7;6116:25;6159:4;:24;;;6201:4;:14;;;6035:38;:194::i;:::-;6016:213;5735:501;-1:-1:-1;;;;5735:501:53:o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10722:2:94;3819:58:19;;;10704:21:94;10761:2;10741:18;;;10734:30;10800:26;10780:18;;;10773:54;10844:18;;3819:58:19;10694:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:19;1744:123:18::0;;;:::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;10722:2:94;3819:58:19;;;10704:21:94;10761:2;10741:18;;;10734:30;10800:26;10780:18;;;10773:54;10844:18;;3819:58:19;10694:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;11842:2:94;2826:73:19::1;::::0;::::1;11824:21:94::0;11881:2;11861:18;;;11854:30;11920:34;11900:18;;;11893:62;11991:7;11971:18;;;11964:35;12016:19;;2826:73:19::1;11814:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;8712:1168:53:-;8875:49;;:::i;:::-;8983:38;;;;;12684:10:94;12672:23;;8983:38:53;;;12654:42:94;8936:44:53;;8983:16;-1:-1:-1;;;;;8983:29:53;;;;12627:18:94;;8983:38:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8936:85;;9032:17;9059:109;9076:13;;;;:::i;:::-;;-1:-1:-1;9157:9:53;;-1:-1:-1;9138:15:53;9076:13;9152:1;9138:15;:::i;:::-;9112:22;;9109:25;;:1;:25;:::i;:::-;9108:46;;;;:::i;:::-;:58;9059:109;;9178:79;9260:578;;;;;;;;9335:9;:22;;;9260:578;;;;;;9393:11;9260:578;;;;;;9444:21;9260:578;;;;;;9503:9;:28;;;9260:578;;;;;;9566:9;:25;;;9260:578;;;;;;9625:9;:24;;;9260:578;;;;;;9682:61;9719:11;9694:9;:22;;;9691:1;:25;;;;:::i;:::-;9690:40;;;;:::i;9682:61::-;9260:578;;;;;;9768:9;:15;;;9260:578;;;;9808:9;:15;;;9260:578;;;9178:660;;9856:17;9849:24;;;;;8712:1168;;;;;;:::o;1091:195:42:-;1149:7;1186:17;1176:27;;;1168:79;;;;-1:-1:-1;;;1168:79:42;;10314:2:94;1168:79:42;;;10296:21:94;10353:2;10333:18;;;10326:30;10392:34;10372:18;;;10365:62;10463:9;10443:18;;;10436:37;10490:19;;1168:79:42;10286:229:94;1168:79:42;-1:-1:-1;1272:6:42;1091:195::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;9910:2:94;2230:79:18;;;9892:21:94;9949:2;9929:18;;;9922:30;9988:34;9968:18;;;9961:62;10059:5;10039:18;;;10032:33;10082:19;;2230:79:18;9882:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:781:94:-;74:5;127:3;120:4;112:6;108:17;104:27;94:2;;145:1;142;135:12;94:2;178;172:9;200:3;242:2;234:6;230:15;311:6;299:10;296:22;275:18;263:10;260:34;257:62;254:2;;;322:18;;:::i;:::-;358:2;351:22;393:6;419;440:15;;;437:24;-1:-1:-1;434:2:94;;;474:1;471;464:12;434:2;496:1;487:10;;506:259;520:4;517:1;514:11;506:259;;;586:3;580:10;603:30;627:5;603:30;:::i;:::-;646:18;;540:1;533:9;;;;;687:4;711:12;;;;743;506:259;;;-1:-1:-1;783:6:94;;84:711;-1:-1:-1;;;;;84:711:94:o;800:136::-;878:13;;900:30;878:13;900:30;:::i;941:309::-;1000:6;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;1069:1;1066;1059:12;1021:2;1108:9;1095:23;-1:-1:-1;;;;;1151:5:94;1147:54;1140:5;1137:65;1127:2;;1216:1;1213;1206:12;1255:947;1350:6;1381:2;1424;1412:9;1403:7;1399:23;1395:32;1392:2;;;1440:1;1437;1430:12;1392:2;1473:9;1467:16;1502:18;1543:2;1535:6;1532:14;1529:2;;;1559:1;1556;1549:12;1529:2;1597:6;1586:9;1582:22;1572:32;;1642:7;1635:4;1631:2;1627:13;1623:27;1613:2;;1664:1;1661;1654:12;1613:2;1693;1687:9;1715:2;1711;1708:10;1705:2;;;1721:18;;:::i;:::-;1767:2;1764:1;1760:10;1750:20;;1790:28;1814:2;1810;1806:11;1790:28;:::i;:::-;1852:15;;;1883:12;;;;1915:11;;;1945;;;1941:20;;1938:33;-1:-1:-1;1935:2:94;;;1984:1;1981;1974:12;1935:2;2006:1;1997:10;;2016:156;2030:2;2027:1;2024:9;2016:156;;;2087:10;;2075:23;;2048:1;2041:9;;;;;2118:12;;;;2150;;2016:156;;;-1:-1:-1;2191:5:94;1361:841;-1:-1:-1;;;;;;;;1361:841:94:o;2207:277::-;2274:6;2327:2;2315:9;2306:7;2302:23;2298:32;2295:2;;;2343:1;2340;2333:12;2295:2;2375:9;2369:16;2428:5;2421:13;2414:21;2407:5;2404:32;2394:2;;2450:1;2447;2440:12;2489:961;2581:6;2634:3;2622:9;2613:7;2609:23;2605:33;2602:2;;;2651:1;2648;2641:12;2602:2;2684;2678:9;2726:3;2718:6;2714:16;2796:6;2784:10;2781:22;2760:18;2748:10;2745:34;2742:62;2739:2;;;2807:18;;:::i;:::-;2843:2;2836:22;2882:16;;2867:32;;2942:2;2927:18;;2921:25;2955:30;2921:25;2955:30;:::i;:::-;3013:2;3001:15;;2994:30;3069:2;3054:18;;3048:25;3082:32;3048:25;3082:32;:::i;:::-;3142:2;3130:15;;3123:32;3200:2;3185:18;;3179:25;3213:32;3179:25;3213:32;:::i;:::-;3273:2;3261:15;;3254:32;3331:3;3316:19;;3310:26;3345:32;3310:26;3345:32;:::i;:::-;3405:3;3393:16;;3386:33;3397:6;2592:858;-1:-1:-1;;;2592:858:94:o;3455:869::-;3553:6;3606:3;3594:9;3585:7;3581:23;3577:33;3574:2;;;3623:1;3620;3613:12;3574:2;3649:22;;:::i;:::-;3701:9;3695:16;3755:4;3746:7;3742:18;3733:7;3730:31;3720:2;;3775:1;3772;3765:12;3720:2;3788:22;;3842:48;3886:2;3871:18;;3842:48;:::i;:::-;3837:2;3830:5;3826:14;3819:72;3923:48;3967:2;3956:9;3952:18;3923:48;:::i;:::-;3918:2;3911:5;3907:14;3900:72;4004:48;4048:2;4037:9;4033:18;4004:48;:::i;:::-;3999:2;3992:5;3988:14;3981:72;4086:49;4130:3;4119:9;4115:19;4086:49;:::i;:::-;4080:3;4073:5;4069:15;4062:74;4190:3;4179:9;4175:19;4169:26;4163:3;4156:5;4152:15;4145:51;4229:64;4285:7;4279:3;4268:9;4264:19;4229:64;:::i;:::-;4223:3;4212:15;;4205:89;4216:5;3564:760;-1:-1:-1;;;3564:760:94:o;4329:249::-;4398:6;4451:2;4439:9;4430:7;4426:23;4422:32;4419:2;;;4467:1;4464;4457:12;4419:2;4499:9;4493:16;4518:30;4542:5;4518:30;:::i;4583:313::-;4650:6;4658;4711:2;4699:9;4690:7;4686:23;4682:32;4679:2;;;4727:1;4724;4717:12;4679:2;4766:9;4753:23;4785:30;4809:5;4785:30;:::i;:::-;4834:5;4886:2;4871:18;;;;4858:32;;-1:-1:-1;;;4669:227:94:o;4901:592::-;4984:6;4992;5000;5008;5061:3;5049:9;5040:7;5036:23;5032:33;5029:2;;;5078:1;5075;5068:12;5029:2;5117:9;5104:23;5136:30;5160:5;5136:30;:::i;:::-;5185:5;-1:-1:-1;5237:2:94;5222:18;;5209:32;;-1:-1:-1;5293:2:94;5278:18;;5265:32;5306;5265;5306;:::i;:::-;5357:7;-1:-1:-1;5416:2:94;5401:18;;5388:32;5429;5388;5429;:::i;:::-;5019:474;;;;-1:-1:-1;5019:474:94;;-1:-1:-1;;5019:474:94:o;5498:342::-;5590:5;5613:1;5623:211;5637:4;5634:1;5631:11;5623:211;;;5700:13;;5715:10;5696:30;5684:43;;5750:4;5774:12;;;;5809:15;;;;5657:1;5650:9;5623:211;;;5627:3;;5547:293;;:::o;5845:459::-;5897:3;5935:5;5929:12;5962:6;5957:3;5950:19;5988:4;6017:2;6012:3;6008:12;6001:19;;6054:2;6047:5;6043:14;6075:1;6085:194;6099:6;6096:1;6093:13;6085:194;;;6164:13;;6179:18;6160:38;6148:51;;6219:12;;;;6254:15;;;;6121:1;6114:9;6085:194;;;-1:-1:-1;6295:3:94;;5905:399;-1:-1:-1;;;;;5905:399:94:o;6309:915::-;6410:4;6402:5;6396:12;6392:23;6387:3;6380:36;6477:4;6469;6462:5;6458:16;6452:23;6448:34;6441:4;6436:3;6432:14;6425:58;6529:4;6522:5;6518:16;6512:23;6544:47;6585:4;6580:3;6576:14;6562:12;7423:10;7412:22;7400:35;;7390:51;6544:47;;6639:4;6632:5;6628:16;6622:23;6654:49;6697:4;6692:3;6688:14;6672;7423:10;7412:22;7400:35;;7390:51;6654:49;;6751:4;6744:5;6740:16;6734:23;6766:49;6809:4;6804:3;6800:14;6784;7423:10;7412:22;7400:35;;7390:51;6766:49;;6863:4;6856:5;6852:16;6846:23;6878:49;6921:4;6916:3;6912:14;6896;7423:10;7412:22;7400:35;;7390:51;6878:49;;6975:4;6968:5;6964:16;6958:23;6990:50;7034:4;7029:3;7025:14;7009;7306:28;7295:40;7283:53;;7273:69;6990:50;;7088:4;7081:5;7077:16;7071:23;7103:55;7152:4;7147:3;7143:14;7127;7103:55;:::i;:::-;-1:-1:-1;7209:6:94;7198:18;7192:25;7183:6;7174:16;;;;7167:51;6370:854::o;7677:459::-;7930:2;7919:9;7912:21;7893:4;7956:55;8007:2;7996:9;7992:18;7984:6;7956:55;:::i;:::-;8059:9;8051:6;8047:22;8042:2;8031:9;8027:18;8020:50;8087:43;8123:6;8115;8087:43;:::i;:::-;8079:51;7902:234;-1:-1:-1;;;;;7902:234:94:o;12046:277::-;12250:3;12235:19;;12263:54;12239:9;12299:6;12263:54;:::i;12707:363::-;12980:10;12968:23;;12950:42;;12937:3;12922:19;;13001:63;13060:2;13045:18;;13037:6;13001:63;:::i;13075:253::-;13147:2;13141:9;13189:4;13177:17;;13224:18;13209:34;;13245:22;;;13206:62;13203:2;;;13271:18;;:::i;:::-;13307:2;13300:22;13121:207;:::o;13333:334::-;13404:2;13398:9;13460:2;13450:13;;-1:-1:-1;;13446:86:94;13434:99;;13563:18;13548:34;;13584:22;;;13545:62;13542:2;;;13610:18;;:::i;:::-;13646:2;13639:22;13378:289;;-1:-1:-1;13378:289:94:o;13672:204::-;13710:3;13746:4;13743:1;13739:12;13778:4;13775:1;13771:12;13813:3;13807:4;13803:14;13798:3;13795:23;13792:2;;;13821:18;;:::i;:::-;13857:13;;13718:158;-1:-1:-1;;;13718:158:94:o;13881:274::-;13921:1;13947;13937:2;;-1:-1:-1;;;13979:1:94;13972:88;14083:4;14080:1;14073:15;14111:4;14108:1;14101:15;13937:2;-1:-1:-1;14140:9:94;;13927:228::o;14160:482::-;14249:1;14292:5;14249:1;14306:330;14327:7;14317:8;14314:21;14306:330;;;14446:4;-1:-1:-1;;14374:77:94;14368:4;14365:87;14362:2;;;14455:18;;:::i;:::-;14505:7;14495:8;14491:22;14488:2;;;14525:16;;;;14488:2;14604:22;;;;14564:15;;;;14306:330;;;14310:3;14224:418;;;;;:::o;14647:140::-;14705:5;14734:47;14775:4;14765:8;14761:19;14755:4;14841:5;14871:8;14861:2;;-1:-1:-1;14912:1:94;14926:5;;14861:2;14960:4;14950:2;;-1:-1:-1;14997:1:94;15011:5;;14950:2;15042:4;15060:1;15055:59;;;;15128:1;15123:130;;;;15035:218;;15055:59;15085:1;15076:10;;15099:5;;;15123:130;15160:3;15150:8;15147:17;15144:2;;;15167:18;;:::i;:::-;-1:-1:-1;;15223:1:94;15209:16;;15238:5;;15035:218;;15337:2;15327:8;15324:16;15318:3;15312:4;15309:13;15305:36;15299:2;15289:8;15286:16;15281:2;15275:4;15272:12;15268:35;15265:77;15262:2;;;-1:-1:-1;15374:19:94;;;15406:5;;15262:2;15453:34;15478:8;15472:4;15453:34;:::i;:::-;15583:6;-1:-1:-1;;15511:79:94;15502:7;15499:92;15496:2;;;15594:18;;:::i;:::-;15632:20;;14851:807;-1:-1:-1;;;14851:807:94:o;15663:228::-;15703:7;15829:1;-1:-1:-1;;15757:74:94;15754:1;15751:81;15746:1;15739:9;15732:17;15728:105;15725:2;;;15836:18;;:::i;:::-;-1:-1:-1;15876:9:94;;15715:176::o;15896:229::-;15935:4;15964:18;16032:10;;;;16002;;16054:12;;;16051:2;;;16069:18;;:::i;:::-;16106:13;;15944:181;-1:-1:-1;;;15944:181:94:o;16130:175::-;16167:3;16211:4;16204:5;16200:16;16240:4;16231:7;16228:17;16225:2;;;16248:18;;:::i;:::-;16297:1;16284:15;;16175:130;-1:-1:-1;;16175:130:94:o;16310:184::-;-1:-1:-1;;;16359:1:94;16352:88;16459:4;16456:1;16449:15;16483:4;16480:1;16473:15;16499:184;-1:-1:-1;;;16548:1:94;16541:88;16648:4;16645:1;16638:15;16672:4;16669:1;16662:15;16688:184;-1:-1:-1;;;16737:1:94;16730:88;16837:4;16834:1;16827:15;16861:4;16858:1;16851:15;16877:121;16962:10;16955:5;16951:22;16944:5;16941:33;16931:2;;16988:1;16985;16978:12;16931:2;16921:77;:::o;17003:129::-;17088:18;17081:5;17077:30;17070:5;17067:41;17057:2;;17122:1;17119;17112:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1215000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "calculatePrizeDistribution(uint32,uint256)": "infinite",
                "calculatePrizeDistributionWithDrawData(uint32,uint256,uint32,uint64)": "infinite",
                "claimOwnership()": "54508",
                "drawBuffer()": "infinite",
                "manager()": "2376",
                "minPickCost()": "infinite",
                "owner()": "2420",
                "pendingOwner()": "2397",
                "prizeDistributionBuffer()": "infinite",
                "prizeTierHistory()": "infinite",
                "pushPrizeDistribution(uint32,uint256)": "infinite",
                "renounceOwnership()": "28180",
                "setManager(address)": "30558",
                "setPrizeDistribution(uint32,uint256)": "infinite",
                "ticket()": "infinite",
                "transferOwnership(address)": "27959"
              },
              "internal": {
                "_calculatePrizeDistribution(uint32,uint32,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "calculatePrizeDistribution(uint32,uint256)": "8bf02df8",
              "calculatePrizeDistributionWithDrawData(uint32,uint256,uint32,uint64)": "6665f32b",
              "claimOwnership()": "4e71e0c8",
              "drawBuffer()": "ce343bb6",
              "manager()": "481c6a75",
              "minPickCost()": "082d80ff",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "prizeDistributionBuffer()": "0840bbdd",
              "prizeTierHistory()": "3cd4b918",
              "pushPrizeDistribution(uint32,uint256)": "0348b076",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "setPrizeDistribution(uint32,uint256)": "3ec018fc",
              "ticket()": "6cc25db7",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeTierHistory\",\"name\":\"_prizeTierHistory\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"_prizeDistributionBuffer\",\"type\":\"address\"},{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_minPickCost\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"PrizeDistributionPushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"PrizeDistributionSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"_totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"calculatePrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"_totalNetworkTicketSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"_beaconPeriodSeconds\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"_drawTimestamp\",\"type\":\"uint64\"}],\"name\":\"calculatePrizeDistributionWithDrawData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minPickCost\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeTierHistory\",\"outputs\":[{\"internalType\":\"contract IPrizeTierHistory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"_totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"pushPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"_totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"setPrizeDistribution\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc.\",\"events\":{\"PrizeDistributionPushed(uint32,uint256)\":{\"params\":{\"drawId\":\"The draw id for which the prize dist was pushed\",\"totalNetworkTicketSupply\":\"The total network ticket supply that was used to compute the cardinality and portion of picks\"}},\"PrizeDistributionSet(uint32,uint256)\":{\"params\":{\"drawId\":\"The draw id for which the prize dist was set\",\"totalNetworkTicketSupply\":\"The total network ticket supply that was used to compute the cardinality and portion of picks\"}}},\"kind\":\"dev\",\"methods\":{\"calculatePrizeDistribution(uint32,uint256)\":{\"params\":{\"_drawId\":\"The draw id to pull from the Draw Buffer and Prize Tier History\",\"_totalNetworkTicketSupply\":\"The total of all ticket supplies across all prize pools in this network\"},\"returns\":{\"_0\":\"PrizeDistribution using info from the Draw for the given draw id, total network ticket supply, and PrizeTier for the draw.\"}},\"calculatePrizeDistributionWithDrawData(uint32,uint256,uint32,uint64)\":{\"params\":{\"_beaconPeriodSeconds\":\"The beacon period in seconds\",\"_drawId\":\"The draw from which to use the Draw and\",\"_drawTimestamp\":\"The timestamp at which the draw RNG request started.\",\"_totalNetworkTicketSupply\":\"The sum of all ticket supplies across all prize pools on the network\"},\"returns\":{\"_0\":\"A PrizeDistribution based on the given params and PrizeTier for the passed draw id\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"pushPrizeDistribution(uint32,uint256)\":{\"params\":{\"_drawId\":\"The draw id to compute for\",\"_totalNetworkTicketSupply\":\"The total supply of tickets across all prize pools for the network that the ticket belongs to.\"},\"returns\":{\"_0\":\"The resulting Prize Distribution\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"setPrizeDistribution(uint32,uint256)\":{\"params\":{\"_drawId\":\"The draw id to compute for\",\"_totalNetworkTicketSupply\":\"The total supply of tickets across all prize pools for the network that the ticket belongs to.\"},\"returns\":{\"_0\":\"The resulting Prize Distribution\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"Prize Distribution Factory\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeDistributionPushed(uint32,uint256)\":{\"notice\":\"Emitted when a new Prize Distribution is pushed.\"},\"PrizeDistributionSet(uint32,uint256)\":{\"notice\":\"Emitted when a Prize Distribution is set (overrides another)\"}},\"kind\":\"user\",\"methods\":{\"calculatePrizeDistribution(uint32,uint256)\":{\"notice\":\"Calculates what the prize distribution will be, given a draw id and total network ticket supply.\"},\"calculatePrizeDistributionWithDrawData(uint32,uint256,uint32,uint64)\":{\"notice\":\"Calculates what the prize distribution will be, given a draw id and total network ticket supply.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"drawBuffer()\":{\"notice\":\"The draw buffer to pull the draw from\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"minPickCost()\":{\"notice\":\"The minimum cost of each pick.  Used to calculate the cardinality.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"prizeDistributionBuffer()\":{\"notice\":\"The prize distribution buffer to push and set.  This contract must be the manager or owner of the buffer.\"},\"prizeTierHistory()\":{\"notice\":\"The prize tier history to pull tier information from\"},\"pushPrizeDistribution(uint32,uint256)\":{\"notice\":\"Allows the owner or manager to push a new prize distribution onto the buffer. The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"setPrizeDistribution(uint32,uint256)\":{\"notice\":\"Allows the owner or manager to override an existing prize distribution in the buffer. The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\"},\"ticket()\":{\"notice\":\"The ticket whose average total supply will be measured to calculate the portion of picks\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The Prize Distribution Factory populates a Prize Distribution Buffer for a prize pool.  It uses a Prize Tier History, Draw Buffer and Ticket to compute the correct prize distribution.  It automatically sets the cardinality based on the minPickCost and the total network ticket supply.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol\":\"PrizeDistributionFactory\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/DrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\n\\n\\n/**\\n  * @title  PoolTogether V4 DrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\\n            To create a new Draw, the user requests a new random number from the RNG service.\\n            When the random number is available, the user can create the draw using the create() method\\n            which will push the draw onto the DrawBuffer.\\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\\n*/\\ncontract DrawBeacon is IDrawBeacon, Ownable {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Variables ============ */\\n\\n    /// @notice RNG contract interface\\n    RNGInterface internal rng;\\n\\n    /// @notice Current RNG Request\\n    RngRequest internal rngRequest;\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer internal drawBuffer;\\n\\n    /**\\n     * @notice RNG Request Timeout.  In fact, this is really a \\\"complete draw\\\" timeout.\\n     * @dev If the rng completes the award can still be cancelled.\\n     */\\n    uint32 internal rngTimeout;\\n\\n    /// @notice Seconds between beacon period request\\n    uint32 internal beaconPeriodSeconds;\\n\\n    /// @notice Epoch timestamp when beacon period can start\\n    uint64 internal beaconPeriodStartedAt;\\n\\n    /**\\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\\n     */\\n    uint32 internal nextDrawId;\\n\\n    /* ============ Structs ============ */\\n\\n    /**\\n     * @notice RNG Request\\n     * @param id          RNG request ID\\n     * @param lockBlock   Block number that the RNG request is locked\\n     * @param requestedAt Time when RNG is requested\\n     */\\n    struct RngRequest {\\n        uint32 id;\\n        uint32 lockBlock;\\n        uint64 requestedAt;\\n    }\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Emit when the DrawBeacon is deployed.\\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\\n     */\\n    event Deployed(\\n        uint32 nextDrawId,\\n        uint64 beaconPeriodStartedAt\\n    );\\n\\n    /* ============ Modifiers ============ */\\n\\n    modifier requireDrawNotStarted() {\\n        _requireDrawNotStarted();\\n        _;\\n    }\\n\\n    modifier requireCanStartDraw() {\\n        require(_isBeaconPeriodOver(), \\\"DrawBeacon/beacon-period-not-over\\\");\\n        require(!isRngRequested(), \\\"DrawBeacon/rng-already-requested\\\");\\n        _;\\n    }\\n\\n    modifier requireCanCompleteRngRequest() {\\n        require(isRngRequested(), \\\"DrawBeacon/rng-not-requested\\\");\\n        require(isRngCompleted(), \\\"DrawBeacon/rng-not-complete\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the DrawBeacon smart contract.\\n     * @param _owner Address of the DrawBeacon owner\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _rng The RNG service to use\\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        RNGInterface _rng,\\n        uint32 _nextDrawId,\\n        uint64 _beaconPeriodStart,\\n        uint32 _beaconPeriodSeconds,\\n        uint32 _rngTimeout\\n    ) Ownable(_owner) {\\n        require(_beaconPeriodStart > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        require(address(_rng) != address(0), \\\"DrawBeacon/rng-not-zero\\\");\\n        require(_nextDrawId >= 1, \\\"DrawBeacon/next-draw-id-gte-one\\\");\\n\\n        beaconPeriodStartedAt = _beaconPeriodStart;\\n        nextDrawId = _nextDrawId;\\n\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n        _setDrawBuffer(_drawBuffer);\\n        _setRngService(_rng);\\n        _setRngTimeout(_rngTimeout);\\n\\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\\n        emit BeaconPeriodStarted(_beaconPeriodStart);\\n    }\\n\\n    /* ============ Public Functions ============ */\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() public view override returns (bool) {\\n        return rng.isRequestComplete(rngRequest.id);\\n    }\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() public view override returns (bool) {\\n        return rngRequest.id != 0;\\n    }\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() public view override returns (bool) {\\n        if (rngRequest.requestedAt == 0) {\\n            return false;\\n        } else {\\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\\n        }\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canStartDraw() external view override returns (bool) {\\n        return _isBeaconPeriodOver() && !isRngRequested();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canCompleteDraw() external view override returns (bool) {\\n        return isRngRequested() && isRngCompleted();\\n    }\\n\\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\\n    /// @return The next beacon period start time\\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _currentTime()\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\\n        external\\n        view\\n        override\\n        returns (uint64)\\n    {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _time\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function cancelDraw() external override {\\n        require(isRngTimedOut(), \\\"DrawBeacon/rng-not-timedout\\\");\\n        uint32 requestId = rngRequest.id;\\n        uint32 lockBlock = rngRequest.lockBlock;\\n        delete rngRequest;\\n        emit DrawCancelled(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function completeDraw() external override requireCanCompleteRngRequest {\\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\\n        uint32 _nextDrawId = nextDrawId;\\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\\n        uint64 _time = _currentTime();\\n\\n        // create Draw struct\\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\\n            winningRandomNumber: randomNumber,\\n            drawId: _nextDrawId,\\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\\n            beaconPeriodSeconds: _beaconPeriodSeconds\\n        });\\n\\n        drawBuffer.pushDraw(_draw);\\n\\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\\n            _beaconPeriodStartedAt,\\n            _beaconPeriodSeconds,\\n            _time\\n        );\\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\\n        nextDrawId = _nextDrawId + 1;\\n\\n        // Reset the rngReqeust state so Beacon period can start again.\\n        delete rngRequest;\\n\\n        emit DrawCompleted(randomNumber);\\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\\n        return _beaconPeriodRemainingSeconds();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodEndAt() external view override returns (uint64) {\\n        return _beaconPeriodEndAt();\\n    }\\n\\n    function getBeaconPeriodSeconds() external view returns (uint32) {\\n        return beaconPeriodSeconds;\\n    }\\n\\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\\n        return beaconPeriodStartedAt;\\n    }\\n\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    function getNextDrawId() external view returns (uint32) {\\n        return nextDrawId;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function getLastRngLockBlock() external view override returns (uint32) {\\n        return rngRequest.lockBlock;\\n    }\\n\\n    function getLastRngRequestId() external view override returns (uint32) {\\n        return rngRequest.id;\\n    }\\n\\n    function getRngService() external view returns (RNGInterface) {\\n        return rng;\\n    }\\n\\n    function getRngTimeout() external view returns (uint32) {\\n        return rngTimeout;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function isBeaconPeriodOver() external view override returns (bool) {\\n        return _isBeaconPeriodOver();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawBuffer)\\n    {\\n        return _setDrawBuffer(newDrawBuffer);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function startDraw() external override requireCanStartDraw {\\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\\n\\n        if (feeToken != address(0) && requestFee > 0) {\\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\\n        }\\n\\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\\n        rngRequest.id = requestId;\\n        rngRequest.lockBlock = lockBlock;\\n        rngRequest.requestedAt = _currentTime();\\n\\n        emit DrawStarted(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\\n        _setRngTimeout(_rngTimeout);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngService(RNGInterface _rngService)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setRngService(_rngService);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param _rngService The address of the new RNG service interface\\n     */\\n    function _setRngService(RNGInterface _rngService) internal\\n    {\\n        rng = _rngService;\\n        emit RngServiceUpdated(_rngService);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start\\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     * @param _time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function _calculateNextBeaconPeriodStartTime(\\n        uint64 _beaconPeriodStartedAt,\\n        uint32 _beaconPeriodSeconds,\\n        uint64 _time\\n    ) internal pure returns (uint64) {\\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice returns the current time.  Used for testing.\\n     * @return The current time (block.timestamp)\\n     */\\n    function _currentTime() internal view virtual returns (uint64) {\\n        return uint64(block.timestamp);\\n    }\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends\\n     */\\n    function _beaconPeriodEndAt() internal view returns (uint64) {\\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\\n     * @return The number of seconds remaining until the prize can be awarded.\\n     */\\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\\n        uint64 endAt = _beaconPeriodEndAt();\\n        uint64 time = _currentTime();\\n\\n        if (endAt <= time) {\\n            return 0;\\n        }\\n\\n        return endAt - time;\\n    }\\n\\n    /**\\n     * @notice Returns whether the beacon period is over.\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function _isBeaconPeriodOver() internal view returns (bool) {\\n        return _beaconPeriodEndAt() <= _currentTime();\\n    }\\n\\n    /**\\n     * @notice Check to see draw is in progress.\\n     */\\n    function _requireDrawNotStarted() internal view {\\n        uint256 currentBlock = block.number;\\n\\n        require(\\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\\n            \\\"DrawBeacon/rng-in-flight\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param _newDrawBuffer  DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\\n        require(address(_newDrawBuffer) != address(0), \\\"DrawBeacon/draw-history-not-zero-address\\\");\\n\\n        require(\\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\\n            \\\"DrawBeacon/existing-draw-history-address\\\"\\n        );\\n\\n        drawBuffer = _newDrawBuffer;\\n\\n        emit DrawBufferUpdated(_newDrawBuffer);\\n\\n        return _newDrawBuffer;\\n    }\\n\\n    /**\\n     * @notice Sets the beacon period in seconds.\\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\\n        require(_beaconPeriodSeconds > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        beaconPeriodSeconds = _beaconPeriodSeconds;\\n\\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param _rngTimeout The RNG request timeout in seconds.\\n     */\\n    function _setRngTimeout(uint32 _rngTimeout) internal {\\n        require(_rngTimeout > 60, \\\"DrawBeacon/rng-timeout-gt-60-secs\\\");\\n        rngTimeout = _rngTimeout;\\n\\n        emit RngTimeoutSet(_rngTimeout);\\n    }\\n}\\n\",\"keccak256\":\"0xb12addf63f79aedc80fea67b0f36d405155f5b06a2a1cf018f6aee43aa4c26d6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeTierHistory.sol\\\";\\n\\n/**\\n * @title Prize Distribution Factory\\n * @author PoolTogether Inc.\\n * @notice The Prize Distribution Factory populates a Prize Distribution Buffer for a prize pool.  It uses a Prize Tier History, Draw Buffer and Ticket\\n * to compute the correct prize distribution.  It automatically sets the cardinality based on the minPickCost and the total network ticket supply.\\n */\\ncontract PrizeDistributionFactory is Manageable {\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /// @notice Emitted when a new Prize Distribution is pushed.\\n    /// @param drawId The draw id for which the prize dist was pushed\\n    /// @param totalNetworkTicketSupply The total network ticket supply that was used to compute the cardinality and portion of picks\\n    event PrizeDistributionPushed(uint32 indexed drawId, uint256 totalNetworkTicketSupply);\\n\\n    /// @notice Emitted when a Prize Distribution is set (overrides another)\\n    /// @param drawId The draw id for which the prize dist was set\\n    /// @param totalNetworkTicketSupply The total network ticket supply that was used to compute the cardinality and portion of picks\\n    event PrizeDistributionSet(uint32 indexed drawId, uint256 totalNetworkTicketSupply);\\n\\n    /// @notice The prize tier history to pull tier information from\\n    IPrizeTierHistory public immutable prizeTierHistory;\\n\\n    /// @notice The draw buffer to pull the draw from\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice The prize distribution buffer to push and set.  This contract must be the manager or owner of the buffer.\\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\\n\\n    /// @notice The ticket whose average total supply will be measured to calculate the portion of picks\\n    ITicket public immutable ticket;\\n\\n    /// @notice The minimum cost of each pick.  Used to calculate the cardinality.\\n    uint256 public immutable minPickCost;\\n\\n    constructor(\\n        address _owner,\\n        IPrizeTierHistory _prizeTierHistory,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionBuffer _prizeDistributionBuffer,\\n        ITicket _ticket,\\n        uint256 _minPickCost\\n    ) Ownable(_owner) {\\n        require(_owner != address(0), \\\"PDC/owner-zero\\\");\\n        require(address(_prizeTierHistory) != address(0), \\\"PDC/pth-zero\\\");\\n        require(address(_drawBuffer) != address(0), \\\"PDC/db-zero\\\");\\n        require(address(_prizeDistributionBuffer) != address(0), \\\"PDC/pdb-zero\\\");\\n        require(address(_ticket) != address(0), \\\"PDC/ticket-zero\\\");\\n        require(_minPickCost > 0, \\\"PDC/pick-cost-gt-zero\\\");\\n\\n        minPickCost = _minPickCost;\\n        prizeTierHistory = _prizeTierHistory;\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionBuffer = _prizeDistributionBuffer;\\n        ticket = _ticket;\\n    }\\n\\n    /**\\n     * @notice Allows the owner or manager to push a new prize distribution onto the buffer.\\n     * The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\\n     * @param _drawId The draw id to compute for\\n     * @param _totalNetworkTicketSupply The total supply of tickets across all prize pools for the network that the ticket belongs to.\\n     * @return The resulting Prize Distribution\\n     */\\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply)\\n        external\\n        onlyManagerOrOwner\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        IPrizeDistributionBuffer.PrizeDistribution\\n            memory prizeDistribution = calculatePrizeDistribution(\\n                _drawId,\\n                _totalNetworkTicketSupply\\n            );\\n        prizeDistributionBuffer.pushPrizeDistribution(_drawId, prizeDistribution);\\n\\n        emit PrizeDistributionPushed(_drawId, _totalNetworkTicketSupply);\\n\\n        return prizeDistribution;\\n    }\\n\\n    /**\\n     * @notice Allows the owner or manager to override an existing prize distribution in the buffer.\\n     * The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\\n     * @param _drawId The draw id to compute for\\n     * @param _totalNetworkTicketSupply The total supply of tickets across all prize pools for the network that the ticket belongs to.\\n     * @return The resulting Prize Distribution\\n     */\\n    function setPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply)\\n        external\\n        onlyOwner\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        IPrizeDistributionBuffer.PrizeDistribution\\n            memory prizeDistribution = calculatePrizeDistribution(\\n                _drawId,\\n                _totalNetworkTicketSupply\\n            );\\n        prizeDistributionBuffer.setPrizeDistribution(_drawId, prizeDistribution);\\n\\n        emit PrizeDistributionSet(_drawId, _totalNetworkTicketSupply);\\n\\n        return prizeDistribution;\\n    }\\n\\n    /**\\n     * @notice Calculates what the prize distribution will be, given a draw id and total network ticket supply.\\n     * @param _drawId The draw id to pull from the Draw Buffer and Prize Tier History\\n     * @param _totalNetworkTicketSupply The total of all ticket supplies across all prize pools in this network\\n     * @return PrizeDistribution using info from the Draw for the given draw id, total network ticket supply, and PrizeTier for the draw.\\n     */\\n    function calculatePrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply)\\n        public\\n        view\\n        virtual\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        IDrawBeacon.Draw memory draw = drawBuffer.getDraw(_drawId);\\n        return\\n            calculatePrizeDistributionWithDrawData(\\n                _drawId,\\n                _totalNetworkTicketSupply,\\n                draw.beaconPeriodSeconds,\\n                draw.timestamp\\n            );\\n    }\\n\\n    /**\\n     * @notice Calculates what the prize distribution will be, given a draw id and total network ticket supply.\\n     * @param _drawId The draw from which to use the Draw and\\n     * @param _totalNetworkTicketSupply The sum of all ticket supplies across all prize pools on the network\\n     * @param _beaconPeriodSeconds The beacon period in seconds\\n     * @param _drawTimestamp The timestamp at which the draw RNG request started.\\n     * @return A PrizeDistribution based on the given params and PrizeTier for the passed draw id\\n     */\\n    function calculatePrizeDistributionWithDrawData(\\n        uint32 _drawId,\\n        uint256 _totalNetworkTicketSupply,\\n        uint32 _beaconPeriodSeconds,\\n        uint64 _drawTimestamp\\n    ) public view virtual returns (IPrizeDistributionBuffer.PrizeDistribution memory) {\\n        uint256 maxPicks = _totalNetworkTicketSupply / minPickCost;\\n\\n        IPrizeDistributionBuffer.PrizeDistribution\\n            memory prizeDistribution = _calculatePrizeDistribution(\\n                _drawId,\\n                _beaconPeriodSeconds,\\n                maxPicks\\n            );\\n\\n        uint64[] memory startTimestamps = new uint64[](1);\\n        uint64[] memory endTimestamps = new uint64[](1);\\n\\n        startTimestamps[0] = _drawTimestamp - prizeDistribution.startTimestampOffset;\\n        endTimestamps[0] = _drawTimestamp - prizeDistribution.endTimestampOffset;\\n\\n        uint256[] memory ticketAverageTotalSupplies = ticket.getAverageTotalSuppliesBetween(\\n            startTimestamps,\\n            endTimestamps\\n        );\\n\\n        require(\\n            _totalNetworkTicketSupply >= ticketAverageTotalSupplies[0],\\n            \\\"PDF/invalid-network-supply\\\"\\n        );\\n\\n        if (_totalNetworkTicketSupply > 0) {\\n            prizeDistribution.numberOfPicks = uint256(\\n                (prizeDistribution.numberOfPicks * ticketAverageTotalSupplies[0]) /\\n                    _totalNetworkTicketSupply\\n            ).toUint104();\\n        } else {\\n            prizeDistribution.numberOfPicks = 0;\\n        }\\n\\n        return prizeDistribution;\\n    }\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _drawId drawId\\n     * @param _startTimestampOffset The start timestamp offset to use for the prize distribution\\n     * @param _maxPicks The maximum picks that the distribution should allow.  The Prize Distribution's numberOfPicks will be less than or equal to this number.\\n     * @return prizeDistribution\\n     */\\n    function _calculatePrizeDistribution(\\n        uint32 _drawId,\\n        uint32 _startTimestampOffset,\\n        uint256 _maxPicks\\n    ) internal view virtual returns (IPrizeDistributionBuffer.PrizeDistribution memory) {\\n        IPrizeTierHistory.PrizeTier memory prizeTier = prizeTierHistory.getPrizeTier(_drawId);\\n\\n        uint8 cardinality;\\n        do {\\n            cardinality++;\\n        } while ((2**prizeTier.bitRangeSize)**(cardinality + 1) < _maxPicks);\\n\\n        IPrizeDistributionBuffer.PrizeDistribution\\n            memory prizeDistribution = IPrizeDistributionBuffer.PrizeDistribution({\\n                bitRangeSize: prizeTier.bitRangeSize,\\n                matchCardinality: cardinality,\\n                startTimestampOffset: _startTimestampOffset,\\n                endTimestampOffset: prizeTier.endTimestampOffset,\\n                maxPicksPerUser: prizeTier.maxPicksPerUser,\\n                expiryDuration: prizeTier.expiryDuration,\\n                numberOfPicks: uint256((2**prizeTier.bitRangeSize)**cardinality).toUint104(),\\n                tiers: prizeTier.tiers,\\n                prize: prizeTier.prize\\n            });\\n\\n        return prizeDistribution;\\n    }\\n}\\n\",\"keccak256\":\"0x32a0003c269c557edae60523efde42f97899a34b84455473d645b3603607c98e\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/DrawBeacon.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IPrizeTierHistory\\n * @author PoolTogether Inc Team\\n * @notice IPrizeTierHistory is the base contract for PrizeTierHistory\\n */\\ninterface IPrizeTierHistory {\\n    /**\\n     * @notice Linked Draw and PrizeDistribution parameters storage schema\\n     */\\n    struct PrizeTier {\\n        uint8 bitRangeSize;\\n        uint32 drawId;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint32 endTimestampOffset;\\n        uint256 prize;\\n        uint32[16] tiers;\\n    }\\n\\n    /**\\n     * @notice Emit when new PrizeTier is added to history\\n     * @param drawId    Draw ID\\n     * @param prizeTier PrizeTier parameters\\n     */\\n    event PrizeTierPushed(uint32 indexed drawId, PrizeTier prizeTier);\\n\\n    /**\\n     * @notice Emit when existing PrizeTier is updated in history\\n     * @param drawId    Draw ID\\n     * @param prizeTier PrizeTier parameters\\n     */\\n    event PrizeTierSet(uint32 indexed drawId, PrizeTier prizeTier);\\n\\n    /**\\n     * @notice Push PrizeTierHistory struct onto history array.\\n     * @dev    Callable only by owner or manager,\\n     * @param drawPrizeDistribution New PrizeTierHistory struct\\n     */\\n    function push(PrizeTier calldata drawPrizeDistribution) external;\\n\\n    function replace(PrizeTier calldata _prizeTier) external;\\n\\n    /**\\n     * @notice Read PrizeTierHistory struct from history array.\\n     * @param drawId Draw ID\\n     * @return prizeTier\\n     */\\n    function getPrizeTier(uint32 drawId) external view returns (PrizeTier memory prizeTier);\\n\\n    /**\\n     * @notice Read first Draw ID used to initialize history\\n     * @return Draw ID of first PrizeTier record\\n     */\\n    function getOldestDrawId() external view returns (uint32);\\n\\n    function getNewestDrawId() external view returns (uint32);\\n\\n    /**\\n     * @notice Read PrizeTierHistory List from history array.\\n     * @param drawIds Draw ID array\\n     * @return prizeTierList\\n     */\\n    function getPrizeTierList(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeTier[] memory prizeTierList);\\n\\n    /**\\n     * @notice Push PrizeTierHistory struct onto history array.\\n     * @dev    Callable only by owner.\\n     * @param prizeTier Updated PrizeTierHistory struct\\n     * @return drawId Draw ID linked to PrizeTierHistory\\n     */\\n    function popAndPush(PrizeTier calldata prizeTier) external returns (uint32 drawId);\\n\\n    function getPrizeTierAtIndex(uint256 index) external view returns (PrizeTier memory);\\n\\n    /**\\n     * @notice Returns the number of Prize Tier structs pushed\\n     * @return The number of prize tiers that have been pushed\\n     */\\n    function count() external view returns (uint256);\\n}\\n\",\"keccak256\":\"0xd521322f630dfcb577a28bdbdc0f13a17ef1eb7152d3daa193dd76e1be3d8e7c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol:PrizeDistributionFactory",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol:PrizeDistributionFactory",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol:PrizeDistributionFactory",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "events": {
              "PrizeDistributionPushed(uint32,uint256)": {
                "notice": "Emitted when a new Prize Distribution is pushed."
              },
              "PrizeDistributionSet(uint32,uint256)": {
                "notice": "Emitted when a Prize Distribution is set (overrides another)"
              }
            },
            "kind": "user",
            "methods": {
              "calculatePrizeDistribution(uint32,uint256)": {
                "notice": "Calculates what the prize distribution will be, given a draw id and total network ticket supply."
              },
              "calculatePrizeDistributionWithDrawData(uint32,uint256,uint32,uint64)": {
                "notice": "Calculates what the prize distribution will be, given a draw id and total network ticket supply."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "drawBuffer()": {
                "notice": "The draw buffer to pull the draw from"
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "minPickCost()": {
                "notice": "The minimum cost of each pick.  Used to calculate the cardinality."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "prizeDistributionBuffer()": {
                "notice": "The prize distribution buffer to push and set.  This contract must be the manager or owner of the buffer."
              },
              "prizeTierHistory()": {
                "notice": "The prize tier history to pull tier information from"
              },
              "pushPrizeDistribution(uint32,uint256)": {
                "notice": "Allows the owner or manager to push a new prize distribution onto the buffer. The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "setPrizeDistribution(uint32,uint256)": {
                "notice": "Allows the owner or manager to override an existing prize distribution in the buffer. The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality."
              },
              "ticket()": {
                "notice": "The ticket whose average total supply will be measured to calculate the portion of picks"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The Prize Distribution Factory populates a Prize Distribution Buffer for a prize pool.  It uses a Prize Tier History, Draw Buffer and Ticket to compute the correct prize distribution.  It automatically sets the cardinality based on the minPickCost and the total network ticket supply.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-periphery/contracts/PrizeFlush.sol": {
        "PrizeFlush": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_destination",
                  "type": "address"
                },
                {
                  "internalType": "contract IStrategy",
                  "name": "_strategy",
                  "type": "address"
                },
                {
                  "internalType": "contract IReserve",
                  "name": "_reserve",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "destination",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IReserve",
                  "name": "reserve",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IStrategy",
                  "name": "strategy",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "address",
                  "name": "destination",
                  "type": "address"
                }
              ],
              "name": "DestinationSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "destination",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Flushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": "contract IReserve",
                  "name": "reserve",
                  "type": "address"
                }
              ],
              "name": "ReserveSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "contract IStrategy",
                  "name": "strategy",
                  "type": "address"
                }
              ],
              "name": "StrategySet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "flush",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDestination",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getReserve",
              "outputs": [
                {
                  "internalType": "contract IReserve",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getStrategy",
              "outputs": [
                {
                  "internalType": "contract IStrategy",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_destination",
                  "type": "address"
                }
              ],
              "name": "setDestination",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IReserve",
                  "name": "_reserve",
                  "type": "address"
                }
              ],
              "name": "setReserve",
              "outputs": [
                {
                  "internalType": "contract IReserve",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IStrategy",
                  "name": "_strategy",
                  "type": "address"
                }
              ],
              "name": "setStrategy",
              "outputs": [
                {
                  "internalType": "contract IStrategy",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address,address,address)": {
                "params": {
                  "destination": "Destination address",
                  "reserve": "Strategy address",
                  "strategy": "Reserve address"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_destination": "Destination address",
                  "_owner": "Prize Flush owner address",
                  "_reserve": "Reserve address",
                  "_strategy": "Strategy address"
                }
              },
              "flush()": {
                "details": "Captures interest, checkpoint data and transfers tokens to final destination.",
                "returns": {
                  "_0": "True if operation is successful."
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "stateVariables": {
              "destination": {
                "details": "Should be set to the PrizeDistributor address."
              }
            },
            "title": "PoolTogether V4 PrizeFlush",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_13296": {
                  "entryPoint": null,
                  "id": 13296,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDestination_13481": {
                  "entryPoint": 262,
                  "id": 13481,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 182,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setReserve_13506": {
                  "entryPoint": 399,
                  "id": 13506,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setStrategy_13531": {
                  "entryPoint": 521,
                  "id": 13531,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_addresst_contract$_IStrategy_$9104t_contract$_IReserve_$9090_fromMemory": {
                  "entryPoint": 643,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_encode_tuple_t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 747,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:1963:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "181:522:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "228:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "237:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "240:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "230:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "230:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "230:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "202:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "211:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "223:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "191:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "253:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "272:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "266:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "266:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "257:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "316:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "291:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "291:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "291:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "331:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "341:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "331:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "355:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "380:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "391:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "376:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "376:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "370:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "370:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "359:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "429:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "404:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "404:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "404:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "446:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "456:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "446:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "472:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "497:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "508:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "493:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "493:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "487:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "487:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "476:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "546:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "521:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "521:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "521:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "563:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "573:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "563:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "589:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "614:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "625:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "610:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "610:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "604:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "604:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "593:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "663:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "638:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "638:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "638:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "680:17:94",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "690:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "680:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_contract$_IStrategy_$9104t_contract$_IReserve_$9090_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "123:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "134:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "146:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "154:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "162:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "170:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:689:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "882:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "899:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "910:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "892:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "892:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "892:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "933:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "944:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "929:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "929:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "949:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "922:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "922:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "922:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "972:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "983:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "968:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "968:18:94"
                                  },
                                  {
                                    "hexValue": "466c7573682f73747261746567792d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "988:33:94",
                                    "type": "",
                                    "value": "Flush/strategy-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "961:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1031:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1043:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1054:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1039:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1039:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1031:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "859:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "873:4:94",
                            "type": ""
                          }
                        ],
                        "src": "708:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1242:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1259:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1270:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1252:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1252:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1252:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1293:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1304:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1289:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1289:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1309:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1282:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1282:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1282:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1332:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1343:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1328:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1328:18:94"
                                  },
                                  {
                                    "hexValue": "466c7573682f726573657276652d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1348:32:94",
                                    "type": "",
                                    "value": "Flush/reserve-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1321:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1321:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1321:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1390:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1402:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1413:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1398:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1398:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1390:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1219:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1233:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1068:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1601:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1618:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1629:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1611:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1611:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1611:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1652:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1663:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1648:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1668:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1641:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1641:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1641:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1691:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1702:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1687:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1687:18:94"
                                  },
                                  {
                                    "hexValue": "466c7573682f64657374696e6174696f6e2d6e6f742d7a65726f2d6164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1707:34:94",
                                    "type": "",
                                    "value": "Flush/destination-not-zero-addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1680:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1680:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1680:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1762:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1773:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1758:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1758:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1778:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1751:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1751:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1751:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1792:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1804:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1815:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1792:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1578:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1592:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1427:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1875:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1939:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1948:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1951:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1941:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1941:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1941:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1898:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1909:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1924:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1929:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1920:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1920:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1933:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1916:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1916:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1905:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1905:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1895:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1895:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1888:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1888:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1885:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1864:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1830:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_addresst_contract$_IStrategy_$9104t_contract$_IReserve_$9090_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := mload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Flush/strategy-not-zero-address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"Flush/reserve-not-zero-address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"Flush/destination-not-zero-addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620010cf380380620010cf833981016040819052620000349162000283565b836200004081620000b6565b506200004c8362000106565b62000057816200018f565b620000628262000209565b816001600160a01b0316816001600160a01b0316846001600160a01b03167fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808260405160405180910390a45050505062000304565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166200016d5760405162461bcd60e51b815260206004820152602260248201527f466c7573682f64657374696e6174696f6e2d6e6f742d7a65726f2d6164647265604482015261737360f01b60648201526084015b60405180910390fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038116620001e75760405162461bcd60e51b815260206004820152601e60248201527f466c7573682f726573657276652d6e6f742d7a65726f2d616464726573730000604482015260640162000164565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038116620002615760405162461bcd60e51b815260206004820152601f60248201527f466c7573682f73747261746567792d6e6f742d7a65726f2d6164647265737300604482015260640162000164565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080608085870312156200029a57600080fd5b8451620002a781620002eb565b6020860151909450620002ba81620002eb565b6040860151909350620002cd81620002eb565b6060860151909250620002e081620002eb565b939692955090935050565b6001600160a01b03811681146200030157600080fd5b50565b610dbb80620003146000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636b9f96ea1161008c5780639cecc80a116100665780639cecc80a146101ad578063d0ebdbe7146101c0578063e30c3978146101d3578063f2fde38b146101e457600080fd5b80636b9f96ea1461017c578063715018a6146101945780638da5cb5b1461019c57600080fd5b806333a100ca116100c857806333a100ca1461013d578063481c6a75146101505780634e71e0c81461016157806359bf5d391461016b57600080fd5b806307da0603146100ef5780630a0a05e61461011957806316ad95421461012c575b600080fd5b6005546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6100fc610127366004610d13565b6101f7565b6003546001600160a01b03166100fc565b6100fc61014b366004610d13565b6102b1565b6002546001600160a01b03166100fc565b61016961035e565b005b6004546001600160a01b03166100fc565b6101846103ec565b6040519015158152602001610110565b61016961073d565b6000546001600160a01b03166100fc565b6100fc6101bb366004610d13565b6107b2565b6101846101ce366004610d13565b61085f565b6001546001600160a01b03166100fc565b6101696101f2366004610d13565b6108d9565b60003361020c6000546001600160a01b031690565b6001600160a01b0316146102675760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b61027082610a15565b6040516001600160a01b03831681527f02b0c42ff9b0e5574a8fb272d0d3912de57184ca7a14f102643fb371a89bc213906020015b60405180910390a15090565b6000336102c66000546001600160a01b031690565b6001600160a01b03161461031c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b61032582610ac0565b6040516001600160a01b03831681527fe70d79dad95c835bdd87e9cf4665651c9e5abb3b756e4fd2bf45f29c95c3aa40906020016102a5565b6001546001600160a01b031633146103b85760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161025e565b6001546103cd906001600160a01b0316610b45565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000336104016002546001600160a01b031690565b6001600160a01b0316148061042f5750336104246000546001600160a01b031690565b6001600160a01b0316145b6104a15760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161025e565b600560009054906101000a90046001600160a01b03166001600160a01b031663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156104f157600080fd5b505af1158015610505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105299190610d54565b5060048054604080517f21df0da700000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169260009284926321df0da79281810192602092909190829003018186803b15801561058c57600080fd5b505afa1580156105a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c49190610d37565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301529192506000918316906370a082319060240160206040518083038186803b15801561062457600080fd5b505afa158015610638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065c9190610d54565b90508015610733576003546040517f205c28780000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201819052602482018490529185169063205c287890604401600060405180830381600087803b1580156106cd57600080fd5b505af11580156106e1573d6000803e3d6000fd5b50505050806001600160a01b03167f43a46ac5237b9605f9ffdc5ca9e3ada3bea496bd00815441705ff59446129fb18360405161072091815260200190565b60405180910390a2600194505050505090565b6000935050505090565b336107506000546001600160a01b031690565b6001600160a01b0316146107a65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b6107b06000610b45565b565b6000336107c76000546001600160a01b031690565b6001600160a01b03161461081d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b61082682610ba2565b6040516001600160a01b03831681527ffbebf27e430f83725e26527d071ece14a3542fb0ab947b63747e1739708378b5906020016102a5565b6000336108746000546001600160a01b031690565b6001600160a01b0316146108ca5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b6108d382610c27565b92915050565b336108ec6000546001600160a01b031690565b6001600160a01b0316146109425760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b6001600160a01b0381166109be5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161025e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6001600160a01b038116610a915760405162461bcd60e51b815260206004820152602260248201527f466c7573682f64657374696e6174696f6e2d6e6f742d7a65726f2d616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161025e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b038116610b165760405162461bcd60e51b815260206004820152601f60248201527f466c7573682f73747261746567792d6e6f742d7a65726f2d6164647265737300604482015260640161025e565b6005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116610bf85760405162461bcd60e51b815260206004820152601e60248201527f466c7573682f726573657276652d6e6f742d7a65726f2d616464726573730000604482015260640161025e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6002546000906001600160a01b03908116908316811415610cb05760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161025e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600060208284031215610d2557600080fd5b8135610d3081610d6d565b9392505050565b600060208284031215610d4957600080fd5b8151610d3081610d6d565b600060208284031215610d6657600080fd5b5051919050565b6001600160a01b0381168114610d8257600080fd5b5056fea2646970667358221220d35322ef71f5bacc4e26cd9832feff429826b6773203b309dd632ac51fd9033c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x10CF CODESIZE SUB DUP1 PUSH3 0x10CF DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x283 JUMP JUMPDEST DUP4 PUSH3 0x40 DUP2 PUSH3 0xB6 JUMP JUMPDEST POP PUSH3 0x4C DUP4 PUSH3 0x106 JUMP JUMPDEST PUSH3 0x57 DUP2 PUSH3 0x18F JUMP JUMPDEST PUSH3 0x62 DUP3 PUSH3 0x209 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP PUSH3 0x304 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x16D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F64657374696E6174696F6E2D6E6F742D7A65726F2D6164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x1E7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F726573657276652D6E6F742D7A65726F2D616464726573730000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x164 JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x261 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F73747261746567792D6E6F742D7A65726F2D6164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x164 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x29A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH3 0x2A7 DUP2 PUSH3 0x2EB JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP PUSH3 0x2BA DUP2 PUSH3 0x2EB JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP PUSH3 0x2CD DUP2 PUSH3 0x2EB JUMP JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH3 0x2E0 DUP2 PUSH3 0x2EB JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x301 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xDBB DUP1 PUSH3 0x314 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6B9F96EA GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9CECC80A GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9CECC80A EQ PUSH2 0x1AD JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1C0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6B9F96EA EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x194 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x19C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33A100CA GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x33A100CA EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x150 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x59BF5D39 EQ PUSH2 0x16B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7DA0603 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0xA0A05E6 EQ PUSH2 0x119 JUMPI DUP1 PUSH4 0x16AD9542 EQ PUSH2 0x12C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH2 0x127 CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x1F7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0xFC PUSH2 0x14B CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x2B1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0x169 PUSH2 0x35E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0x184 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x110 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x73D JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0xFC PUSH2 0x1BB CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x7B2 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x1CE CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0x169 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x8D9 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x20C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x267 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x270 DUP3 PUSH2 0xA15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH32 0x2B0C42FF9B0E5574A8FB272D0D3912DE57184CA7A14F102643FB371A89BC213 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x2C6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x31C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x325 DUP3 PUSH2 0xAC0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH32 0xE70D79DAD95C835BDD87E9CF4665651C9E5ABB3B756E4FD2BF45F29C95C3AA40 SWAP1 PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3B8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x3CD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB45 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x401 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x42F JUMPI POP CALLER PUSH2 0x424 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x4A1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE4FC6B6D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x505 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x529 SWAP2 SWAP1 PUSH2 0xD54 JUMP JUMPDEST POP PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x21DF0DA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP3 PUSH1 0x0 SWAP3 DUP5 SWAP3 PUSH4 0x21DF0DA7 SWAP3 DUP2 DUP2 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x58C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5A0 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5C4 SWAP2 SWAP1 PUSH2 0xD37 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 DUP4 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x624 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x638 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x65C SWAP2 SWAP1 PUSH2 0xD54 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x733 JUMPI PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x205C287800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE SWAP2 DUP6 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6E1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x43A46AC5237B9605F9FFDC5CA9E3ADA3BEA496BD00815441705FF59446129FB1 DUP4 PUSH1 0x40 MLOAD PUSH2 0x720 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP5 POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST CALLER PUSH2 0x750 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x7B0 PUSH1 0x0 PUSH2 0xB45 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x7C7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x81D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x826 DUP3 PUSH2 0xBA2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH32 0xFBEBF27E430F83725E26527D071ECE14A3542FB0AB947B63747E1739708378B5 SWAP1 PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x874 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8CA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x8D3 DUP3 PUSH2 0xC27 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x8EC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x942 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xA91 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F64657374696E6174696F6E2D6E6F742D7A65726F2D6164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xB16 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F73747261746567792D6E6F742D7A65726F2D6164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xBF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F726573657276652D6E6F742D7A65726F2D616464726573730000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xCB0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD25 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xD30 DUP2 PUSH2 0xD6D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xD30 DUP2 PUSH2 0xD6D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 MSTORE8 0x22 0xEF PUSH18 0xF5BACC4E26CD9832FEFF429826B6773203B3 MULMOD 0xDD PUSH4 0x2AC51FD9 SUB EXTCODECOPY PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "676:4468:54:-:0;;;1648:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1784:6;1648:24:19;1784:6:54;1648:9:19;:24::i;:::-;-1:-1:-1;1802:29:54::1;1818:12:::0;1802:15:::1;:29::i;:::-;1841:21;1853:8:::0;1841:11:::1;:21::i;:::-;1872:23;1885:9:::0;1872:12:::1;:23::i;:::-;1944:9;-1:-1:-1::0;;;;;1911:43:54::1;1934:8;-1:-1:-1::0;;;;;1911:43:54::1;1920:12;-1:-1:-1::0;;;;;1911:43:54::1;;;;;;;;;;;1648:313:::0;;;;676:4468;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4301:182:54:-;-1:-1:-1;;;;;4375:26:54;;4367:73;;;;-1:-1:-1;;;4367:73:54;;1629:2:94;4367:73:54;;;1611:21:94;1668:2;1648:18;;;1641:30;1707:34;1687:18;;;1680:62;-1:-1:-1;;;1758:18:94;;;1751:32;1800:19;;4367:73:54;;;;;;;;;4450:11;:26;;-1:-1:-1;;;;;;4450:26:54;-1:-1:-1;;;;;4450:26:54;;;;;;;;;;4301:182::o;4639:168::-;-1:-1:-1;;;;;4706:31:54;;4698:74;;;;-1:-1:-1;;;4698:74:54;;1270:2:94;4698:74:54;;;1252:21:94;1309:2;1289:18;;;1282:30;1348:32;1328:18;;;1321:60;1398:18;;4698:74:54;1242:180:94;4698:74:54;4782:7;:18;;-1:-1:-1;;;;;;4782:18:54;-1:-1:-1;;;;;4782:18:54;;;;;;;;;;4639:168::o;4967:175::-;-1:-1:-1;;;;;5037:32:54;;5029:76;;;;-1:-1:-1;;;5029:76:54;;910:2:94;5029:76:54;;;892:21:94;949:2;929:18;;;922:30;988:33;968:18;;;961:61;1039:18;;5029:76:54;882:181:94;5029:76:54;5115:8;:20;;-1:-1:-1;;;;;;5115:20:54;-1:-1:-1;;;;;5115:20:54;;;;;;;;;;4967:175::o;14:689:94:-;146:6;154;162;170;223:3;211:9;202:7;198:23;194:33;191:2;;;240:1;237;230:12;191:2;272:9;266:16;291:31;316:5;291:31;:::i;:::-;391:2;376:18;;370:25;341:5;;-1:-1:-1;404:33:94;370:25;404:33;:::i;:::-;508:2;493:18;;487:25;456:7;;-1:-1:-1;521:33:94;487:25;521:33;:::i;:::-;625:2;610:18;;604:25;573:7;;-1:-1:-1;638:33:94;604:25;638:33;:::i;:::-;181:522;;;;-1:-1:-1;181:522:94;;-1:-1:-1;;181:522:94:o;1830:131::-;-1:-1:-1;;;;;1905:31:94;;1895:42;;1885:2;;1951:1;1948;1941:12;1885:2;1875:86;:::o;:::-;676:4468:54;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setDestination_13481": {
                  "entryPoint": 2581,
                  "id": 13481,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setManager_3068": {
                  "entryPoint": 3111,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 2885,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setReserve_13506": {
                  "entryPoint": 2978,
                  "id": 13506,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setStrategy_13531": {
                  "entryPoint": 2752,
                  "id": 13531,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 862,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@flush_13460": {
                  "entryPoint": 1004,
                  "id": 13460,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDestination_13306": {
                  "entryPoint": null,
                  "id": 13306,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getReserve_13317": {
                  "entryPoint": null,
                  "id": 13317,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getStrategy_13328": {
                  "entryPoint": null,
                  "id": 13328,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 1853,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setDestination_13350": {
                  "entryPoint": 503,
                  "id": 13350,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setManager_3037": {
                  "entryPoint": 2143,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setReserve_13374": {
                  "entryPoint": 1970,
                  "id": 13374,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setStrategy_13398": {
                  "entryPoint": 689,
                  "id": 13398,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_3192": {
                  "entryPoint": 2265,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 3347,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IERC20_$663_fromMemory": {
                  "entryPoint": 3383,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IReserve_$9090": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IStrategy_$9104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 3412,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IReserve_$9090__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IStrategy_$9104__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 3437,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:5876:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:247:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "361:170:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "407:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "416:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "419:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "409:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "409:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "409:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "382:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "378:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "378:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "403:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "432:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "451:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "445:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "445:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "436:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "495:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "470:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "470:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "470:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "510:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "520:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "510:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IERC20_$663_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "327:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "338:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "350:6:94",
                            "type": ""
                          }
                        ],
                        "src": "266:265:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "623:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "669:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "678:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "681:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "671:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "671:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "671:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "644:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "653:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "640:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "640:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "665:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "636:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "636:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "633:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "694:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "720:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "707:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "707:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "698:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "764:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "739:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "739:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "739:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "779:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "789:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "779:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IReserve_$9090",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "589:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "600:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "612:6:94",
                            "type": ""
                          }
                        ],
                        "src": "536:264:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "893:177:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "939:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "948:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "951:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "941:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "941:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "941:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "914:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "923:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "910:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "910:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "935:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "906:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "906:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "903:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "964:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "990:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "977:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "977:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "968:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1034:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1009:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1009:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1009:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1049:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1059:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1049:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IStrategy_$9104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "859:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "870:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "882:6:94",
                            "type": ""
                          }
                        ],
                        "src": "805:265:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1156:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1177:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1186:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1173:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1173:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1198:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1169:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1169:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1166:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1227:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1243:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1237:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1237:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1227:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1122:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1133:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1145:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1075:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1365:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1375:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1387:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1398:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1383:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1383:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1375:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1417:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1432:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1440:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1428:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1428:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1410:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1410:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1410:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1334:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1345:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1356:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1264:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1624:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1634:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1646:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1657:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1642:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1642:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1634:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1676:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1691:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1699:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1687:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1687:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1669:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1669:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1669:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1763:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1774:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1759:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1759:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1779:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1752:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1585:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1596:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1604:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1615:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1495:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1892:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1902:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1914:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1925:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1910:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1910:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1902:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1944:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1969:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1962:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1962:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1955:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1955:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1937:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1937:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1937:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1861:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1872:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1883:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1797:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2107:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2117:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2129:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2140:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2125:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2125:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2117:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2159:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2174:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2182:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2170:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2170:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2152:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2152:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2152:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IReserve_$9090__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2076:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2087:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2098:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1989:243:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2356:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2366:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2378:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2389:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2374:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2374:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2366:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2408:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2423:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2431:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2419:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2419:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2401:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2401:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2401:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IStrategy_$9104__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2325:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2336:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2347:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2237:244:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2660:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2677:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2688:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2670:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2670:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2670:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2711:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2722:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2707:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2707:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2727:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2700:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2700:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2700:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2750:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2761:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2746:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2746:18:94"
                                  },
                                  {
                                    "hexValue": "466c7573682f73747261746567792d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2766:33:94",
                                    "type": "",
                                    "value": "Flush/strategy-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2739:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2739:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2739:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2809:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2821:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2832:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2817:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2817:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2809:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2637:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2651:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2486:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3020:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3037:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3048:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3030:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3030:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3030:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3071:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3082:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3067:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3067:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3087:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3060:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3060:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3060:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3110:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3121:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3106:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3106:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3126:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3099:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3099:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3099:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3181:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3192:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3177:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3177:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3197:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3170:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3170:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3170:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3212:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3224:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3235:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3220:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3220:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3212:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2997:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3011:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2846:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3424:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3441:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3452:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3434:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3434:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3434:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3475:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3486:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3471:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3471:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3491:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3464:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3464:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3464:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3514:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3525:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3510:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3530:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3503:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3503:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3503:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3566:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3578:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3589:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3574:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3574:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3566:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3401:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3415:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3250:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3777:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3794:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3805:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3787:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3787:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3787:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3828:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3839:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3824:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3824:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3844:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3817:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3817:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3817:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3867:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3878:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3863:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3863:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3883:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3856:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3856:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3856:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3926:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3938:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3949:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3934:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3934:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3926:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3754:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3768:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3603:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4137:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4154:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4165:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4147:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4147:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4147:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4188:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4199:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4184:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4184:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4204:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4177:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4177:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4177:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4227:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4238:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4223:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4223:18:94"
                                  },
                                  {
                                    "hexValue": "466c7573682f726573657276652d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4243:32:94",
                                    "type": "",
                                    "value": "Flush/reserve-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4216:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4216:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4216:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4285:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4297:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4308:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4293:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4293:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4285:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4114:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4128:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3963:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4496:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4513:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4524:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4506:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4506:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4506:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4547:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4558:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4543:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4543:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4563:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4536:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4536:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4536:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4586:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4597:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4582:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4582:18:94"
                                  },
                                  {
                                    "hexValue": "466c7573682f64657374696e6174696f6e2d6e6f742d7a65726f2d6164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4602:34:94",
                                    "type": "",
                                    "value": "Flush/destination-not-zero-addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4575:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4575:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4575:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4657:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4668:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4653:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4653:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4673:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4646:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4646:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4646:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4687:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4699:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4710:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4695:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4695:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4687:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4473:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4487:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4322:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4899:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4916:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4927:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4909:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4909:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4909:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4950:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4961:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4946:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4946:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4966:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4939:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4939:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4939:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4989:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5000:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4985:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4985:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5005:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4978:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4978:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4978:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5060:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5071:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5056:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5056:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5076:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5049:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5049:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5049:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5094:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5106:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5117:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5102:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5102:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5094:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4876:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4890:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4725:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5306:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5323:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5334:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5316:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5316:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5316:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5357:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5368:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5353:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5353:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5373:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5346:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5346:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5346:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5396:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5407:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5392:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5392:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5412:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5385:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5385:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5385:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5467:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5478:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5463:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5463:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5483:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5456:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5456:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5456:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5500:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5512:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5523:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5508:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5508:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5500:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5283:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5297:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5132:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5639:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5649:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5661:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5672:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5657:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5657:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5649:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5691:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5702:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5684:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5684:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5684:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5608:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5619:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5630:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5538:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5765:109:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5852:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5861:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5864:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5854:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5854:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5854:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5788:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "5799:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5806:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5795:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5795:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "5785:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5785:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5778:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5778:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5775:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5754:5:94",
                            "type": ""
                          }
                        ],
                        "src": "5720:154:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IERC20_$663_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IReserve_$9090(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IStrategy_$9104(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IReserve_$9090__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IStrategy_$9104__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Flush/strategy-not-zero-address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"Flush/reserve-not-zero-address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"Flush/destination-not-zero-addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636b9f96ea1161008c5780639cecc80a116100665780639cecc80a146101ad578063d0ebdbe7146101c0578063e30c3978146101d3578063f2fde38b146101e457600080fd5b80636b9f96ea1461017c578063715018a6146101945780638da5cb5b1461019c57600080fd5b806333a100ca116100c857806333a100ca1461013d578063481c6a75146101505780634e71e0c81461016157806359bf5d391461016b57600080fd5b806307da0603146100ef5780630a0a05e61461011957806316ad95421461012c575b600080fd5b6005546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6100fc610127366004610d13565b6101f7565b6003546001600160a01b03166100fc565b6100fc61014b366004610d13565b6102b1565b6002546001600160a01b03166100fc565b61016961035e565b005b6004546001600160a01b03166100fc565b6101846103ec565b6040519015158152602001610110565b61016961073d565b6000546001600160a01b03166100fc565b6100fc6101bb366004610d13565b6107b2565b6101846101ce366004610d13565b61085f565b6001546001600160a01b03166100fc565b6101696101f2366004610d13565b6108d9565b60003361020c6000546001600160a01b031690565b6001600160a01b0316146102675760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b61027082610a15565b6040516001600160a01b03831681527f02b0c42ff9b0e5574a8fb272d0d3912de57184ca7a14f102643fb371a89bc213906020015b60405180910390a15090565b6000336102c66000546001600160a01b031690565b6001600160a01b03161461031c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b61032582610ac0565b6040516001600160a01b03831681527fe70d79dad95c835bdd87e9cf4665651c9e5abb3b756e4fd2bf45f29c95c3aa40906020016102a5565b6001546001600160a01b031633146103b85760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161025e565b6001546103cd906001600160a01b0316610b45565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000336104016002546001600160a01b031690565b6001600160a01b0316148061042f5750336104246000546001600160a01b031690565b6001600160a01b0316145b6104a15760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161025e565b600560009054906101000a90046001600160a01b03166001600160a01b031663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156104f157600080fd5b505af1158015610505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105299190610d54565b5060048054604080517f21df0da700000000000000000000000000000000000000000000000000000000815290516001600160a01b039092169260009284926321df0da79281810192602092909190829003018186803b15801561058c57600080fd5b505afa1580156105a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c49190610d37565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301529192506000918316906370a082319060240160206040518083038186803b15801561062457600080fd5b505afa158015610638573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065c9190610d54565b90508015610733576003546040517f205c28780000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201819052602482018490529185169063205c287890604401600060405180830381600087803b1580156106cd57600080fd5b505af11580156106e1573d6000803e3d6000fd5b50505050806001600160a01b03167f43a46ac5237b9605f9ffdc5ca9e3ada3bea496bd00815441705ff59446129fb18360405161072091815260200190565b60405180910390a2600194505050505090565b6000935050505090565b336107506000546001600160a01b031690565b6001600160a01b0316146107a65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b6107b06000610b45565b565b6000336107c76000546001600160a01b031690565b6001600160a01b03161461081d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b61082682610ba2565b6040516001600160a01b03831681527ffbebf27e430f83725e26527d071ece14a3542fb0ab947b63747e1739708378b5906020016102a5565b6000336108746000546001600160a01b031690565b6001600160a01b0316146108ca5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b6108d382610c27565b92915050565b336108ec6000546001600160a01b031690565b6001600160a01b0316146109425760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161025e565b6001600160a01b0381166109be5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161025e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6001600160a01b038116610a915760405162461bcd60e51b815260206004820152602260248201527f466c7573682f64657374696e6174696f6e2d6e6f742d7a65726f2d616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161025e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6001600160a01b038116610b165760405162461bcd60e51b815260206004820152601f60248201527f466c7573682f73747261746567792d6e6f742d7a65726f2d6164647265737300604482015260640161025e565b6005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116610bf85760405162461bcd60e51b815260206004820152601e60248201527f466c7573682f726573657276652d6e6f742d7a65726f2d616464726573730000604482015260640161025e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6002546000906001600160a01b03908116908316811415610cb05760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161025e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600060208284031215610d2557600080fd5b8135610d3081610d6d565b9392505050565b600060208284031215610d4957600080fd5b8151610d3081610d6d565b600060208284031215610d6657600080fd5b5051919050565b6001600160a01b0381168114610d8257600080fd5b5056fea2646970667358221220d35322ef71f5bacc4e26cd9832feff429826b6773203b309dd632ac51fd9033c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6B9F96EA GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9CECC80A GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9CECC80A EQ PUSH2 0x1AD JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1C0 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6B9F96EA EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x194 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x19C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x33A100CA GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x33A100CA EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x150 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x59BF5D39 EQ PUSH2 0x16B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7DA0603 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0xA0A05E6 EQ PUSH2 0x119 JUMPI DUP1 PUSH4 0x16AD9542 EQ PUSH2 0x12C JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH2 0x127 CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x1F7 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0xFC PUSH2 0x14B CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x2B1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0x169 PUSH2 0x35E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0x184 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x110 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x73D JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0xFC PUSH2 0x1BB CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x7B2 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x1CE CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xFC JUMP JUMPDEST PUSH2 0x169 PUSH2 0x1F2 CALLDATASIZE PUSH1 0x4 PUSH2 0xD13 JUMP JUMPDEST PUSH2 0x8D9 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x20C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x267 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x270 DUP3 PUSH2 0xA15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH32 0x2B0C42FF9B0E5574A8FB272D0D3912DE57184CA7A14F102643FB371A89BC213 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x2C6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x31C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x325 DUP3 PUSH2 0xAC0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH32 0xE70D79DAD95C835BDD87E9CF4665651C9E5ABB3B756E4FD2BF45F29C95C3AA40 SWAP1 PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x3B8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x3CD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB45 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x401 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x42F JUMPI POP CALLER PUSH2 0x424 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x4A1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE4FC6B6D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x505 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x529 SWAP2 SWAP1 PUSH2 0xD54 JUMP JUMPDEST POP PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x21DF0DA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP3 PUSH1 0x0 SWAP3 DUP5 SWAP3 PUSH4 0x21DF0DA7 SWAP3 DUP2 DUP2 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP1 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x58C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5A0 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5C4 SWAP2 SWAP1 PUSH2 0xD37 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 DUP4 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x624 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x638 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x65C SWAP2 SWAP1 PUSH2 0xD54 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x733 JUMPI PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD PUSH32 0x205C287800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE SWAP2 DUP6 AND SWAP1 PUSH4 0x205C2878 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6CD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6E1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x43A46AC5237B9605F9FFDC5CA9E3ADA3BEA496BD00815441705FF59446129FB1 DUP4 PUSH1 0x40 MLOAD PUSH2 0x720 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 SWAP5 POP POP POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST CALLER PUSH2 0x750 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x7B0 PUSH1 0x0 PUSH2 0xB45 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x7C7 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x81D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x826 DUP3 PUSH2 0xBA2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH32 0xFBEBF27E430F83725E26527D071ECE14A3542FB0AB947B63747E1739708378B5 SWAP1 PUSH1 0x20 ADD PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x874 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8CA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH2 0x8D3 DUP3 PUSH2 0xC27 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x8EC PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x942 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xA91 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F64657374696E6174696F6E2D6E6F742D7A65726F2D6164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xB16 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F73747261746567792D6E6F742D7A65726F2D6164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xBF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x466C7573682F726573657276652D6E6F742D7A65726F2D616464726573730000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x4 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xCB0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x25E JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD25 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xD30 DUP2 PUSH2 0xD6D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xD30 DUP2 PUSH2 0xD6D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD3 MSTORE8 0x22 0xEF PUSH18 0xF5BACC4E26CD9832FEFF429826B6773203B3 MULMOD 0xDD PUSH4 0x2AC51FD9 SUB EXTCODECOPY PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "676:4468:54:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2328:98;2411:8;;-1:-1:-1;;;;;2411:8:54;2328:98;;;-1:-1:-1;;;;;1428:55:94;;;1410:74;;1398:2;1383:18;2328:98:54;;;;;;;;2464:210;;;;;;:::i;:::-;;:::i;2055:102::-;2139:11;;-1:-1:-1;;;;;2139:11:54;2055:102;;2934:193;;;;;;:::i;:::-;;:::i;1403:89:18:-;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;3147:129:19;;;:::i;:::-;;2195:95:54;2276:7;;-1:-1:-1;;;;;2276:7:54;2195:95;;3165:908;;;:::i;:::-;;;1962:14:94;;1955:22;1937:41;;1925:2;1910:18;3165:908:54;1892:92:94;2508:94:19;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;2712:184:54;;;;;;:::i;:::-;;:::i;1744:123:18:-;;;;;;:::i;:::-;;:::i;2014:101:19:-;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;2464:210:54:-;2547:7;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3452:2:94;3819:58:19;;;3434:21:94;3491:2;3471:18;;;3464:30;3530:26;3510:18;;;3503:54;3574:18;;3819:58:19;;;;;;;;;2566:29:54::1;2582:12;2566:15;:29::i;:::-;2610:28;::::0;-1:-1:-1;;;;;1428:55:94;;1410:74;;2610:28:54::1;::::0;1398:2:94;1383:18;2610:28:54::1;;;;;;;;-1:-1:-1::0;2655:12:54;2464:210::o;2934:193::-;3013:9;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3452:2:94;3819:58:19;;;3434:21:94;3491:2;3471:18;;;3464:30;3530:26;3510:18;;;3503:54;3574:18;;3819:58:19;3424:174:94;3819:58:19;3034:23:54::1;3047:9;3034:12;:23::i;:::-;3072:22;::::0;-1:-1:-1;;;;;1428:55:94;;1410:74;;3072:22:54::1;::::0;1398:2:94;1383:18;3072:22:54::1;1365:125:94::0;3147:129:19;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;3805:2:94;4028:71:19;;;3787:21:94;3844:2;3824:18;;;3817:30;3883:33;3863:18;;;3856:61;3934:18;;4028:71:19;3777:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;3165:908:54:-;3228:4;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;4927:2:94;2840:99:18;;;4909:21:94;4966:2;4946:18;;;4939:30;5005:34;4985:18;;;4978:62;5076:8;5056:18;;;5049:36;5102:19;;2840:99:18;4899:228:94;2840:99:18;3338:8:54::1;;;;;;;;;-1:-1:-1::0;;;;;3338:8:54::1;-1:-1:-1::0;;;;;3338:19:54::1;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;3500:7:54::1;::::0;;3533:19:::1;::::0;;;;;;;-1:-1:-1;;;;;3500:7:54;;::::1;::::0;3480:17:::1;::::0;3500:7;;3533:17:::1;::::0;:19;;::::1;::::0;::::1;::::0;;;;;;;;;3500:7;3533:19;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3580:35;::::0;;;;-1:-1:-1;;;;;1428:55:94;;;3580:35:54::1;::::0;::::1;1410:74:94::0;3517:35:54;;-1:-1:-1;3562:15:54::1;::::0;3580:16;::::1;::::0;::::1;::::0;1383:18:94;;3580:35:54::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3562:53:::0;-1:-1:-1;3755:11:54;;3751:293:::1;;3805:11;::::0;3916:42:::1;::::0;;;;-1:-1:-1;;;;;3805:11:54;;::::1;3916:42;::::0;::::1;1669:74:94::0;;;1759:18;;;1752:34;;;3805:11:54;3916:19;::::1;::::0;::::1;::::0;1642:18:94;;3916:42:54::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;3986:12;-1:-1:-1::0;;;;;3978:30:54::1;;4000:7;3978:30;;;;5684:25:94::0;;5672:2;5657:18;;5639:76;3978:30:54::1;;;;;;;;4029:4;4022:11;;;;;;3165:908:::0;:::o;3751:293::-:1;4061:5;4054:12;;;;;3165:908:::0;:::o;2508:94:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3452:2:94;3819:58:19;;;3434:21:94;3491:2;3471:18;;;3464:30;3530:26;3510:18;;;3503:54;3574:18;;3819:58:19;3424:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2712:184:54:-;2788:8;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3452:2:94;3819:58:19;;;3434:21:94;3491:2;3471:18;;;3464:30;3530:26;3510:18;;;3503:54;3574:18;;3819:58:19;3424:174:94;3819:58:19;2808:21:54::1;2820:8;2808:11;:21::i;:::-;2844:20;::::0;-1:-1:-1;;;;;1428:55:94;;1410:74;;2844:20:54::1;::::0;1398:2:94;1383:18;2844:20:54::1;1365:125:94::0;1744:123:18;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3452:2:94;3819:58:19;;;3434:21:94;3491:2;3471:18;;;3464:30;3530:26;3510:18;;;3503:54;3574:18;;3819:58:19;3424:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31:::0;1744:123;-1:-1:-1;;1744:123:18:o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3452:2:94;3819:58:19;;;3434:21:94;3491:2;3471:18;;;3464:30;3530:26;3510:18;;;3503:54;3574:18;;3819:58:19;3424:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;5334:2:94;2826:73:19::1;::::0;::::1;5316:21:94::0;5373:2;5353:18;;;5346:30;5412:34;5392:18;;;5385:62;5483:7;5463:18;;;5456:35;5508:19;;2826:73:19::1;5306:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;4301:182:54:-;-1:-1:-1;;;;;4375:26:54;;4367:73;;;;-1:-1:-1;;;4367:73:54;;4524:2:94;4367:73:54;;;4506:21:94;4563:2;4543:18;;;4536:30;4602:34;4582:18;;;4575:62;4673:4;4653:18;;;4646:32;4695:19;;4367:73:54;4496:224:94;4367:73:54;4450:11;:26;;-1:-1:-1;;4450:26:54;-1:-1:-1;;;;;4450:26:54;;;;;;;;;;4301:182::o;4967:175::-;-1:-1:-1;;;;;5037:32:54;;5029:76;;;;-1:-1:-1;;;5029:76:54;;2688:2:94;5029:76:54;;;2670:21:94;2727:2;2707:18;;;2700:30;2766:33;2746:18;;;2739:61;2817:18;;5029:76:54;2660:181:94;5029:76:54;5115:8;:20;;-1:-1:-1;;5115:20:54;-1:-1:-1;;;;;5115:20:54;;;;;;;;;;4967:175::o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4639:168:54:-;-1:-1:-1;;;;;4706:31:54;;4698:74;;;;-1:-1:-1;;;4698:74:54;;4165:2:94;4698:74:54;;;4147:21:94;4204:2;4184:18;;;4177:30;4243:32;4223:18;;;4216:60;4293:18;;4698:74:54;4137:180:94;4698:74:54;4782:7;:18;;-1:-1:-1;;4782:18:54;-1:-1:-1;;;;;4782:18:54;;;;;;;;;;4639:168::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;3048:2:94;2230:79:18;;;3030:21:94;3087:2;3067:18;;;3060:30;3126:34;3106:18;;;3099:62;3197:5;3177:18;;;3170:33;3220:19;;2230:79:18;3020:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;14:247:94:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;84:177;-1:-1:-1;;;84:177:94:o;266:265::-;350:6;403:2;391:9;382:7;378:23;374:32;371:2;;;419:1;416;409:12;371:2;451:9;445:16;470:31;495:5;470:31;:::i;1075:184::-;1145:6;1198:2;1186:9;1177:7;1173:23;1169:32;1166:2;;;1214:1;1211;1204:12;1166:2;-1:-1:-1;1237:16:94;;1156:103;-1:-1:-1;1156:103:94:o;5720:154::-;-1:-1:-1;;;;;5799:5:94;5795:54;5788:5;5785:65;5775:2;;5864:1;5861;5854:12;5775:2;5765:109;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "703000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54508",
                "flush()": "infinite",
                "getDestination()": "2388",
                "getReserve()": "2409",
                "getStrategy()": "2333",
                "manager()": "2365",
                "owner()": "2387",
                "pendingOwner()": "2386",
                "renounceOwnership()": "28180",
                "setDestination(address)": "27979",
                "setManager(address)": "30583",
                "setReserve(address)": "27966",
                "setStrategy(address)": "27967",
                "transferOwnership(address)": "27988"
              },
              "internal": {
                "_setDestination(address)": "infinite",
                "_setReserve(contract IReserve)": "infinite",
                "_setStrategy(contract IStrategy)": "infinite"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "flush()": "6b9f96ea",
              "getDestination()": "16ad9542",
              "getReserve()": "59bf5d39",
              "getStrategy()": "07da0603",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setDestination(address)": "0a0a05e6",
              "setManager(address)": "d0ebdbe7",
              "setReserve(address)": "9cecc80a",
              "setStrategy(address)": "33a100ca",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_destination\",\"type\":\"address\"},{\"internalType\":\"contract IStrategy\",\"name\":\"_strategy\",\"type\":\"address\"},{\"internalType\":\"contract IReserve\",\"name\":\"_reserve\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IReserve\",\"name\":\"reserve\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IStrategy\",\"name\":\"strategy\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"DestinationSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Flushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":\"contract IReserve\",\"name\":\"reserve\",\"type\":\"address\"}],\"name\":\"ReserveSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IStrategy\",\"name\":\"strategy\",\"type\":\"address\"}],\"name\":\"StrategySet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"flush\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDestination\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getReserve\",\"outputs\":[{\"internalType\":\"contract IReserve\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getStrategy\",\"outputs\":[{\"internalType\":\"contract IStrategy\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_destination\",\"type\":\"address\"}],\"name\":\"setDestination\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IReserve\",\"name\":\"_reserve\",\"type\":\"address\"}],\"name\":\"setReserve\",\"outputs\":[{\"internalType\":\"contract IReserve\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IStrategy\",\"name\":\"_strategy\",\"type\":\"address\"}],\"name\":\"setStrategy\",\"outputs\":[{\"internalType\":\"contract IStrategy\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address,address,address)\":{\"params\":{\"destination\":\"Destination address\",\"reserve\":\"Strategy address\",\"strategy\":\"Reserve address\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_destination\":\"Destination address\",\"_owner\":\"Prize Flush owner address\",\"_reserve\":\"Reserve address\",\"_strategy\":\"Strategy address\"}},\"flush()\":{\"details\":\"Captures interest, checkpoint data and transfers tokens to final destination.\",\"returns\":{\"_0\":\"True if operation is successful.\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"stateVariables\":{\"destination\":{\"details\":\"Should be set to the PrizeDistributor address.\"}},\"title\":\"PoolTogether V4 PrizeFlush\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when contract has been deployed.\"},\"DestinationSet(address)\":{\"notice\":\"Emit when destination is set.\"},\"Flushed(address,uint256)\":{\"notice\":\"Emit when the flush function has executed.\"},\"ReserveSet(address)\":{\"notice\":\"Emit when reserve is set.\"},\"StrategySet(address)\":{\"notice\":\"Emit when strategy is set.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Deploy Prize Flush.\"},\"flush()\":{\"notice\":\"Migrate interest from PrizePool to PrizeDistributor in a single transaction.\"},\"getDestination()\":{\"notice\":\"Read global destination variable.\"},\"getReserve()\":{\"notice\":\"Read global reserve variable.\"},\"getStrategy()\":{\"notice\":\"Read global strategy variable.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setDestination(address)\":{\"notice\":\"Set global destination variable.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"setReserve(address)\":{\"notice\":\"Set global reserve variable.\"},\"setStrategy(address)\":{\"notice\":\"Set global strategy variable.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The PrizeFlush contract helps capture interest from the PrizePool and move collected funds to a designated PrizeDistributor contract. When deployed, the destination, reserve and strategy addresses are set and used as static parameters during every \\\"flush\\\" execution. The parameters can be reset by the Owner if necessary.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-periphery/contracts/PrizeFlush.sol\":\"PrizeFlush\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IReserve {\\n    /**\\n     * @notice Emit when checkpoint is created.\\n     * @param reserveAccumulated  Total depsosited\\n     * @param withdrawAccumulated Total withdrawn\\n     */\\n\\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\\n    /**\\n     * @notice Emit when the withdrawTo function has executed.\\n     * @param recipient Address receiving funds\\n     * @param amount    Amount of tokens transfered.\\n     */\\n    event Withdrawn(address indexed recipient, uint256 amount);\\n\\n    /**\\n     * @notice Create observation checkpoint in ring bufferr.\\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\\n     */\\n    function checkpoint() external;\\n\\n    /**\\n     * @notice Read global token value.\\n     * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n     * @notice Calculate token accumulation beween timestamp range.\\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\\n     * @param startTimestamp Account address\\n     * @param endTimestamp   Transfer amount\\n     */\\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\\n        external\\n        returns (uint224);\\n\\n    /**\\n     * @notice Transfer Reserve token balance to recipient address.\\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\\n     * @param recipient Account address\\n     * @param amount    Transfer amount\\n     */\\n    function withdrawTo(address recipient, uint256 amount) external;\\n}\\n\",\"keccak256\":\"0x630c99a29c1df33cf2cf9492ea8640e875fa6cbb46c53a9d1ce935567589fef6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\ninterface IStrategy {\\n    /**\\n     * @notice Emit when a strategy captures award amount from PrizePool.\\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\\n     */\\n    event Distributed(uint256 totalPrizeCaptured);\\n\\n    /**\\n     * @notice Capture the award balance and distribute to prize splits.\\n     * @dev    Permissionless function to initialize distribution of interst\\n     * @return Prize captured from PrizePool\\n     */\\n    function distribute() external returns (uint256);\\n}\\n\",\"keccak256\":\"0x3c30617be7a8c311c320fe3b50c77c4270333ddcfe5b01822fcbe85e2db4623e\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/PrizeFlush.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeFlush.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 PrizeFlush\\n * @author PoolTogether Inc Team\\n * @notice The PrizeFlush contract helps capture interest from the PrizePool and move collected funds\\n           to a designated PrizeDistributor contract. When deployed, the destination, reserve and strategy\\n           addresses are set and used as static parameters during every \\\"flush\\\" execution. The parameters can be\\n           reset by the Owner if necessary.\\n */\\ncontract PrizeFlush is IPrizeFlush, Manageable {\\n    /**\\n     * @notice Destination address for captured interest.\\n     * @dev Should be set to the PrizeDistributor address.\\n     */\\n    address internal destination;\\n\\n    /// @notice Reserve address.\\n    IReserve internal reserve;\\n\\n    /// @notice Strategy address.\\n    IStrategy internal strategy;\\n\\n    /**\\n     * @notice Emitted when contract has been deployed.\\n     * @param destination Destination address\\n     * @param reserve Strategy address\\n     * @param strategy Reserve address\\n     *\\n     */\\n    event Deployed(\\n        address indexed destination,\\n        IReserve indexed reserve,\\n        IStrategy indexed strategy\\n    );\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy Prize Flush.\\n     * @param _owner Prize Flush owner address\\n     * @param _destination Destination address\\n     * @param _strategy Strategy address\\n     * @param _reserve Reserve address\\n     *\\n     */\\n    constructor(\\n        address _owner,\\n        address _destination,\\n        IStrategy _strategy,\\n        IReserve _reserve\\n    ) Ownable(_owner) {\\n        _setDestination(_destination);\\n        _setReserve(_reserve);\\n        _setStrategy(_strategy);\\n\\n        emit Deployed(_destination, _reserve, _strategy);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeFlush\\n    function getDestination() external view override returns (address) {\\n        return destination;\\n    }\\n\\n    /// @inheritdoc IPrizeFlush\\n    function getReserve() external view override returns (IReserve) {\\n        return reserve;\\n    }\\n\\n    /// @inheritdoc IPrizeFlush\\n    function getStrategy() external view override returns (IStrategy) {\\n        return strategy;\\n    }\\n\\n    /// @inheritdoc IPrizeFlush\\n    function setDestination(address _destination) external override onlyOwner returns (address) {\\n        _setDestination(_destination);\\n        emit DestinationSet(_destination);\\n        return _destination;\\n    }\\n\\n    /// @inheritdoc IPrizeFlush\\n    function setReserve(IReserve _reserve) external override onlyOwner returns (IReserve) {\\n        _setReserve(_reserve);\\n        emit ReserveSet(_reserve);\\n        return _reserve;\\n    }\\n\\n    /// @inheritdoc IPrizeFlush\\n    function setStrategy(IStrategy _strategy) external override onlyOwner returns (IStrategy) {\\n        _setStrategy(_strategy);\\n        emit StrategySet(_strategy);\\n        return _strategy;\\n    }\\n\\n    /// @inheritdoc IPrizeFlush\\n    function flush() external override onlyManagerOrOwner returns (bool) {\\n        // Captures interest from PrizePool and distributes funds using a PrizeSplitStrategy.\\n        strategy.distribute();\\n\\n        // After funds are distributed using PrizeSplitStrategy we EXPECT funds to be located in the Reserve.\\n        IReserve _reserve = reserve;\\n        IERC20 _token = _reserve.getToken();\\n        uint256 _amount = _token.balanceOf(address(_reserve));\\n\\n        // IF the tokens were succesfully moved to the Reserve, now move them to the destination (PrizeDistributor) address.\\n        if (_amount > 0) {\\n            address _destination = destination;\\n\\n            // Create checkpoint and transfers new total balance to PrizeDistributor\\n            _reserve.withdrawTo(_destination, _amount);\\n\\n            emit Flushed(_destination, _amount);\\n            return true;\\n        }\\n\\n        return false;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set global destination variable.\\n     * @dev `_destination` cannot be the zero address.\\n     * @param _destination Destination address\\n     */\\n    function _setDestination(address _destination) internal {\\n        require(_destination != address(0), \\\"Flush/destination-not-zero-address\\\");\\n        destination = _destination;\\n    }\\n\\n    /**\\n     * @notice Set global reserve variable.\\n     * @dev `_reserve` cannot be the zero address.\\n     * @param _reserve Reserve address\\n     */\\n    function _setReserve(IReserve _reserve) internal {\\n        require(address(_reserve) != address(0), \\\"Flush/reserve-not-zero-address\\\");\\n        reserve = _reserve;\\n    }\\n\\n    /**\\n     * @notice Set global strategy variable.\\n     * @dev `_strategy` cannot be the zero address.\\n     * @param _strategy Strategy address\\n     */\\n    function _setStrategy(IStrategy _strategy) internal {\\n        require(address(_strategy) != address(0), \\\"Flush/strategy-not-zero-address\\\");\\n        strategy = _strategy;\\n    }\\n}\\n\",\"keccak256\":\"0x3b4401de86bcf4eb541439e2c5efe60d83dddc07dee6162ade9562a2b02ab066\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\\\";\\n\\ninterface IPrizeFlush {\\n    /**\\n     * @notice Emit when the flush function has executed.\\n     * @param destination Address receiving funds\\n     * @param amount      Amount of tokens transferred\\n     */\\n    event Flushed(address indexed destination, uint256 amount);\\n\\n    /**\\n     * @notice Emit when destination is set.\\n     * @param destination Destination address\\n     */\\n    event DestinationSet(address destination);\\n\\n    /**\\n     * @notice Emit when strategy is set.\\n     * @param strategy Strategy address\\n     */\\n    event StrategySet(IStrategy strategy);\\n\\n    /**\\n     * @notice Emit when reserve is set.\\n     * @param reserve Reserve address\\n     */\\n    event ReserveSet(IReserve reserve);\\n\\n    /// @notice Read global destination variable.\\n    function getDestination() external view returns (address);\\n\\n    /// @notice Read global reserve variable.\\n    function getReserve() external view returns (IReserve);\\n\\n    /// @notice Read global strategy variable.\\n    function getStrategy() external view returns (IStrategy);\\n\\n    /// @notice Set global destination variable.\\n    function setDestination(address _destination) external returns (address);\\n\\n    /// @notice Set global reserve variable.\\n    function setReserve(IReserve _reserve) external returns (IReserve);\\n\\n    /// @notice Set global strategy variable.\\n    function setStrategy(IStrategy _strategy) external returns (IStrategy);\\n\\n    /**\\n     * @notice Migrate interest from PrizePool to PrizeDistributor in a single transaction.\\n     * @dev    Captures interest, checkpoint data and transfers tokens to final destination.\\n     * @return True if operation is successful.\\n     */\\n    function flush() external returns (bool);\\n}\\n\",\"keccak256\":\"0x47e8eeec8e793380f0425e73146ef41db37bec21997bdf06e5016d8ff049de57\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol:PrizeFlush",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol:PrizeFlush",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol:PrizeFlush",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 13241,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol:PrizeFlush",
                "label": "destination",
                "offset": 0,
                "slot": "3",
                "type": "t_address"
              },
              {
                "astId": 13245,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol:PrizeFlush",
                "label": "reserve",
                "offset": 0,
                "slot": "4",
                "type": "t_contract(IReserve)9090"
              },
              {
                "astId": 13249,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol:PrizeFlush",
                "label": "strategy",
                "offset": 0,
                "slot": "5",
                "type": "t_contract(IStrategy)9104"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IReserve)9090": {
                "encoding": "inplace",
                "label": "contract IReserve",
                "numberOfBytes": "20"
              },
              "t_contract(IStrategy)9104": {
                "encoding": "inplace",
                "label": "contract IStrategy",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when contract has been deployed."
              },
              "DestinationSet(address)": {
                "notice": "Emit when destination is set."
              },
              "Flushed(address,uint256)": {
                "notice": "Emit when the flush function has executed."
              },
              "ReserveSet(address)": {
                "notice": "Emit when reserve is set."
              },
              "StrategySet(address)": {
                "notice": "Emit when strategy is set."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Deploy Prize Flush."
              },
              "flush()": {
                "notice": "Migrate interest from PrizePool to PrizeDistributor in a single transaction."
              },
              "getDestination()": {
                "notice": "Read global destination variable."
              },
              "getReserve()": {
                "notice": "Read global reserve variable."
              },
              "getStrategy()": {
                "notice": "Read global strategy variable."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setDestination(address)": {
                "notice": "Set global destination variable."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "setReserve(address)": {
                "notice": "Set global reserve variable."
              },
              "setStrategy(address)": {
                "notice": "Set global strategy variable."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The PrizeFlush contract helps capture interest from the PrizePool and move collected funds to a designated PrizeDistributor contract. When deployed, the destination, reserve and strategy addresses are set and used as static parameters during every \"flush\" execution. The parameters can be reset by the Owner if necessary.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol": {
        "PrizeTierHistory": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "PrizeTierPushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "PrizeTierSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "count",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestDrawId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestDrawId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                }
              ],
              "name": "getPrizeTier",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeTierAtIndex",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "_drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getPrizeTierList",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "_prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "popAndPush",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "_nextPrizeTier",
                  "type": "tuple"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "_prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "replace",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "count()": {
                "returns": {
                  "_0": "The number of prize tiers that have been pushed"
                }
              },
              "getOldestDrawId()": {
                "returns": {
                  "_0": "Draw ID of first PrizeTier record"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 IPrizeTierHistory",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_13555": {
                  "entryPoint": null,
                  "id": 13555,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 72,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 152,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:306:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "95:209:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "141:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "150:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "153:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "143:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "143:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "143:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "116:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "125:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "112:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "112:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "137:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "108:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "108:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "105:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "166:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "185:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "179:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "179:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "170:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "258:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "267:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "270:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "260:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "260:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "260:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "217:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "228:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "243:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "248:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "239:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "239:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "252:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "235:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "235:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "224:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "224:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "214:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "214:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "207:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "207:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "204:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "283:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "293:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "283:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "61:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "72:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "84:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:290:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162001e9338038062001e93833981016040819052620000349162000098565b80620000408162000048565b5050620000ca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215620000ab57600080fd5b81516001600160a01b0381168114620000c357600080fd5b9392505050565b611db980620000da6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063e30c397811610066578063e30c397814610211578063e4dd269014610222578063f114376514610235578063f2fde38b1461024857600080fd5b8063715018a6146101c25780638da5cb5b146101ca578063d0ebdbe7146101db578063d365027d146101fe57600080fd5b8063481c6a75116100d3578063481c6a75146101555780634aac253d1461017a5780634e602cd81461019a5780634e71e0c8146101ba57600080fd5b806306661abd146101055780633659f5431461011b57806339dd7f0814610130578063472b619c1461014d575b600080fd5b6003546040519081526020015b60405180910390f35b61012e6101293660046118c0565b61025b565b005b61013861067a565b60405163ffffffff9091168152602001610112565b6101386106b1565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610112565b61018d6101883660046118f2565b6106d5565b6040516101129190611a8e565b6101ad6101a836600461184b565b610768565b604051610112919061198c565b61012e610833565b61012e6108c1565b6000546001600160a01b0316610162565b6101ee6101e9366004611822565b610936565b6040519015158152602001610112565b61012e61020c3660046118c0565b6109aa565b6001546001600160a01b0316610162565b61018d6102303660046118d9565b610c92565b6101386102433660046118c0565b610d9c565b61012e610256366004611822565b61107a565b3361026e6002546001600160a01b031690565b6001600160a01b0316148061029c5750336102916000546001600160a01b031690565b6001600160a01b0316145b6103135760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60006003805480602002602001604051908101604052809291908181526020016000905b8282101561042f57600084815260208082206040805160e08101825260048702909201805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810191829052919360c0850192916002850191601091908390855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116103db57905050505050508152505081526020019060010190610337565b5050505090506000815111156105e657600380546000919061045390600190611ad7565b8154811061046357610463611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105065790505050505050815250509050806020015163ffffffff1683602001602081019061056b91906118f2565b63ffffffff16116105e45760405162461bcd60e51b815260206004820152602a60248201527f5072697a6554696572486973746f72792f6e6f6e2d73657175656e7469616c2d60448201527f7072697a652d7469657200000000000000000000000000000000000000000000606482015260840161030a565b505b6003805460018101825560009190915282906004027fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b016106278282611bdf565b5061063a905060408301602084016118f2565b63ffffffff167efa6c2cd74e788568ac0c75b649897ed491b894d237486258b420d7e77490bf8360405161066e91906119cf565b60405180910390a25050565b6000600360008154811061069057610690611ba6565b6000918252602090912060049091020154610100900463ffffffff16919050565b60038054600091906106c590600190611ad7565b8154811061069057610690611ba6565b6106dd6117c0565b60008263ffffffff16116107595760405162461bcd60e51b815260206004820152602160248201527f5072697a6554696572486973746f72792f647261772d69642d6e6f742d7a657260448201527f6f00000000000000000000000000000000000000000000000000000000000000606482015260840161030a565b610762826111b6565b92915050565b606060008267ffffffffffffffff81111561078557610785611bbc565b6040519080825280602002602001820160405280156107be57816020015b6107ab6117c0565b8152602001906001900390816107a35790505b50905060005b8381101561082b576107fb8585838181106107e1576107e1611ba6565b90506020020160208101906107f691906118f2565b6111b6565b82828151811061080d5761080d611ba6565b6020026020010181905250808061082390611b57565b9150506107c4565b509392505050565b6001546001600160a01b0316331461088d5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161030a565b6001546108a2906001600160a01b031661145f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108d46000546001600160a01b031690565b6001600160a01b03161461092a5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b610934600061145f565b565b60003361094b6000546001600160a01b031690565b6001600160a01b0316146109a15760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b610762826114bc565b336109bd6000546001600160a01b031690565b6001600160a01b031614610a135760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b60035480610a635760405162461bcd60e51b815260206004820152601f60248201527f5072697a6554696572486973746f72792f6e6f2d7072697a652d746965727300604482015260640161030a565b600080610a71600184611ad7565b9050600060038381548110610a8857610a88611ba6565b60009182526020918290206004909102015463ffffffff6101009091041691508190610aba90604088019088016118f2565b63ffffffff161015610b345760405162461bcd60e51b815260206004820152602560248201527f5072697a6554696572486973746f72792f647261772d69642d6f75742d6f662d60448201527f72616e6765000000000000000000000000000000000000000000000000000000606482015260840161030a565b6000610b52610b4960408801602089016118f2565b858560036115a8565b9050610b6460408701602088016118f2565b63ffffffff1660038281548110610b7d57610b7d611ba6565b6000918252602090912060049091020154610100900463ffffffff1614610c0c5760405162461bcd60e51b815260206004820152602360248201527f5072697a6554696572486973746f72792f647261772d69642d6d7573742d6d6160448201527f7463680000000000000000000000000000000000000000000000000000000000606482015260840161030a565b8560038281548110610c2057610c20611ba6565b90600052602060002090600402018181610c3a9190611bdf565b50610c4d905060408701602088016118f2565b63ffffffff167fec70f602a8e5c0eab140e799c5b7bb34035bd73c6eb882fad555c7c8860817e787604051610c8291906119cf565b60405180910390a2505050505050565b610c9a6117c0565b60038281548110610cad57610cad611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610d505790505050505050815250509050919050565b600033610db16000546001600160a01b031690565b6001600160a01b031614610e075760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b600354610e565760405162461bcd60e51b815260206004820152601e60248201527f5072697a6554696572486973746f72792f686973746f72792d656d7074790000604482015260640161030a565b6003805460009190610e6a90600190611ad7565b81548110610e7a57610e7a611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610f1d5790505050505050815250509050806020015163ffffffff16836020016020810190610f8291906118f2565b63ffffffff161015610fd65760405162461bcd60e51b815260206004820181905260248201527f5072697a6554696572486973746f72792f696e76616c69642d647261772d6964604482015260640161030a565b60038054849190610fe990600190611ad7565b81548110610ff957610ff9611ba6565b906000526020600020906004020181816110139190611bdf565b50611026905060408401602085016118f2565b63ffffffff167fec70f602a8e5c0eab140e799c5b7bb34035bd73c6eb882fad555c7c8860817e78460405161105b91906119cf565b60405180910390a261107360408401602085016118f2565b9392505050565b3361108d6000546001600160a01b031690565b6001600160a01b0316146110e35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b6001600160a01b03811661115f5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161030a565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6111be6117c0565b6003548061120e5760405162461bcd60e51b815260206004820152601f60248201527f5072697a6554696572486973746f72792f6e6f2d7072697a652d746965727300604482015260640161030a565b60008061121c600184611ad7565b905060006003838154811061123357611233611ba6565b906000526020600020906004020160000160019054906101000a900463ffffffff16905060006003838154811061126c5761126c611ba6565b600091825260209091206004909102015463ffffffff6101009091048116915082811690881610156113065760405162461bcd60e51b815260206004820152602560248201527f5072697a6554696572486973746f72792f647261772d69642d6f75742d6f662d60448201527f72616e6765000000000000000000000000000000000000000000000000000000606482015260840161030a565b8063ffffffff168763ffffffff1610611420576003838154811061132c5761132c611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113cf57905050505050508152505095505050505050919050565b8163ffffffff168763ffffffff161415611447576003848154811061132c5761132c611ba6565b61145487858560036116a9565b979650505050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156115455760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161030a565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b60008084845b600060026115bc8484611ad7565b6115c69190611ab5565b6115d09084611a9d565b905060008682815481106115e6576115e6611ba6565b600091825260209091206004909102015463ffffffff610100909104811691508a168114156116175750925061169d565b8963ffffffff168163ffffffff16101561163d57611636826001611a9d565b935061165f565b8963ffffffff168163ffffffff16111561165f5761165c600183611ad7565b92505b82841415611696578963ffffffff168163ffffffff161061168e57611685600183611ad7565b9450505061169d565b50925061169d565b50506115ae565b50909695505050505050565b6116b16117c0565b816116be868686866115a8565b815481106116ce576116ce611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116117715790505050505050815250509050949350505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915260c081016117fe611803565b905290565b6040518061020001604052806010906020820280368337509192915050565b60006020828403121561183457600080fd5b81356001600160a01b038116811461107357600080fd5b6000806020838503121561185e57600080fd5b823567ffffffffffffffff8082111561187657600080fd5b818501915085601f83011261188a57600080fd5b81358181111561189957600080fd5b8660208260051b85010111156118ae57600080fd5b60209290920196919550909350505050565b60006102c082840312156118d357600080fd5b50919050565b6000602082840312156118eb57600080fd5b5035919050565b60006020828403121561190457600080fd5b813561107381611d5f565b60ff815116825260208082015163ffffffff8082168386015280604085015116604086015280606085015116606086015280608085015116608086015260a084015160a086015260c0840151915060c0850160005b6010811015611983578351831682529284019290840190600101611964565b50505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561169d576119bb83855161190f565b928401926102c092909201916001016119a8565b6102c0810182356119df81611d74565b60ff1682526020838101356119f381611d5f565b63ffffffff90811684830152604085013590611a0e82611d5f565b9081166040850152606085013590611a2582611d5f565b9081166060850152608085013590611a3c82611d5f565b808216608086015260a086013560a086015260c08501915060c0860160005b6010811015611a83578135611a6f81611d5f565b831684529284019290840190600101611a5b565b505050505092915050565b6102c08101610762828461190f565b60008219821115611ab057611ab0611b90565b500190565b600082611ad257634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611ae957611ae9611b90565b500390565b81816000805b6010811015611b4f578335611b0881611d5f565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611b4757600091506001830192505b600101611af4565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611b8957611b89611b90565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561076281611d5f565b8135611bea81611d74565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611c2781611d5f565b64ffffffff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000008416171784555050506040820135611c6b81611d5f565b81547fffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffff16602882901b68ffffffff00000000001617825550611cf0611cb260608401611bd2565b82547fffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffff1660489190911b6cffffffff00000000000000000016178255565b611d41611cff60808401611bd2565b82547fffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffff1660689190911b70ffffffff0000000000000000000000000016178255565b60a08201356001820155611d5b60c0830160028301611aee565b5050565b63ffffffff81168114611d7157600080fd5b50565b60ff81168114611d7157600080fdfea264697066735822122052c377a37764fc87b40bcbfbfff7ee9c0d77ab794c0ef522aa772ca4ad097a4164736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1E93 CODESIZE SUB DUP1 PUSH3 0x1E93 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x98 JUMP JUMPDEST DUP1 PUSH3 0x40 DUP2 PUSH3 0x48 JUMP JUMPDEST POP POP PUSH3 0xCA JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0xAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0xC3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1DB9 DUP1 PUSH3 0xDA PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0xE4DD2690 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0xF1143765 EQ PUSH2 0x235 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x248 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1DB JUMPI DUP1 PUSH4 0xD365027D EQ PUSH2 0x1FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x4AAC253D EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0x4E602CD8 EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6661ABD EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x3659F543 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x39DD7F08 EQ PUSH2 0x130 JUMPI DUP1 PUSH4 0x472B619C EQ PUSH2 0x14D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12E PUSH2 0x129 CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x138 PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0x138 PUSH2 0x6B1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0x18D PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x18F2 JUMP JUMPDEST PUSH2 0x6D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 PUSH2 0x1A8E JUMP JUMPDEST PUSH2 0x1AD PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x184B JUMP JUMPDEST PUSH2 0x768 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 PUSH2 0x198C JUMP JUMPDEST PUSH2 0x12E PUSH2 0x833 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x162 JUMP JUMPDEST PUSH2 0x1EE PUSH2 0x1E9 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x936 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x20C CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x9AA JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x162 JUMP JUMPDEST PUSH2 0x18D PUSH2 0x230 CALLDATASIZE PUSH1 0x4 PUSH2 0x18D9 JUMP JUMPDEST PUSH2 0xC92 JUMP JUMPDEST PUSH2 0x138 PUSH2 0x243 CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0xD9C JUMP JUMPDEST PUSH2 0x12E PUSH2 0x256 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x107A JUMP JUMPDEST CALLER PUSH2 0x26E PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x29C JUMPI POP CALLER PUSH2 0x291 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x313 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x42F JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 DUP8 MUL SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP2 DUP3 SWAP1 MSTORE SWAP2 SWAP4 PUSH1 0xC0 DUP6 ADD SWAP3 SWAP2 PUSH1 0x2 DUP6 ADD SWAP2 PUSH1 0x10 SWAP2 SWAP1 DUP4 SWAP1 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x3DB JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x337 JUMP JUMPDEST POP POP POP POP SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT ISZERO PUSH2 0x5E6 JUMPI PUSH1 0x3 DUP1 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH2 0x453 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x463 JUMPI PUSH2 0x463 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x506 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x56B SWAP2 SWAP1 PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0x5E4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F6E6F6E2D73657175656E7469616C2D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7072697A652D7469657200000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST POP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP3 SWAP1 PUSH1 0x4 MUL PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B ADD PUSH2 0x627 DUP3 DUP3 PUSH2 0x1BDF JUMP JUMPDEST POP PUSH2 0x63A SWAP1 POP PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH31 0xFA6C2CD74E788568AC0C75B649897ED491B894D237486258B420D7E77490BF DUP4 PUSH1 0x40 MLOAD PUSH2 0x66E SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0x690 JUMPI PUSH2 0x690 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH2 0x6C5 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x690 JUMPI PUSH2 0x690 PUSH2 0x1BA6 JUMP JUMPDEST PUSH2 0x6DD PUSH2 0x17C0 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND GT PUSH2 0x759 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6E6F742D7A6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F00000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH2 0x762 DUP3 PUSH2 0x11B6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x785 JUMPI PUSH2 0x785 PUSH2 0x1BBC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x7BE JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x7AB PUSH2 0x17C0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x7A3 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x82B JUMPI PUSH2 0x7FB DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x7E1 JUMPI PUSH2 0x7E1 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x7F6 SWAP2 SWAP1 PUSH2 0x18F2 JUMP JUMPDEST PUSH2 0x11B6 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x80D JUMPI PUSH2 0x80D PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x823 SWAP1 PUSH2 0x1B57 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x7C4 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x88D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x8A2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x145F JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x8D4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x92A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH2 0x934 PUSH1 0x0 PUSH2 0x145F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x94B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9A1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH2 0x762 DUP3 PUSH2 0x14BC JUMP JUMPDEST CALLER PUSH2 0x9BD PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA13 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 SLOAD DUP1 PUSH2 0xA63 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F6E6F2D7072697A652D746965727300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xA71 PUSH1 0x1 DUP5 PUSH2 0x1AD7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xA88 JUMPI PUSH2 0xA88 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH4 0xFFFFFFFF PUSH2 0x100 SWAP1 SWAP2 DIV AND SWAP2 POP DUP2 SWAP1 PUSH2 0xABA SWAP1 PUSH1 0x40 DUP9 ADD SWAP1 DUP9 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xB34 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6F75742D6F662D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x72616E6765000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB52 PUSH2 0xB49 PUSH1 0x40 DUP9 ADD PUSH1 0x20 DUP10 ADD PUSH2 0x18F2 JUMP JUMPDEST DUP6 DUP6 PUSH1 0x3 PUSH2 0x15A8 JUMP JUMPDEST SWAP1 POP PUSH2 0xB64 PUSH1 0x40 DUP8 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xB7D JUMPI PUSH2 0xB7D PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH4 0xFFFFFFFF AND EQ PUSH2 0xC0C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6D7573742D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST DUP6 PUSH1 0x3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xC20 JUMPI PUSH2 0xC20 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD DUP2 DUP2 PUSH2 0xC3A SWAP2 SWAP1 PUSH2 0x1BDF JUMP JUMPDEST POP PUSH2 0xC4D SWAP1 POP PUSH1 0x40 DUP8 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH32 0xEC70F602A8E5C0EAB140E799C5B7BB34035BD73C6EB882FAD555C7C8860817E7 DUP8 PUSH1 0x40 MLOAD PUSH2 0xC82 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xC9A PUSH2 0x17C0 JUMP JUMPDEST PUSH1 0x3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xCAD JUMPI PUSH2 0xCAD PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0xD50 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xDB1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0xE56 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F686973746F72792D656D7074790000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH2 0xE6A SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xE7A JUMPI PUSH2 0xE7A PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0xF1D JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xF82 SWAP2 SWAP1 PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFD6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F696E76616C69642D647261772D6964 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP5 SWAP2 SWAP1 PUSH2 0xFE9 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xFF9 JUMPI PUSH2 0xFF9 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD DUP2 DUP2 PUSH2 0x1013 SWAP2 SWAP1 PUSH2 0x1BDF JUMP JUMPDEST POP PUSH2 0x1026 SWAP1 POP PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH32 0xEC70F602A8E5C0EAB140E799C5B7BB34035BD73C6EB882FAD555C7C8860817E7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x105B SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1073 PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x18F2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x108D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x115F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH2 0x11BE PUSH2 0x17C0 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP1 PUSH2 0x120E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F6E6F2D7072697A652D746965727300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x121C PUSH1 0x1 DUP5 PUSH2 0x1AD7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1233 JUMPI PUSH2 0x1233 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD PUSH1 0x0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x126C JUMPI PUSH2 0x126C PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH4 0xFFFFFFFF PUSH2 0x100 SWAP1 SWAP2 DIV DUP2 AND SWAP2 POP DUP3 DUP2 AND SWAP1 DUP9 AND LT ISZERO PUSH2 0x1306 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6F75742D6F662D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x72616E6765000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1420 JUMPI PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x132C JUMPI PUSH2 0x132C PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x13CF JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP6 POP POP POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x1447 JUMPI PUSH1 0x3 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x132C JUMPI PUSH2 0x132C PUSH2 0x1BA6 JUMP JUMPDEST PUSH2 0x1454 DUP8 DUP6 DUP6 PUSH1 0x3 PUSH2 0x16A9 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x1545 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 DUP5 JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH2 0x15BC DUP5 DUP5 PUSH2 0x1AD7 JUMP JUMPDEST PUSH2 0x15C6 SWAP2 SWAP1 PUSH2 0x1AB5 JUMP JUMPDEST PUSH2 0x15D0 SWAP1 DUP5 PUSH2 0x1A9D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x15E6 JUMPI PUSH2 0x15E6 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH4 0xFFFFFFFF PUSH2 0x100 SWAP1 SWAP2 DIV DUP2 AND SWAP2 POP DUP11 AND DUP2 EQ ISZERO PUSH2 0x1617 JUMPI POP SWAP3 POP PUSH2 0x169D JUMP JUMPDEST DUP10 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x163D JUMPI PUSH2 0x1636 DUP3 PUSH1 0x1 PUSH2 0x1A9D JUMP JUMPDEST SWAP4 POP PUSH2 0x165F JUMP JUMPDEST DUP10 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x165F JUMPI PUSH2 0x165C PUSH1 0x1 DUP4 PUSH2 0x1AD7 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP3 DUP5 EQ ISZERO PUSH2 0x1696 JUMPI DUP10 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x168E JUMPI PUSH2 0x1685 PUSH1 0x1 DUP4 PUSH2 0x1AD7 JUMP JUMPDEST SWAP5 POP POP POP PUSH2 0x169D JUMP JUMPDEST POP SWAP3 POP PUSH2 0x169D JUMP JUMPDEST POP POP PUSH2 0x15AE JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x16B1 PUSH2 0x17C0 JUMP JUMPDEST DUP2 PUSH2 0x16BE DUP7 DUP7 DUP7 DUP7 PUSH2 0x15A8 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x16CE JUMPI PUSH2 0x16CE PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x1771 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP2 ADD PUSH2 0x17FE PUSH2 0x1803 JUMP JUMPDEST SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1834 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1073 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x185E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1876 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x188A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1899 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x18AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1904 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1073 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 DUP7 ADD MSTORE DUP1 PUSH1 0x40 DUP6 ADD MLOAD AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE DUP1 PUSH1 0x80 DUP6 ADD MLOAD AND PUSH1 0x80 DUP7 ADD MSTORE PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP5 ADD MLOAD SWAP2 POP PUSH1 0xC0 DUP6 ADD PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1983 JUMPI DUP4 MLOAD DUP4 AND DUP3 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP1 DUP5 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1964 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x169D JUMPI PUSH2 0x19BB DUP4 DUP6 MLOAD PUSH2 0x190F JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH2 0x2C0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19A8 JUMP JUMPDEST PUSH2 0x2C0 DUP2 ADD DUP3 CALLDATALOAD PUSH2 0x19DF DUP2 PUSH2 0x1D74 JUMP JUMPDEST PUSH1 0xFF AND DUP3 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH2 0x19F3 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP4 ADD MSTORE PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP1 PUSH2 0x1A0E DUP3 PUSH2 0x1D5F JUMP JUMPDEST SWAP1 DUP2 AND PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0x60 DUP6 ADD CALLDATALOAD SWAP1 PUSH2 0x1A25 DUP3 PUSH2 0x1D5F JUMP JUMPDEST SWAP1 DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD SWAP1 PUSH2 0x1A3C DUP3 PUSH2 0x1D5F JUMP JUMPDEST DUP1 DUP3 AND PUSH1 0x80 DUP7 ADD MSTORE PUSH1 0xA0 DUP7 ADD CALLDATALOAD PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD SWAP2 POP PUSH1 0xC0 DUP7 ADD PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1A83 JUMPI DUP2 CALLDATALOAD PUSH2 0x1A6F DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP4 AND DUP5 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP1 DUP5 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A5B JUMP JUMPDEST POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2C0 DUP2 ADD PUSH2 0x762 DUP3 DUP5 PUSH2 0x190F JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1AB0 JUMPI PUSH2 0x1AB0 PUSH2 0x1B90 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1AD2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1AE9 JUMPI PUSH2 0x1AE9 PUSH2 0x1B90 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1B4F JUMPI DUP4 CALLDATALOAD PUSH2 0x1B08 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP4 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x3 DUP6 SWAP1 SHL DUP2 DUP2 SHL DUP1 NOT SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP2 AND SWAP1 SHL AND OR DUP4 SSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1C DUP3 GT ISZERO PUSH2 0x1B47 JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x1 DUP4 ADD SWAP3 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1AF4 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1B89 JUMPI PUSH2 0x1B89 PUSH2 0x1B90 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x762 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1BEA DUP2 PUSH2 0x1D74 JUMP JUMPDEST PUSH1 0xFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1C27 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH5 0xFFFFFFFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000 DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD PUSH2 0x1C6B DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP2 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFF AND PUSH1 0x28 DUP3 SWAP1 SHL PUSH9 0xFFFFFFFF0000000000 AND OR DUP3 SSTORE POP PUSH2 0x1CF0 PUSH2 0x1CB2 PUSH1 0x60 DUP5 ADD PUSH2 0x1BD2 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFF AND PUSH1 0x48 SWAP2 SWAP1 SWAP2 SHL PUSH13 0xFFFFFFFF000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1D41 PUSH2 0x1CFF PUSH1 0x80 DUP5 ADD PUSH2 0x1BD2 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x68 SWAP2 SWAP1 SWAP2 SHL PUSH17 0xFFFFFFFF00000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD CALLDATALOAD PUSH1 0x1 DUP3 ADD SSTORE PUSH2 0x1D5B PUSH1 0xC0 DUP4 ADD PUSH1 0x2 DUP4 ADD PUSH2 0x1AEE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1D71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1D71 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE 0xC3 PUSH24 0xA37764FC87B40BCBFBFFF7EE9C0D77AB794C0EF522AA772C LOG4 0xAD MULMOD PUSH27 0x4164736F6C63430008060033000000000000000000000000000000 ",
              "sourceMap": "336:5839:55:-:0;;;597:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;633:6;1648:24:19;633:6:55;1648:9:19;:24::i;:::-;1603:76;597:46:55;336:5839;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:290:94:-;84:6;137:2;125:9;116:7;112:23;108:32;105:2;;;153:1;150;143:12;105:2;179:16;;-1:-1:-1;;;;;224:31:94;;214:42;;204:2;;270:1;267;260:12;204:2;293:5;95:209;-1:-1:-1;;;95:209:94:o;:::-;336:5839:55;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_binarySearchIndex_14050": {
                  "entryPoint": 5544,
                  "id": 14050,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_binarySearch_13945": {
                  "entryPoint": 5801,
                  "id": 13945,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_getPrizeTier_13919": {
                  "entryPoint": 4534,
                  "id": 13919,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setManager_3068": {
                  "entryPoint": 5308,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 5215,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 2099,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@count_14074": {
                  "entryPoint": null,
                  "id": 14074,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNewestDrawId_13794": {
                  "entryPoint": 1713,
                  "id": 13794,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getOldestDrawId_13779": {
                  "entryPoint": 1658,
                  "id": 13779,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeTierAtIndex_14064": {
                  "entryPoint": 3218,
                  "id": 14064,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeTierList_13844": {
                  "entryPoint": 1896,
                  "id": 13844,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getPrizeTier_13767": {
                  "entryPoint": 1749,
                  "id": 13767,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@popAndPush_13746": {
                  "entryPoint": 3484,
                  "id": 13746,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@push_13609": {
                  "entryPoint": 603,
                  "id": 13609,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 2241,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@replace_13689": {
                  "entryPoint": 2474,
                  "id": 13689,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 2358,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_3192": {
                  "entryPoint": 4218,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 6178,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr": {
                  "entryPoint": 6219,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_PrizeTier_$15287_calldata_ptr": {
                  "entryPoint": 6336,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 6361,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 6386,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_struct_PrizeTier": {
                  "entryPoint": 6415,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6540,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_748fa13d4b59fda362aebd6d03b9a11bf7419fb82d27d4759ad31da474fa0b94__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_764ec7a6b7e4908a60075f7876c755b0e5ecbf10c6b118e6e2bc41b0c5331b8e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_81a6ac4d93386e4664148708e39265397ab15a87169e5bfa62b60a00d4fcc0e9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_9d51ddb2d2465fa780c557595db38037821c93a2c58e1a1214090c3403a3ed11__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ae288eadfb51e869d9361d1b46deeab4581e563b2304ae0e2386e76f4332061a__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b879ff06e19fd1e2f2ae270b6dbae5992e47f536f5db6d07eec27d494965bb8c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f5807091b05c9526c66502840ce61b173492452ea59d28722ef71ac844aba374__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeTier_$15287_calldata_ptr__to_t_struct$_PrizeTier_$15287_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6607,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeTier_$15287_memory_ptr__to_t_struct$_PrizeTier_$15287_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6798,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 6813,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 6837,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 6871,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_array_to_storage_from_array_uint32_calldata_to_array_uint": {
                  "entryPoint": 6894,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 6999,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 7056,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 7078,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 7100,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "read_from_calldatat_uint32": {
                  "entryPoint": 7122,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "update_storage_value_offset_0t_struct$_PrizeTier_$15287_calldata_ptr_to_t_struct$_PrizeTier_$15287_storage": {
                  "entryPoint": 7135,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offset_13t_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offset_5t_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "update_storage_value_offsett_uint32_to_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 7519,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint8": {
                  "entryPoint": 7540,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:14922:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "277:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "286:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "289:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "279:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "279:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "279:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "213:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "224:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "231:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "220:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "220:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "210:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "210:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "203:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "203:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "200:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "302:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "312:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "302:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "432:510:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "478:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "487:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "490:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "480:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "480:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "480:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "453:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "462:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "449:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "449:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "474:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "445:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "445:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "442:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "503:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "530:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "517:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "517:23:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "507:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "549:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "559:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "553:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "604:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "613:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "616:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "606:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "606:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "606:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "592:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "600:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "589:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "589:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "586:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "629:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "643:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "654:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "639:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "639:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "633:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "709:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "718:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "721:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "711:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "711:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "711:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "688:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "692:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "684:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "684:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "699:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "680:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "680:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "673:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "673:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "670:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "734:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "761:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "748:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "748:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "738:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "791:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "800:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "803:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "793:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "793:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "793:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "779:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "787:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "776:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "776:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "773:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "865:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "874:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "877:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "867:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "867:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "867:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "830:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "838:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "841:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "834:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "834:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "826:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "826:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "851:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "822:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "822:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "856:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "819:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "819:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "816:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "890:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "904:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "908:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "900:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "900:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "890:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "920:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "930:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "920:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "390:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "401:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "413:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "421:6:94",
                            "type": ""
                          }
                        ],
                        "src": "328:614:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1047:97:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1094:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1103:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1106:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1096:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1096:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1096:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1068:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1077:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1064:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1064:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1089:3:94",
                                    "type": "",
                                    "value": "704"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1060:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1060:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1057:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1119:19:94",
                              "value": {
                                "name": "headStart",
                                "nodeType": "YulIdentifier",
                                "src": "1129:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1119:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeTier_$15287_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1013:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1024:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1036:6:94",
                            "type": ""
                          }
                        ],
                        "src": "947:197:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1219:110:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1265:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1274:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1277:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1267:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1267:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1267:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1240:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1249:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1236:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1236:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1261:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1232:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1232:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1229:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1290:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1313:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1300:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1300:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1290:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1185:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1196:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1208:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1149:180:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1403:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1449:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1458:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1461:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1451:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1451:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1451:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1424:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1433:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1420:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1420:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1445:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1416:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1416:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1413:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1474:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1500:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1487:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1487:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1478:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1543:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1519:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1519:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1519:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1558:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1568:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1558:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1369:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1380:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1392:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1334:245:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1637:817:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1654:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1669:5:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "1663:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1663:12:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1677:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1659:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1659:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1647:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1647:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1647:36:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1692:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1702:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1696:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1715:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1745:5:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1752:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1741:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1741:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1735:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1735:21:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "1719:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1765:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1775:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1769:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1805:3:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1810:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1801:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1801:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1819:12:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "1833:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1815:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1815:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1794:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1794:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1794:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1857:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1862:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1853:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1853:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1883:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1890:4:94",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1879:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1879:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "1873:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1873:23:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "1898:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1869:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1869:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1846:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1846:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1846:56:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1922:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1927:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1918:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1918:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1948:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1955:4:94",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1944:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1944:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "1938:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1938:23:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "1963:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1934:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1934:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1911:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1911:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1911:56:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1987:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1992:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1983:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1983:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2013:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2020:4:94",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2009:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2009:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2003:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2003:23:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2028:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1999:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1999:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1976:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1976:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1976:56:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2052:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2057:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2048:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2048:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2074:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2081:4:94",
                                            "type": "",
                                            "value": "0xa0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2070:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2070:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2064:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2064:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2041:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2041:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2041:47:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2097:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2129:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2136:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2125:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2125:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2119:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2119:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2101:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2151:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2168:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2173:4:94",
                                    "type": "",
                                    "value": "0xc0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2164:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2164:14:94"
                              },
                              "variables": [
                                {
                                  "name": "pos_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2155:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2187:14:94",
                              "value": {
                                "name": "pos_1",
                                "nodeType": "YulIdentifier",
                                "src": "2196:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos_1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2187:5:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2210:28:94",
                              "value": {
                                "name": "memberValue0_1",
                                "nodeType": "YulIdentifier",
                                "src": "2224:14:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2214:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2247:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2256:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2251:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2313:135:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2334:5:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2351:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "2345:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2345:13:94"
                                            },
                                            {
                                              "name": "_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "2360:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "2341:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2341:22:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2327:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2327:37:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2327:37:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2377:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2390:5:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2397:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2386:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2386:14:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2377:5:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2413:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2427:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2435:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2423:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2423:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2413:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2277:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2280:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2274:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2274:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2286:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2288:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2297:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2300:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2293:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2293:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2288:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2270:3:94",
                                "statements": []
                              },
                              "src": "2266:182:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeTier",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1621:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1628:3:94",
                            "type": ""
                          }
                        ],
                        "src": "1584:870:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2560:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2570:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2582:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2593:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2578:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2578:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2570:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2612:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2627:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2635:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2623:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2623:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2605:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2605:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2605:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2529:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2540:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2551:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2459:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2897:506:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2907:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2917:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2911:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2928:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2946:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2957:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2942:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2942:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2932:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2976:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2987:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2969:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2969:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2969:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2999:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "3010:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "3003:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3025:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3045:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3039:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3039:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3029:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3068:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3076:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3061:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3061:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3061:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3092:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3103:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3114:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3099:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3099:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3092:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3126:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3144:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3152:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3140:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3140:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3130:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3164:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3173:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3168:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3232:145:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "3280:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3274:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3274:13:94"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3289:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeTier",
                                        "nodeType": "YulIdentifier",
                                        "src": "3246:27:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3246:47:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3246:47:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3306:23:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3317:3:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3322:6:94",
                                          "type": "",
                                          "value": "0x02c0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3313:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3313:16:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3306:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3342:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3356:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3364:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3352:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3352:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3342:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3194:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3197:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3191:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3191:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3205:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3207:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3216:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3219:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3212:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3212:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3207:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3187:3:94",
                                "statements": []
                              },
                              "src": "3183:194:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3386:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "3394:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3386:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2866:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2877:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2888:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2690:713:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3503:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3513:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3525:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3536:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3521:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3521:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3513:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3555:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3580:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3573:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3573:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3566:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3566:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3548:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3548:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3548:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3472:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3483:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3494:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3408:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3774:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3791:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3802:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3784:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3784:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3784:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3825:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3836:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3821:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3821:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3841:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3814:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3814:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3814:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3864:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3875:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3860:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3860:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3880:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3853:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3853:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3853:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3935:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3946:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3931:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3931:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3951:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3924:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3924:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3924:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3966:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3978:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3974:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3974:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3966:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3751:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3765:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3600:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4178:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4195:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4206:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4188:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4188:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4188:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4229:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4240:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4225:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4225:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4245:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4218:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4218:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4218:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4268:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4279:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4264:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4264:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4284:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4257:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4257:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4257:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4320:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4332:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4343:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4328:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4328:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4320:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4155:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4169:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4004:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4531:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4548:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4559:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4541:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4541:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4541:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4582:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4593:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4578:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4578:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4598:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4571:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4571:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4571:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4621:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4632:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4617:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4617:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f686973746f72792d656d707479",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4637:32:94",
                                    "type": "",
                                    "value": "PrizeTierHistory/history-empty"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4610:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4610:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4610:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4679:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4691:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4702:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4687:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4687:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4679:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_748fa13d4b59fda362aebd6d03b9a11bf7419fb82d27d4759ad31da474fa0b94__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4508:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4522:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4357:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4890:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4907:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4918:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4900:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4900:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4900:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4941:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4952:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4937:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4937:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4957:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4930:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4930:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4930:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4980:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4991:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4976:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4976:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f647261772d69642d6f75742d6f662d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4996:34:94",
                                    "type": "",
                                    "value": "PrizeTierHistory/draw-id-out-of-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4969:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4969:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4969:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5051:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5062:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5047:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5047:18:94"
                                  },
                                  {
                                    "hexValue": "72616e6765",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5067:7:94",
                                    "type": "",
                                    "value": "range"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5040:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5040:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5040:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5084:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5096:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5107:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5092:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5092:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5084:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_764ec7a6b7e4908a60075f7876c755b0e5ecbf10c6b118e6e2bc41b0c5331b8e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4867:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4881:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4716:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5296:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5313:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5324:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5306:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5306:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5306:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5347:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5358:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5343:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5343:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5363:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5336:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5336:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5336:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5386:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5397:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5382:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5382:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5402:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5375:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5375:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5375:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5445:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5457:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5468:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5453:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5453:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5445:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5273:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5287:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5122:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5656:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5673:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5684:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5666:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5666:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5666:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5707:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5718:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5703:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5703:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5723:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5696:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5696:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5696:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5746:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5757:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5742:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5742:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f647261772d69642d6d7573742d6d61",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5762:34:94",
                                    "type": "",
                                    "value": "PrizeTierHistory/draw-id-must-ma"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5735:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5735:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5735:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5817:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5828:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5813:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5813:18:94"
                                  },
                                  {
                                    "hexValue": "746368",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5833:5:94",
                                    "type": "",
                                    "value": "tch"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5806:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5806:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5806:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5848:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5860:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5871:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5856:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5856:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5848:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_81a6ac4d93386e4664148708e39265397ab15a87169e5bfa62b60a00d4fcc0e9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5633:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5647:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5482:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6060:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6077:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6088:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6070:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6070:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6070:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6111:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6122:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6107:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6107:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6127:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6100:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6100:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6100:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6150:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6161:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6146:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6146:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f6e6f2d7072697a652d7469657273",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6166:33:94",
                                    "type": "",
                                    "value": "PrizeTierHistory/no-prize-tiers"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6139:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6139:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6139:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6209:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6221:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6232:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6217:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6217:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6209:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_9d51ddb2d2465fa780c557595db38037821c93a2c58e1a1214090c3403a3ed11__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6037:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6051:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5886:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6420:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6437:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6448:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6430:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6430:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6430:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6471:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6482:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6467:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6467:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6487:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6460:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6460:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6460:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6510:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6521:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6506:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6506:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f6e6f6e2d73657175656e7469616c2d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6526:34:94",
                                    "type": "",
                                    "value": "PrizeTierHistory/non-sequential-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6499:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6499:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6499:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6581:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6592:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6577:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6577:18:94"
                                  },
                                  {
                                    "hexValue": "7072697a652d74696572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6597:12:94",
                                    "type": "",
                                    "value": "prize-tier"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6570:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6570:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6570:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6619:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6631:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6642:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6627:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6627:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6619:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ae288eadfb51e869d9361d1b46deeab4581e563b2304ae0e2386e76f4332061a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6397:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6411:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6246:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6831:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6848:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6859:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6841:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6841:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6841:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6882:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6893:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6878:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6878:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6898:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6871:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6871:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6871:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6921:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6932:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6917:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6917:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f696e76616c69642d647261772d6964",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6937:34:94",
                                    "type": "",
                                    "value": "PrizeTierHistory/invalid-draw-id"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6910:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6910:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6910:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6981:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6993:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7004:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6989:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6989:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6981:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b879ff06e19fd1e2f2ae270b6dbae5992e47f536f5db6d07eec27d494965bb8c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6808:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6822:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6657:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7192:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7209:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7220:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7202:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7202:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7202:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7243:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7254:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7239:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7239:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7259:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7232:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7232:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7232:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7282:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7293:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7278:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7278:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7298:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7271:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7271:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7271:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7353:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7364:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7349:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7349:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7369:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7342:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7342:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7342:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7387:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7399:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7410:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7395:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7395:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7387:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7169:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7183:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7018:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7599:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7616:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7627:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7609:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7609:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7609:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7650:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7661:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7646:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7646:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7666:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7639:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7639:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7639:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7689:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7700:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7685:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7685:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7705:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7678:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7678:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7678:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7760:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7771:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7756:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7756:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7776:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7749:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7749:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7749:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7793:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7805:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7816:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7801:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7801:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7793:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7576:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7590:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7425:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8005:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8022:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8033:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8015:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8015:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8015:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8056:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8067:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8052:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8052:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8072:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8045:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8045:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8045:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8095:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8106:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8091:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8091:18:94"
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f647261772d69642d6e6f742d7a6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8111:34:94",
                                    "type": "",
                                    "value": "PrizeTierHistory/draw-id-not-zer"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8084:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8084:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8084:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8166:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8177:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8162:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8162:18:94"
                                  },
                                  {
                                    "hexValue": "6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8182:3:94",
                                    "type": "",
                                    "value": "o"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8155:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8155:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8155:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8195:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8207:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8218:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8203:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8203:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8195:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f5807091b05c9526c66502840ce61b173492452ea59d28722ef71ac844aba374__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7982:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7996:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7831:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8392:1279:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8402:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8414:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8425:3:94",
                                    "type": "",
                                    "value": "704"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8410:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8410:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8402:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8438:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8464:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8451:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8451:20:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "8442:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8503:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "8480:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8480:29:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8480:29:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8525:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "8540:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8547:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8536:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8536:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8518:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8518:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8518:35:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8562:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8572:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8566:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8585:44:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8617:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8625:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8613:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8613:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8600:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8600:29:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8589:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8662:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "8638:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8638:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8638:32:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8679:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8689:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "8683:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8719:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8730:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8715:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8715:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8739:7:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "8748:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8735:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8735:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8708:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8708:44:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8708:44:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8761:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8793:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8801:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8789:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8789:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8776:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8776:31:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "8765:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "8840:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "8816:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8816:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8816:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8868:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8879:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8864:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8864:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "8890:7:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "8899:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8886:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8886:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8857:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8857:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8857:46:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8912:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8944:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8952:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8940:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8940:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8927:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8927:31:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "8916:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "8991:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "8967:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8967:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8967:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9019:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9030:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9015:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9015:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "9041:7:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "9050:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9037:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9037:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9008:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9008:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9008:46:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9063:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9095:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9103:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9091:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9091:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9078:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9078:31:94"
                              },
                              "variables": [
                                {
                                  "name": "value_4",
                                  "nodeType": "YulTypedName",
                                  "src": "9067:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9142:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "9118:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9118:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9118:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9170:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9181:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9166:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9166:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "9192:7:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "9201:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9188:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9188:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9159:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9159:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9159:46:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9225:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9236:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9221:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9221:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "9260:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9268:4:94",
                                            "type": "",
                                            "value": "0xa0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9256:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9256:17:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "9243:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9243:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9214:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9214:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9214:61:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9284:31:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9299:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9310:4:94",
                                    "type": "",
                                    "value": "0xc0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9295:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9295:20:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "9288:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9324:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "9331:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "9324:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9343:31:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9361:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9369:4:94",
                                    "type": "",
                                    "value": "0xc0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9357:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9357:17:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "9347:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9383:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9392:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9387:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9449:216:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "9463:35:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "9491:6:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "9478:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9478:20:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_5",
                                        "nodeType": "YulTypedName",
                                        "src": "9467:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_5",
                                          "nodeType": "YulIdentifier",
                                          "src": "9535:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "9511:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9511:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9511:32:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "9563:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "9572:7:94"
                                            },
                                            {
                                              "name": "_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "9581:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "9568:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9568:16:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9556:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9556:29:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9556:29:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9598:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "9609:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9614:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9605:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9605:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "9598:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9630:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "9644:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9652:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9640:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9640:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "9630:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9413:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9416:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9410:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9410:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9422:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9424:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9433:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9436:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9429:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9429:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9424:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9406:3:94",
                                "statements": []
                              },
                              "src": "9402:263:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeTier_$15287_calldata_ptr__to_t_struct$_PrizeTier_$15287_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8361:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8372:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8383:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8233:1438:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9833:98:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9843:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9855:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9866:3:94",
                                    "type": "",
                                    "value": "704"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9851:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9851:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9843:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9907:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9915:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeTier",
                                  "nodeType": "YulIdentifier",
                                  "src": "9879:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9879:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9879:46:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeTier_$15287_memory_ptr__to_t_struct$_PrizeTier_$15287_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9802:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9813:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9824:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9676:255:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10037:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10047:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10059:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10070:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10055:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10055:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10047:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10089:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10100:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10082:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10082:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10082:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10006:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10017:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10028:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9936:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10217:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10227:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10239:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10250:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10235:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10235:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10227:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10269:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10284:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10292:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10280:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10280:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10262:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10262:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10262:42:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10186:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10197:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10208:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10118:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10363:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10390:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "10392:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10392:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10392:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10379:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "10386:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "10382:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10382:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10376:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10376:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "10373:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10421:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10432:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10435:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10428:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10428:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "10421:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10346:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10349:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "10355:3:94",
                            "type": ""
                          }
                        ],
                        "src": "10315:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10494:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10525:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10546:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10549:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10539:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10539:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10539:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10647:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10650:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10640:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10640:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10640:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10675:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10678:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10668:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10668:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10668:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10514:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10507:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10507:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "10504:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10702:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10711:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10714:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "10707:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10707:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "10702:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10479:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10482:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "10488:1:94",
                            "type": ""
                          }
                        ],
                        "src": "10448:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10776:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10798:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "10800:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10800:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10800:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10792:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10795:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10789:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10789:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "10786:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10829:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "10841:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "10844:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "10837:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10837:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "10829:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10758:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10761:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "10767:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10727:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10946:798:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10956:19:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "10970:5:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10960:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10984:23:94",
                              "value": {
                                "name": "slot",
                                "nodeType": "YulIdentifier",
                                "src": "11003:4:94"
                              },
                              "variables": [
                                {
                                  "name": "elementSlot",
                                  "nodeType": "YulTypedName",
                                  "src": "10988:11:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11016:22:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11037:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "elementOffset",
                                  "nodeType": "YulTypedName",
                                  "src": "11020:13:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11047:22:94",
                              "value": {
                                "name": "elementOffset",
                                "nodeType": "YulIdentifier",
                                "src": "11056:13:94"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11051:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11125:613:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "11139:35:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "11167:6:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "11154:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11154:20:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "11143:7:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11211:7:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "11187:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11187:32:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11187:32:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "11232:20:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "11242:10:94",
                                      "type": "",
                                      "value": "0xffffffff"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "11236:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "11265:28:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "11281:11:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sload",
                                        "nodeType": "YulIdentifier",
                                        "src": "11275:5:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11275:18:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "11269:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "11306:38:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11327:1:94",
                                          "type": "",
                                          "value": "3"
                                        },
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "11330:13:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "11323:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11323:21:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "shiftBits",
                                        "nodeType": "YulTypedName",
                                        "src": "11310:9:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "11357:30:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "shiftBits",
                                          "nodeType": "YulIdentifier",
                                          "src": "11373:9:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11384:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "11369:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11369:18:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "mask",
                                        "nodeType": "YulTypedName",
                                        "src": "11361:4:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "11407:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11427:2:94"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "mask",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11435:4:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "not",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "11431:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "11431:9:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "11423:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11423:18:94"
                                            },
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "shiftBits",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11451:9:94"
                                                    },
                                                    {
                                                      "arguments": [
                                                        {
                                                          "name": "value_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "11466:7:94"
                                                        },
                                                        {
                                                          "name": "_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "11475:2:94"
                                                        }
                                                      ],
                                                      "functionName": {
                                                        "name": "and",
                                                        "nodeType": "YulIdentifier",
                                                        "src": "11462:3:94"
                                                      },
                                                      "nodeType": "YulFunctionCall",
                                                      "src": "11462:16:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "11447:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "11447:32:94"
                                                },
                                                {
                                                  "name": "mask",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11481:4:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "11443:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11443:43:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "or",
                                            "nodeType": "YulIdentifier",
                                            "src": "11420:2:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11420:67:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11400:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11400:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11400:88:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11501:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "11515:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11523:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11511:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11511:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "11501:6:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11539:38:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "11560:13:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11575:1:94",
                                          "type": "",
                                          "value": "4"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11556:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11556:21:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "elementOffset",
                                        "nodeType": "YulIdentifier",
                                        "src": "11539:13:94"
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "11627:101:94",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "11645:18:94",
                                          "value": {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11662:1:94",
                                            "type": "",
                                            "value": "0"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementOffset",
                                              "nodeType": "YulIdentifier",
                                              "src": "11645:13:94"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "11680:34:94",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "elementSlot",
                                                "nodeType": "YulIdentifier",
                                                "src": "11699:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11712:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11695:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11695:19:94"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementSlot",
                                              "nodeType": "YulIdentifier",
                                              "src": "11680:11:94"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "11596:13:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11611:2:94",
                                          "type": "",
                                          "value": "28"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "11593:2:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11593:21:94"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "11590:2:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11089:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11092:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11086:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11086:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11098:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11100:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11109:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11112:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11105:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11105:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11100:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11082:3:94",
                                "statements": []
                              },
                              "src": "11078:660:94"
                            }
                          ]
                        },
                        "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "10929:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10935:5:94",
                            "type": ""
                          }
                        ],
                        "src": "10857:887:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11796:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11887:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11889:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11889:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11889:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11812:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11819:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "11809:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11809:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "11806:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11918:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11929:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11936:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11925:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11925:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "11918:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11778:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "11788:3:94",
                            "type": ""
                          }
                        ],
                        "src": "11749:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11981:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11998:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12001:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11991:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11991:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11991:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12095:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12098:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12088:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12088:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12088:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12119:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12122:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12112:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12112:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12112:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11949:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12170:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12187:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12190:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12180:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12180:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12180:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12284:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12287:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12277:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12277:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12277:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12308:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12311:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12301:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12301:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12301:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12138:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12359:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12376:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12379:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12369:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12369:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12369:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12473:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12476:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12466:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12466:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12466:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12497:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12500:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12490:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12490:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12490:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12327:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12576:114:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12586:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "12612:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12599:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12599:17:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "12590:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "12649:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "12625:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12625:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12625:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12664:20:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "12679:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "returnValue",
                                  "nodeType": "YulIdentifier",
                                  "src": "12664:11:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "read_from_calldatat_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "ptr",
                            "nodeType": "YulTypedName",
                            "src": "12552:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "returnValue",
                            "nodeType": "YulTypedName",
                            "src": "12560:11:94",
                            "type": ""
                          }
                        ],
                        "src": "12516:174:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12828:1040:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12838:34:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "12866:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12853:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12853:19:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12842:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12904:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "12881:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12881:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12881:31:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12921:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12935:7:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12944:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12931:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12931:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12925:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12958:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "12974:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12968:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12968:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "12962:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "12995:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "13008:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13012:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13004:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13004:75:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13081:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "13001:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13001:83:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12988:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12988:97:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12988:97:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13094:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "13126:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13133:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13122:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13122:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13109:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13109:28:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "13098:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "13170:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "13146:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13146:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13146:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "13194:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "13210:2:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13214:66:94",
                                                "type": "",
                                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "13206:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13206:75:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13283:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "or",
                                          "nodeType": "YulIdentifier",
                                          "src": "13203:2:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13203:83:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13296:1:94",
                                                "type": "",
                                                "value": "8"
                                              },
                                              {
                                                "name": "value_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "13299:7:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "13292:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13292:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13309:12:94",
                                            "type": "",
                                            "value": "0xffffffff00"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13288:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13288:34:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "13200:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13200:123:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13187:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13187:137:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13187:137:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13333:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "13365:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13372:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13361:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13361:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13348:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13348:28:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "13337:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "13409:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "13385:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13385:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13385:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "13474:4:94"
                                  },
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "13480:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_5t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "13426:47:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13426:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13426:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "13543:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "13580:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13587:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13576:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13576:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "13549:26:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13549:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "13497:45:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13497:95:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13497:95:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "13650:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "13687:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13694:3:94",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13683:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13683:15:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "13656:26:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13656:43:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_13t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "13601:48:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13601:99:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13601:99:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "13720:4:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13726:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13716:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13716:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "13747:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13754:3:94",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "13743:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13743:15:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "13730:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13730:29:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13709:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13709:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13709:51:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "13836:4:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13842:1:94",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13832:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13832:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "13850:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13857:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13846:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13846:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                                  "nodeType": "YulIdentifier",
                                  "src": "13769:62:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13769:93:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13769:93:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_0t_struct$_PrizeTier_$15287_calldata_ptr_to_t_struct$_PrizeTier_$15287_storage",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "12811:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "12817:5:94",
                            "type": ""
                          }
                        ],
                        "src": "12695:1173:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13948:199:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13958:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "13974:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13968:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13968:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13962:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "13995:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "14008:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14012:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14004:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14004:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "14089:3:94",
                                                "type": "",
                                                "value": "104"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "14094:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "14085:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14085:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14102:36:94",
                                            "type": "",
                                            "value": "0xffffffff00000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14081:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14081:58:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "14001:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14001:139:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13988:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13988:153:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13988:153:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_13t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "13931:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "13937:5:94",
                            "type": ""
                          }
                        ],
                        "src": "13873:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14226:182:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14236:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "14252:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14246:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14246:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14240:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "14273:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "14286:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14290:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14282:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14282:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "14367:2:94",
                                                "type": "",
                                                "value": "40"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "14371:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "14363:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14363:14:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14379:20:94",
                                            "type": "",
                                            "value": "0xffffffff0000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14359:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14359:41:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "14279:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14279:122:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14266:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14266:136:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14266:136:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_5t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "14209:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14215:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14152:256:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14485:190:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14495:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "14511:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "14505:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14505:11:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14499:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "14532:4:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "14545:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14549:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14541:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14541:75:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "14626:2:94",
                                                "type": "",
                                                "value": "72"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "14630:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "14622:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14622:14:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14638:28:94",
                                            "type": "",
                                            "value": "0xffffffff000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14618:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14618:49:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "14538:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14538:130:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14525:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14525:144:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14525:144:94"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "14468:4:94",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14474:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14413:262:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14724:77:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14779:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14788:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14791:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14781:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14781:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14781:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14747:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14758:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14765:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14754:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14754:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14744:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14744:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14737:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14737:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14734:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14713:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14680:121:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14849:71:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14898:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14907:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14910:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14900:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14900:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14900:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14872:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14883:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14890:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14879:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14879:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14869:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14869:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14862:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14862:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "14859:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14838:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14806:114:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_struct$_PrizeTier_$15287_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 704) { revert(0, 0) }\n        value0 := headStart\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_encode_struct_PrizeTier(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xff))\n        let _1 := 0x20\n        let memberValue0 := mload(add(value, _1))\n        let _2 := 0xffffffff\n        mstore(add(pos, _1), and(memberValue0, _2))\n        mstore(add(pos, 0x40), and(mload(add(value, 0x40)), _2))\n        mstore(add(pos, 0x60), and(mload(add(value, 0x60)), _2))\n        mstore(add(pos, 0x80), and(mload(add(value, 0x80)), _2))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        let memberValue0_1 := mload(add(value, 0xc0))\n        let pos_1 := add(pos, 0xc0)\n        pos_1 := pos_1\n        let srcPtr := memberValue0_1\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            mstore(pos_1, and(mload(srcPtr), _2))\n            pos_1 := add(pos_1, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_PrizeTier(mload(srcPtr), pos)\n            pos := add(pos, 0x02c0)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_748fa13d4b59fda362aebd6d03b9a11bf7419fb82d27d4759ad31da474fa0b94__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"PrizeTierHistory/history-empty\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_764ec7a6b7e4908a60075f7876c755b0e5ecbf10c6b118e6e2bc41b0c5331b8e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"PrizeTierHistory/draw-id-out-of-\")\n        mstore(add(headStart, 96), \"range\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_81a6ac4d93386e4664148708e39265397ab15a87169e5bfa62b60a00d4fcc0e9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"PrizeTierHistory/draw-id-must-ma\")\n        mstore(add(headStart, 96), \"tch\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_9d51ddb2d2465fa780c557595db38037821c93a2c58e1a1214090c3403a3ed11__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"PrizeTierHistory/no-prize-tiers\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ae288eadfb51e869d9361d1b46deeab4581e563b2304ae0e2386e76f4332061a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"PrizeTierHistory/non-sequential-\")\n        mstore(add(headStart, 96), \"prize-tier\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b879ff06e19fd1e2f2ae270b6dbae5992e47f536f5db6d07eec27d494965bb8c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"PrizeTierHistory/invalid-draw-id\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f5807091b05c9526c66502840ce61b173492452ea59d28722ef71ac844aba374__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"PrizeTierHistory/draw-id-not-zer\")\n        mstore(add(headStart, 96), \"o\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_PrizeTier_$15287_calldata_ptr__to_t_struct$_PrizeTier_$15287_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 704)\n        let value := calldataload(value0)\n        validator_revert_uint8(value)\n        mstore(headStart, and(value, 0xff))\n        let _1 := 0x20\n        let value_1 := calldataload(add(value0, _1))\n        validator_revert_uint32(value_1)\n        let _2 := 0xffffffff\n        mstore(add(headStart, _1), and(value_1, _2))\n        let value_2 := calldataload(add(value0, 0x40))\n        validator_revert_uint32(value_2)\n        mstore(add(headStart, 0x40), and(value_2, _2))\n        let value_3 := calldataload(add(value0, 0x60))\n        validator_revert_uint32(value_3)\n        mstore(add(headStart, 0x60), and(value_3, _2))\n        let value_4 := calldataload(add(value0, 0x80))\n        validator_revert_uint32(value_4)\n        mstore(add(headStart, 0x80), and(value_4, _2))\n        mstore(add(headStart, 0xa0), calldataload(add(value0, 0xa0)))\n        let pos := add(headStart, 0xc0)\n        pos := pos\n        let srcPtr := add(value0, 0xc0)\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value_5 := calldataload(srcPtr)\n            validator_revert_uint32(value_5)\n            mstore(pos, and(value_5, _2))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_tuple_t_struct$_PrizeTier_$15287_memory_ptr__to_t_struct$_PrizeTier_$15287_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 704)\n        abi_encode_struct_PrizeTier(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function copy_array_to_storage_from_array_uint32_calldata_to_array_uint(slot, value)\n    {\n        let srcPtr := value\n        let elementSlot := slot\n        let elementOffset := 0\n        let i := elementOffset\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value_1 := calldataload(srcPtr)\n            validator_revert_uint32(value_1)\n            let _1 := 0xffffffff\n            let _2 := sload(elementSlot)\n            let shiftBits := shl(3, elementOffset)\n            let mask := shl(shiftBits, _1)\n            sstore(elementSlot, or(and(_2, not(mask)), and(shl(shiftBits, and(value_1, _1)), mask)))\n            srcPtr := add(srcPtr, 32)\n            elementOffset := add(elementOffset, 4)\n            if gt(elementOffset, 28)\n            {\n                elementOffset := 0\n                elementSlot := add(elementSlot, 1)\n            }\n        }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function read_from_calldatat_uint32(ptr) -> returnValue\n    {\n        let value := calldataload(ptr)\n        validator_revert_uint32(value)\n        returnValue := value\n    }\n    function update_storage_value_offset_0t_struct$_PrizeTier_$15287_calldata_ptr_to_t_struct$_PrizeTier_$15287_storage(slot, value)\n    {\n        let value_1 := calldataload(value)\n        validator_revert_uint8(value_1)\n        let _1 := and(value_1, 0xff)\n        let _2 := sload(slot)\n        sstore(slot, or(and(_2, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00), _1))\n        let value_2 := calldataload(add(value, 32))\n        validator_revert_uint32(value_2)\n        sstore(slot, or(or(and(_2, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000), _1), and(shl(8, value_2), 0xffffffff00)))\n        let value_3 := calldataload(add(value, 64))\n        validator_revert_uint32(value_3)\n        update_storage_value_offset_5t_uint32_to_uint32(slot, value_3)\n        update_storage_value_offsett_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 96)))\n        update_storage_value_offset_13t_uint32_to_uint32(slot, read_from_calldatat_uint32(add(value, 128)))\n        sstore(add(slot, 1), calldataload(add(value, 160)))\n        copy_array_to_storage_from_array_uint32_calldata_to_array_uint(add(slot, 2), add(value, 192))\n    }\n    function update_storage_value_offset_13t_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffff), and(shl(104, value), 0xffffffff00000000000000000000000000)))\n    }\n    function update_storage_value_offset_5t_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffff), and(shl(40, value), 0xffffffff0000000000)))\n    }\n    function update_storage_value_offsett_uint32_to_uint32(slot, value)\n    {\n        let _1 := sload(slot)\n        sstore(slot, or(and(_1, 0xffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffff), and(shl(72, value), 0xffffffff000000000000000000)))\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063e30c397811610066578063e30c397814610211578063e4dd269014610222578063f114376514610235578063f2fde38b1461024857600080fd5b8063715018a6146101c25780638da5cb5b146101ca578063d0ebdbe7146101db578063d365027d146101fe57600080fd5b8063481c6a75116100d3578063481c6a75146101555780634aac253d1461017a5780634e602cd81461019a5780634e71e0c8146101ba57600080fd5b806306661abd146101055780633659f5431461011b57806339dd7f0814610130578063472b619c1461014d575b600080fd5b6003546040519081526020015b60405180910390f35b61012e6101293660046118c0565b61025b565b005b61013861067a565b60405163ffffffff9091168152602001610112565b6101386106b1565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610112565b61018d6101883660046118f2565b6106d5565b6040516101129190611a8e565b6101ad6101a836600461184b565b610768565b604051610112919061198c565b61012e610833565b61012e6108c1565b6000546001600160a01b0316610162565b6101ee6101e9366004611822565b610936565b6040519015158152602001610112565b61012e61020c3660046118c0565b6109aa565b6001546001600160a01b0316610162565b61018d6102303660046118d9565b610c92565b6101386102433660046118c0565b610d9c565b61012e610256366004611822565b61107a565b3361026e6002546001600160a01b031690565b6001600160a01b0316148061029c5750336102916000546001600160a01b031690565b6001600160a01b0316145b6103135760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b60006003805480602002602001604051908101604052809291908181526020016000905b8282101561042f57600084815260208082206040805160e08101825260048702909201805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810191829052919360c0850192916002850191601091908390855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116103db57905050505050508152505081526020019060010190610337565b5050505090506000815111156105e657600380546000919061045390600190611ad7565b8154811061046357610463611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105065790505050505050815250509050806020015163ffffffff1683602001602081019061056b91906118f2565b63ffffffff16116105e45760405162461bcd60e51b815260206004820152602a60248201527f5072697a6554696572486973746f72792f6e6f6e2d73657175656e7469616c2d60448201527f7072697a652d7469657200000000000000000000000000000000000000000000606482015260840161030a565b505b6003805460018101825560009190915282906004027fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b016106278282611bdf565b5061063a905060408301602084016118f2565b63ffffffff167efa6c2cd74e788568ac0c75b649897ed491b894d237486258b420d7e77490bf8360405161066e91906119cf565b60405180910390a25050565b6000600360008154811061069057610690611ba6565b6000918252602090912060049091020154610100900463ffffffff16919050565b60038054600091906106c590600190611ad7565b8154811061069057610690611ba6565b6106dd6117c0565b60008263ffffffff16116107595760405162461bcd60e51b815260206004820152602160248201527f5072697a6554696572486973746f72792f647261772d69642d6e6f742d7a657260448201527f6f00000000000000000000000000000000000000000000000000000000000000606482015260840161030a565b610762826111b6565b92915050565b606060008267ffffffffffffffff81111561078557610785611bbc565b6040519080825280602002602001820160405280156107be57816020015b6107ab6117c0565b8152602001906001900390816107a35790505b50905060005b8381101561082b576107fb8585838181106107e1576107e1611ba6565b90506020020160208101906107f691906118f2565b6111b6565b82828151811061080d5761080d611ba6565b6020026020010181905250808061082390611b57565b9150506107c4565b509392505050565b6001546001600160a01b0316331461088d5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161030a565b6001546108a2906001600160a01b031661145f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108d46000546001600160a01b031690565b6001600160a01b03161461092a5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b610934600061145f565b565b60003361094b6000546001600160a01b031690565b6001600160a01b0316146109a15760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b610762826114bc565b336109bd6000546001600160a01b031690565b6001600160a01b031614610a135760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b60035480610a635760405162461bcd60e51b815260206004820152601f60248201527f5072697a6554696572486973746f72792f6e6f2d7072697a652d746965727300604482015260640161030a565b600080610a71600184611ad7565b9050600060038381548110610a8857610a88611ba6565b60009182526020918290206004909102015463ffffffff6101009091041691508190610aba90604088019088016118f2565b63ffffffff161015610b345760405162461bcd60e51b815260206004820152602560248201527f5072697a6554696572486973746f72792f647261772d69642d6f75742d6f662d60448201527f72616e6765000000000000000000000000000000000000000000000000000000606482015260840161030a565b6000610b52610b4960408801602089016118f2565b858560036115a8565b9050610b6460408701602088016118f2565b63ffffffff1660038281548110610b7d57610b7d611ba6565b6000918252602090912060049091020154610100900463ffffffff1614610c0c5760405162461bcd60e51b815260206004820152602360248201527f5072697a6554696572486973746f72792f647261772d69642d6d7573742d6d6160448201527f7463680000000000000000000000000000000000000000000000000000000000606482015260840161030a565b8560038281548110610c2057610c20611ba6565b90600052602060002090600402018181610c3a9190611bdf565b50610c4d905060408701602088016118f2565b63ffffffff167fec70f602a8e5c0eab140e799c5b7bb34035bd73c6eb882fad555c7c8860817e787604051610c8291906119cf565b60405180910390a2505050505050565b610c9a6117c0565b60038281548110610cad57610cad611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610d505790505050505050815250509050919050565b600033610db16000546001600160a01b031690565b6001600160a01b031614610e075760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b600354610e565760405162461bcd60e51b815260206004820152601e60248201527f5072697a6554696572486973746f72792f686973746f72792d656d7074790000604482015260640161030a565b6003805460009190610e6a90600190611ad7565b81548110610e7a57610e7a611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff1681526020019060040190602082600301049283019260010382029150808411610f1d5790505050505050815250509050806020015163ffffffff16836020016020810190610f8291906118f2565b63ffffffff161015610fd65760405162461bcd60e51b815260206004820181905260248201527f5072697a6554696572486973746f72792f696e76616c69642d647261772d6964604482015260640161030a565b60038054849190610fe990600190611ad7565b81548110610ff957610ff9611ba6565b906000526020600020906004020181816110139190611bdf565b50611026905060408401602085016118f2565b63ffffffff167fec70f602a8e5c0eab140e799c5b7bb34035bd73c6eb882fad555c7c8860817e78460405161105b91906119cf565b60405180910390a261107360408401602085016118f2565b9392505050565b3361108d6000546001600160a01b031690565b6001600160a01b0316146110e35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161030a565b6001600160a01b03811661115f5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161030a565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6111be6117c0565b6003548061120e5760405162461bcd60e51b815260206004820152601f60248201527f5072697a6554696572486973746f72792f6e6f2d7072697a652d746965727300604482015260640161030a565b60008061121c600184611ad7565b905060006003838154811061123357611233611ba6565b906000526020600020906004020160000160019054906101000a900463ffffffff16905060006003838154811061126c5761126c611ba6565b600091825260209091206004909102015463ffffffff6101009091048116915082811690881610156113065760405162461bcd60e51b815260206004820152602560248201527f5072697a6554696572486973746f72792f647261772d69642d6f75742d6f662d60448201527f72616e6765000000000000000000000000000000000000000000000000000000606482015260840161030a565b8063ffffffff168763ffffffff1610611420576003838154811061132c5761132c611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113cf57905050505050508152505095505050505050919050565b8163ffffffff168763ffffffff161415611447576003848154811061132c5761132c611ba6565b61145487858560036116a9565b979650505050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156115455760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161030a565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b60008084845b600060026115bc8484611ad7565b6115c69190611ab5565b6115d09084611a9d565b905060008682815481106115e6576115e6611ba6565b600091825260209091206004909102015463ffffffff610100909104811691508a168114156116175750925061169d565b8963ffffffff168163ffffffff16101561163d57611636826001611a9d565b935061165f565b8963ffffffff168163ffffffff16111561165f5761165c600183611ad7565b92505b82841415611696578963ffffffff168163ffffffff161061168e57611685600183611ad7565b9450505061169d565b50925061169d565b50506115ae565b50909695505050505050565b6116b16117c0565b816116be868686866115a8565b815481106116ce576116ce611ba6565b60009182526020918290206040805160e0810182526004909302909101805460ff8116845263ffffffff610100820481169585019590955265010000000000810485168484015269010000000000000000008104851660608501526d010000000000000000000000000090049093166080830152600183015460a08301528051610200810190915290919060c08301906002830160108282826020028201916000905b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116117715790505050505050815250509050949350505050565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a081019190915260c081016117fe611803565b905290565b6040518061020001604052806010906020820280368337509192915050565b60006020828403121561183457600080fd5b81356001600160a01b038116811461107357600080fd5b6000806020838503121561185e57600080fd5b823567ffffffffffffffff8082111561187657600080fd5b818501915085601f83011261188a57600080fd5b81358181111561189957600080fd5b8660208260051b85010111156118ae57600080fd5b60209290920196919550909350505050565b60006102c082840312156118d357600080fd5b50919050565b6000602082840312156118eb57600080fd5b5035919050565b60006020828403121561190457600080fd5b813561107381611d5f565b60ff815116825260208082015163ffffffff8082168386015280604085015116604086015280606085015116606086015280608085015116608086015260a084015160a086015260c0840151915060c0850160005b6010811015611983578351831682529284019290840190600101611964565b50505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561169d576119bb83855161190f565b928401926102c092909201916001016119a8565b6102c0810182356119df81611d74565b60ff1682526020838101356119f381611d5f565b63ffffffff90811684830152604085013590611a0e82611d5f565b9081166040850152606085013590611a2582611d5f565b9081166060850152608085013590611a3c82611d5f565b808216608086015260a086013560a086015260c08501915060c0860160005b6010811015611a83578135611a6f81611d5f565b831684529284019290840190600101611a5b565b505050505092915050565b6102c08101610762828461190f565b60008219821115611ab057611ab0611b90565b500190565b600082611ad257634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611ae957611ae9611b90565b500390565b81816000805b6010811015611b4f578335611b0881611d5f565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611b4757600091506001830192505b600101611af4565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611b8957611b89611b90565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561076281611d5f565b8135611bea81611d74565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611c2781611d5f565b64ffffffff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000008416171784555050506040820135611c6b81611d5f565b81547fffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffff16602882901b68ffffffff00000000001617825550611cf0611cb260608401611bd2565b82547fffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffff1660489190911b6cffffffff00000000000000000016178255565b611d41611cff60808401611bd2565b82547fffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffff1660689190911b70ffffffff0000000000000000000000000016178255565b60a08201356001820155611d5b60c0830160028301611aee565b5050565b63ffffffff81168114611d7157600080fd5b50565b60ff81168114611d7157600080fdfea264697066735822122052c377a37764fc87b40bcbfbfff7ee9c0d77ab794c0ef522aa772ca4ad097a4164736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0xE4DD2690 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0xF1143765 EQ PUSH2 0x235 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x248 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x1C2 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1CA JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x1DB JUMPI DUP1 PUSH4 0xD365027D EQ PUSH2 0x1FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x4AAC253D EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0x4E602CD8 EQ PUSH2 0x19A JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x1BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6661ABD EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x3659F543 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x39DD7F08 EQ PUSH2 0x130 JUMPI DUP1 PUSH4 0x472B619C EQ PUSH2 0x14D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12E PUSH2 0x129 CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x138 PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0x138 PUSH2 0x6B1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0x18D PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x18F2 JUMP JUMPDEST PUSH2 0x6D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 PUSH2 0x1A8E JUMP JUMPDEST PUSH2 0x1AD PUSH2 0x1A8 CALLDATASIZE PUSH1 0x4 PUSH2 0x184B JUMP JUMPDEST PUSH2 0x768 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x112 SWAP2 SWAP1 PUSH2 0x198C JUMP JUMPDEST PUSH2 0x12E PUSH2 0x833 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x162 JUMP JUMPDEST PUSH2 0x1EE PUSH2 0x1E9 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x936 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x112 JUMP JUMPDEST PUSH2 0x12E PUSH2 0x20C CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x9AA JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x162 JUMP JUMPDEST PUSH2 0x18D PUSH2 0x230 CALLDATASIZE PUSH1 0x4 PUSH2 0x18D9 JUMP JUMPDEST PUSH2 0xC92 JUMP JUMPDEST PUSH2 0x138 PUSH2 0x243 CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0xD9C JUMP JUMPDEST PUSH2 0x12E PUSH2 0x256 CALLDATASIZE PUSH1 0x4 PUSH2 0x1822 JUMP JUMPDEST PUSH2 0x107A JUMP JUMPDEST CALLER PUSH2 0x26E PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x29C JUMPI POP CALLER PUSH2 0x291 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x313 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x42F JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 DUP8 MUL SWAP1 SWAP3 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP2 DUP3 SWAP1 MSTORE SWAP2 SWAP4 PUSH1 0xC0 DUP6 ADD SWAP3 SWAP2 PUSH1 0x2 DUP6 ADD SWAP2 PUSH1 0x10 SWAP2 SWAP1 DUP4 SWAP1 DUP6 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x3DB JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x337 JUMP JUMPDEST POP POP POP POP SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT ISZERO PUSH2 0x5E6 JUMPI PUSH1 0x3 DUP1 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH2 0x453 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x463 JUMPI PUSH2 0x463 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x506 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x56B SWAP2 SWAP1 PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND GT PUSH2 0x5E4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F6E6F6E2D73657175656E7469616C2D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7072697A652D7469657200000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST POP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 DUP2 ADD DUP3 SSTORE PUSH1 0x0 SWAP2 SWAP1 SWAP2 MSTORE DUP3 SWAP1 PUSH1 0x4 MUL PUSH32 0xC2575A0E9E593C00F959F8C92F12DB2869C3395A3B0502D05E2516446F71F85B ADD PUSH2 0x627 DUP3 DUP3 PUSH2 0x1BDF JUMP JUMPDEST POP PUSH2 0x63A SWAP1 POP PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH31 0xFA6C2CD74E788568AC0C75B649897ED491B894D237486258B420D7E77490BF DUP4 PUSH1 0x40 MLOAD PUSH2 0x66E SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0x690 JUMPI PUSH2 0x690 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH2 0x6C5 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x690 JUMPI PUSH2 0x690 PUSH2 0x1BA6 JUMP JUMPDEST PUSH2 0x6DD PUSH2 0x17C0 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH4 0xFFFFFFFF AND GT PUSH2 0x759 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6E6F742D7A6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F00000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH2 0x762 DUP3 PUSH2 0x11B6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x785 JUMPI PUSH2 0x785 PUSH2 0x1BBC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x7BE JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x7AB PUSH2 0x17C0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x7A3 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x82B JUMPI PUSH2 0x7FB DUP6 DUP6 DUP4 DUP2 DUP2 LT PUSH2 0x7E1 JUMPI PUSH2 0x7E1 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x7F6 SWAP2 SWAP1 PUSH2 0x18F2 JUMP JUMPDEST PUSH2 0x11B6 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x80D JUMPI PUSH2 0x80D PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x823 SWAP1 PUSH2 0x1B57 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x7C4 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x88D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x8A2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x145F JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x8D4 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x92A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH2 0x934 PUSH1 0x0 PUSH2 0x145F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x94B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9A1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH2 0x762 DUP3 PUSH2 0x14BC JUMP JUMPDEST CALLER PUSH2 0x9BD PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA13 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 SLOAD DUP1 PUSH2 0xA63 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F6E6F2D7072697A652D746965727300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xA71 PUSH1 0x1 DUP5 PUSH2 0x1AD7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xA88 JUMPI PUSH2 0xA88 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH4 0xFFFFFFFF PUSH2 0x100 SWAP1 SWAP2 DIV AND SWAP2 POP DUP2 SWAP1 PUSH2 0xABA SWAP1 PUSH1 0x40 DUP9 ADD SWAP1 DUP9 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xB34 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6F75742D6F662D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x72616E6765000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB52 PUSH2 0xB49 PUSH1 0x40 DUP9 ADD PUSH1 0x20 DUP10 ADD PUSH2 0x18F2 JUMP JUMPDEST DUP6 DUP6 PUSH1 0x3 PUSH2 0x15A8 JUMP JUMPDEST SWAP1 POP PUSH2 0xB64 PUSH1 0x40 DUP8 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xB7D JUMPI PUSH2 0xB7D PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH4 0xFFFFFFFF AND EQ PUSH2 0xC0C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6D7573742D6D61 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7463680000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST DUP6 PUSH1 0x3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xC20 JUMPI PUSH2 0xC20 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD DUP2 DUP2 PUSH2 0xC3A SWAP2 SWAP1 PUSH2 0x1BDF JUMP JUMPDEST POP PUSH2 0xC4D SWAP1 POP PUSH1 0x40 DUP8 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH32 0xEC70F602A8E5C0EAB140E799C5B7BB34035BD73C6EB882FAD555C7C8860817E7 DUP8 PUSH1 0x40 MLOAD PUSH2 0xC82 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xC9A PUSH2 0x17C0 JUMP JUMPDEST PUSH1 0x3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xCAD JUMPI PUSH2 0xCAD PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0xD50 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xDB1 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0xE56 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F686973746F72792D656D7074790000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH2 0xE6A SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xE7A JUMPI PUSH2 0xE7A PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0xF1D JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP4 PUSH1 0x20 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xF82 SWAP2 SWAP1 PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0xFD6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F696E76616C69642D647261772D6964 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD DUP5 SWAP2 SWAP1 PUSH2 0xFE9 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x1AD7 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xFF9 JUMPI PUSH2 0xFF9 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD DUP2 DUP2 PUSH2 0x1013 SWAP2 SWAP1 PUSH2 0x1BDF JUMP JUMPDEST POP PUSH2 0x1026 SWAP1 POP PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x18F2 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH32 0xEC70F602A8E5C0EAB140E799C5B7BB34035BD73C6EB882FAD555C7C8860817E7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x105B SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1073 PUSH1 0x40 DUP5 ADD PUSH1 0x20 DUP6 ADD PUSH2 0x18F2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST CALLER PUSH2 0x108D PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x115F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH2 0x11BE PUSH2 0x17C0 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP1 PUSH2 0x120E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F6E6F2D7072697A652D746965727300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x121C PUSH1 0x1 DUP5 PUSH2 0x1AD7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1233 JUMPI PUSH2 0x1233 PUSH2 0x1BA6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD PUSH1 0x0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x126C JUMPI PUSH2 0x126C PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH4 0xFFFFFFFF PUSH2 0x100 SWAP1 SWAP2 DIV DUP2 AND SWAP2 POP DUP3 DUP2 AND SWAP1 DUP9 AND LT ISZERO PUSH2 0x1306 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5072697A6554696572486973746F72792F647261772D69642D6F75742D6F662D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x72616E6765000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND LT PUSH2 0x1420 JUMPI PUSH1 0x3 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x132C JUMPI PUSH2 0x132C PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x13CF JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP6 POP POP POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x1447 JUMPI PUSH1 0x3 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x132C JUMPI PUSH2 0x132C PUSH2 0x1BA6 JUMP JUMPDEST PUSH2 0x1454 DUP8 DUP6 DUP6 PUSH1 0x3 PUSH2 0x16A9 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x1545 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30A JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 DUP5 JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH2 0x15BC DUP5 DUP5 PUSH2 0x1AD7 JUMP JUMPDEST PUSH2 0x15C6 SWAP2 SWAP1 PUSH2 0x1AB5 JUMP JUMPDEST PUSH2 0x15D0 SWAP1 DUP5 PUSH2 0x1A9D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x15E6 JUMPI PUSH2 0x15E6 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x4 SWAP1 SWAP2 MUL ADD SLOAD PUSH4 0xFFFFFFFF PUSH2 0x100 SWAP1 SWAP2 DIV DUP2 AND SWAP2 POP DUP11 AND DUP2 EQ ISZERO PUSH2 0x1617 JUMPI POP SWAP3 POP PUSH2 0x169D JUMP JUMPDEST DUP10 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x163D JUMPI PUSH2 0x1636 DUP3 PUSH1 0x1 PUSH2 0x1A9D JUMP JUMPDEST SWAP4 POP PUSH2 0x165F JUMP JUMPDEST DUP10 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND GT ISZERO PUSH2 0x165F JUMPI PUSH2 0x165C PUSH1 0x1 DUP4 PUSH2 0x1AD7 JUMP JUMPDEST SWAP3 POP JUMPDEST DUP3 DUP5 EQ ISZERO PUSH2 0x1696 JUMPI DUP10 PUSH4 0xFFFFFFFF AND DUP2 PUSH4 0xFFFFFFFF AND LT PUSH2 0x168E JUMPI PUSH2 0x1685 PUSH1 0x1 DUP4 PUSH2 0x1AD7 JUMP JUMPDEST SWAP5 POP POP POP PUSH2 0x169D JUMP JUMPDEST POP SWAP3 POP PUSH2 0x169D JUMP JUMPDEST POP POP PUSH2 0x15AE JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x16B1 PUSH2 0x17C0 JUMP JUMPDEST DUP2 PUSH2 0x16BE DUP7 DUP7 DUP7 DUP7 PUSH2 0x15A8 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x16CE JUMPI PUSH2 0x16CE PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x4 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0xFF DUP2 AND DUP5 MSTORE PUSH4 0xFFFFFFFF PUSH2 0x100 DUP3 DIV DUP2 AND SWAP6 DUP6 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH6 0x10000000000 DUP2 DIV DUP6 AND DUP5 DUP5 ADD MSTORE PUSH10 0x1000000000000000000 DUP2 DIV DUP6 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH14 0x100000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x1 DUP4 ADD SLOAD PUSH1 0xA0 DUP4 ADD MSTORE DUP1 MLOAD PUSH2 0x200 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0xC0 DUP4 ADD SWAP1 PUSH1 0x2 DUP4 ADD PUSH1 0x10 DUP3 DUP3 DUP3 PUSH1 0x20 MUL DUP3 ADD SWAP2 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x1771 JUMPI SWAP1 POP POP POP POP POP POP DUP2 MSTORE POP POP SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xE0 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP2 ADD PUSH2 0x17FE PUSH2 0x1803 JUMP JUMPDEST SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x200 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x10 SWAP1 PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1834 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1073 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x185E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1876 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x188A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x1899 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x18AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP3 SWAP1 SWAP3 ADD SWAP7 SWAP2 SWAP6 POP SWAP1 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x18EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1904 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1073 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND DUP4 DUP7 ADD MSTORE DUP1 PUSH1 0x40 DUP6 ADD MLOAD AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE DUP1 PUSH1 0x80 DUP6 ADD MLOAD AND PUSH1 0x80 DUP7 ADD MSTORE PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP5 ADD MLOAD SWAP2 POP PUSH1 0xC0 DUP6 ADD PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1983 JUMPI DUP4 MLOAD DUP4 AND DUP3 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP1 DUP5 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1964 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x169D JUMPI PUSH2 0x19BB DUP4 DUP6 MLOAD PUSH2 0x190F JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH2 0x2C0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x19A8 JUMP JUMPDEST PUSH2 0x2C0 DUP2 ADD DUP3 CALLDATALOAD PUSH2 0x19DF DUP2 PUSH2 0x1D74 JUMP JUMPDEST PUSH1 0xFF AND DUP3 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH2 0x19F3 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 DUP2 AND DUP5 DUP4 ADD MSTORE PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP1 PUSH2 0x1A0E DUP3 PUSH2 0x1D5F JUMP JUMPDEST SWAP1 DUP2 AND PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0x60 DUP6 ADD CALLDATALOAD SWAP1 PUSH2 0x1A25 DUP3 PUSH2 0x1D5F JUMP JUMPDEST SWAP1 DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD SWAP1 PUSH2 0x1A3C DUP3 PUSH2 0x1D5F JUMP JUMPDEST DUP1 DUP3 AND PUSH1 0x80 DUP7 ADD MSTORE PUSH1 0xA0 DUP7 ADD CALLDATALOAD PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD SWAP2 POP PUSH1 0xC0 DUP7 ADD PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1A83 JUMPI DUP2 CALLDATALOAD PUSH2 0x1A6F DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP4 AND DUP5 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP1 DUP5 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1A5B JUMP JUMPDEST POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2C0 DUP2 ADD PUSH2 0x762 DUP3 DUP5 PUSH2 0x190F JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1AB0 JUMPI PUSH2 0x1AB0 PUSH2 0x1B90 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1AD2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1AE9 JUMPI PUSH2 0x1AE9 PUSH2 0x1B90 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0x1B4F JUMPI DUP4 CALLDATALOAD PUSH2 0x1B08 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP4 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x3 DUP6 SWAP1 SHL DUP2 DUP2 SHL DUP1 NOT SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP2 AND SWAP1 SHL AND OR DUP4 SSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1C DUP3 GT ISZERO PUSH2 0x1B47 JUMPI PUSH1 0x0 SWAP2 POP PUSH1 0x1 DUP4 ADD SWAP3 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1AF4 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1B89 JUMPI PUSH2 0x1B89 PUSH2 0x1B90 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD PUSH2 0x762 DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1BEA DUP2 PUSH2 0x1D74 JUMP JUMPDEST PUSH1 0xFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1C27 DUP2 PUSH2 0x1D5F JUMP JUMPDEST PUSH5 0xFFFFFFFF00 DUP2 PUSH1 0x8 SHL AND DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0000000000 DUP5 AND OR OR DUP5 SSTORE POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD PUSH2 0x1C6B DUP2 PUSH2 0x1D5F JUMP JUMPDEST DUP2 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFF AND PUSH1 0x28 DUP3 SWAP1 SHL PUSH9 0xFFFFFFFF0000000000 AND OR DUP3 SSTORE POP PUSH2 0x1CF0 PUSH2 0x1CB2 PUSH1 0x60 DUP5 ADD PUSH2 0x1BD2 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFF AND PUSH1 0x48 SWAP2 SWAP1 SWAP2 SHL PUSH13 0xFFFFFFFF000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH2 0x1D41 PUSH2 0x1CFF PUSH1 0x80 DUP5 ADD PUSH2 0x1BD2 JUMP JUMPDEST DUP3 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x68 SWAP2 SWAP1 SWAP2 SHL PUSH17 0xFFFFFFFF00000000000000000000000000 AND OR DUP3 SSTORE JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD CALLDATALOAD PUSH1 0x1 DUP3 ADD SSTORE PUSH2 0x1D5B PUSH1 0xC0 DUP4 ADD PUSH1 0x2 DUP4 ADD PUSH2 0x1AEE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1D71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1D71 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE 0xC3 PUSH24 0xA37764FC87B40BCBFBFFF7EE9C0D77AB794C0EF522AA772C LOG4 0xAD MULMOD PUSH27 0x4164736F6C63430008060033000000000000000000000000000000 ",
              "sourceMap": "336:5839:55:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6077:96;6152:7;:14;6077:96;;10082:25:94;;;10070:2;10055:18;6077:96:55;;;;;;;;742:665;;;;;;:::i;:::-;;:::i;:::-;;3129:108;;;:::i;:::-;;;10292:10:94;10280:23;;;10262:42;;10250:2;10235:18;3129:108:55;10217:93:94;3280:125:55;;;:::i;1403:89:18:-;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;;-1:-1:-1;;;;;2623:55:94;;;2605:74;;2593:2;2578:18;1403:89:18;2560:125:94;2885:201:55;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3448:446::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3147:129:19:-;;;:::i;2508:94::-;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;1744:123:18;;;;;;:::i;:::-;;:::i;:::-;;;3573:14:94;;3566:22;3548:41;;3536:2;3521:18;1744:123:18;3503:92:94;1450:716:55;;;;;;:::i;:::-;;:::i;2014:101:19:-;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;5939:132:55;;;;;;:::i;:::-;;:::i;2263:525::-;;;;;;:::i;:::-;;:::i;2751:234:19:-;;;;;;:::i;:::-;;:::i;742:665:55:-;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;7220:2:94;2840:99:18;;;7202:21:94;7259:2;7239:18;;;7232:30;7298:34;7278:18;;;7271:62;7369:8;7349:18;;;7342:36;7395:19;;2840:99:18;;;;;;;;;838:27:55::1;868:7;838:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;;;;;;::::1;::::0;::::1;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;908:1;890:8;:15;:19;886:406;;;1009:7;1017:14:::0;;973:33:::1;::::0;1009:7;1017:18:::1;::::0;1034:1:::1;::::0;1017:18:::1;:::i;:::-;1009:27;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;973:63:::1;::::0;;::::1;::::0;::::1;::::0;;1009:27:::1;::::0;;::::1;::::0;;::::1;973:63:::0;;::::1;::::0;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;1009:27;973:63;;;;::::1;::::0;::::1;;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;1182:16;:23;;;1158:47;;:14;:21;;;;;;;;;;:::i;:::-;:47;;;1133:148;;;::::0;-1:-1:-1;;;1133:148:55;;6448:2:94;1133:148:55::1;::::0;::::1;6430:21:94::0;6487:2;6467:18;;;6460:30;6526:34;6506:18;;;6499:62;6597:12;6577:18;;;6570:40;6627:19;;1133:148:55::1;6420:232:94::0;1133:148:55::1;911:381;886:406;1302:7;:28:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;1302:28:55;;;;1315:14;;1302:28:::1;;::::0;::::1;;1315:14:::0;1302:28;::::1;:::i;:::-;-1:-1:-1::0;1362:21:55::1;::::0;-1:-1:-1;1362:21:55;;;::::1;::::0;::::1;;:::i;:::-;1346:54;;;1385:14;1346:54;;;;;;:::i;:::-;;;;;;;;828:579;742:665:::0;:::o;3129:108::-;3188:6;3213:7;3221:1;3213:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:17;;;;;;;;-1:-1:-1;3129:108:55:o;3280:125::-;3364:7;3372:14;;3339:6;;3364:7;3372:18;;3389:1;;3372:18;:::i;:::-;3364:27;;;;;;;;:::i;2885:201::-;2955:16;;:::i;:::-;3001:1;2991:7;:11;;;2983:57;;;;-1:-1:-1;;;2983:57:55;;8033:2:94;2983:57:55;;;8015:21:94;8072:2;8052:18;;;8045:30;8111:34;8091:18;;;8084:62;8182:3;8162:18;;;8155:31;8203:19;;2983:57:55;8005:223:94;2983:57:55;3057:22;3071:7;3057:13;:22::i;:::-;3050:29;2885:201;-1:-1:-1;;2885:201:55:o;3448:446::-;3566:18;3600:24;3643:8;3627:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;3600:59;;3674:13;3669:197;3693:23;;;3669:197;;;3756:30;3770:8;;3779:5;3770:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3756:13;:30::i;:::-;3741:5;3747;3741:12;;;;;;;;:::i;:::-;;;;;;:45;;;;3718:7;;;;;:::i;:::-;;;;3669:197;;;-1:-1:-1;3882:5:55;3448:446;-1:-1:-1;;;3448:446:55:o;3147:129:19:-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;5324:2:94;4028:71:19;;;5306:21:94;5363:2;5343:18;;;5336:30;5402:33;5382:18;;;5375:61;5453:18;;4028:71:19;5296:181:94;4028:71:19;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4206:2:94;3819:58:19;;;4188:21:94;4245:2;4225:18;;;4218:30;4284:26;4264:18;;;4257:54;4328:18;;3819:58:19;4178:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4206:2:94;3819:58:19;;;4188:21:94;4245:2;4225:18;;;4218:30;4284:26;4264:18;;;4257:54;4328:18;;3819:58:19;4178:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;1450:716:55:-:0;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4206:2:94;3819:58:19;;;4188:21:94;4245:2;4225:18;;;4218:30;4284:26;4264:18;;;4257:54;4328:18;;3819:58:19;4178:174:94;3819:58:19;1558:7:55::1;:14:::0;1590:15;1582:59:::1;;;::::0;-1:-1:-1;;;1582:59:55;;6088:2:94;1582:59:55::1;::::0;::::1;6070:21:94::0;6127:2;6107:18;;;6100:30;6166:33;6146:18;;;6139:61;6217:18;;1582:59:55::1;6060:181:94::0;1582:59:55::1;1652:16;::::0;1702:15:::1;1716:1;1702:11:::0;:15:::1;:::i;:::-;1682:35;;1727:19;1749:7;1757:8;1749:17;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;;:24:::0;::::1;;::::0;;::::1;;::::0;-1:-1:-1;1749:24:55;;1792:17:::1;::::0;;;;;;::::1;;:::i;:::-;:33;;;;1784:83;;;::::0;-1:-1:-1;;;1784:83:55;;4918:2:94;1784:83:55::1;::::0;::::1;4900:21:94::0;4957:2;4937:18;;;4930:30;4996:34;4976:18;;;4969:62;5067:7;5047:18;;;5040:35;5092:19;;1784:83:55::1;4890:227:94::0;1784:83:55::1;1878:13;1894:67;1913:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;1932:8;1942:9;1953:7;1894:18;:67::i;:::-;1878:83:::0;-1:-1:-1;2005:17:55::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;1980:42;;:7;1988:5;1980:14;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:21:::0;::::1;::::0;::::1;;;:42;1972:90;;;::::0;-1:-1:-1;;;1972:90:55;;5684:2:94;1972:90:55::1;::::0;::::1;5666:21:94::0;5723:2;5703:18;;;5696:30;5762:34;5742:18;;;5735:62;5833:5;5813:18;;;5806:33;5856:19;;1972:90:55::1;5656:225:94::0;1972:90:55::1;2090:10;2073:7;2081:5;2073:14;;;;;;;;:::i;:::-;;;;;;;;;;;:27;;;;;;:::i;:::-;-1:-1:-1::0;2129:17:55::1;::::0;-1:-1:-1;2129:17:55;;;::::1;::::0;::::1;;:::i;:::-;2116:43;;;2148:10;2116:43;;;;;;:::i;:::-;;;;;;;;1526:640;;;;;1450:716:::0;:::o;5939:132::-;6015:16;;:::i;:::-;6050:7;6058:5;6050:14;;;;;;;;:::i;:::-;;;;;;;;;;6043:21;;;;;;;;6050:14;;;;;;;6043:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6050:14;6043:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5939:132;;;:::o;2263:525::-;2383:6;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4206:2:94;3819:58:19;;;4188:21:94;4245:2;4225:18;;;4218:30;4284:26;4264:18;;;4257:54;4328:18;;3819:58:19;4178:174:94;3819:58:19;2413:7:55::1;:14:::0;2405:61:::1;;;::::0;-1:-1:-1;;;2405:61:55;;4559:2:94;2405:61:55::1;::::0;::::1;4541:21:94::0;4598:2;4578:18;;;4571:30;4637:32;4617:18;;;4610:60;4687:18;;2405:61:55::1;4531:180:94::0;2405:61:55::1;2512:7;2520:14:::0;;2476:33:::1;::::0;2512:7;2520:18:::1;::::0;2537:1:::1;::::0;2520:18:::1;:::i;:::-;2512:27;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;2476:63:::1;::::0;;::::1;::::0;::::1;::::0;;2512:27:::1;::::0;;::::1;::::0;;::::1;2476:63:::0;;::::1;::::0;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;::::1;::::0;;;;;2512:27;2476:63;;;;::::1;::::0;::::1;;::::0;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;2578:16;:23;;;2557:44;;:10;:17;;;;;;;;;;:::i;:::-;:44;;;;2549:89;;;::::0;-1:-1:-1;;;2549:89:55;;6859:2:94;2549:89:55::1;::::0;::::1;6841:21:94::0;;;6878:18;;;6871:30;6937:34;6917:18;;;6910:62;6989:18;;2549:89:55::1;6831:182:94::0;2549:89:55::1;2648:7;2656:14:::0;;2678:10;;2648:7;2656:18:::1;::::0;2673:1:::1;::::0;2656:18:::1;:::i;:::-;2648:27;;;;;;;;:::i;:::-;;;;;;;;;;;:40;;;;;;:::i;:::-;-1:-1:-1::0;2716:17:55::1;::::0;-1:-1:-1;2716:17:55;;;::::1;::::0;::::1;;:::i;:::-;2703:43;;;2735:10;2703:43;;;;;;:::i;:::-;;;;;;;;2764:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;2757:24:::0;2263:525;-1:-1:-1;;;2263:525:55:o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4206:2:94;3819:58:19;;;4188:21:94;4245:2;4225:18;;;4218:30;4284:26;4264:18;;;4257:54;4328:18;;3819:58:19;4178:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;7627:2:94;2826:73:19::1;::::0;::::1;7609:21:94::0;7666:2;7646:18;;;7639:30;7705:34;7685:18;;;7678:62;7776:7;7756:18;;;7749:35;7801:19;;2826:73:19::1;7599:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;3900:672:55:-;3962:16;;:::i;:::-;4012:7;:14;4044:15;4036:59;;;;-1:-1:-1;;;4036:59:55;;6088:2:94;4036:59:55;;;6070:21:94;6127:2;6107:18;;;6100:30;6166:33;6146:18;;;6139:61;6217:18;;4036:59:55;6060:181:94;4036:59:55;4106:16;;4156:15;4170:1;4156:11;:15;:::i;:::-;4136:35;;4181:19;4203:7;4211:8;4203:17;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;;;;;;;;;;;4181:46;;4237:19;4259:7;4267:9;4259:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:25;;;;;;;;;-1:-1:-1;4303:23:55;;;;;;;;4295:73;;;;-1:-1:-1;;;4295:73:55;;4918:2:94;4295:73:55;;;4900:21:94;4957:2;4937:18;;;4930:30;4996:34;4976:18;;;4969:62;5067:7;5047:18;;;5040:35;5092:19;;4295:73:55;4890:227:94;4295:73:55;4393:12;4382:23;;:7;:23;;;4378:54;;4414:7;4422:9;4414:18;;;;;;;;:::i;:::-;;;;;;;;;;4407:25;;;;;;;;4414:18;;;;;;;4407:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4414:18;4407:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900:672;;;:::o;4378:54::-;4457:12;4446:23;;:7;:23;;;4442:53;;;4478:7;4486:8;4478:17;;;;;;;;:::i;4442:53::-;4513:52;4527:7;4536:8;4546:9;4557:7;4513:13;:52::i;:::-;4506:59;3900:672;-1:-1:-1;;;;;;;3900:672:55:o;3470:174:19:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;3802:2:94;2230:79:18;;;3784:21:94;3841:2;3821:18;;;3814:30;3880:34;3860:18;;;3853:62;3951:5;3931:18;;;3924:33;3974:19;;2230:79:18;3774:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;4861:1072:55:-;5035:7;;5096:9;5135:10;5155:750;5182:14;5235:1;5211:20;5223:8;5211:9;:20;:::i;:::-;5210:26;;;;:::i;:::-;5199:37;;:8;:37;:::i;:::-;5182:54;;5250:24;5277:8;5286:6;5277:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:23;;;;;;;;;-1:-1:-1;5319:28:55;;;;5315:104;;;-1:-1:-1;5375:6:55;-1:-1:-1;5399:5:55;;5315:104;5457:7;5437:27;;:17;:27;;;5433:181;;;5495:10;:6;5504:1;5495:10;:::i;:::-;5484:21;;5433:181;;;5550:7;5530:27;;:17;:27;;;5526:88;;;5589:10;5598:1;5589:6;:10;:::i;:::-;5577:22;;5526:88;5644:9;5632:8;:21;5628:267;;;5698:7;5677:28;;:17;:28;;;5673:208;;5737:10;5746:1;5737:6;:10;:::i;:::-;5729:18;;5769:5;;;;5673:208;-1:-1:-1;5829:6:55;-1:-1:-1;5857:5:55;;5673:208;5168:737;;5155:750;;;-1:-1:-1;5921:5:55;;4861:1072;-1:-1:-1;;;;;;4861:1072:55:o;4578:277::-;4745:16;;:::i;:::-;4780:8;4789:58;4808:7;4817:8;4827:9;4838:8;4789:18;:58::i;:::-;4780:68;;;;;;;;:::i;:::-;;;;;;;;;;4773:75;;;;;;;;4780:68;;;;;;;4773:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4780:68;4773:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4578:277;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:309:94:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;142:1;139;132:12;94:2;181:9;168:23;-1:-1:-1;;;;;224:5:94;220:54;213:5;210:65;200:2;;289:1;286;279:12;328:614;413:6;421;474:2;462:9;453:7;449:23;445:32;442:2;;;490:1;487;480:12;442:2;530:9;517:23;559:18;600:2;592:6;589:14;586:2;;;616:1;613;606:12;586:2;654:6;643:9;639:22;629:32;;699:7;692:4;688:2;684:13;680:27;670:2;;721:1;718;711:12;670:2;761;748:16;787:2;779:6;776:14;773:2;;;803:1;800;793:12;773:2;856:7;851:2;841:6;838:1;834:14;830:2;826:23;822:32;819:45;816:2;;;877:1;874;867:12;816:2;908;900:11;;;;;930:6;;-1:-1:-1;432:510:94;;-1:-1:-1;;;;432:510:94:o;947:197::-;1036:6;1089:3;1077:9;1068:7;1064:23;1060:33;1057:2;;;1106:1;1103;1096:12;1057:2;-1:-1:-1;1129:9:94;1047:97;-1:-1:-1;1047:97:94:o;1149:180::-;1208:6;1261:2;1249:9;1240:7;1236:23;1232:32;1229:2;;;1277:1;1274;1267:12;1229:2;-1:-1:-1;1300:23:94;;1219:110;-1:-1:-1;1219:110:94:o;1334:245::-;1392:6;1445:2;1433:9;1424:7;1420:23;1416:32;1413:2;;;1461:1;1458;1451:12;1413:2;1500:9;1487:23;1519:30;1543:5;1519:30;:::i;1584:870::-;1677:4;1669:5;1663:12;1659:23;1654:3;1647:36;1702:4;1752:2;1745:5;1741:14;1735:21;1775:10;1833:2;1819:12;1815:21;1810:2;1805:3;1801:12;1794:43;1898:2;1890:4;1883:5;1879:16;1873:23;1869:32;1862:4;1857:3;1853:14;1846:56;1963:2;1955:4;1948:5;1944:16;1938:23;1934:32;1927:4;1922:3;1918:14;1911:56;2028:2;2020:4;2013:5;2009:16;2003:23;1999:32;1992:4;1987:3;1983:14;1976:56;2081:4;2074:5;2070:16;2064:23;2057:4;2052:3;2048:14;2041:47;2136:4;2129:5;2125:16;2119:23;2097:45;;2173:4;2168:3;2164:14;2256:1;2266:182;2280:4;2277:1;2274:11;2266:182;;;2345:13;;2341:22;;2327:37;;2423:15;;;;2386:14;;;;2300:1;2293:9;2266:182;;;2270:3;;;;;1637:817;;:::o;2690:713::-;2917:2;2969:21;;;3039:13;;2942:18;;;3061:22;;;2888:4;;2917:2;3140:15;;;;3114:2;3099:18;;;2888:4;3183:194;3197:6;3194:1;3191:13;3183:194;;;3246:47;3289:3;3280:6;3274:13;3246:47;:::i;:::-;3352:15;;;;3322:6;3313:16;;;;;3219:1;3212:9;3183:194;;8233:1438;8425:3;8410:19;;8451:20;;8480:29;8451:20;8480:29;:::i;:::-;8547:4;8536:16;8518:35;;8572:4;8613:15;;;8600:29;8638:32;8600:29;8638:32;:::i;:::-;8689:10;8735:16;;;8715:18;;;8708:44;8801:4;8789:17;;8776:31;;8816:32;8776:31;8816:32;:::i;:::-;8886:16;;;8879:4;8864:20;;8857:46;8952:4;8940:17;;8927:31;;8967:32;8927:31;8967:32;:::i;:::-;9037:16;;;9030:4;9015:20;;9008:46;9103:4;9091:17;;9078:31;;9118:32;9078:31;9118:32;:::i;:::-;9201:2;9192:7;9188:16;9181:4;9170:9;9166:20;9159:46;9268:4;9260:6;9256:17;9243:31;9236:4;9225:9;9221:20;9214:61;9310:4;9299:9;9295:20;9284:31;;9369:4;9361:6;9357:17;9392:1;9402:263;9416:4;9413:1;9410:11;9402:263;;;9491:6;9478:20;9511:32;9535:7;9511:32;:::i;:::-;9568:16;;9556:29;;9605:12;;;;9640:15;;;;9436:1;9429:9;9402:263;;;9406:3;;;;;8392:1279;;;;:::o;9676:255::-;9866:3;9851:19;;9879:46;9855:9;9907:6;9879:46;:::i;10315:128::-;10355:3;10386:1;10382:6;10379:1;10376:13;10373:2;;;10392:18;;:::i;:::-;-1:-1:-1;10428:9:94;;10363:80::o;10448:274::-;10488:1;10514;10504:2;;-1:-1:-1;;;10546:1:94;10539:88;10650:4;10647:1;10640:15;10678:4;10675:1;10668:15;10504:2;-1:-1:-1;10707:9:94;;10494:228::o;10727:125::-;10767:4;10795:1;10792;10789:8;10786:2;;;10800:18;;:::i;:::-;-1:-1:-1;10837:9:94;;10776:76::o;10857:887::-;10970:5;11003:4;11037:1;11056:13;11078:660;11092:4;11089:1;11086:11;11078:660;;;11167:6;11154:20;11187:32;11211:7;11187:32;:::i;:::-;11275:18;;11242:10;11327:1;11323:21;;;11369:18;;;11431:9;;11423:18;;;11462:16;;;;11447:32;;11443:43;11420:67;11400:88;;11523:2;11511:15;;;;;11575:1;11556:21;;;;11611:2;11593:21;;11590:2;;;11662:1;11645:18;;11712:1;11699:11;11695:19;11680:34;;11590:2;11112:1;11105:9;11078:660;;;11082:3;;;;10946:798;;:::o;11749:195::-;11788:3;11819:66;11812:5;11809:77;11806:2;;;11889:18;;:::i;:::-;-1:-1:-1;11936:1:94;11925:13;;11796:148::o;11949:184::-;-1:-1:-1;;;11998:1:94;11991:88;12098:4;12095:1;12088:15;12122:4;12119:1;12112:15;12138:184;-1:-1:-1;;;12187:1:94;12180:88;12287:4;12284:1;12277:15;12311:4;12308:1;12301:15;12327:184;-1:-1:-1;;;12376:1:94;12369:88;12476:4;12473:1;12466:15;12500:4;12497:1;12490:15;12516:174;12560:11;12612:3;12599:17;12625:30;12649:5;12625:30;:::i;12695:1173::-;12866:5;12853:19;12881:31;12904:7;12881:31;:::i;:::-;12944:4;12935:7;12931:18;12921:28;;12974:4;12968:11;13081:2;13012:66;13008:2;13004:75;13001:83;12995:4;12988:97;13133:2;13126:5;13122:14;13109:28;13146:32;13170:7;13146:32;:::i;:::-;13309:12;13299:7;13296:1;13292:15;13288:34;13283:2;13214:66;13210:2;13206:75;13203:83;13200:123;13194:4;13187:137;;;;13372:2;13365:5;13361:14;13348:28;13385:32;13409:7;13385:32;:::i;:::-;14246:11;;14290:66;14282:75;14367:2;14363:14;;;14379:20;14359:41;14279:122;14266:136;;13426:62;13497:95;13549:42;13587:2;13580:5;13576:14;13549:42;:::i;:::-;14505:11;;14549:66;14541:75;14626:2;14622:14;;;;14638:28;14618:49;14538:130;14525:144;;14485:190;13497:95;13601:99;13656:43;13694:3;13687:5;13683:15;13656:43;:::i;:::-;13968:11;;14012:66;14004:75;14089:3;14085:15;;;;14102:36;14081:58;14001:139;13988:153;;13948:199;13601:99;13754:3;13747:5;13743:15;13730:29;13726:1;13720:4;13716:12;13709:51;13769:93;13857:3;13850:5;13846:15;13842:1;13836:4;13832:12;13769:93;:::i;:::-;12828:1040;;:::o;14680:121::-;14765:10;14758:5;14754:22;14747:5;14744:33;14734:2;;14791:1;14788;14781:12;14734:2;14724:77;:::o;14806:114::-;14890:4;14883:5;14879:16;14872:5;14869:27;14859:2;;14910:1;14907;14900:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1521800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54530",
                "count()": "2293",
                "getNewestDrawId()": "6807",
                "getOldestDrawId()": "4609",
                "getPrizeTier(uint32)": "infinite",
                "getPrizeTierAtIndex(uint256)": "infinite",
                "getPrizeTierList(uint32[])": "infinite",
                "manager()": "2343",
                "owner()": "2376",
                "pendingOwner()": "2353",
                "popAndPush((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "infinite",
                "push((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "infinite",
                "renounceOwnership()": "28158",
                "replace((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "infinite",
                "setManager(address)": "30577",
                "transferOwnership(address)": "27959"
              },
              "internal": {
                "_binarySearch(uint32,uint256,uint256,struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer)": "infinite",
                "_binarySearchIndex(uint32,uint256,uint256,struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer)": "infinite",
                "_getPrizeTier(uint32)": "infinite"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "count()": "06661abd",
              "getNewestDrawId()": "472b619c",
              "getOldestDrawId()": "39dd7f08",
              "getPrizeTier(uint32)": "4aac253d",
              "getPrizeTierAtIndex(uint256)": "e4dd2690",
              "getPrizeTierList(uint32[])": "4e602cd8",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "popAndPush((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "f1143765",
              "push((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "3659f543",
              "renounceOwnership()": "715018a6",
              "replace((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "d365027d",
              "setManager(address)": "d0ebdbe7",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"indexed\":false,\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"prizeTier\",\"type\":\"tuple\"}],\"name\":\"PrizeTierPushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"indexed\":false,\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"prizeTier\",\"type\":\"tuple\"}],\"name\":\"PrizeTierSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"count\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestDrawId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestDrawId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"}],\"name\":\"getPrizeTier\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"getPrizeTierAtIndex\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"_drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getPrizeTierList\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"_prizeTier\",\"type\":\"tuple\"}],\"name\":\"popAndPush\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"_nextPrizeTier\",\"type\":\"tuple\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"_prizeTier\",\"type\":\"tuple\"}],\"name\":\"replace\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"count()\":{\"returns\":{\"_0\":\"The number of prize tiers that have been pushed\"}},\"getOldestDrawId()\":{\"returns\":{\"_0\":\"Draw ID of first PrizeTier record\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 IPrizeTierHistory\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeTierPushed(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"notice\":\"Emit when new PrizeTier is added to history\"},\"PrizeTierSet(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"notice\":\"Emit when existing PrizeTier is updated in history\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"count()\":{\"notice\":\"Returns the number of Prize Tier structs pushed\"},\"getOldestDrawId()\":{\"notice\":\"Read first Draw ID used to initialize history\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"IPrizeTierHistory is the base contract for PrizeTierHistory\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol\":\"PrizeTierHistory\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/DrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\n\\n\\n/**\\n  * @title  PoolTogether V4 DrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\\n            To create a new Draw, the user requests a new random number from the RNG service.\\n            When the random number is available, the user can create the draw using the create() method\\n            which will push the draw onto the DrawBuffer.\\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\\n*/\\ncontract DrawBeacon is IDrawBeacon, Ownable {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Variables ============ */\\n\\n    /// @notice RNG contract interface\\n    RNGInterface internal rng;\\n\\n    /// @notice Current RNG Request\\n    RngRequest internal rngRequest;\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer internal drawBuffer;\\n\\n    /**\\n     * @notice RNG Request Timeout.  In fact, this is really a \\\"complete draw\\\" timeout.\\n     * @dev If the rng completes the award can still be cancelled.\\n     */\\n    uint32 internal rngTimeout;\\n\\n    /// @notice Seconds between beacon period request\\n    uint32 internal beaconPeriodSeconds;\\n\\n    /// @notice Epoch timestamp when beacon period can start\\n    uint64 internal beaconPeriodStartedAt;\\n\\n    /**\\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\\n     */\\n    uint32 internal nextDrawId;\\n\\n    /* ============ Structs ============ */\\n\\n    /**\\n     * @notice RNG Request\\n     * @param id          RNG request ID\\n     * @param lockBlock   Block number that the RNG request is locked\\n     * @param requestedAt Time when RNG is requested\\n     */\\n    struct RngRequest {\\n        uint32 id;\\n        uint32 lockBlock;\\n        uint64 requestedAt;\\n    }\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Emit when the DrawBeacon is deployed.\\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\\n     */\\n    event Deployed(\\n        uint32 nextDrawId,\\n        uint64 beaconPeriodStartedAt\\n    );\\n\\n    /* ============ Modifiers ============ */\\n\\n    modifier requireDrawNotStarted() {\\n        _requireDrawNotStarted();\\n        _;\\n    }\\n\\n    modifier requireCanStartDraw() {\\n        require(_isBeaconPeriodOver(), \\\"DrawBeacon/beacon-period-not-over\\\");\\n        require(!isRngRequested(), \\\"DrawBeacon/rng-already-requested\\\");\\n        _;\\n    }\\n\\n    modifier requireCanCompleteRngRequest() {\\n        require(isRngRequested(), \\\"DrawBeacon/rng-not-requested\\\");\\n        require(isRngCompleted(), \\\"DrawBeacon/rng-not-complete\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the DrawBeacon smart contract.\\n     * @param _owner Address of the DrawBeacon owner\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _rng The RNG service to use\\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        RNGInterface _rng,\\n        uint32 _nextDrawId,\\n        uint64 _beaconPeriodStart,\\n        uint32 _beaconPeriodSeconds,\\n        uint32 _rngTimeout\\n    ) Ownable(_owner) {\\n        require(_beaconPeriodStart > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        require(address(_rng) != address(0), \\\"DrawBeacon/rng-not-zero\\\");\\n        require(_nextDrawId >= 1, \\\"DrawBeacon/next-draw-id-gte-one\\\");\\n\\n        beaconPeriodStartedAt = _beaconPeriodStart;\\n        nextDrawId = _nextDrawId;\\n\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n        _setDrawBuffer(_drawBuffer);\\n        _setRngService(_rng);\\n        _setRngTimeout(_rngTimeout);\\n\\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\\n        emit BeaconPeriodStarted(_beaconPeriodStart);\\n    }\\n\\n    /* ============ Public Functions ============ */\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() public view override returns (bool) {\\n        return rng.isRequestComplete(rngRequest.id);\\n    }\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() public view override returns (bool) {\\n        return rngRequest.id != 0;\\n    }\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() public view override returns (bool) {\\n        if (rngRequest.requestedAt == 0) {\\n            return false;\\n        } else {\\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\\n        }\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canStartDraw() external view override returns (bool) {\\n        return _isBeaconPeriodOver() && !isRngRequested();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canCompleteDraw() external view override returns (bool) {\\n        return isRngRequested() && isRngCompleted();\\n    }\\n\\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\\n    /// @return The next beacon period start time\\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _currentTime()\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\\n        external\\n        view\\n        override\\n        returns (uint64)\\n    {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _time\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function cancelDraw() external override {\\n        require(isRngTimedOut(), \\\"DrawBeacon/rng-not-timedout\\\");\\n        uint32 requestId = rngRequest.id;\\n        uint32 lockBlock = rngRequest.lockBlock;\\n        delete rngRequest;\\n        emit DrawCancelled(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function completeDraw() external override requireCanCompleteRngRequest {\\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\\n        uint32 _nextDrawId = nextDrawId;\\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\\n        uint64 _time = _currentTime();\\n\\n        // create Draw struct\\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\\n            winningRandomNumber: randomNumber,\\n            drawId: _nextDrawId,\\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\\n            beaconPeriodSeconds: _beaconPeriodSeconds\\n        });\\n\\n        drawBuffer.pushDraw(_draw);\\n\\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\\n            _beaconPeriodStartedAt,\\n            _beaconPeriodSeconds,\\n            _time\\n        );\\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\\n        nextDrawId = _nextDrawId + 1;\\n\\n        // Reset the rngReqeust state so Beacon period can start again.\\n        delete rngRequest;\\n\\n        emit DrawCompleted(randomNumber);\\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\\n        return _beaconPeriodRemainingSeconds();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodEndAt() external view override returns (uint64) {\\n        return _beaconPeriodEndAt();\\n    }\\n\\n    function getBeaconPeriodSeconds() external view returns (uint32) {\\n        return beaconPeriodSeconds;\\n    }\\n\\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\\n        return beaconPeriodStartedAt;\\n    }\\n\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    function getNextDrawId() external view returns (uint32) {\\n        return nextDrawId;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function getLastRngLockBlock() external view override returns (uint32) {\\n        return rngRequest.lockBlock;\\n    }\\n\\n    function getLastRngRequestId() external view override returns (uint32) {\\n        return rngRequest.id;\\n    }\\n\\n    function getRngService() external view returns (RNGInterface) {\\n        return rng;\\n    }\\n\\n    function getRngTimeout() external view returns (uint32) {\\n        return rngTimeout;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function isBeaconPeriodOver() external view override returns (bool) {\\n        return _isBeaconPeriodOver();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawBuffer)\\n    {\\n        return _setDrawBuffer(newDrawBuffer);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function startDraw() external override requireCanStartDraw {\\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\\n\\n        if (feeToken != address(0) && requestFee > 0) {\\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\\n        }\\n\\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\\n        rngRequest.id = requestId;\\n        rngRequest.lockBlock = lockBlock;\\n        rngRequest.requestedAt = _currentTime();\\n\\n        emit DrawStarted(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\\n        _setRngTimeout(_rngTimeout);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngService(RNGInterface _rngService)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setRngService(_rngService);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param _rngService The address of the new RNG service interface\\n     */\\n    function _setRngService(RNGInterface _rngService) internal\\n    {\\n        rng = _rngService;\\n        emit RngServiceUpdated(_rngService);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start\\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     * @param _time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function _calculateNextBeaconPeriodStartTime(\\n        uint64 _beaconPeriodStartedAt,\\n        uint32 _beaconPeriodSeconds,\\n        uint64 _time\\n    ) internal pure returns (uint64) {\\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice returns the current time.  Used for testing.\\n     * @return The current time (block.timestamp)\\n     */\\n    function _currentTime() internal view virtual returns (uint64) {\\n        return uint64(block.timestamp);\\n    }\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends\\n     */\\n    function _beaconPeriodEndAt() internal view returns (uint64) {\\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\\n     * @return The number of seconds remaining until the prize can be awarded.\\n     */\\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\\n        uint64 endAt = _beaconPeriodEndAt();\\n        uint64 time = _currentTime();\\n\\n        if (endAt <= time) {\\n            return 0;\\n        }\\n\\n        return endAt - time;\\n    }\\n\\n    /**\\n     * @notice Returns whether the beacon period is over.\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function _isBeaconPeriodOver() internal view returns (bool) {\\n        return _beaconPeriodEndAt() <= _currentTime();\\n    }\\n\\n    /**\\n     * @notice Check to see draw is in progress.\\n     */\\n    function _requireDrawNotStarted() internal view {\\n        uint256 currentBlock = block.number;\\n\\n        require(\\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\\n            \\\"DrawBeacon/rng-in-flight\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param _newDrawBuffer  DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\\n        require(address(_newDrawBuffer) != address(0), \\\"DrawBeacon/draw-history-not-zero-address\\\");\\n\\n        require(\\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\\n            \\\"DrawBeacon/existing-draw-history-address\\\"\\n        );\\n\\n        drawBuffer = _newDrawBuffer;\\n\\n        emit DrawBufferUpdated(_newDrawBuffer);\\n\\n        return _newDrawBuffer;\\n    }\\n\\n    /**\\n     * @notice Sets the beacon period in seconds.\\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\\n        require(_beaconPeriodSeconds > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        beaconPeriodSeconds = _beaconPeriodSeconds;\\n\\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param _rngTimeout The RNG request timeout in seconds.\\n     */\\n    function _setRngTimeout(uint32 _rngTimeout) internal {\\n        require(_rngTimeout > 60, \\\"DrawBeacon/rng-timeout-gt-60-secs\\\");\\n        rngTimeout = _rngTimeout;\\n\\n        emit RngTimeoutSet(_rngTimeout);\\n    }\\n}\\n\",\"keccak256\":\"0xb12addf63f79aedc80fea67b0f36d405155f5b06a2a1cf018f6aee43aa4c26d6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"./interfaces/IPrizeTierHistory.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IPrizeTierHistory\\n * @author PoolTogether Inc Team\\n * @notice IPrizeTierHistory is the base contract for PrizeTierHistory\\n */\\ncontract PrizeTierHistory is IPrizeTierHistory, Manageable {\\n    /* ============ Global Variables ============ */\\n    /**\\n     * @notice History of PrizeTier updates\\n     */\\n    PrizeTier[] internal history;\\n\\n    /* ============ Constructor ============ */\\n    constructor(address _owner) Ownable(_owner) {}\\n\\n    /* ============ External Functions ============ */\\n\\n    // @inheritdoc IPrizeTierHistory\\n    function push(PrizeTier calldata _nextPrizeTier) external override onlyManagerOrOwner {\\n        PrizeTier[] memory _history = history;\\n\\n        if (_history.length > 0) {\\n            // READ the newest PrizeTier struct\\n            PrizeTier memory _newestPrizeTier = history[history.length - 1];\\n            // New PrizeTier ID must only be 1 greater than the last PrizeTier ID.\\n            require(\\n                _nextPrizeTier.drawId > _newestPrizeTier.drawId,\\n                \\\"PrizeTierHistory/non-sequential-prize-tier\\\"\\n            );\\n        }\\n\\n        history.push(_nextPrizeTier);\\n\\n        emit PrizeTierPushed(_nextPrizeTier.drawId, _nextPrizeTier);\\n    }\\n\\n    // @inheritdoc IPrizeTierHistory\\n    function replace(PrizeTier calldata _prizeTier) external override onlyOwner {\\n        uint256 cardinality = history.length;\\n        require(cardinality > 0, \\\"PrizeTierHistory/no-prize-tiers\\\");\\n\\n        uint256 leftSide = 0;\\n        uint256 rightSide = cardinality - 1;\\n        uint32 oldestDrawId = history[leftSide].drawId;\\n\\n        require(_prizeTier.drawId >= oldestDrawId, \\\"PrizeTierHistory/draw-id-out-of-range\\\");\\n\\n        uint256 index = _binarySearchIndex(_prizeTier.drawId, leftSide, rightSide, history);\\n\\n        require(history[index].drawId == _prizeTier.drawId, \\\"PrizeTierHistory/draw-id-must-match\\\");\\n\\n        history[index] = _prizeTier;\\n\\n        emit PrizeTierSet(_prizeTier.drawId, _prizeTier);\\n    }\\n\\n    /* ============ Setter Functions ============ */\\n\\n    // @inheritdoc IPrizeTierHistory\\n    function popAndPush(PrizeTier calldata _prizeTier)\\n        external\\n        override\\n        onlyOwner\\n        returns (uint32)\\n    {\\n        require(history.length > 0, \\\"PrizeTierHistory/history-empty\\\");\\n        PrizeTier memory _newestPrizeTier = history[history.length - 1];\\n        require(_prizeTier.drawId >= _newestPrizeTier.drawId, \\\"PrizeTierHistory/invalid-draw-id\\\");\\n        history[history.length - 1] = _prizeTier;\\n        emit PrizeTierSet(_prizeTier.drawId, _prizeTier);\\n\\n        return _prizeTier.drawId;\\n    }\\n\\n    /* ============ Getter Functions ============ */\\n\\n    // @inheritdoc IPrizeTierHistory\\n    function getPrizeTier(uint32 _drawId) external view override returns (PrizeTier memory) {\\n        require(_drawId > 0, \\\"PrizeTierHistory/draw-id-not-zero\\\");\\n        return _getPrizeTier(_drawId);\\n    }\\n\\n    // @inheritdoc IPrizeTierHistory\\n    function getOldestDrawId() external view override returns (uint32) {\\n        return history[0].drawId;\\n    }\\n\\n    // @inheritdoc IPrizeTierHistory\\n    function getNewestDrawId() external view override returns (uint32) {\\n        return history[history.length - 1].drawId;\\n    }\\n\\n    // @inheritdoc IPrizeTierHistory\\n    function getPrizeTierList(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (PrizeTier[] memory)\\n    {\\n        PrizeTier[] memory _data = new PrizeTier[](_drawIds.length);\\n        for (uint256 index = 0; index < _drawIds.length; index++) {\\n            _data[index] = _getPrizeTier(_drawIds[index]); // SLOAD each struct instead of the whole array before the FOR loop.\\n        }\\n        return _data;\\n    }\\n\\n    function _getPrizeTier(uint32 _drawId) internal view returns (PrizeTier memory) {\\n        uint256 cardinality = history.length;\\n        require(cardinality > 0, \\\"PrizeTierHistory/no-prize-tiers\\\");\\n\\n        uint256 leftSide = 0;\\n        uint256 rightSide = cardinality - 1;\\n        uint32 oldestDrawId = history[leftSide].drawId;\\n        uint32 newestDrawId = history[rightSide].drawId;\\n\\n        require(_drawId >= oldestDrawId, \\\"PrizeTierHistory/draw-id-out-of-range\\\");\\n        if (_drawId >= newestDrawId) return history[rightSide];\\n        if (_drawId == oldestDrawId) return history[leftSide];\\n\\n        return _binarySearch(_drawId, leftSide, rightSide, history);\\n    }\\n\\n    function _binarySearch(\\n        uint32 _drawId,\\n        uint256 leftSide,\\n        uint256 rightSide,\\n        PrizeTier[] storage _history\\n    ) internal view returns (PrizeTier memory) {\\n        return _history[_binarySearchIndex(_drawId, leftSide, rightSide, _history)];\\n    }\\n\\n    function _binarySearchIndex(\\n        uint32 _drawId,\\n        uint256 _leftSide,\\n        uint256 _rightSide,\\n        PrizeTier[] storage _history\\n    ) internal view returns (uint256) {\\n        uint256 index;\\n        uint256 leftSide = _leftSide;\\n        uint256 rightSide = _rightSide;\\n        while (true) {\\n            uint256 center = leftSide + (rightSide - leftSide) / 2;\\n            uint32 centerPrizeTierID = _history[center].drawId;\\n\\n            if (centerPrizeTierID == _drawId) {\\n                index = center;\\n                break;\\n            }\\n\\n            if (centerPrizeTierID < _drawId) {\\n                leftSide = center + 1;\\n            } else if (centerPrizeTierID > _drawId) {\\n                rightSide = center - 1;\\n            }\\n\\n            if (leftSide == rightSide) {\\n                if (centerPrizeTierID >= _drawId) {\\n                    index = center - 1;\\n                    break;\\n                } else {\\n                    index = center;\\n                    break;\\n                }\\n            }\\n        }\\n        return index;\\n    }\\n\\n    function getPrizeTierAtIndex(uint256 index) external view override returns (PrizeTier memory) {\\n        return history[index];\\n    }\\n\\n    function count() external view override returns (uint256) {\\n        return history.length;\\n    }\\n}\\n\",\"keccak256\":\"0x01c9fbde9d26b037e8eddfc80d1edb22d913f5d2c1310380d3e0767a03f8f61d\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/DrawBeacon.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IPrizeTierHistory\\n * @author PoolTogether Inc Team\\n * @notice IPrizeTierHistory is the base contract for PrizeTierHistory\\n */\\ninterface IPrizeTierHistory {\\n    /**\\n     * @notice Linked Draw and PrizeDistribution parameters storage schema\\n     */\\n    struct PrizeTier {\\n        uint8 bitRangeSize;\\n        uint32 drawId;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint32 endTimestampOffset;\\n        uint256 prize;\\n        uint32[16] tiers;\\n    }\\n\\n    /**\\n     * @notice Emit when new PrizeTier is added to history\\n     * @param drawId    Draw ID\\n     * @param prizeTier PrizeTier parameters\\n     */\\n    event PrizeTierPushed(uint32 indexed drawId, PrizeTier prizeTier);\\n\\n    /**\\n     * @notice Emit when existing PrizeTier is updated in history\\n     * @param drawId    Draw ID\\n     * @param prizeTier PrizeTier parameters\\n     */\\n    event PrizeTierSet(uint32 indexed drawId, PrizeTier prizeTier);\\n\\n    /**\\n     * @notice Push PrizeTierHistory struct onto history array.\\n     * @dev    Callable only by owner or manager,\\n     * @param drawPrizeDistribution New PrizeTierHistory struct\\n     */\\n    function push(PrizeTier calldata drawPrizeDistribution) external;\\n\\n    function replace(PrizeTier calldata _prizeTier) external;\\n\\n    /**\\n     * @notice Read PrizeTierHistory struct from history array.\\n     * @param drawId Draw ID\\n     * @return prizeTier\\n     */\\n    function getPrizeTier(uint32 drawId) external view returns (PrizeTier memory prizeTier);\\n\\n    /**\\n     * @notice Read first Draw ID used to initialize history\\n     * @return Draw ID of first PrizeTier record\\n     */\\n    function getOldestDrawId() external view returns (uint32);\\n\\n    function getNewestDrawId() external view returns (uint32);\\n\\n    /**\\n     * @notice Read PrizeTierHistory List from history array.\\n     * @param drawIds Draw ID array\\n     * @return prizeTierList\\n     */\\n    function getPrizeTierList(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeTier[] memory prizeTierList);\\n\\n    /**\\n     * @notice Push PrizeTierHistory struct onto history array.\\n     * @dev    Callable only by owner.\\n     * @param prizeTier Updated PrizeTierHistory struct\\n     * @return drawId Draw ID linked to PrizeTierHistory\\n     */\\n    function popAndPush(PrizeTier calldata prizeTier) external returns (uint32 drawId);\\n\\n    function getPrizeTierAtIndex(uint256 index) external view returns (PrizeTier memory);\\n\\n    /**\\n     * @notice Returns the number of Prize Tier structs pushed\\n     * @return The number of prize tiers that have been pushed\\n     */\\n    function count() external view returns (uint256);\\n}\\n\",\"keccak256\":\"0xd521322f630dfcb577a28bdbdc0f13a17ef1eb7152d3daa193dd76e1be3d8e7c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 13546,
                "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                "label": "history",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(PrizeTier)15287_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeTier)15287_storage)dyn_storage": {
                "base": "t_struct(PrizeTier)15287_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeTierHistory.PrizeTier[]",
                "numberOfBytes": "32"
              },
              "t_array(t_uint32)16_storage": {
                "base": "t_uint32",
                "encoding": "inplace",
                "label": "uint32[16]",
                "numberOfBytes": "64"
              },
              "t_struct(PrizeTier)15287_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeTierHistory.PrizeTier",
                "members": [
                  {
                    "astId": 15272,
                    "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                    "label": "bitRangeSize",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 15274,
                    "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                    "label": "drawId",
                    "offset": 1,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 15276,
                    "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                    "label": "maxPicksPerUser",
                    "offset": 5,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 15278,
                    "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                    "label": "expiryDuration",
                    "offset": 9,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 15280,
                    "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                    "label": "endTimestampOffset",
                    "offset": 13,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 15282,
                    "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                    "label": "prize",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_uint256"
                  },
                  {
                    "astId": 15286,
                    "contract": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol:PrizeTierHistory",
                    "label": "tiers",
                    "offset": 0,
                    "slot": "2",
                    "type": "t_array(t_uint32)16_storage"
                  }
                ],
                "numberOfBytes": "128"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "events": {
              "PrizeTierPushed(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "notice": "Emit when new PrizeTier is added to history"
              },
              "PrizeTierSet(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "notice": "Emit when existing PrizeTier is updated in history"
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "count()": {
                "notice": "Returns the number of Prize Tier structs pushed"
              },
              "getOldestDrawId()": {
                "notice": "Read first Draw ID used to initialize history"
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "IPrizeTierHistory is the base contract for PrizeTierHistory",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-periphery/contracts/TwabRewards.sol": {
        "TwabRewards": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "promotionId",
                  "type": "uint256"
                }
              ],
              "name": "PromotionCreated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "promotionId",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "PromotionDestroyed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "promotionId",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "epochNumber",
                  "type": "uint8"
                }
              ],
              "name": "PromotionEnded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "promotionId",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "numberOfEpochs",
                  "type": "uint256"
                }
              ],
              "name": "PromotionExtended",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "promotionId",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint8[]",
                  "name": "epochIds",
                  "type": "uint8[]"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "RewardsClaimed",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "GRACE_PERIOD",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8[]",
                  "name": "_epochIds",
                  "type": "uint8[]"
                }
              ],
              "name": "claimRewards",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "_token",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_startTimestamp",
                  "type": "uint64"
                },
                {
                  "internalType": "uint256",
                  "name": "_tokensPerEpoch",
                  "type": "uint256"
                },
                {
                  "internalType": "uint48",
                  "name": "_epochDuration",
                  "type": "uint48"
                },
                {
                  "internalType": "uint8",
                  "name": "_numberOfEpochs",
                  "type": "uint8"
                }
              ],
              "name": "createPromotion",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "destroyPromotion",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "endPromotion",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "_numberOfEpochs",
                  "type": "uint8"
                }
              ],
              "name": "extendPromotion",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                }
              ],
              "name": "getCurrentEpochId",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                }
              ],
              "name": "getPromotion",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "creator",
                      "type": "address"
                    },
                    {
                      "internalType": "uint64",
                      "name": "startTimestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint8",
                      "name": "numberOfEpochs",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint48",
                      "name": "epochDuration",
                      "type": "uint48"
                    },
                    {
                      "internalType": "uint48",
                      "name": "createdAt",
                      "type": "uint48"
                    },
                    {
                      "internalType": "contract IERC20",
                      "name": "token",
                      "type": "address"
                    },
                    {
                      "internalType": "uint256",
                      "name": "tokensPerEpoch",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint256",
                      "name": "rewardsUnclaimed",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct ITwabRewards.Promotion",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                }
              ],
              "name": "getRemainingRewards",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8[]",
                  "name": "_epochIds",
                  "type": "uint8[]"
                }
              ],
              "name": "getRewardsAmount",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "details": "This contract supports only one prize pool ticket.This contract does not support the use of fee on transfer tokens.",
            "events": {
              "PromotionCreated(uint256)": {
                "params": {
                  "promotionId": "Id of the newly created promotion"
                }
              },
              "PromotionDestroyed(uint256,address,uint256)": {
                "params": {
                  "amount": "Amount of tokens transferred to the recipient",
                  "promotionId": "Id of the promotion being destroyed",
                  "recipient": "Address of the recipient that will receive the unclaimed rewards"
                }
              },
              "PromotionEnded(uint256,address,uint256,uint8)": {
                "params": {
                  "amount": "Amount of tokens transferred to the recipient",
                  "epochNumber": "Epoch number at which the promotion ended",
                  "promotionId": "Id of the promotion being ended",
                  "recipient": "Address of the recipient that will receive the remaining rewards"
                }
              },
              "PromotionExtended(uint256,uint256)": {
                "params": {
                  "numberOfEpochs": "Number of epochs the promotion has been extended by",
                  "promotionId": "Id of the promotion being extended"
                }
              },
              "RewardsClaimed(uint256,uint8[],address,uint256)": {
                "params": {
                  "amount": "Amount of tokens transferred to the recipient address",
                  "epochIds": "Ids of the epochs being claimed",
                  "promotionId": "Id of the promotion for which epoch rewards were claimed",
                  "user": "Address of the user for which the rewards were claimed"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimRewards(address,uint256,uint8[])": {
                "details": "Rewards can be claimed on behalf of a user.Rewards can only be claimed for a past epoch.",
                "params": {
                  "_epochIds": "Epoch ids to claim rewards for",
                  "_promotionId": "Id of the promotion to claim rewards for",
                  "_user": "Address of the user to claim rewards for"
                },
                "returns": {
                  "_0": "Total amount of rewards claimed"
                }
              },
              "constructor": {
                "params": {
                  "_ticket": "Prize Pool ticket address for which the promotions will be created"
                }
              },
              "createPromotion(address,uint64,uint256,uint48,uint8)": {
                "details": "For sake of simplicity, `msg.sender` will be the creator of the promotion.`_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc.The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`. This scenario could happen if the token supplied is a fee on transfer one.",
                "params": {
                  "_epochDuration": "Duration of one epoch in seconds",
                  "_numberOfEpochs": "Number of epochs the promotion will last for",
                  "_startTimestamp": "Timestamp at which the promotion starts",
                  "_token": "Address of the token to be distributed",
                  "_tokensPerEpoch": "Number of tokens to be distributed per epoch"
                },
                "returns": {
                  "_0": "Id of the newly created promotion"
                }
              },
              "destroyPromotion(uint256,address)": {
                "details": "Will send back all the tokens that have not been claimed yet by users.This function will revert if the promotion is still active.This function will revert if the grace period is not over yet.",
                "params": {
                  "_promotionId": "Promotion id to destroy",
                  "_to": "Address that will receive the remaining tokens if there are any left"
                },
                "returns": {
                  "_0": "True if operation was successful"
                }
              },
              "endPromotion(uint256,address)": {
                "details": "Will only send back tokens from the epochs that have not completed.",
                "params": {
                  "_promotionId": "Promotion id to end",
                  "_to": "Address that will receive the remaining tokens if there are any left"
                },
                "returns": {
                  "_0": "true if operation was successful"
                }
              },
              "extendPromotion(uint256,uint8)": {
                "params": {
                  "_numberOfEpochs": "Number of epochs to add",
                  "_promotionId": "Id of the promotion to extend"
                },
                "returns": {
                  "_0": "True if the operation was successful"
                }
              },
              "getCurrentEpochId(uint256)": {
                "details": "Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.",
                "params": {
                  "_promotionId": "Id of the promotion to get current epoch for"
                },
                "returns": {
                  "_0": "Current epoch id of the promotion"
                }
              },
              "getPromotion(uint256)": {
                "params": {
                  "_promotionId": "Id of the promotion to get settings for"
                },
                "returns": {
                  "_0": "Promotion settings"
                }
              },
              "getRemainingRewards(uint256)": {
                "params": {
                  "_promotionId": "Id of the promotion to get the total amount of tokens left to be rewarded for"
                },
                "returns": {
                  "_0": "Amount of tokens left to be rewarded"
                }
              },
              "getRewardsAmount(address,uint256,uint8[])": {
                "details": "Rewards amount can only be retrieved for epochs that are over.Will revert if `_epochId` is over the total number of epochs or if epoch is not over.Will return 0 if the user average balance of tickets is 0.Will be 0 if user has already claimed rewards for the epoch.",
                "params": {
                  "_epochIds": "Epoch ids to get reward amount for",
                  "_promotionId": "Id of the promotion from which the epoch is",
                  "_user": "Address of the user to get amount of rewards for"
                },
                "returns": {
                  "_0": "Amount of tokens per epoch to be rewarded"
                }
              }
            },
            "stateVariables": {
              "_claimedEpochs": {
                "details": "_claimedEpochs[promotionId][user] => claimedEpochsWe pack epochs claimed by a user into a uint256. So we can't store more than 256 epochs."
              },
              "_latestPromotionId": {
                "details": "Starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc."
              }
            },
            "title": "PoolTogether V4 TwabRewards",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_14172": {
                  "entryPoint": null,
                  "id": 14172,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requireTicket_14853": {
                  "entryPoint": 85,
                  "id": 14853,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory": {
                  "entryPoint": 451,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint160_fromMemory": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 490,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_281bcab599be56849c28ecd534f34a76aa30e0c09734f7a92b3d9ec028cb4a46__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_50e4a61330740088384d1945d9d5f8422f8f82aac6581c2a850d5d71e218e833__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "validator_revert_contract_ITicket": {
                  "entryPoint": 552,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2060:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "111:179:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "157:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "166:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "169:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "159:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "159:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "159:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "141:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "128:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "128:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "153:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "124:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "124:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "121:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "182:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "201:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "195:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "195:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "186:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "254:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_ITicket",
                                  "nodeType": "YulIdentifier",
                                  "src": "220:33:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "220:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "220:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "269:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "279:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "269:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "77:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "88:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "100:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:276:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "376:179:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "422:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "431:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "434:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "424:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "424:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "424:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "397:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "406:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "393:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "393:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "418:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "389:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "389:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "386:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "447:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "466:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "460:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "460:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "451:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "519:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_ITicket",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:33:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "534:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "544:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "534:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint160_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "342:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "353:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "365:6:94",
                            "type": ""
                          }
                        ],
                        "src": "295:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "677:89:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "694:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "703:6:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "715:3:94",
                                            "type": "",
                                            "value": "224"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "720:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "711:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "711:20:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "699:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "699:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "687:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "687:46:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "687:46:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "742:18:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "753:3:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "758:1:94",
                                    "type": "",
                                    "value": "4"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "749:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "749:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "742:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "653:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "658:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "669:3:94",
                            "type": ""
                          }
                        ],
                        "src": "560:206:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "908:289:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "918:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "938:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "932:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "932:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "922:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "954:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "963:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "958:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1025:77:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1050:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "1055:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1046:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1046:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1073:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1081:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1069:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1069:14:94"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "1085:4:94",
                                                  "type": "",
                                                  "value": "0x20"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1065:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1065:25:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1059:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1059:32:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1039:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1039:53:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1039:53:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "984:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "987:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "981:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "981:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "995:21:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "997:17:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1006:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1009:4:94",
                                          "type": "",
                                          "value": "0x20"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1002:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1002:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "997:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "977:3:94",
                                "statements": []
                              },
                              "src": "973:129:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1128:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1141:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "1146:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1137:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1137:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1155:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1130:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1130:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1130:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1117:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1120:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1114:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1114:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1111:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1168:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1179:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1184:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1175:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1175:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1168:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "884:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "889:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "900:3:94",
                            "type": ""
                          }
                        ],
                        "src": "771:426:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1376:182:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1393:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1404:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1386:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1386:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1386:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1427:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1438:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1423:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1423:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1443:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1416:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1416:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1416:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1466:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1477:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1462:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1462:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f7469636b65742d6e6f742d7a65726f2d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1482:34:94",
                                    "type": "",
                                    "value": "TwabRewards/ticket-not-zero-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1455:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1455:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1455:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1526:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1538:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1549:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1526:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_281bcab599be56849c28ecd534f34a76aa30e0c09734f7a92b3d9ec028cb4a46__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1353:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1367:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1202:356:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1737:176:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1754:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1765:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1747:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1747:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1747:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1788:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1799:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1784:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1784:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1804:2:94",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1777:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1777:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1777:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1827:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1838:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1823:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1823:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f696e76616c69642d7469636b6574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1843:28:94",
                                    "type": "",
                                    "value": "TwabRewards/invalid-ticket"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1816:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1816:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1816:56:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1881:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1904:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1889:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1889:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1881:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_50e4a61330740088384d1945d9d5f8422f8f82aac6581c2a850d5d71e218e833__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1714:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1728:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1563:350:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1972:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2036:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2045:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2048:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2038:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2038:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2038:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1995:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2006:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2021:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2026:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2017:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "2017:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2030:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "2013:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2013:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2002:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2002:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1992:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1992:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1985:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1985:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1982:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_contract_ITicket",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1961:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1918:140:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_contract$_ITicket_$9297_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_ITicket(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint160_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_ITicket(value)\n        value0 := value\n    }\n    function abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, and(value0, shl(224, 0xffffffff)))\n        end := add(pos, 4)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 0x20) }\n        {\n            mstore(add(pos, i), mload(add(add(value0, i), 0x20)))\n        }\n        if gt(i, length) { mstore(add(pos, length), 0) }\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_stringliteral_281bcab599be56849c28ecd534f34a76aa30e0c09734f7a92b3d9ec028cb4a46__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 32)\n        mstore(add(headStart, 64), \"TwabRewards/ticket-not-zero-addr\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_50e4a61330740088384d1945d9d5f8422f8f82aac6581c2a850d5d71e218e833__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 26)\n        mstore(add(headStart, 64), \"TwabRewards/invalid-ticket\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_contract_ITicket(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b5060405162002123380380620021238339810160408190526200003491620001c3565b6200003f8162000055565b60601b6001600160601b03191660805262000241565b6001600160a01b038116620000b15760405162461bcd60e51b815260206004820181905260248201527f54776162526577617264732f7469636b65742d6e6f742d7a65726f2d6164647260448201526064015b60405180910390fd5b60405163f77c479160e01b602082015260009081906001600160a01b0384169060240160408051601f1981840301815290829052620000f091620001ea565b600060405180830381855afa9150503d80600081146200012d576040519150601f19603f3d011682016040523d82523d6000602084013e62000132565b606091505b509150915081801562000146575060008151115b801562000170575080806020019051810190620001649190620001c3565b6001600160a01b031615155b620001be5760405162461bcd60e51b815260206004820152601a60248201527f54776162526577617264732f696e76616c69642d7469636b65740000000000006044820152606401620000a8565b505050565b600060208284031215620001d657600080fd5b8151620001e38162000228565b9392505050565b6000825160005b818110156200020d5760208186018101518583015201620001f1565b818111156200021d576000828501525b509190910192915050565b6001600160a01b03811681146200023e57600080fd5b50565b60805160601c611eb56200026e600039600081816101820152818161121a01526113720152611eb56000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c806366cfae5e11610081578063b2456c3a1161005b578063b2456c3a146101cf578063c1a287e2146101e2578063f824d0fb1461020157600080fd5b806366cfae5e1461015c5780636cc25db71461017d578063a4958845146101bc57600080fd5b8063120468a0116100b2578063120468a01461011657806314fdecca1461012957806320555db11461014957600080fd5b8063096fe668146100ce5780630b011a16146100f6575b600080fd5b6100e16100dc366004611a84565b610214565b60405190151581526020015b60405180910390f35b610109610104366004611833565b610386565b6040516100ed9190611b2c565b6100e1610124366004611a54565b6104ae565b61013c610137366004611a22565b6105eb565b6040516100ed9190611c1f565b6100e1610157366004611a54565b61063b565b61016f61016a3660046119a6565b61080b565b6040519081526020016100ed565b6101a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100ed565b61016f6101ca366004611a22565b610c42565b61016f6101dd366004611833565b610c55565b6101ec624f1a0081565b60405163ffffffff90911681526020016100ed565b61016f61020f366004611a22565b610e00565b600061021f82610e13565b600061022a84610e69565b905061023581610fa9565b60408101516102458160ff611da8565b60ff168460ff16111561029f5760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f65706f6368732d6f7665722d6c696d697400000060448201526064015b60405180910390fd5b6102a98482611cfb565b600086815260208190526040812080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e01b60ff9485160217905560c084015190916102fc91908716611d42565b90508060008088815260200190815260200160002060030160008282546103239190611cb7565b909155505060a0830151610342906001600160a01b0316333084611020565b60405160ff8616815286907fa9527ed49c1c2ab5449cfef5b611076ce228a0a0de4534874963b83abb6e7b469060200160405180910390a250600195945050505050565b6060600061039385610e69565b90508260008167ffffffffffffffff8111156103b1576103b1611e54565b6040519080825280602002602001820160405280156103da578160200160208202803683370190505b50905060005b828110156104a25760008881526002602090815260408083206001600160a01b038d16845290915290205460ff82161c6001908116141561044057600082828151811061042f5761042f611e3e565b602002602001018181525050610490565b610471898589898581811061045757610457611e3e565b905060200201602081019061046c9190611ab0565b6110d7565b82828151811061048357610483611e3e565b6020026020010181815250505b8061049a81611df7565b9150506103e0565b50979650505050505050565b60006001600160a01b0382166105065760405162461bcd60e51b815260206004820152601f60248201527f54776162526577617264732f70617965652d6e6f742d7a65726f2d61646472006044820152606401610296565b600061051184610e69565b905061051c81611452565b61052581610fa9565b6000610530826114ab565b600086815260208190526040812080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e01b60ff85160217905590915061057b836114f7565b60a0840151909150610597906001600160a01b0316868361155b565b6040805182815260ff841660208201526001600160a01b0387169188917f98f89153fa6ee40b2edcd2e1ce4a5a9edfb2f74818016fc24e6cfe7b6fcd12a9910160405180910390a350600195945050505050565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081019190915261063582610e69565b92915050565b60006001600160a01b0382166106935760405162461bcd60e51b815260206004820152601f60248201527f54776162526577617264732f70617965652d6e6f742d7a65726f2d61646472006044820152606401610296565b600061069e84610e69565b90506106a981611452565b60408101516060820151602083015160009260ff1690910265ffffffffffff160167ffffffffffffffff16608083015190915065ffffffffffff166000624f1a008284106106f757836106f9565b825b6107039190611cb7565b9050804210156107555760405162461bcd60e51b815260206004820152601f60248201527f54776162526577617264732f67726163652d706572696f642d616374697665006044820152606401610296565b60e0840151600088815260208190526040812080547fffffff000000000000000000000000000000000000000000000000000000000016815560018101829055600281018290556003015560a08501516107b9906001600160a01b0316888361155b565b866001600160a01b0316887f6f804f2ef186cd4b2a6740c084b86f557a497a1fcf3a6b073068a55c51187b6f836040516107f591815260200190565b60405180910390a3506001979650505050505050565b600080841161085c5760405162461bcd60e51b815260206004820152601b60248201527f54776162526577617264732f746f6b656e732d6e6f742d7a65726f00000000006044820152606401610296565b60008365ffffffffffff16116108b45760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f6475726174696f6e2d6e6f742d7a65726f0000006044820152606401610296565b6108bd82610e13565b600060015460016108ce9190611cb7565b6001819055905060006108e460ff851687611d42565b9050604051806101000160405280336001600160a01b031681526020018867ffffffffffffffff1681526020018560ff1681526020018665ffffffffffff1681526020014265ffffffffffff168152602001896001600160a01b031681526020018781526020018281525060008084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550604082015181600001601c6101000a81548160ff021916908360ff16021790555060608201518160010160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160010160066101000a81548165ffffffffffff021916908365ffffffffffff16021790555060a082015181600101600c6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060c0820151816002015560e082015181600301559050506000886001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610ab591906001600160a01b0391909116815260200190565b60206040518083038186803b158015610acd57600080fd5b505afa158015610ae1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b059190611a3b565b9050610b1c6001600160a01b038a16333085611020565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038b16906370a082319060240160206040518083038186803b158015610b7757600080fd5b505afa158015610b8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610baf9190611a3b565b905080610bbc8484611cb7565b14610c095760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f70726f6d6f2d616d6f756e742d646966660000006044820152606401610296565b60405184907faedc1797e973574eb0e43205c473287ca44eb1c9d0f677dbb0ec8cfc72bb68f390600090a2509198975050505050505050565b6000610635610c5083610e69565b6114f7565b600080610c6185610e69565b60008681526002602090815260408083206001600160a01b038b1684529091528120549192509084825b81811015610d4d576000888883818110610ca757610ca7611e3e565b9050602002016020810190610cbc9190611ab0565b9050600160ff821685901c81161415610d175760405162461bcd60e51b815260206004820152601b60248201527f54776162526577617264732f726577617264732d636c61696d656400000000006044820152606401610296565b610d228b87836110d7565b610d2c9086611cb7565b9450600160ff82161b84179350508080610d4590611df7565b915050610c8b565b5060008881526002602090815260408083206001600160a01b038d16845282528083208590558a83529082905281206003018054859290610d8f908490611d91565b909155505060a0840151610dad906001600160a01b03168a8561155b565b886001600160a01b0316887f446a5bb69110f4fa9a5802e85237a4281d1d27dbe989b22da4a75d9deae8c778898987604051610deb93929190611b9e565b60405180910390a35090979650505050505050565b6000610635610e0e83610e69565b6114ab565b60008160ff1611610e665760405162461bcd60e51b815260206004820152601b60248201527f54776162526577617264732f65706f6368732d6e6f742d7a65726f00000000006044820152606401610296565b50565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526000828152602081815260409182902082516101008101845281546001600160a01b0380821680845274010000000000000000000000000000000000000000830467ffffffffffffffff1695840195909552600160e01b90910460ff1694820194909452600182015465ffffffffffff8082166060840152660100000000000082041660808301526c01000000000000000000000000900490931660a0840152600281015460c08401526003015460e08301526106355760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f696e76616c69642d70726f6d6f74696f6e0000006044820152606401610296565b604081015160608201516020830151429260ff1690910265ffffffffffff160167ffffffffffffffff1611610e665760405162461bcd60e51b815260206004820152601e60248201527f54776162526577617264732f70726f6d6f74696f6e2d696e61637469766500006044820152606401610296565b6040516001600160a01b03808516602483015283166044820152606481018290526110d19085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526115a9565b50505050565b606082015160009065ffffffffffff16816110f560ff851683611d61565b85602001516111049190611ccf565b905060006111128383611ccf565b90508067ffffffffffffffff1642101561116e5760405162461bcd60e51b815260206004820152601a60248201527f54776162526577617264732f65706f63682d6e6f742d6f7665720000000000006044820152606401610296565b856040015160ff168560ff16106111c75760405162461bcd60e51b815260206004820152601c60248201527f54776162526577617264732f696e76616c69642d65706f63682d6964000000006044820152606401610296565b6040517f98b16f360000000000000000000000000000000000000000000000000000000081526001600160a01b03888116600483015267ffffffffffffffff8085166024840152831660448301526000917f0000000000000000000000000000000000000000000000000000000000000000909116906398b16f369060640160206040518083038186803b15801561125e57600080fd5b505afa158015611272573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112969190611a3b565b90508015611442576040805160018082528183019092526000916020808301908036833701905050905083816000815181106112d4576112d4611e3e565b67ffffffffffffffff9290921660209283029190910190910152604080516001808252818301909252600091816020016020820280368337019050509050838160008151811061132657611326611e3e565b67ffffffffffffffff909216602092830291909101909101526040517f8e6d536a0000000000000000000000000000000000000000000000000000000081526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690638e6d536a906113a99086908690600401611b70565b60006040518083038186803b1580156113c157600080fd5b505afa1580156113d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113fd91908101906118bf565b60008151811061140f5761140f611e3e565b6020026020010151905080848b60c0015161142a9190611d42565b6114349190611d20565b97505050505050505061144b565b60009450505050505b9392505050565b80516001600160a01b03163314610e665760405162461bcd60e51b815260206004820152601e60248201527f54776162526577617264732f6f6e6c792d70726f6d6f2d63726561746f7200006044820152606401610296565b600080826020015167ffffffffffffffff1642111561063557826060015165ffffffffffff16836020015167ffffffffffffffff164203816114ef576114ef611e28565b049392505050565b60408101516060820151602083015160009260ff1690910265ffffffffffff160167ffffffffffffffff1642111561153157506000919050565b61153a826114ab565b826040015160ff1661154c9190611d91565b8260c001516106359190611d42565b6040516001600160a01b0383166024820152604481018290526115a49084907fa9059cbb000000000000000000000000000000000000000000000000000000009060640161106d565b505050565b60006115fe826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661168e9092919063ffffffff16565b8051909150156115a4578080602001905181019061161c9190611984565b6115a45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610296565b606061169d84846000856116a5565b949350505050565b60608247101561171d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610296565b843b61176b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610296565b600080866001600160a01b031685876040516117879190611b10565b60006040518083038185875af1925050503d80600081146117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b50915091506117d98282866117e4565b979650505050505050565b606083156117f357508161144b565b8251156118035782518084602001fd5b8160405162461bcd60e51b81526004016102969190611bec565b803560ff8116811461182e57600080fd5b919050565b6000806000806060858703121561184957600080fd5b843561185481611e6a565b935060208501359250604085013567ffffffffffffffff8082111561187857600080fd5b818701915087601f83011261188c57600080fd5b81358181111561189b57600080fd5b8860208260051b85010111156118b057600080fd5b95989497505060200194505050565b600060208083850312156118d257600080fd5b825167ffffffffffffffff808211156118ea57600080fd5b818501915085601f8301126118fe57600080fd5b81518181111561191057611910611e54565b8060051b604051601f19603f8301168101818110858211171561193557611935611e54565b604052828152858101935084860182860187018a101561195457600080fd5b600095505b83861015611977578051855260019590950194938601938601611959565b5098975050505050505050565b60006020828403121561199657600080fd5b8151801515811461144b57600080fd5b600080600080600060a086880312156119be57600080fd5b85356119c981611e6a565b9450602086013567ffffffffffffffff811681146119e657600080fd5b935060408601359250606086013565ffffffffffff81168114611a0857600080fd5b9150611a166080870161181d565b90509295509295909350565b600060208284031215611a3457600080fd5b5035919050565b600060208284031215611a4d57600080fd5b5051919050565b60008060408385031215611a6757600080fd5b823591506020830135611a7981611e6a565b809150509250929050565b60008060408385031215611a9757600080fd5b82359150611aa76020840161181d565b90509250929050565b600060208284031215611ac257600080fd5b61144b8261181d565b600081518084526020808501945080840160005b83811015611b0557815167ffffffffffffffff1687529582019590820190600101611adf565b509495945050505050565b60008251611b22818460208701611dcb565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b81811015611b6457835183529284019291840191600101611b48565b50909695505050505050565b604081526000611b836040830185611acb565b8281036020840152611b958185611acb565b95945050505050565b6040808252810183905260008460608301825b86811015611bd95760ff611bc48461181d565b16825260209283019290910190600101611bb1565b5060209390930193909352509392505050565b6020815260008251806020840152611c0b816040850160208701611dcb565b601f01601f19169190910160400192915050565b6000610100820190506001600160a01b03835116825267ffffffffffffffff602084015116602083015260ff604084015116604083015265ffffffffffff60608401511660608301526080830151611c81608084018265ffffffffffff169052565b5060a0830151611c9c60a08401826001600160a01b03169052565b5060c083015160c083015260e083015160e083015292915050565b60008219821115611cca57611cca611e12565b500190565b600067ffffffffffffffff808316818516808303821115611cf257611cf2611e12565b01949350505050565b600060ff821660ff84168060ff03821115611d1857611d18611e12565b019392505050565b600082611d3d57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611d5c57611d5c611e12565b500290565b600067ffffffffffffffff80831681851681830481118215151615611d8857611d88611e12565b02949350505050565b600082821015611da357611da3611e12565b500390565b600060ff821660ff841680821015611dc257611dc2611e12565b90039392505050565b60005b83811015611de6578181015183820152602001611dce565b838111156110d15750506000910152565b6000600019821415611e0b57611e0b611e12565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e6657600080fdfea264697066735822122093aebe8126842f77adfcf2f93bf5a68a510897332a4a90f97601a16656e11e6a64736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2123 CODESIZE SUB DUP1 PUSH3 0x2123 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1C3 JUMP JUMPDEST PUSH3 0x3F DUP2 PUSH3 0x55 JUMP JUMPDEST PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x80 MSTORE PUSH3 0x241 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0xB1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F7469636B65742D6E6F742D7A65726F2D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF77C4791 PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH1 0x24 ADD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH3 0xF0 SWAP2 PUSH3 0x1EA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x12D JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH3 0x132 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH3 0x146 JUMPI POP PUSH1 0x0 DUP2 MLOAD GT JUMPDEST DUP1 ISZERO PUSH3 0x170 JUMPI POP DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH3 0x164 SWAP2 SWAP1 PUSH3 0x1C3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST PUSH3 0x1BE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F696E76616C69642D7469636B6574000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0xA8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x1D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x1E3 DUP2 PUSH3 0x228 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x20D JUMPI PUSH1 0x20 DUP2 DUP7 ADD DUP2 ADD MLOAD DUP6 DUP4 ADD MSTORE ADD PUSH3 0x1F1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH3 0x21D JUMPI PUSH1 0x0 DUP3 DUP6 ADD MSTORE JUMPDEST POP SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x23E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x1EB5 PUSH3 0x26E PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x182 ADD MSTORE DUP2 DUP2 PUSH2 0x121A ADD MSTORE PUSH2 0x1372 ADD MSTORE PUSH2 0x1EB5 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x66CFAE5E GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xB2456C3A GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xB2456C3A EQ PUSH2 0x1CF JUMPI DUP1 PUSH4 0xC1A287E2 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0xF824D0FB EQ PUSH2 0x201 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x66CFAE5E EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0xA4958845 EQ PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x120468A0 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x120468A0 EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0x14FDECCA EQ PUSH2 0x129 JUMPI DUP1 PUSH4 0x20555DB1 EQ PUSH2 0x149 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x96FE668 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0xB011A16 EQ PUSH2 0xF6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE1 PUSH2 0xDC CALLDATASIZE PUSH1 0x4 PUSH2 0x1A84 JUMP JUMPDEST PUSH2 0x214 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x109 PUSH2 0x104 CALLDATASIZE PUSH1 0x4 PUSH2 0x1833 JUMP JUMPDEST PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xED SWAP2 SWAP1 PUSH2 0x1B2C JUMP JUMPDEST PUSH2 0xE1 PUSH2 0x124 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x13C PUSH2 0x137 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A22 JUMP JUMPDEST PUSH2 0x5EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xED SWAP2 SWAP1 PUSH2 0x1C1F JUMP JUMPDEST PUSH2 0xE1 PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x63B JUMP JUMPDEST PUSH2 0x16F PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0x19A6 JUMP JUMPDEST PUSH2 0x80B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xED JUMP JUMPDEST PUSH2 0x1A4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xED JUMP JUMPDEST PUSH2 0x16F PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0x1A22 JUMP JUMPDEST PUSH2 0xC42 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x1DD CALLDATASIZE PUSH1 0x4 PUSH2 0x1833 JUMP JUMPDEST PUSH2 0xC55 JUMP JUMPDEST PUSH2 0x1EC PUSH3 0x4F1A00 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xED JUMP JUMPDEST PUSH2 0x16F PUSH2 0x20F CALLDATASIZE PUSH1 0x4 PUSH2 0x1A22 JUMP JUMPDEST PUSH2 0xE00 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21F DUP3 PUSH2 0xE13 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22A DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP PUSH2 0x235 DUP2 PUSH2 0xFA9 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x245 DUP2 PUSH1 0xFF PUSH2 0x1DA8 JUMP JUMPDEST PUSH1 0xFF AND DUP5 PUSH1 0xFF AND GT ISZERO PUSH2 0x29F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F65706F6368732D6F7665722D6C696D6974000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2A9 DUP5 DUP3 PUSH2 0x1CFB JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH1 0xFF SWAP5 DUP6 AND MUL OR SWAP1 SSTORE PUSH1 0xC0 DUP5 ADD MLOAD SWAP1 SWAP2 PUSH2 0x2FC SWAP2 SWAP1 DUP8 AND PUSH2 0x1D42 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP1 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x342 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER ADDRESS DUP5 PUSH2 0x1020 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF DUP7 AND DUP2 MSTORE DUP7 SWAP1 PUSH32 0xA9527ED49C1C2AB5449CFEF5B611076CE228A0A0DE4534874963B83ABB6E7B46 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x393 DUP6 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3B1 JUMPI PUSH2 0x3B1 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3DA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4A2 JUMPI PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF DUP3 AND SHR PUSH1 0x1 SWAP1 DUP2 AND EQ ISZERO PUSH2 0x440 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x42F JUMPI PUSH2 0x42F PUSH2 0x1E3E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0x490 JUMP JUMPDEST PUSH2 0x471 DUP10 DUP6 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0x457 JUMPI PUSH2 0x457 PUSH2 0x1E3E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x46C SWAP2 SWAP1 PUSH2 0x1AB0 JUMP JUMPDEST PUSH2 0x10D7 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x483 JUMPI PUSH2 0x483 PUSH2 0x1E3E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x49A DUP2 PUSH2 0x1DF7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3E0 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x506 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70617965652D6E6F742D7A65726F2D6164647200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x511 DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP PUSH2 0x51C DUP2 PUSH2 0x1452 JUMP JUMPDEST PUSH2 0x525 DUP2 PUSH2 0xFA9 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x530 DUP3 PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH1 0xFF DUP6 AND MUL OR SWAP1 SSTORE SWAP1 SWAP2 POP PUSH2 0x57B DUP4 PUSH2 0x14F7 JUMP JUMPDEST PUSH1 0xA0 DUP5 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x597 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 DUP4 PUSH2 0x155B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0xFF DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP2 DUP9 SWAP2 PUSH32 0x98F89153FA6EE40B2EDCD2E1CE4A5A9EDFB2F74818016FC24E6CFE7B6FCD12A9 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xE0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x635 DUP3 PUSH2 0xE69 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x693 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70617965652D6E6F742D7A65726F2D6164647200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69E DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP PUSH2 0x6A9 DUP2 PUSH2 0x1452 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x0 SWAP3 PUSH1 0xFF AND SWAP1 SWAP2 MUL PUSH6 0xFFFFFFFFFFFF AND ADD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x80 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x0 PUSH3 0x4F1A00 DUP3 DUP5 LT PUSH2 0x6F7 JUMPI DUP4 PUSH2 0x6F9 JUMP JUMPDEST DUP3 JUMPDEST PUSH2 0x703 SWAP2 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST SWAP1 POP DUP1 TIMESTAMP LT ISZERO PUSH2 0x755 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F67726163652D706572696F642D61637469766500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0xE0 DUP5 ADD MLOAD PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 AND DUP2 SSTORE PUSH1 0x1 DUP2 ADD DUP3 SWAP1 SSTORE PUSH1 0x2 DUP2 ADD DUP3 SWAP1 SSTORE PUSH1 0x3 ADD SSTORE PUSH1 0xA0 DUP6 ADD MLOAD PUSH2 0x7B9 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP4 PUSH2 0x155B JUMP JUMPDEST DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x6F804F2EF186CD4B2A6740C084B86F557A497A1FCF3A6B073068A55C51187B6F DUP4 PUSH1 0x40 MLOAD PUSH2 0x7F5 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 GT PUSH2 0x85C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F746F6B656E732D6E6F742D7A65726F0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH6 0xFFFFFFFFFFFF AND GT PUSH2 0x8B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F6475726174696F6E2D6E6F742D7A65726F000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH2 0x8BD DUP3 PUSH2 0xE13 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SLOAD PUSH1 0x1 PUSH2 0x8CE SWAP2 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST PUSH1 0x1 DUP2 SWAP1 SSTORE SWAP1 POP PUSH1 0x0 PUSH2 0x8E4 PUSH1 0xFF DUP6 AND DUP8 PUSH2 0x1D42 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x0 DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x1C PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH6 0xFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH6 0xFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x6 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH6 0xFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH6 0xFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP PUSH1 0x0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAB5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xACD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAE1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB05 SWAP2 SWAP1 PUSH2 0x1A3B JUMP JUMPDEST SWAP1 POP PUSH2 0xB1C PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND CALLER ADDRESS DUP6 PUSH2 0x1020 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB77 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB8B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xBAF SWAP2 SWAP1 PUSH2 0x1A3B JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBBC DUP5 DUP5 PUSH2 0x1CB7 JUMP JUMPDEST EQ PUSH2 0xC09 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70726F6D6F2D616D6F756E742D64696666000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 SWAP1 PUSH32 0xAEDC1797E973574EB0E43205C473287CA44EB1C9D0F677DBB0EC8CFC72BB68F3 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP2 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x635 PUSH2 0xC50 DUP4 PUSH2 0xE69 JUMP JUMPDEST PUSH2 0x14F7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xC61 DUP6 PUSH2 0xE69 JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP SWAP1 DUP5 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xD4D JUMPI PUSH1 0x0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0xCA7 JUMPI PUSH2 0xCA7 PUSH2 0x1E3E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xCBC SWAP2 SWAP1 PUSH2 0x1AB0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0xFF DUP3 AND DUP6 SWAP1 SHR DUP2 AND EQ ISZERO PUSH2 0xD17 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F726577617264732D636C61696D65640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH2 0xD22 DUP12 DUP8 DUP4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0xD2C SWAP1 DUP7 PUSH2 0x1CB7 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0xFF DUP3 AND SHL DUP5 OR SWAP4 POP POP DUP1 DUP1 PUSH2 0xD45 SWAP1 PUSH2 0x1DF7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC8B JUMP JUMPDEST POP PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE DUP11 DUP4 MSTORE SWAP1 DUP3 SWAP1 MSTORE DUP2 KECCAK256 PUSH1 0x3 ADD DUP1 SLOAD DUP6 SWAP3 SWAP1 PUSH2 0xD8F SWAP1 DUP5 SWAP1 PUSH2 0x1D91 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xA0 DUP5 ADD MLOAD PUSH2 0xDAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP11 DUP6 PUSH2 0x155B JUMP JUMPDEST DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x446A5BB69110F4FA9A5802E85237A4281D1D27DBE989B22DA4A75D9DEAE8C778 DUP10 DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0xDEB SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1B9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP SWAP1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x635 PUSH2 0xE0E DUP4 PUSH2 0xE69 JUMP JUMPDEST PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xFF AND GT PUSH2 0xE66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F65706F6368732D6E6F742D7A65726F0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xE0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH2 0x100 DUP2 ADD DUP5 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH21 0x10000000000000000000000000000000000000000 DUP4 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP6 DUP5 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP5 DUP3 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x1 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF DUP1 DUP3 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV AND PUSH1 0x80 DUP4 ADD MSTORE PUSH13 0x1000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x635 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F696E76616C69642D70726F6D6F74696F6E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x20 DUP4 ADD MLOAD TIMESTAMP SWAP3 PUSH1 0xFF AND SWAP1 SWAP2 MUL PUSH6 0xFFFFFFFFFFFF AND ADD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xE66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70726F6D6F74696F6E2D696E6163746976650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x10D1 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x15A9 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x0 SWAP1 PUSH6 0xFFFFFFFFFFFF AND DUP2 PUSH2 0x10F5 PUSH1 0xFF DUP6 AND DUP4 PUSH2 0x1D61 JUMP JUMPDEST DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x1104 SWAP2 SWAP1 PUSH2 0x1CCF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1112 DUP4 DUP4 PUSH2 0x1CCF JUMP JUMPDEST SWAP1 POP DUP1 PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP LT ISZERO PUSH2 0x116E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F65706F63682D6E6F742D6F766572000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST DUP6 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND DUP6 PUSH1 0xFF AND LT PUSH2 0x11C7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F696E76616C69642D65706F63682D696400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x98B16F3600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP6 AND PUSH1 0x24 DUP5 ADD MSTORE DUP4 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x98B16F36 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x125E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1272 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1296 SWAP2 SWAP1 PUSH2 0x1A3B JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1442 JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP4 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x12D4 JUMPI PUSH2 0x12D4 PUSH2 0x1E3E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP4 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1326 JUMPI PUSH2 0x1326 PUSH2 0x1E3E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0x8E6D536A00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x8E6D536A SWAP1 PUSH2 0x13A9 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13D5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x13FD SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x18BF JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x140F JUMPI PUSH2 0x140F PUSH2 0x1E3E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP5 DUP12 PUSH1 0xC0 ADD MLOAD PUSH2 0x142A SWAP2 SWAP1 PUSH2 0x1D42 JUMP JUMPDEST PUSH2 0x1434 SWAP2 SWAP1 PUSH2 0x1D20 JUMP JUMPDEST SWAP8 POP POP POP POP POP POP POP POP PUSH2 0x144B JUMP JUMPDEST PUSH1 0x0 SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F6F6E6C792D70726F6D6F2D63726561746F720000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0x20 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP GT ISZERO PUSH2 0x635 JUMPI DUP3 PUSH1 0x60 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP SUB DUP2 PUSH2 0x14EF JUMPI PUSH2 0x14EF PUSH2 0x1E28 JUMP JUMPDEST DIV SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x0 SWAP3 PUSH1 0xFF AND SWAP1 SWAP2 MUL PUSH6 0xFFFFFFFFFFFF AND ADD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP GT ISZERO PUSH2 0x1531 JUMPI POP PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x153A DUP3 PUSH2 0x14AB JUMP JUMPDEST DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND PUSH2 0x154C SWAP2 SWAP1 PUSH2 0x1D91 JUMP JUMPDEST DUP3 PUSH1 0xC0 ADD MLOAD PUSH2 0x635 SWAP2 SWAP1 PUSH2 0x1D42 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x15A4 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x106D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15FE DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x168E SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x15A4 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x161C SWAP2 SWAP1 PUSH2 0x1984 JUMP JUMPDEST PUSH2 0x15A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x169D DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x16A5 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x171D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x296 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x176B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1787 SWAP2 SWAP1 PUSH2 0x1B10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x17C4 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x17C9 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x17D9 DUP3 DUP3 DUP7 PUSH2 0x17E4 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x17F3 JUMPI POP DUP2 PUSH2 0x144B JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1803 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x1BEC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x182E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1849 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1854 DUP2 PUSH2 0x1E6A JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1878 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x188C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x189B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x18B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x18D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x18EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x18FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x1910 JUMPI PUSH2 0x1910 PUSH2 0x1E54 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x3F DUP4 ADD AND DUP2 ADD DUP2 DUP2 LT DUP6 DUP3 GT OR ISZERO PUSH2 0x1935 JUMPI PUSH2 0x1935 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP6 DUP2 ADD SWAP4 POP DUP5 DUP7 ADD DUP3 DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1954 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x1977 JUMPI DUP1 MLOAD DUP6 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP4 DUP7 ADD SWAP4 DUP7 ADD PUSH2 0x1959 JUMP JUMPDEST POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1996 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x144B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x19BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x19C9 DUP2 PUSH2 0x1E6A JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x19E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1A08 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 POP PUSH2 0x1A16 PUSH1 0x80 DUP8 ADD PUSH2 0x181D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A67 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1A79 DUP2 PUSH2 0x1E6A JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x1AA7 PUSH1 0x20 DUP5 ADD PUSH2 0x181D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x144B DUP3 PUSH2 0x181D JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1B05 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1ADF JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1B22 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1DCB JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B64 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1B48 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B83 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1ACB JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1B95 DUP2 DUP6 PUSH2 0x1ACB JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 DUP5 PUSH1 0x60 DUP4 ADD DUP3 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BD9 JUMPI PUSH1 0xFF PUSH2 0x1BC4 DUP5 PUSH2 0x181D JUMP JUMPDEST AND DUP3 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD SWAP3 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1BB1 JUMP JUMPDEST POP PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP4 SWAP1 SWAP4 MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1C0B DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1DCB JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP3 ADD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 MLOAD AND DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x20 DUP5 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0x1C81 PUSH1 0x80 DUP5 ADD DUP3 PUSH6 0xFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x1C9C PUSH1 0xA0 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1CCA JUMPI PUSH2 0x1CCA PUSH2 0x1E12 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CF2 JUMPI PUSH2 0x1CF2 PUSH2 0x1E12 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1D18 JUMPI PUSH2 0x1D18 PUSH2 0x1E12 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D3D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1D5C JUMPI PUSH2 0x1D5C PUSH2 0x1E12 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1D88 JUMPI PUSH2 0x1D88 PUSH2 0x1E12 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1DA3 JUMPI PUSH2 0x1DA3 PUSH2 0x1E12 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1DC2 JUMPI PUSH2 0x1DC2 PUSH2 0x1E12 JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1DE6 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1DCE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10D1 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E0B JUMPI PUSH2 0x1E0B PUSH2 0x1E12 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE66 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP4 0xAE 0xBE DUP2 0x26 DUP5 0x2F PUSH24 0xADFCF2F93BF5A68A510897332A4A90F97601A16656E11E6A PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "961:17764:56:-:0;;;4139:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4178:23;4193:7;4178:14;:23::i;:::-;4211:16;;-1:-1:-1;;;;;;4211:16:56;;;961:17764;;11092:440;-1:-1:-1;;;;;11165:30:56;;11157:75;;;;-1:-1:-1;;;11157:75:56;;1404:2:94;11157:75:56;;;1386:21:94;;;1423:18;;;1416:30;1482:34;1462:18;;;1455:62;1534:18;;11157:75:56;;;;;;;;;11322:45;;-1:-1:-1;;;11322:45:56;;;687:46:94;11244:14:56;;;;-1:-1:-1;;;;;11281:27:56;;;749:11:94;;11322:45:56;;;-1:-1:-1;;11322:45:56;;;;;;;;;;11281:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11243:134;;;;11409:9;:28;;;;;11436:1;11422:4;:11;:15;11409:28;:64;;;;;11452:4;11441:27;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;11441:32:56;;;11409:64;11388:137;;;;-1:-1:-1;;;11388:137:56;;1765:2:94;11388:137:56;;;1747:21:94;1804:2;1784:18;;;1777:30;1843:28;1823:18;;;1816:56;1889:18;;11388:137:56;1737:176:94;11388:137:56;11147:385;;11092:440;:::o;14:276:94:-;100:6;153:2;141:9;132:7;128:23;124:32;121:2;;;169:1;166;159:12;121:2;201:9;195:16;220:40;254:5;220:40;:::i;:::-;279:5;111:179;-1:-1:-1;;;111:179:94:o;771:426::-;900:3;938:6;932:13;963:1;973:129;987:6;984:1;981:13;973:129;;;1085:4;1069:14;;;1065:25;;1059:32;1046:11;;;1039:53;1002:12;973:129;;;1120:6;1117:1;1114:13;1111:2;;;1155:1;1146:6;1141:3;1137:16;1130:27;1111:2;-1:-1:-1;1175:16:94;;;;;908:289;-1:-1:-1;;908:289:94:o;1918:140::-;-1:-1:-1;;;;;2002:31:94;;1992:42;;1982:2;;2048:1;2045;2038:12;1982:2;1972:86;:::o;:::-;961:17764:56;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@GRACE_PERIOD_14096": {
                  "entryPoint": null,
                  "id": 14096,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateRewardAmount_15107": {
                  "entryPoint": 4311,
                  "id": 15107,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1116": {
                  "entryPoint": 5545,
                  "id": 1116,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_getCurrentEpochId_14988": {
                  "entryPoint": 5291,
                  "id": 14988,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getPromotionEndTimestamp_14953": {
                  "entryPoint": null,
                  "id": 14953,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getPromotion_14932": {
                  "entryPoint": 3689,
                  "id": 14932,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getRemainingRewards_15138": {
                  "entryPoint": 5367,
                  "id": 15138,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_isClaimedEpoch_15182": {
                  "entryPoint": null,
                  "id": 15182,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_requireNumberOfEpochs_14867": {
                  "entryPoint": 3603,
                  "id": 14867,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requirePromotionActive_14885": {
                  "entryPoint": 4009,
                  "id": 14885,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requirePromotionCreator_14902": {
                  "entryPoint": 5202,
                  "id": 14902,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_updateClaimedEpoch_15159": {
                  "entryPoint": null,
                  "id": 15159,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@claimRewards_14663": {
                  "entryPoint": 3157,
                  "id": 14663,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@createPromotion_14292": {
                  "entryPoint": 2059,
                  "id": 14292,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@destroyPromotion_14460": {
                  "entryPoint": 1595,
                  "id": 14460,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@endPromotion_14369": {
                  "entryPoint": 1198,
                  "id": 14369,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@extendPromotion_14550": {
                  "entryPoint": 532,
                  "id": 14550,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@functionCallWithValue_1412": {
                  "entryPoint": 5797,
                  "id": 1412,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1342": {
                  "entryPoint": 5774,
                  "id": 1342,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getCurrentEpochId_14694": {
                  "entryPoint": 3584,
                  "id": 14694,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPromotion_14678": {
                  "entryPoint": 1515,
                  "id": 14678,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getRemainingRewards_14710": {
                  "entryPoint": 3138,
                  "id": 14710,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getRewardsAmount_14795": {
                  "entryPoint": 902,
                  "id": 14795,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@isContract_1271": {
                  "entryPoint": null,
                  "id": 1271,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@safeTransferFrom_950": {
                  "entryPoint": 4128,
                  "id": 950,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_924": {
                  "entryPoint": 5467,
                  "id": 924,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@ticket_14092": {
                  "entryPoint": null,
                  "id": 14092,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@verifyCallResult_1547": {
                  "entryPoint": 6116,
                  "id": 1547,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_uint256t_array$_t_uint8_$dyn_calldata_ptr": {
                  "entryPoint": 6195,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 6335,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 6532,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IERC20_$663t_uint64t_uint256t_uint48t_uint8": {
                  "entryPoint": 6566,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 6690,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 6715,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_address": {
                  "entryPoint": 6740,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint256t_uint8": {
                  "entryPoint": 6788,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint8": {
                  "entryPoint": 6832,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 6173,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint64_dyn": {
                  "entryPoint": 6859,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_contract_IERC20": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 6928,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint64_t_uint64__to_t_address_t_uint64_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6956,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7024,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint8_$dyn_calldata_ptr_t_uint256__to_t_array$_t_uint8_$dyn_memory_ptr_t_uint256__fromStack_reversed": {
                  "entryPoint": 7070,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7148,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0a3635a26aeb32c86a405883952163514b60bff7b61a71a1ecaecf37ec6316e9__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_120b18e984190ca107f4335c65e4c9bb979c938e4381860f47714638ec2f4b44__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e1bfaef8c258345be7a8cb9e1498a5804118f52f63137c023d18156de76309e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3dc26021cd073e9a783a66252b1c7eaa87ec56b58c19dfc886955c416e482a6a__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3f8a3e54a59de187161c727d7b8d00a3581a0e45c6e8cf1e9459044f5b676893__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_5dc04c5f8ce53b07da3fcd1ef6d8a3d4a55d8b32baa198b6e2aafad0a9817201__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_614c97b1b57049857cf921940a9971691bfc6e6a6468b657f4400e939cdf04fb__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6d25aa3ac7446a2e46c5eb520beee2f3bf2b36175cd91764266c27374b2789a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6ece751e4320e807ee58cf601f121de24374355db23963c7d942b8cd30d4202b__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b8a1f4a0a7a3c02a36bcf293aced058b829181e3dbeb981da9917650b8f083c5__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c6f7ac1dcdce3bc28b85466caf824b1387f611789721f883874bf669506444f3__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cdb930037ba7e66733e60cda749fe49ed74d0ed31187b87bc850d525a4f8eb22__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_ffdb670ceeaaf2b4ba3226c5ea1b3a3e577a2dd58ae96f028381dd84eb663b83__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Promotion_$15393_memory_ptr__to_t_struct$_Promotion_$15393_memory_ptr__fromStack_reversed": {
                  "entryPoint": 7199,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256_t_uint8__to_t_uint256_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_uint48": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "checked_add_t_uint256": {
                  "entryPoint": 7351,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 7375,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint8": {
                  "entryPoint": 7419,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 7456,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 7490,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint64": {
                  "entryPoint": 7521,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 7569,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint8": {
                  "entryPoint": 7592,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 7627,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 7671,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 7698,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x12": {
                  "entryPoint": 7720,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 7742,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 7764,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 7786,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:20029:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "61:109:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "71:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "93:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "80:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "80:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "71:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "148:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "157:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "160:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "150:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "150:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "150:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "122:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "133:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "140:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "129:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "129:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "119:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "119:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "112:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "112:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "109:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "40:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "51:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:156:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "312:679:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "358:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "367:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "370:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "360:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "360:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "360:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "342:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "329:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "329:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "354:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "325:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "325:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "322:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "383:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "409:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "396:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "396:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "387:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "453:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "428:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "428:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "428:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "468:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "478:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "468:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "492:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "519:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "530:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "515:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "515:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "502:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "502:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "492:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "574:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "585:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "570:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "570:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "557:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "547:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "598:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "608:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "602:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "653:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "662:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "665:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "655:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "655:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "655:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "641:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "649:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "638:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "638:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "635:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "678:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "692:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "703:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "688:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "688:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "682:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "758:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "767:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "770:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "760:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "760:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "760:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "737:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "741:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "733:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "733:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "748:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "729:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "729:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "722:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "722:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "719:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "783:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "810:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "797:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "797:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "787:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "840:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "849:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "852:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "842:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "842:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "842:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "828:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "836:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "825:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "825:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "822:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "914:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "923:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "926:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "916:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "916:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "916:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "879:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "887:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "890:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "883:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "883:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "875:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "875:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "900:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "871:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "871:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "905:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "939:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "953:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "957:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "949:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "949:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "939:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "969:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "979:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_array$_t_uint8_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "254:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "265:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "277:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "285:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "293:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "301:6:94",
                            "type": ""
                          }
                        ],
                        "src": "175:816:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1102:1069:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1112:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1122:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1116:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1169:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1178:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1181:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1171:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1171:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1171:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1144:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1153:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1140:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1140:23:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1165:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1136:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1136:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1133:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1194:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1214:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1208:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1208:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1198:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1233:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1243:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1237:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1288:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1297:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1300:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1290:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1290:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1290:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1276:6:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1284:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1273:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1273:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1270:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1313:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1327:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1338:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1323:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1323:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "1317:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1393:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1402:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1405:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1395:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1395:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1395:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1372:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1376:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1368:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1368:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1383:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1364:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1364:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1357:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1357:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1354:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1418:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1434:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1428:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1428:9:94"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "1422:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1460:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1462:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1462:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1462:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1456:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1449:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1449:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1446:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1491:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1505:1:94",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1508:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "1501:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1501:10:94"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "1495:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1520:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1540:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1524:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1552:115:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1574:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "1590:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1594:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1586:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1586:11:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1599:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1582:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1582:84:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1570:97:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1556:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1726:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1728:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1728:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1728:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1685:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "1697:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1682:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1682:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1705:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1717:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1702:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1702:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1679:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1679:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1676:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1764:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1768:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1757:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1757:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1757:22:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1788:17:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1799:6:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "1792:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1821:6:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1829:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1814:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1814:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1814:18:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1841:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1852:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1860:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1848:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1848:15:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "1841:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1872:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1887:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1891:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1883:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1883:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "1876:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1940:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1949:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1952:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1942:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1942:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1942:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1917:2:94"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "1921:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1913:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1913:11:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1926:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1909:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1909:20:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1931:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1906:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1906:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1903:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1965:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1974:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1969:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2029:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "2050:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "2061:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2055:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2055:10:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2043:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2043:23:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2043:23:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2079:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "2090:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2095:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2086:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2086:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "2079:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2111:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "2122:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2127:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2118:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2118:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "2111:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1995:1:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1998:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2002:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2004:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2013:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2016:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2009:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2009:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2004:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1988:3:94",
                                "statements": []
                              },
                              "src": "1984:156:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2149:16:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2159:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2149:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1068:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1079:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1091:6:94",
                            "type": ""
                          }
                        ],
                        "src": "996:1175:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2254:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2300:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2309:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2312:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2302:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2302:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2302:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2275:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2284:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2271:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2271:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2296:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2267:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2267:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2264:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2325:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2344:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2338:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2338:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2329:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2407:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2416:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2419:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2409:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2409:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2409:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2376:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2397:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "2390:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2390:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2383:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2383:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2373:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2373:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2366:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2366:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2363:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2432:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2442:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2432:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2220:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2231:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2243:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2176:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2606:609:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2653:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2662:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2665:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2655:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2655:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2655:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2627:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2636:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2623:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2623:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2648:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2619:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2619:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2616:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2678:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2704:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2691:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2691:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2682:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2748:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2723:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2763:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2773:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2763:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2787:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2819:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2830:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2815:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2815:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2802:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2802:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2791:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2900:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2909:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2912:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2902:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2902:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2902:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2856:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "2869:7:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2878:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2865:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2865:32:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2853:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2853:45:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2846:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2846:53:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2843:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2925:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2935:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2925:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2951:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2989:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2974:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2961:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2961:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2951:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3002:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3045:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3030:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3030:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3017:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3017:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3006:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3111:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3120:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3123:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3113:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3113:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3113:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3071:7:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3084:7:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3093:14:94",
                                            "type": "",
                                            "value": "0xffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3080:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3080:28:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3068:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3068:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3061:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3061:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3058:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3136:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "3146:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "3136:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3162:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3193:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3204:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3189:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3189:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "3172:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3172:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3162:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IERC20_$663t_uint64t_uint256t_uint48t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2540:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2551:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2563:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2571:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2579:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2587:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2595:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2458:757:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3290:110:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3336:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3345:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3348:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3338:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3338:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3338:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3311:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3320:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3307:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3307:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3332:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3303:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3303:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3300:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3361:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3384:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3371:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3371:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3361:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3256:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3267:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3279:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3220:180:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3486:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3532:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3541:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3544:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3534:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3534:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3534:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3507:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3516:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3503:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3503:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3528:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3499:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3499:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3496:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3557:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3573:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3567:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3567:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3557:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3452:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3463:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3475:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3405:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3681:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3727:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3736:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3739:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3729:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3729:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3729:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3702:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3711:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3698:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3698:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3723:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3694:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3694:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3691:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3752:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3775:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3762:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3762:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3752:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3794:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3824:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3835:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3820:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3820:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3807:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3807:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3798:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3873:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3848:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3848:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3848:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3888:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3898:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3888:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3639:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3650:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3662:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3670:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3594:315:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3999:165:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4045:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4057:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4047:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4047:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4047:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4020:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4029:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4016:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4016:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4041:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4012:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4012:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4009:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4070:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4093:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4080:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4080:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4070:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4112:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4143:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4154:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4139:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4139:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "4122:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4122:36:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4112:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3957:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3968:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3980:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3988:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3914:250:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4237:114:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4283:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4292:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4295:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4285:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4285:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4285:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4258:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4267:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4254:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4279:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4250:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4250:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4247:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4308:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4335:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "4318:16:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4318:27:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4308:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4203:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4214:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4226:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4169:182:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4416:399:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4426:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4446:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4440:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4440:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4430:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4468:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4473:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4461:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4461:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4461:19:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4489:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4499:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4493:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4512:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4523:3:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4528:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4519:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4519:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4512:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4540:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4558:5:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4565:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4554:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4554:14:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4544:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4577:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4586:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4581:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4645:145:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4666:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4681:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "4675:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4675:13:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4690:18:94",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "4671:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4671:38:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4659:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4659:51:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4659:51:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4723:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4734:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4739:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4730:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4730:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4723:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4755:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4769:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4777:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4765:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4765:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4755:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4607:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4610:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4604:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4604:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4618:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4620:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4629:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4632:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4625:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4625:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4620:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4600:3:94",
                                "statements": []
                              },
                              "src": "4596:194:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4799:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4806:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4799:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4393:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4400:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4408:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4356:459:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4872:83:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4889:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4898:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4905:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4894:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4894:54:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4882:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4882:67:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4882:67:94"
                            }
                          ]
                        },
                        "name": "abi_encode_contract_IERC20",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4856:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4863:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4820:135:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5003:55:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5020:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5029:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5036:14:94",
                                        "type": "",
                                        "value": "0xffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5025:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5025:26:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5013:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5013:39:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5013:39:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint48",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4987:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4994:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4960:98:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5200:137:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5210:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5230:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5224:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5224:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5214:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5272:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5280:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5268:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5268:17:94"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5287:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5292:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5246:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5246:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5246:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5308:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5319:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5324:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5315:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5315:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5308:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5176:3:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5181:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5192:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5063:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5443:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5453:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5465:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5476:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5461:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5461:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5453:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5495:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5510:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5518:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5506:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5506:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5488:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5488:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5488:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5412:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5423:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5434:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5342:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5730:241:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5740:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5752:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5763:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5748:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5748:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5740:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5775:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5785:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5779:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5843:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5858:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5866:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5854:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5854:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5836:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5836:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5836:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5890:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5901:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5886:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5886:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5910:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5918:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5906:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5906:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5879:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5879:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5879:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5942:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5953:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5938:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5938:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5958:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5931:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5931:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5931:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5683:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5694:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5702:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5710:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5721:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5573:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6105:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6115:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6127:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6138:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6123:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6123:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6115:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6157:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6172:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6180:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6168:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6168:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6150:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6150:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6150:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6244:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6255:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6240:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6240:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6260:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6233:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6233:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6233:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6066:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6077:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6085:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6096:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5976:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6431:266:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6441:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6453:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6464:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6449:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6449:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6441:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6483:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6498:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6506:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6494:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6494:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6476:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6476:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6476:74:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6559:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6569:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6563:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6607:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6618:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6603:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6603:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6627:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6635:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6623:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6623:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6596:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6596:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6596:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6659:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6670:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6655:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6655:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "6679:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6687:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6675:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6675:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6648:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6648:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6648:43:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint64_t_uint64__to_t_address_t_uint64_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6384:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6395:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6403:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6411:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6422:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6278:419:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6853:481:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6863:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6873:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6867:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6884:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6902:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6913:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6898:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6898:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6888:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6932:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6943:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6925:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6925:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6925:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6955:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "6966:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "6959:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6981:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7001:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6995:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6995:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "6985:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7024:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7032:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7017:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7017:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7017:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7048:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7059:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7070:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7055:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7055:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7048:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7082:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7100:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7108:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7096:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7096:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7086:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7120:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7129:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7124:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7188:120:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7209:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "7220:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7214:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7214:13:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7202:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7202:26:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7202:26:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7241:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7252:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7257:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7248:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7248:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7241:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7273:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "7287:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7295:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7283:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7283:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "7273:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7150:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7153:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7147:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7147:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7161:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7163:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7172:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7175:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7168:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7168:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7163:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7143:3:94",
                                "statements": []
                              },
                              "src": "7139:169:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7317:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "7325:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7317:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6822:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6833:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6844:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6702:632:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7564:234:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7581:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7592:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7574:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7574:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7574:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7604:69:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7646:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7658:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7669:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7654:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7654:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "7618:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7618:55:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7608:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7693:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7704:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7689:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7689:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7713:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7721:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7709:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7709:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7682:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7682:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7682:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7741:51:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7777:6:94"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7785:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "7749:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7749:43:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7741:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7525:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7536:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7544:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7555:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7339:459:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7988:509:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7998:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8016:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8027:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8012:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8012:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8002:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8046:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8057:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8039:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8039:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8039:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8069:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "8080:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "8073:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8102:6:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8110:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8095:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8095:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8095:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8126:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8137:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8148:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8133:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8133:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "8126:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8160:20:94",
                              "value": {
                                "name": "value0",
                                "nodeType": "YulIdentifier",
                                "src": "8174:6:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "8164:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8189:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8198:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8193:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8257:169:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8278:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8304:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "abi_decode_uint8",
                                                "nodeType": "YulIdentifier",
                                                "src": "8287:16:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8287:24:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "8313:4:94",
                                              "type": "",
                                              "value": "0xff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "8283:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8283:35:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8271:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8271:48:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8271:48:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8332:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8342:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "8336:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8359:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8370:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8375:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8366:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8366:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8359:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8391:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "8405:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8413:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8401:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8401:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8391:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8219:1:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8222:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8216:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8216:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "8230:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8232:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "8241:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8244:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8237:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8237:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "8232:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8212:3:94",
                                "statements": []
                              },
                              "src": "8208:218:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8435:11:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "8443:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8435:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8466:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8477:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8462:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8462:20:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "8484:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8455:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8455:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8455:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint8_$dyn_calldata_ptr_t_uint256__to_t_array$_t_uint8_$dyn_memory_ptr_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7941:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "7952:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7960:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7968:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7979:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7803:694:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8597:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8607:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8619:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8630:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8615:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8615:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8607:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8649:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8674:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8667:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8667:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8660:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8660:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8642:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8642:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8642:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8566:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8577:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8588:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8502:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8811:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8821:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8833:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8844:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8829:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8829:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8821:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8863:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8878:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8886:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8874:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8874:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8856:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8856:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8856:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8780:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8791:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8802:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8694:242:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9062:321:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9079:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9090:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9072:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9072:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9072:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9102:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9122:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9116:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9116:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "9106:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9149:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9160:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9145:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9145:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9165:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9138:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9138:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9138:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9207:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9215:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9203:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9203:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9224:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9235:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9220:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9220:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9240:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9181:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9181:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9181:66:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9256:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9272:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "9291:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9299:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "9287:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9287:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9304:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "9283:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9283:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9268:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9268:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9374:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9264:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9264:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9256:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9031:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9042:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9053:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8941:442:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9562:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9579:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9590:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9572:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9572:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9572:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9613:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9624:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9609:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9609:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9629:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9602:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9602:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9602:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9652:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9663:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9648:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f70726f6d6f2d616d6f756e742d64696666",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9668:31:94",
                                    "type": "",
                                    "value": "TwabRewards/promo-amount-diff"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9641:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9641:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9641:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9709:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9721:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9732:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9717:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9717:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9709:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0a3635a26aeb32c86a405883952163514b60bff7b61a71a1ecaecf37ec6316e9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9539:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9553:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9388:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9920:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9937:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9948:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9930:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9930:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9930:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9971:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9982:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9967:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9967:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9987:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9960:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9960:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9960:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10010:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10021:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10006:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10006:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f70617965652d6e6f742d7a65726f2d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10026:33:94",
                                    "type": "",
                                    "value": "TwabRewards/payee-not-zero-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9999:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9999:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9999:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10069:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10081:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10092:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10077:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10077:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10069:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_120b18e984190ca107f4335c65e4c9bb979c938e4381860f47714638ec2f4b44__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9897:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9911:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9746:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10280:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10297:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10308:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10290:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10290:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10290:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10331:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10342:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10327:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10327:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10347:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10320:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10320:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10320:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10370:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10381:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10366:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10366:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f696e76616c69642d70726f6d6f74696f6e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10386:31:94",
                                    "type": "",
                                    "value": "TwabRewards/invalid-promotion"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10359:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10359:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10359:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10427:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10439:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10450:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10435:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10435:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10427:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e1bfaef8c258345be7a8cb9e1498a5804118f52f63137c023d18156de76309e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10257:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10271:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10106:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10638:176:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10655:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10666:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10648:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10648:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10648:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10689:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10700:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10685:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10685:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10705:2:94",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10678:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10678:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10678:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10728:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10739:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10724:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10724:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f65706f63682d6e6f742d6f766572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10744:28:94",
                                    "type": "",
                                    "value": "TwabRewards/epoch-not-over"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10717:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10717:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10717:56:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10782:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10794:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10805:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10790:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10790:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10782:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3dc26021cd073e9a783a66252b1c7eaa87ec56b58c19dfc886955c416e482a6a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10615:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10629:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10464:350:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10993:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11010:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11021:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11003:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11003:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11003:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11044:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11055:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11040:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11040:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11060:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11033:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11033:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11033:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11083:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11094:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11079:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11079:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f67726163652d706572696f642d616374697665",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11099:33:94",
                                    "type": "",
                                    "value": "TwabRewards/grace-period-active"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11072:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11072:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11072:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11142:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11154:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11165:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11150:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11150:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11142:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3f8a3e54a59de187161c727d7b8d00a3581a0e45c6e8cf1e9459044f5b676893__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10970:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10984:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10819:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11353:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11370:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11381:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11363:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11363:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11363:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11404:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11415:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11400:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11400:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11420:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11393:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11393:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11393:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11443:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11454:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11439:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11439:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11459:34:94",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11432:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11432:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11432:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11514:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11525:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11510:18:94"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11530:8:94",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11503:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11503:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11503:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11548:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11560:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11571:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11556:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11556:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11548:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11330:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11344:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11179:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11760:178:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11777:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11788:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11770:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11770:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11770:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11811:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11822:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11807:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11807:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11827:2:94",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11800:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11800:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11800:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11850:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11861:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11846:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11846:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f696e76616c69642d65706f63682d6964",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11866:30:94",
                                    "type": "",
                                    "value": "TwabRewards/invalid-epoch-id"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11839:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11839:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11839:58:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11906:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11918:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11929:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11914:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11914:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11906:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5dc04c5f8ce53b07da3fcd1ef6d8a3d4a55d8b32baa198b6e2aafad0a9817201__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11737:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11751:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11586:352:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12117:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12134:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12145:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12127:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12127:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12127:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12168:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12179:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12164:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12164:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12184:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12157:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12157:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12157:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12207:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12218:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12203:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12203:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f70726f6d6f74696f6e2d696e616374697665",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12223:32:94",
                                    "type": "",
                                    "value": "TwabRewards/promotion-inactive"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12196:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12196:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12196:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12265:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12277:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12288:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12273:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12273:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12265:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_614c97b1b57049857cf921940a9971691bfc6e6a6468b657f4400e939cdf04fb__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12094:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12108:4:94",
                            "type": ""
                          }
                        ],
                        "src": "11943:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12476:177:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12493:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12504:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12486:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12486:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12486:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12527:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12538:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12523:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12523:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12543:2:94",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12516:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12516:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12566:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12577:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12562:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12562:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f65706f6368732d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12582:29:94",
                                    "type": "",
                                    "value": "TwabRewards/epochs-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12555:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12555:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12555:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12621:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12633:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12644:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12629:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12629:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12621:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6d25aa3ac7446a2e46c5eb520beee2f3bf2b36175cd91764266c27374b2789a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12453:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12467:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12302:351:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12832:177:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12849:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12860:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12842:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12842:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12842:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12883:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12894:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12879:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12879:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12899:2:94",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12872:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12872:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12872:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12922:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12933:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12918:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12918:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f726577617264732d636c61696d6564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12938:29:94",
                                    "type": "",
                                    "value": "TwabRewards/rewards-claimed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12911:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12911:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12911:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12977:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12989:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13000:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12985:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12985:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12977:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6ece751e4320e807ee58cf601f121de24374355db23963c7d942b8cd30d4202b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12809:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12823:4:94",
                            "type": ""
                          }
                        ],
                        "src": "12658:351:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13188:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13205:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13216:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13198:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13198:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13198:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13239:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13250:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13235:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13235:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13255:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13228:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13228:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13228:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13278:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13289:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13274:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13274:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f65706f6368732d6f7665722d6c696d6974",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13294:31:94",
                                    "type": "",
                                    "value": "TwabRewards/epochs-over-limit"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13267:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13267:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13267:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13335:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13347:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13358:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13343:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13343:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13335:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b8a1f4a0a7a3c02a36bcf293aced058b829181e3dbeb981da9917650b8f083c5__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13165:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13179:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13014:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13546:177:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13563:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13574:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13556:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13556:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13556:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13597:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13608:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13593:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13593:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13613:2:94",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13586:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13586:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13586:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13636:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13647:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13632:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13632:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f746f6b656e732d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13652:29:94",
                                    "type": "",
                                    "value": "TwabRewards/tokens-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13625:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13625:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13625:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13691:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13703:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13714:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13699:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13699:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13691:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c6f7ac1dcdce3bc28b85466caf824b1387f611789721f883874bf669506444f3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13523:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13537:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13372:351:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13902:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13919:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13930:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13912:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13912:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13912:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13953:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13964:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13949:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13949:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13969:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13942:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13942:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13942:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13992:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14003:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13988:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13988:18:94"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14008:31:94",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13981:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13981:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13981:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14049:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14061:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14072:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14057:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14057:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14049:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13879:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13893:4:94",
                            "type": ""
                          }
                        ],
                        "src": "13728:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14260:179:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14277:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14288:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14270:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14270:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14270:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14311:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14322:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14307:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14307:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14327:2:94",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14300:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14300:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14300:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14350:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14361:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14346:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14346:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f6475726174696f6e2d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14366:31:94",
                                    "type": "",
                                    "value": "TwabRewards/duration-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14339:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14339:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14339:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14407:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14419:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14430:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14415:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14415:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14407:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cdb930037ba7e66733e60cda749fe49ed74d0ed31187b87bc850d525a4f8eb22__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14237:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14251:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14086:353:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14618:232:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14635:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14646:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14628:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14628:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14628:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14669:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14680:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14665:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14665:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14685:2:94",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14658:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14658:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14658:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14708:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14719:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14704:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14704:18:94"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14724:34:94",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14697:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14697:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14697:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14779:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14790:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14775:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14775:18:94"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14795:12:94",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14768:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14768:40:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14768:40:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14817:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14829:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14840:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14825:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14825:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14817:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14595:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14609:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14444:406:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15029:180:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15046:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15057:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15039:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15039:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15039:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15080:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15091:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15076:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15076:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15096:2:94",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15069:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15069:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15069:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15119:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15130:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15115:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15115:18:94"
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f6f6e6c792d70726f6d6f2d63726561746f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15135:32:94",
                                    "type": "",
                                    "value": "TwabRewards/only-promo-creator"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15108:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15108:60:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15108:60:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15177:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15189:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15200:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15185:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15185:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15177:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ffdb670ceeaaf2b4ba3226c5ea1b3a3e577a2dd58ae96f028381dd84eb663b83__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15006:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15020:4:94",
                            "type": ""
                          }
                        ],
                        "src": "14855:354:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15371:748:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15381:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15393:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15404:3:94",
                                    "type": "",
                                    "value": "256"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15389:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15389:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15381:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15424:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "15445:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "15439:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15439:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15454:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15435:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15435:62:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15417:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15417:81:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15417:81:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15518:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15529:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15514:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15514:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "15550:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "15558:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "15546:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "15546:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "15540:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15540:24:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15566:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15536:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15536:49:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15507:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15507:79:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15507:79:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15606:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15617:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15602:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15602:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "15638:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "15646:4:94",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "15634:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "15634:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "15628:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15628:24:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15654:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15624:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15624:35:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15595:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15595:65:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15595:65:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15680:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15691:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15676:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15676:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "15712:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "15720:4:94",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "15708:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "15708:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "15702:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "15702:24:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15728:14:94",
                                        "type": "",
                                        "value": "0xffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15698:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15698:45:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15669:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15669:75:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15669:75:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15753:44:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15783:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15791:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15779:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15779:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "15773:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15773:24:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "15757:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "15824:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15842:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15853:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15838:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15838:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint48",
                                  "nodeType": "YulIdentifier",
                                  "src": "15806:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15806:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15806:53:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15868:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15900:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15908:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15896:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15896:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "15890:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15890:24:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "15872:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15950:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15970:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15981:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15966:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15966:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_contract_IERC20",
                                  "nodeType": "YulIdentifier",
                                  "src": "15923:26:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15923:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15923:64:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16007:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16018:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16003:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16003:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "16035:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16043:4:94",
                                            "type": "",
                                            "value": "0xc0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "16031:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16031:17:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "16025:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16025:24:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15996:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15996:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15996:54:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16070:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16081:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16066:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16066:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "16098:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16106:4:94",
                                            "type": "",
                                            "value": "0xe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "16094:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16094:17:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "16088:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16088:24:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16059:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16059:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16059:54:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Promotion_$15393_memory_ptr__to_t_struct$_Promotion_$15393_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15340:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15351:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15362:4:94",
                            "type": ""
                          }
                        ],
                        "src": "15214:905:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16225:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "16235:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16247:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16258:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16243:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16243:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16235:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16277:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16288:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16270:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16270:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16270:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16194:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16205:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16216:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16124:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16431:130:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "16441:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16453:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16464:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16449:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16449:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16441:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16483:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "16494:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16476:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16476:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16476:25:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16521:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16532:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16517:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16517:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "16541:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16549:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "16537:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16537:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16510:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16510:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16510:45:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_uint8__to_t_uint256_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16392:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "16403:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16411:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16422:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16306:255:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16665:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "16675:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16687:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16698:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16683:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16683:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16675:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16717:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "16732:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16740:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "16728:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16728:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16710:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16710:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16710:42:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16634:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16645:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16656:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16566:192:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16862:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "16872:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16884:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16895:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16880:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16880:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16872:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16914:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "16929:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16937:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "16925:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16925:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16907:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16907:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16907:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16831:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "16842:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16853:4:94",
                            "type": ""
                          }
                        ],
                        "src": "16763:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17002:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17029:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "17031:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17031:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17031:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "17018:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "17025:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "17021:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17021:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "17015:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17015:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "17012:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17060:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "17071:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "17074:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17067:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17067:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "17060:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "16985:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "16988:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "16994:3:94",
                            "type": ""
                          }
                        ],
                        "src": "16954:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17134:189:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17144:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "17154:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17148:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17181:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "17196:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17199:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "17192:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17192:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17185:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17211:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "17226:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17229:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "17222:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17222:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17215:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17266:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "17268:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17268:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17268:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17247:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17256:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17260:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "17252:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17252:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "17244:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17244:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "17241:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17297:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17308:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17313:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17304:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17304:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "17297:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "17117:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "17120:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "17126:3:94",
                            "type": ""
                          }
                        ],
                        "src": "17087:236:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17374:158:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17384:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "17399:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17402:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "17395:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17395:12:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17388:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17416:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "17431:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17434:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "17427:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17427:12:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17420:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17475:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "17477:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17477:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17477:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17454:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17463:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "17469:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "17459:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17459:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "17451:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17451:23:94"
                              },
                              "nodeType": "YulIf",
                              "src": "17448:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17506:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17517:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "17522:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17513:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17513:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "17506:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "17357:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "17360:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "17366:3:94",
                            "type": ""
                          }
                        ],
                        "src": "17328:204:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17583:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17614:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17635:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17638:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "17628:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17628:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17628:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17736:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17739:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "17729:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17729:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17729:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17764:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "17767:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "17757:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17757:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17757:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "17603:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "17596:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17596:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "17593:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17791:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "17800:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "17803:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "17796:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17796:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "17791:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "17568:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "17571:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "17577:1:94",
                            "type": ""
                          }
                        ],
                        "src": "17537:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17868:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17987:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "17989:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17989:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17989:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "17899:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "17892:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17892:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "17885:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17885:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "17907:1:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17914:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "17982:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "17910:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17910:74:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17904:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17904:81:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "17881:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17881:105:94"
                              },
                              "nodeType": "YulIf",
                              "src": "17878:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18018:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18033:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18036:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "18029:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18029:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "18018:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "17847:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "17850:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "17856:7:94",
                            "type": ""
                          }
                        ],
                        "src": "17816:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18100:219:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18110:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "18120:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18114:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18147:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18162:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18165:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "18158:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18158:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18151:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18177:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18192:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18195:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "18188:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18188:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18181:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18258:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "18260:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18260:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18260:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18228:3:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "18221:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18221:11:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "18214:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18214:19:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "18238:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18247:2:94"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18251:3:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "18243:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18243:12:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18235:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18235:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "18210:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18210:47:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18207:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18289:24:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18304:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18309:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "18300:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18300:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "18289:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "18079:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "18082:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "18088:7:94",
                            "type": ""
                          }
                        ],
                        "src": "18049:270:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18373:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18395:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "18397:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18397:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18397:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18389:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18392:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18386:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18386:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18383:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18426:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18438:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18441:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "18434:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18434:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "18426:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "18355:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "18358:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "18364:4:94",
                            "type": ""
                          }
                        ],
                        "src": "18324:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18501:148:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18511:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18526:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18529:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "18522:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18522:12:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18515:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18543:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18558:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18561:4:94",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "18554:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18554:12:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18547:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18591:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "18593:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18593:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18593:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18581:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18586:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18578:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18578:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18575:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18622:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18634:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "18639:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "18630:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18630:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "18622:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "18483:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "18486:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "18492:4:94",
                            "type": ""
                          }
                        ],
                        "src": "18454:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18707:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18717:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "18726:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "18721:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18786:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "18811:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "18816:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "18807:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "18807:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "18830:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "18835:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "18826:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "18826:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "18820:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "18820:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "18800:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18800:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18800:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "18747:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "18750:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18744:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18744:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "18758:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "18760:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "18769:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "18772:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "18765:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18765:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "18760:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "18740:3:94",
                                "statements": []
                              },
                              "src": "18736:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18875:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "18888:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "18893:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "18884:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "18884:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "18902:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "18877:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18877:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18877:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "18864:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "18867:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18861:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18861:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18858:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "18685:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "18690:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "18695:6:94",
                            "type": ""
                          }
                        ],
                        "src": "18654:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18964:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19055:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19057:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19057:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19057:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "18980:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18987:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "18977:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18977:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "18974:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19086:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "19097:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19104:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19093:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19093:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "19086:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18946:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "18956:3:94",
                            "type": ""
                          }
                        ],
                        "src": "18917:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19149:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19166:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19169:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19159:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19159:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19159:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19263:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19266:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19256:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19256:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19256:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19287:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19290:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "19280:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19280:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19280:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "19117:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19338:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19355:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19358:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19348:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19348:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19348:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19452:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19455:4:94",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19445:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19445:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19445:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19476:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19479:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "19469:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19469:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19469:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "19306:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19527:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19544:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19547:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19537:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19537:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19537:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19641:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19644:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19634:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19634:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19634:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19665:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19668:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "19658:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19658:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19658:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "19495:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19716:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19733:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19736:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19726:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19726:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19726:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19830:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19833:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19823:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19823:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19823:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19854:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19857:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "19847:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19847:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19847:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "19684:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19918:109:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20005:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20014:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20017:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "20007:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20007:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20007:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19941:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19952:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19959:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19948:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19948:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19938:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19938:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19931:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19931:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "19928:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19907:5:94",
                            "type": ""
                          }
                        ],
                        "src": "19873:154:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_uint256t_array$_t_uint8_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := calldataload(add(headStart, 32))\n        let offset := calldataload(add(headStart, 64))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value2 := add(_2, 32)\n        value3 := length\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := 32\n        if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(0, 0) }\n        let _4 := mload(_3)\n        if gt(_4, _2) { panic_error_0x41() }\n        let _5 := shl(5, _4)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(_5, 63), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        mstore(memPtr, _4)\n        dst := add(memPtr, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, _5), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _4) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IERC20_$663t_uint64t_uint256t_uint48t_uint8(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffffffffffffffff))) { revert(0, 0) }\n        value1 := value_1\n        value2 := calldataload(add(headStart, 64))\n        let value_2 := calldataload(add(headStart, 96))\n        if iszero(eq(value_2, and(value_2, 0xffffffffffff))) { revert(0, 0) }\n        value3 := value_2\n        value4 := abi_decode_uint8(add(headStart, 128))\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value1 := value\n    }\n    function abi_decode_tuple_t_uint256t_uint8(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := abi_decode_uint8(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint8(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint8(headStart)\n    }\n    function abi_encode_array_uint64_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let _1 := 0x20\n        pos := add(pos, _1)\n        let srcPtr := add(value, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\n    }\n    function abi_encode_contract_IERC20(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_uint48(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffff))\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_address_t_uint64_t_uint64__to_t_address_t_uint64_t_uint64__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        let _1 := 0xffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        let tail_1 := add(headStart, _1)\n        mstore(headStart, _1)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 64)\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__to_t_array$_t_uint64_$dyn_memory_ptr_t_array$_t_uint64_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_uint64_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_uint64_dyn(value1, tail_1)\n    }\n    function abi_encode_tuple_t_array$_t_uint8_$dyn_calldata_ptr_t_uint256__to_t_array$_t_uint8_$dyn_memory_ptr_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 64)\n        mstore(headStart, 64)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 96)\n        let srcPtr := value0\n        let i := 0\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            mstore(pos, and(abi_decode_uint8(srcPtr), 0xff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        tail := pos\n        mstore(add(headStart, 0x20), value2)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$9297__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let length := mload(value0)\n        mstore(add(headStart, 32), length)\n        copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0a3635a26aeb32c86a405883952163514b60bff7b61a71a1ecaecf37ec6316e9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"TwabRewards/promo-amount-diff\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_120b18e984190ca107f4335c65e4c9bb979c938e4381860f47714638ec2f4b44__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"TwabRewards/payee-not-zero-addr\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2e1bfaef8c258345be7a8cb9e1498a5804118f52f63137c023d18156de76309e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"TwabRewards/invalid-promotion\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3dc26021cd073e9a783a66252b1c7eaa87ec56b58c19dfc886955c416e482a6a__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 26)\n        mstore(add(headStart, 64), \"TwabRewards/epoch-not-over\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3f8a3e54a59de187161c727d7b8d00a3581a0e45c6e8cf1e9459044f5b676893__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"TwabRewards/grace-period-active\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Address: insufficient balance fo\")\n        mstore(add(headStart, 96), \"r call\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_5dc04c5f8ce53b07da3fcd1ef6d8a3d4a55d8b32baa198b6e2aafad0a9817201__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 28)\n        mstore(add(headStart, 64), \"TwabRewards/invalid-epoch-id\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_614c97b1b57049857cf921940a9971691bfc6e6a6468b657f4400e939cdf04fb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"TwabRewards/promotion-inactive\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6d25aa3ac7446a2e46c5eb520beee2f3bf2b36175cd91764266c27374b2789a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"TwabRewards/epochs-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6ece751e4320e807ee58cf601f121de24374355db23963c7d942b8cd30d4202b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"TwabRewards/rewards-claimed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b8a1f4a0a7a3c02a36bcf293aced058b829181e3dbeb981da9917650b8f083c5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"TwabRewards/epochs-over-limit\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c6f7ac1dcdce3bc28b85466caf824b1387f611789721f883874bf669506444f3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"TwabRewards/tokens-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"Address: call to non-contract\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cdb930037ba7e66733e60cda749fe49ed74d0ed31187b87bc850d525a4f8eb22__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"TwabRewards/duration-not-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 42)\n        mstore(add(headStart, 64), \"SafeERC20: ERC20 operation did n\")\n        mstore(add(headStart, 96), \"ot succeed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_ffdb670ceeaaf2b4ba3226c5ea1b3a3e577a2dd58ae96f028381dd84eb663b83__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 30)\n        mstore(add(headStart, 64), \"TwabRewards/only-promo-creator\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_Promotion_$15393_memory_ptr__to_t_struct$_Promotion_$15393_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 256)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), 0xffffffffffffffff))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), 0xff))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), 0xffffffffffff))\n        let memberValue0 := mload(add(value0, 0x80))\n        abi_encode_uint48(memberValue0, add(headStart, 0x80))\n        let memberValue0_1 := mload(add(value0, 0xa0))\n        abi_encode_contract_IERC20(memberValue0_1, add(headStart, 0xa0))\n        mstore(add(headStart, 0xc0), mload(add(value0, 0xc0)))\n        mstore(add(headStart, 0xe0), mload(add(value0, 0xe0)))\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint256_t_uint8__to_t_uint256_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xff))\n    }\n    function abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if gt(x_1, sub(0xff, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_mul_t_uint64(x, y) -> product\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if and(iszero(iszero(x_1)), gt(y_1, div(_1, x_1))) { panic_error_0x11() }\n        product := mul(x_1, y_1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function checked_sub_t_uint8(x, y) -> diff\n    {\n        let x_1 := and(x, 0xff)\n        let y_1 := and(y, 0xff)\n        if lt(x_1, y_1) { panic_error_0x11() }\n        diff := sub(x_1, y_1)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "14092": [
                  {
                    "length": 32,
                    "start": 386
                  },
                  {
                    "length": 32,
                    "start": 4634
                  },
                  {
                    "length": 32,
                    "start": 4978
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c806366cfae5e11610081578063b2456c3a1161005b578063b2456c3a146101cf578063c1a287e2146101e2578063f824d0fb1461020157600080fd5b806366cfae5e1461015c5780636cc25db71461017d578063a4958845146101bc57600080fd5b8063120468a0116100b2578063120468a01461011657806314fdecca1461012957806320555db11461014957600080fd5b8063096fe668146100ce5780630b011a16146100f6575b600080fd5b6100e16100dc366004611a84565b610214565b60405190151581526020015b60405180910390f35b610109610104366004611833565b610386565b6040516100ed9190611b2c565b6100e1610124366004611a54565b6104ae565b61013c610137366004611a22565b6105eb565b6040516100ed9190611c1f565b6100e1610157366004611a54565b61063b565b61016f61016a3660046119a6565b61080b565b6040519081526020016100ed565b6101a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100ed565b61016f6101ca366004611a22565b610c42565b61016f6101dd366004611833565b610c55565b6101ec624f1a0081565b60405163ffffffff90911681526020016100ed565b61016f61020f366004611a22565b610e00565b600061021f82610e13565b600061022a84610e69565b905061023581610fa9565b60408101516102458160ff611da8565b60ff168460ff16111561029f5760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f65706f6368732d6f7665722d6c696d697400000060448201526064015b60405180910390fd5b6102a98482611cfb565b600086815260208190526040812080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e01b60ff9485160217905560c084015190916102fc91908716611d42565b90508060008088815260200190815260200160002060030160008282546103239190611cb7565b909155505060a0830151610342906001600160a01b0316333084611020565b60405160ff8616815286907fa9527ed49c1c2ab5449cfef5b611076ce228a0a0de4534874963b83abb6e7b469060200160405180910390a250600195945050505050565b6060600061039385610e69565b90508260008167ffffffffffffffff8111156103b1576103b1611e54565b6040519080825280602002602001820160405280156103da578160200160208202803683370190505b50905060005b828110156104a25760008881526002602090815260408083206001600160a01b038d16845290915290205460ff82161c6001908116141561044057600082828151811061042f5761042f611e3e565b602002602001018181525050610490565b610471898589898581811061045757610457611e3e565b905060200201602081019061046c9190611ab0565b6110d7565b82828151811061048357610483611e3e565b6020026020010181815250505b8061049a81611df7565b9150506103e0565b50979650505050505050565b60006001600160a01b0382166105065760405162461bcd60e51b815260206004820152601f60248201527f54776162526577617264732f70617965652d6e6f742d7a65726f2d61646472006044820152606401610296565b600061051184610e69565b905061051c81611452565b61052581610fa9565b6000610530826114ab565b600086815260208190526040812080547fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e01b60ff85160217905590915061057b836114f7565b60a0840151909150610597906001600160a01b0316868361155b565b6040805182815260ff841660208201526001600160a01b0387169188917f98f89153fa6ee40b2edcd2e1ce4a5a9edfb2f74818016fc24e6cfe7b6fcd12a9910160405180910390a350600195945050505050565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081019190915261063582610e69565b92915050565b60006001600160a01b0382166106935760405162461bcd60e51b815260206004820152601f60248201527f54776162526577617264732f70617965652d6e6f742d7a65726f2d61646472006044820152606401610296565b600061069e84610e69565b90506106a981611452565b60408101516060820151602083015160009260ff1690910265ffffffffffff160167ffffffffffffffff16608083015190915065ffffffffffff166000624f1a008284106106f757836106f9565b825b6107039190611cb7565b9050804210156107555760405162461bcd60e51b815260206004820152601f60248201527f54776162526577617264732f67726163652d706572696f642d616374697665006044820152606401610296565b60e0840151600088815260208190526040812080547fffffff000000000000000000000000000000000000000000000000000000000016815560018101829055600281018290556003015560a08501516107b9906001600160a01b0316888361155b565b866001600160a01b0316887f6f804f2ef186cd4b2a6740c084b86f557a497a1fcf3a6b073068a55c51187b6f836040516107f591815260200190565b60405180910390a3506001979650505050505050565b600080841161085c5760405162461bcd60e51b815260206004820152601b60248201527f54776162526577617264732f746f6b656e732d6e6f742d7a65726f00000000006044820152606401610296565b60008365ffffffffffff16116108b45760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f6475726174696f6e2d6e6f742d7a65726f0000006044820152606401610296565b6108bd82610e13565b600060015460016108ce9190611cb7565b6001819055905060006108e460ff851687611d42565b9050604051806101000160405280336001600160a01b031681526020018867ffffffffffffffff1681526020018560ff1681526020018665ffffffffffff1681526020014265ffffffffffff168152602001896001600160a01b031681526020018781526020018281525060008084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550604082015181600001601c6101000a81548160ff021916908360ff16021790555060608201518160010160006101000a81548165ffffffffffff021916908365ffffffffffff16021790555060808201518160010160066101000a81548165ffffffffffff021916908365ffffffffffff16021790555060a082015181600101600c6101000a8154816001600160a01b0302191690836001600160a01b0316021790555060c0820151816002015560e082015181600301559050506000886001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610ab591906001600160a01b0391909116815260200190565b60206040518083038186803b158015610acd57600080fd5b505afa158015610ae1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b059190611a3b565b9050610b1c6001600160a01b038a16333085611020565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000906001600160a01b038b16906370a082319060240160206040518083038186803b158015610b7757600080fd5b505afa158015610b8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610baf9190611a3b565b905080610bbc8484611cb7565b14610c095760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f70726f6d6f2d616d6f756e742d646966660000006044820152606401610296565b60405184907faedc1797e973574eb0e43205c473287ca44eb1c9d0f677dbb0ec8cfc72bb68f390600090a2509198975050505050505050565b6000610635610c5083610e69565b6114f7565b600080610c6185610e69565b60008681526002602090815260408083206001600160a01b038b1684529091528120549192509084825b81811015610d4d576000888883818110610ca757610ca7611e3e565b9050602002016020810190610cbc9190611ab0565b9050600160ff821685901c81161415610d175760405162461bcd60e51b815260206004820152601b60248201527f54776162526577617264732f726577617264732d636c61696d656400000000006044820152606401610296565b610d228b87836110d7565b610d2c9086611cb7565b9450600160ff82161b84179350508080610d4590611df7565b915050610c8b565b5060008881526002602090815260408083206001600160a01b038d16845282528083208590558a83529082905281206003018054859290610d8f908490611d91565b909155505060a0840151610dad906001600160a01b03168a8561155b565b886001600160a01b0316887f446a5bb69110f4fa9a5802e85237a4281d1d27dbe989b22da4a75d9deae8c778898987604051610deb93929190611b9e565b60405180910390a35090979650505050505050565b6000610635610e0e83610e69565b6114ab565b60008160ff1611610e665760405162461bcd60e51b815260206004820152601b60248201527f54776162526577617264732f65706f6368732d6e6f742d7a65726f00000000006044820152606401610296565b50565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526000828152602081815260409182902082516101008101845281546001600160a01b0380821680845274010000000000000000000000000000000000000000830467ffffffffffffffff1695840195909552600160e01b90910460ff1694820194909452600182015465ffffffffffff8082166060840152660100000000000082041660808301526c01000000000000000000000000900490931660a0840152600281015460c08401526003015460e08301526106355760405162461bcd60e51b815260206004820152601d60248201527f54776162526577617264732f696e76616c69642d70726f6d6f74696f6e0000006044820152606401610296565b604081015160608201516020830151429260ff1690910265ffffffffffff160167ffffffffffffffff1611610e665760405162461bcd60e51b815260206004820152601e60248201527f54776162526577617264732f70726f6d6f74696f6e2d696e61637469766500006044820152606401610296565b6040516001600160a01b03808516602483015283166044820152606481018290526110d19085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526115a9565b50505050565b606082015160009065ffffffffffff16816110f560ff851683611d61565b85602001516111049190611ccf565b905060006111128383611ccf565b90508067ffffffffffffffff1642101561116e5760405162461bcd60e51b815260206004820152601a60248201527f54776162526577617264732f65706f63682d6e6f742d6f7665720000000000006044820152606401610296565b856040015160ff168560ff16106111c75760405162461bcd60e51b815260206004820152601c60248201527f54776162526577617264732f696e76616c69642d65706f63682d6964000000006044820152606401610296565b6040517f98b16f360000000000000000000000000000000000000000000000000000000081526001600160a01b03888116600483015267ffffffffffffffff8085166024840152831660448301526000917f0000000000000000000000000000000000000000000000000000000000000000909116906398b16f369060640160206040518083038186803b15801561125e57600080fd5b505afa158015611272573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112969190611a3b565b90508015611442576040805160018082528183019092526000916020808301908036833701905050905083816000815181106112d4576112d4611e3e565b67ffffffffffffffff9290921660209283029190910190910152604080516001808252818301909252600091816020016020820280368337019050509050838160008151811061132657611326611e3e565b67ffffffffffffffff909216602092830291909101909101526040517f8e6d536a0000000000000000000000000000000000000000000000000000000081526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690638e6d536a906113a99086908690600401611b70565b60006040518083038186803b1580156113c157600080fd5b505afa1580156113d5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526113fd91908101906118bf565b60008151811061140f5761140f611e3e565b6020026020010151905080848b60c0015161142a9190611d42565b6114349190611d20565b97505050505050505061144b565b60009450505050505b9392505050565b80516001600160a01b03163314610e665760405162461bcd60e51b815260206004820152601e60248201527f54776162526577617264732f6f6e6c792d70726f6d6f2d63726561746f7200006044820152606401610296565b600080826020015167ffffffffffffffff1642111561063557826060015165ffffffffffff16836020015167ffffffffffffffff164203816114ef576114ef611e28565b049392505050565b60408101516060820151602083015160009260ff1690910265ffffffffffff160167ffffffffffffffff1642111561153157506000919050565b61153a826114ab565b826040015160ff1661154c9190611d91565b8260c001516106359190611d42565b6040516001600160a01b0383166024820152604481018290526115a49084907fa9059cbb000000000000000000000000000000000000000000000000000000009060640161106d565b505050565b60006115fe826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661168e9092919063ffffffff16565b8051909150156115a4578080602001905181019061161c9190611984565b6115a45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610296565b606061169d84846000856116a5565b949350505050565b60608247101561171d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610296565b843b61176b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610296565b600080866001600160a01b031685876040516117879190611b10565b60006040518083038185875af1925050503d80600081146117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b50915091506117d98282866117e4565b979650505050505050565b606083156117f357508161144b565b8251156118035782518084602001fd5b8160405162461bcd60e51b81526004016102969190611bec565b803560ff8116811461182e57600080fd5b919050565b6000806000806060858703121561184957600080fd5b843561185481611e6a565b935060208501359250604085013567ffffffffffffffff8082111561187857600080fd5b818701915087601f83011261188c57600080fd5b81358181111561189b57600080fd5b8860208260051b85010111156118b057600080fd5b95989497505060200194505050565b600060208083850312156118d257600080fd5b825167ffffffffffffffff808211156118ea57600080fd5b818501915085601f8301126118fe57600080fd5b81518181111561191057611910611e54565b8060051b604051601f19603f8301168101818110858211171561193557611935611e54565b604052828152858101935084860182860187018a101561195457600080fd5b600095505b83861015611977578051855260019590950194938601938601611959565b5098975050505050505050565b60006020828403121561199657600080fd5b8151801515811461144b57600080fd5b600080600080600060a086880312156119be57600080fd5b85356119c981611e6a565b9450602086013567ffffffffffffffff811681146119e657600080fd5b935060408601359250606086013565ffffffffffff81168114611a0857600080fd5b9150611a166080870161181d565b90509295509295909350565b600060208284031215611a3457600080fd5b5035919050565b600060208284031215611a4d57600080fd5b5051919050565b60008060408385031215611a6757600080fd5b823591506020830135611a7981611e6a565b809150509250929050565b60008060408385031215611a9757600080fd5b82359150611aa76020840161181d565b90509250929050565b600060208284031215611ac257600080fd5b61144b8261181d565b600081518084526020808501945080840160005b83811015611b0557815167ffffffffffffffff1687529582019590820190600101611adf565b509495945050505050565b60008251611b22818460208701611dcb565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b81811015611b6457835183529284019291840191600101611b48565b50909695505050505050565b604081526000611b836040830185611acb565b8281036020840152611b958185611acb565b95945050505050565b6040808252810183905260008460608301825b86811015611bd95760ff611bc48461181d565b16825260209283019290910190600101611bb1565b5060209390930193909352509392505050565b6020815260008251806020840152611c0b816040850160208701611dcb565b601f01601f19169190910160400192915050565b6000610100820190506001600160a01b03835116825267ffffffffffffffff602084015116602083015260ff604084015116604083015265ffffffffffff60608401511660608301526080830151611c81608084018265ffffffffffff169052565b5060a0830151611c9c60a08401826001600160a01b03169052565b5060c083015160c083015260e083015160e083015292915050565b60008219821115611cca57611cca611e12565b500190565b600067ffffffffffffffff808316818516808303821115611cf257611cf2611e12565b01949350505050565b600060ff821660ff84168060ff03821115611d1857611d18611e12565b019392505050565b600082611d3d57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611d5c57611d5c611e12565b500290565b600067ffffffffffffffff80831681851681830481118215151615611d8857611d88611e12565b02949350505050565b600082821015611da357611da3611e12565b500390565b600060ff821660ff841680821015611dc257611dc2611e12565b90039392505050565b60005b83811015611de6578181015183820152602001611dce565b838111156110d15750506000910152565b6000600019821415611e0b57611e0b611e12565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610e6657600080fdfea264697066735822122093aebe8126842f77adfcf2f93bf5a68a510897332a4a90f97601a16656e11e6a64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x66CFAE5E GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xB2456C3A GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xB2456C3A EQ PUSH2 0x1CF JUMPI DUP1 PUSH4 0xC1A287E2 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0xF824D0FB EQ PUSH2 0x201 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x66CFAE5E EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x17D JUMPI DUP1 PUSH4 0xA4958845 EQ PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x120468A0 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x120468A0 EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0x14FDECCA EQ PUSH2 0x129 JUMPI DUP1 PUSH4 0x20555DB1 EQ PUSH2 0x149 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x96FE668 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0xB011A16 EQ PUSH2 0xF6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE1 PUSH2 0xDC CALLDATASIZE PUSH1 0x4 PUSH2 0x1A84 JUMP JUMPDEST PUSH2 0x214 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x109 PUSH2 0x104 CALLDATASIZE PUSH1 0x4 PUSH2 0x1833 JUMP JUMPDEST PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xED SWAP2 SWAP1 PUSH2 0x1B2C JUMP JUMPDEST PUSH2 0xE1 PUSH2 0x124 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x13C PUSH2 0x137 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A22 JUMP JUMPDEST PUSH2 0x5EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xED SWAP2 SWAP1 PUSH2 0x1C1F JUMP JUMPDEST PUSH2 0xE1 PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x1A54 JUMP JUMPDEST PUSH2 0x63B JUMP JUMPDEST PUSH2 0x16F PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0x19A6 JUMP JUMPDEST PUSH2 0x80B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xED JUMP JUMPDEST PUSH2 0x1A4 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xED JUMP JUMPDEST PUSH2 0x16F PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0x1A22 JUMP JUMPDEST PUSH2 0xC42 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x1DD CALLDATASIZE PUSH1 0x4 PUSH2 0x1833 JUMP JUMPDEST PUSH2 0xC55 JUMP JUMPDEST PUSH2 0x1EC PUSH3 0x4F1A00 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xED JUMP JUMPDEST PUSH2 0x16F PUSH2 0x20F CALLDATASIZE PUSH1 0x4 PUSH2 0x1A22 JUMP JUMPDEST PUSH2 0xE00 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21F DUP3 PUSH2 0xE13 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22A DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP PUSH2 0x235 DUP2 PUSH2 0xFA9 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x245 DUP2 PUSH1 0xFF PUSH2 0x1DA8 JUMP JUMPDEST PUSH1 0xFF AND DUP5 PUSH1 0xFF AND GT ISZERO PUSH2 0x29F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F65706F6368732D6F7665722D6C696D6974000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2A9 DUP5 DUP3 PUSH2 0x1CFB JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH1 0xFF SWAP5 DUP6 AND MUL OR SWAP1 SSTORE PUSH1 0xC0 DUP5 ADD MLOAD SWAP1 SWAP2 PUSH2 0x2FC SWAP2 SWAP1 DUP8 AND PUSH2 0x1D42 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP1 DUP9 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x3 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x323 SWAP2 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x342 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER ADDRESS DUP5 PUSH2 0x1020 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF DUP7 AND DUP2 MSTORE DUP7 SWAP1 PUSH32 0xA9527ED49C1C2AB5449CFEF5B611076CE228A0A0DE4534874963B83ABB6E7B46 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x393 DUP6 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3B1 JUMPI PUSH2 0x3B1 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3DA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4A2 JUMPI PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF DUP3 AND SHR PUSH1 0x1 SWAP1 DUP2 AND EQ ISZERO PUSH2 0x440 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x42F JUMPI PUSH2 0x42F PUSH2 0x1E3E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP PUSH2 0x490 JUMP JUMPDEST PUSH2 0x471 DUP10 DUP6 DUP10 DUP10 DUP6 DUP2 DUP2 LT PUSH2 0x457 JUMPI PUSH2 0x457 PUSH2 0x1E3E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x46C SWAP2 SWAP1 PUSH2 0x1AB0 JUMP JUMPDEST PUSH2 0x10D7 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x483 JUMPI PUSH2 0x483 PUSH2 0x1E3E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST DUP1 PUSH2 0x49A DUP2 PUSH2 0x1DF7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3E0 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x506 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70617965652D6E6F742D7A65726F2D6164647200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x511 DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP PUSH2 0x51C DUP2 PUSH2 0x1452 JUMP JUMPDEST PUSH2 0x525 DUP2 PUSH2 0xFA9 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x530 DUP3 PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFF00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH1 0xFF DUP6 AND MUL OR SWAP1 SSTORE SWAP1 SWAP2 POP PUSH2 0x57B DUP4 PUSH2 0x14F7 JUMP JUMPDEST PUSH1 0xA0 DUP5 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x597 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 DUP4 PUSH2 0x155B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0xFF DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP2 DUP9 SWAP2 PUSH32 0x98F89153FA6EE40B2EDCD2E1CE4A5A9EDFB2F74818016FC24E6CFE7B6FCD12A9 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xE0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x635 DUP3 PUSH2 0xE69 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x693 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70617965652D6E6F742D7A65726F2D6164647200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69E DUP5 PUSH2 0xE69 JUMP JUMPDEST SWAP1 POP PUSH2 0x6A9 DUP2 PUSH2 0x1452 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x0 SWAP3 PUSH1 0xFF AND SWAP1 SWAP2 MUL PUSH6 0xFFFFFFFFFFFF AND ADD PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x80 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x0 PUSH3 0x4F1A00 DUP3 DUP5 LT PUSH2 0x6F7 JUMPI DUP4 PUSH2 0x6F9 JUMP JUMPDEST DUP3 JUMPDEST PUSH2 0x703 SWAP2 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST SWAP1 POP DUP1 TIMESTAMP LT ISZERO PUSH2 0x755 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F67726163652D706572696F642D61637469766500 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0xE0 DUP5 ADD MLOAD PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFF0000000000000000000000000000000000000000000000000000000000 AND DUP2 SSTORE PUSH1 0x1 DUP2 ADD DUP3 SWAP1 SSTORE PUSH1 0x2 DUP2 ADD DUP3 SWAP1 SSTORE PUSH1 0x3 ADD SSTORE PUSH1 0xA0 DUP6 ADD MLOAD PUSH2 0x7B9 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP4 PUSH2 0x155B JUMP JUMPDEST DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x6F804F2EF186CD4B2A6740C084B86F557A497A1FCF3A6B073068A55C51187B6F DUP4 PUSH1 0x40 MLOAD PUSH2 0x7F5 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 GT PUSH2 0x85C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F746F6B656E732D6E6F742D7A65726F0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH6 0xFFFFFFFFFFFF AND GT PUSH2 0x8B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F6475726174696F6E2D6E6F742D7A65726F000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH2 0x8BD DUP3 PUSH2 0xE13 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SLOAD PUSH1 0x1 PUSH2 0x8CE SWAP2 SWAP1 PUSH2 0x1CB7 JUMP JUMPDEST PUSH1 0x1 DUP2 SWAP1 SSTORE SWAP1 POP PUSH1 0x0 PUSH2 0x8E4 PUSH1 0xFF DUP6 AND DUP8 PUSH2 0x1D42 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP9 PUSH8 0xFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH6 0xFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE POP PUSH1 0x0 DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x1C PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH6 0xFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH6 0xFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x6 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH6 0xFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH6 0xFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0xC PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE SWAP1 POP POP PUSH1 0x0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAB5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xACD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAE1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB05 SWAP2 SWAP1 PUSH2 0x1A3B JUMP JUMPDEST SWAP1 POP PUSH2 0xB1C PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND CALLER ADDRESS DUP6 PUSH2 0x1020 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB77 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB8B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xBAF SWAP2 SWAP1 PUSH2 0x1A3B JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0xBBC DUP5 DUP5 PUSH2 0x1CB7 JUMP JUMPDEST EQ PUSH2 0xC09 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70726F6D6F2D616D6F756E742D64696666000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 SWAP1 PUSH32 0xAEDC1797E973574EB0E43205C473287CA44EB1C9D0F677DBB0EC8CFC72BB68F3 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP SWAP2 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x635 PUSH2 0xC50 DUP4 PUSH2 0xE69 JUMP JUMPDEST PUSH2 0x14F7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xC61 DUP6 PUSH2 0xE69 JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP SWAP1 DUP5 DUP3 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xD4D JUMPI PUSH1 0x0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0xCA7 JUMPI PUSH2 0xCA7 PUSH2 0x1E3E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xCBC SWAP2 SWAP1 PUSH2 0x1AB0 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0xFF DUP3 AND DUP6 SWAP1 SHR DUP2 AND EQ ISZERO PUSH2 0xD17 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F726577617264732D636C61696D65640000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH2 0xD22 DUP12 DUP8 DUP4 PUSH2 0x10D7 JUMP JUMPDEST PUSH2 0xD2C SWAP1 DUP7 PUSH2 0x1CB7 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0xFF DUP3 AND SHL DUP5 OR SWAP4 POP POP DUP1 DUP1 PUSH2 0xD45 SWAP1 PUSH2 0x1DF7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xC8B JUMP JUMPDEST POP PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE DUP11 DUP4 MSTORE SWAP1 DUP3 SWAP1 MSTORE DUP2 KECCAK256 PUSH1 0x3 ADD DUP1 SLOAD DUP6 SWAP3 SWAP1 PUSH2 0xD8F SWAP1 DUP5 SWAP1 PUSH2 0x1D91 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xA0 DUP5 ADD MLOAD PUSH2 0xDAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP11 DUP6 PUSH2 0x155B JUMP JUMPDEST DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH32 0x446A5BB69110F4FA9A5802E85237A4281D1D27DBE989B22DA4A75D9DEAE8C778 DUP10 DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0xDEB SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1B9E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP SWAP1 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x635 PUSH2 0xE0E DUP4 PUSH2 0xE69 JUMP JUMPDEST PUSH2 0x14AB JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0xFF AND GT PUSH2 0xE66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F65706F6368732D6E6F742D7A65726F0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xA0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xC0 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0xE0 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH2 0x100 DUP2 ADD DUP5 MSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND DUP1 DUP5 MSTORE PUSH21 0x10000000000000000000000000000000000000000 DUP4 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP6 DUP5 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP5 DUP3 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x1 DUP3 ADD SLOAD PUSH6 0xFFFFFFFFFFFF DUP1 DUP3 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH7 0x1000000000000 DUP3 DIV AND PUSH1 0x80 DUP4 ADD MSTORE PUSH13 0x1000000000000000000000000 SWAP1 DIV SWAP1 SWAP4 AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x635 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F696E76616C69642D70726F6D6F74696F6E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x20 DUP4 ADD MLOAD TIMESTAMP SWAP3 PUSH1 0xFF AND SWAP1 SWAP2 MUL PUSH6 0xFFFFFFFFFFFF AND ADD PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xE66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F70726F6D6F74696F6E2D696E6163746976650000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x10D1 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x15A9 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x0 SWAP1 PUSH6 0xFFFFFFFFFFFF AND DUP2 PUSH2 0x10F5 PUSH1 0xFF DUP6 AND DUP4 PUSH2 0x1D61 JUMP JUMPDEST DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x1104 SWAP2 SWAP1 PUSH2 0x1CCF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x1112 DUP4 DUP4 PUSH2 0x1CCF JUMP JUMPDEST SWAP1 POP DUP1 PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP LT ISZERO PUSH2 0x116E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F65706F63682D6E6F742D6F766572000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST DUP6 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND DUP6 PUSH1 0xFF AND LT PUSH2 0x11C7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F696E76616C69642D65706F63682D696400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x98B16F3600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP6 AND PUSH1 0x24 DUP5 ADD MSTORE DUP4 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x98B16F36 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x125E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1272 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1296 SWAP2 SWAP1 PUSH2 0x1A3B JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1442 JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP4 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x12D4 JUMPI PUSH2 0x12D4 PUSH2 0x1E3E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP DUP4 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1326 JUMPI PUSH2 0x1326 PUSH2 0x1E3E JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0x8E6D536A00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x8E6D536A SWAP1 PUSH2 0x13A9 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B70 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13D5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x13FD SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x18BF JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x140F JUMPI PUSH2 0x140F PUSH2 0x1E3E JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 DUP5 DUP12 PUSH1 0xC0 ADD MLOAD PUSH2 0x142A SWAP2 SWAP1 PUSH2 0x1D42 JUMP JUMPDEST PUSH2 0x1434 SWAP2 SWAP1 PUSH2 0x1D20 JUMP JUMPDEST SWAP8 POP POP POP POP POP POP POP POP PUSH2 0x144B JUMP JUMPDEST PUSH1 0x0 SWAP5 POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE66 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1E PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x54776162526577617264732F6F6E6C792D70726F6D6F2D63726561746F720000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0x20 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP GT ISZERO PUSH2 0x635 JUMPI DUP3 PUSH1 0x60 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND DUP4 PUSH1 0x20 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP SUB DUP2 PUSH2 0x14EF JUMPI PUSH2 0x14EF PUSH2 0x1E28 JUMP JUMPDEST DIV SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x0 SWAP3 PUSH1 0xFF AND SWAP1 SWAP2 MUL PUSH6 0xFFFFFFFFFFFF AND ADD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP GT ISZERO PUSH2 0x1531 JUMPI POP PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x153A DUP3 PUSH2 0x14AB JUMP JUMPDEST DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND PUSH2 0x154C SWAP2 SWAP1 PUSH2 0x1D91 JUMP JUMPDEST DUP3 PUSH1 0xC0 ADD MLOAD PUSH2 0x635 SWAP2 SWAP1 PUSH2 0x1D42 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH2 0x15A4 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x106D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15FE DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5361666545524332303A206C6F772D6C6576656C2063616C6C206661696C6564 DUP2 MSTORE POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x168E SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x15A4 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x161C SWAP2 SWAP1 PUSH2 0x1984 JUMP JUMPDEST PUSH2 0x15A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A204552433230206F7065726174696F6E20646964206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74207375636365656400000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x169D DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x16A5 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x171D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E636520666F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722063616C6C0000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x296 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x176B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2063616C6C20746F206E6F6E2D636F6E7472616374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x296 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1787 SWAP2 SWAP1 PUSH2 0x1B10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x17C4 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x17C9 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x17D9 DUP3 DUP3 DUP7 PUSH2 0x17E4 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x17F3 JUMPI POP DUP2 PUSH2 0x144B JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1803 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x1BEC JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x182E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1849 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x1854 DUP2 PUSH2 0x1E6A JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x1878 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x188C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x189B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x18B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP POP PUSH1 0x20 ADD SWAP5 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x18D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x18EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x18FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x1910 JUMPI PUSH2 0x1910 PUSH2 0x1E54 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x3F DUP4 ADD AND DUP2 ADD DUP2 DUP2 LT DUP6 DUP3 GT OR ISZERO PUSH2 0x1935 JUMPI PUSH2 0x1935 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP6 DUP2 ADD SWAP4 POP DUP5 DUP7 ADD DUP3 DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH2 0x1954 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x1977 JUMPI DUP1 MLOAD DUP6 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP4 DUP7 ADD SWAP4 DUP7 ADD PUSH2 0x1959 JUMP JUMPDEST POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1996 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x144B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x19BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x19C9 DUP2 PUSH2 0x1E6A JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x19E6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1A08 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 POP PUSH2 0x1A16 PUSH1 0x80 DUP8 ADD PUSH2 0x181D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A34 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A67 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x1A79 DUP2 PUSH2 0x1E6A JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1A97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x1AA7 PUSH1 0x20 DUP5 ADD PUSH2 0x181D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x144B DUP3 PUSH2 0x181D JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1B05 JUMPI DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1ADF JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x1B22 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x1DCB JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B64 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1B48 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1B83 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1ACB JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1B95 DUP2 DUP6 PUSH2 0x1ACB JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x0 DUP5 PUSH1 0x60 DUP4 ADD DUP3 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x1BD9 JUMPI PUSH1 0xFF PUSH2 0x1BC4 DUP5 PUSH2 0x181D JUMP JUMPDEST AND DUP3 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD SWAP3 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1BB1 JUMP JUMPDEST POP PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP4 SWAP1 SWAP4 MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x1C0B DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x1DCB JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP3 ADD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 MLOAD AND DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x20 DUP5 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0xFF PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0x1C81 PUSH1 0x80 DUP5 ADD DUP3 PUSH6 0xFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP4 ADD MLOAD PUSH2 0x1C9C PUSH1 0xA0 DUP5 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1CCA JUMPI PUSH2 0x1CCA PUSH2 0x1E12 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0x1CF2 JUMPI PUSH2 0x1CF2 PUSH2 0x1E12 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 PUSH1 0xFF SUB DUP3 GT ISZERO PUSH2 0x1D18 JUMPI PUSH2 0x1D18 PUSH2 0x1E12 JUMP JUMPDEST ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1D3D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1D5C JUMPI PUSH2 0x1D5C PUSH2 0x1E12 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP2 DUP4 DIV DUP2 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x1D88 JUMPI PUSH2 0x1D88 PUSH2 0x1E12 JUMP JUMPDEST MUL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1DA3 JUMPI PUSH2 0x1DA3 PUSH2 0x1E12 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP5 AND DUP1 DUP3 LT ISZERO PUSH2 0x1DC2 JUMPI PUSH2 0x1DC2 PUSH2 0x1E12 JUMP JUMPDEST SWAP1 SUB SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1DE6 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1DCE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10D1 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x1E0B JUMPI PUSH2 0x1E0B PUSH2 0x1E12 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE66 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP4 0xAE 0xBE DUP2 0x26 DUP5 0x2F PUSH24 0xADFCF2F93BF5A68A510897332A4A90F97601A16656E11E6A PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "961:17764:56:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7495:910;;;;;;:::i;:::-;;:::i;:::-;;;8667:14:94;;8660:22;8642:41;;8630:2;8615:18;7495:910:56;;;;;;;;10162:748;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5719:699::-;;;;;;:::i;:::-;;:::i;9574:145::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6457:999::-;;;;;;:::i;:::-;;:::i;4329:1351::-;;;;;;:::i;:::-;;:::i;:::-;;;16270:25:94;;;16258:2;16243:18;4329:1351:56;16225:76:94;1163:31:56;;;;;;;;-1:-1:-1;;;;;5506:55:94;;;5488:74;;5476:2;5461:18;1163:31:56;5443:125:94;9958:165:56;;;;;;:::i;:::-;;:::i;8444:1091::-;;;;;;:::i;:::-;;:::i;1284:45::-;;1322:7;1284:45;;;;;16740:10:94;16728:23;;;16710:42;;16698:2;16683:18;1284:45:56;16665:93:94;9758:161:56;;;;;;:::i;:::-;;:::i;7495:910::-;7616:4;7636:39;7659:15;7636:22;:39::i;:::-;7686:27;7716;7730:12;7716:13;:27::i;:::-;7686:57;;7753:35;7777:10;7753:23;:35::i;:::-;7830:25;;;;7907:40;7830:25;7907:15;:40;:::i;:::-;7887:61;;:15;:61;;;;7866:137;;;;-1:-1:-1;;;7866:137:56;;13216:2:94;7866:137:56;;;13198:21:94;13255:2;13235:18;;;13228:30;13294:31;13274:18;;;13267:59;13343:18;;7866:137:56;;;;;;;;;8057:40;8082:15;8057:22;:40;:::i;:::-;8014:11;:25;;;;;;;;;;:83;;;;-1:-1:-1;;;8014:83:56;;;;;;;;8144:25;;;;8014:11;;8126:43;;8144:25;8126:43;;;:::i;:::-;8108:61;;8226:7;8180:11;:25;8192:12;8180:25;;;;;;;;;;;:42;;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;8243:16:56;;;;:69;;-1:-1:-1;;;;;8243:33:56;8277:10;8297:4;8304:7;8243:33;:69::i;:::-;8328:48;;16937:4:94;16925:17;;16907:36;;8346:12:56;;8328:48;;16895:2:94;16880:18;8328:48:56;;;;;;;-1:-1:-1;8394:4:56;;7495:910;-1:-1:-1;;;;;7495:910:56:o;10162:748::-;10315:16;10343:27;10373;10387:12;10373:13;:27::i;:::-;10343:57;-1:-1:-1;10437:9:56;10411:23;10437:9;10497:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10497:30:56;;10463:64;;10543:13;10538:334;10570:15;10562:5;:23;10538:334;;;10630:28;;;;:14;:28;;;;;;;;-1:-1:-1;;;;;10630:35:56;;;;;;;;;;18667:30;;;;18709:1;18666:45;;;:50;10610:252;;;10724:1;10700:14;10715:5;10700:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;10610:252;;;10788:59;10811:5;10818:10;10830:9;;10840:5;10830:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;10788:22;:59::i;:::-;10764:14;10779:5;10764:21;;;;;;;;:::i;:::-;;;;;;:83;;;;;10610:252;10587:7;;;;:::i;:::-;;;;10538:334;;;-1:-1:-1;10889:14:56;10162:748;-1:-1:-1;;;;;;;10162:748:56:o;5719:699::-;5803:4;-1:-1:-1;;;;;5827:17:56;;5819:61;;;;-1:-1:-1;;;5819:61:56;;9948:2:94;5819:61:56;;;9930:21:94;9987:2;9967:18;;;9960:30;10026:33;10006:18;;;9999:61;10077:18;;5819:61:56;9920:181:94;5819:61:56;5891:27;5921;5935:12;5921:13;:27::i;:::-;5891:57;;5958:36;5983:10;5958:24;:36::i;:::-;6004:35;6028:10;6004:23;:35::i;:::-;6050:18;6077:30;6096:10;6077:18;:30::i;:::-;6118:11;:25;;;;;;;;;;:55;;;;-1:-1:-1;;;6118:55:56;;;;;;;;;-1:-1:-1;6212:32:56;6233:10;6212:20;:32::i;:::-;6254:16;;;;6184:60;;-1:-1:-1;6254:53:56;;-1:-1:-1;;;;;6254:29:56;6284:3;6184:60;6254:29;:53::i;:::-;6323:66;;;16476:25:94;;;16549:4;16537:17;;16532:2;16517:18;;16510:45;-1:-1:-1;;;;;6323:66:56;;;6338:12;;6323:66;;16449:18:94;6323:66:56;;;;;;;-1:-1:-1;6407:4:56;;5719:699;-1:-1:-1;;;;;5719:699:56:o;9574:145::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9685:27:56;9699:12;9685:13;:27::i;:::-;9678:34;9574:145;-1:-1:-1;;9574:145:56:o;6457:999::-;6545:4;-1:-1:-1;;;;;6569:17:56;;6561:61;;;;-1:-1:-1;;;6561:61:56;;9948:2:94;6561:61:56;;;9930:21:94;9987:2;9967:18;;;9960:30;10026:33;10006:18;;;9999:61;10077:18;;6561:61:56;9920:181:94;6561:61:56;6633:27;6663;6677:12;6663:13;:27::i;:::-;6633:57;;6700:36;6725:10;6700:24;:36::i;:::-;13399:25;;;;13372:24;;;;13343:25;;;;6747:30;;13372:52;;;;;13343:82;;;13320:105;;6857:20;;;;6747:70;;-1:-1:-1;6827:50:56;;:27;1322:7;6937:44;;;:123;;7038:22;6937:123;;;7000:19;6937:123;6923:162;;;;:::i;:::-;6888:197;;7123:24;7104:15;:43;;7096:87;;;;-1:-1:-1;;;7096:87:56;;11021:2:94;7096:87:56;;;11003:21:94;11060:2;11040:18;;;11033:30;11099:33;11079:18;;;11072:61;11150:18;;7096:87:56;10993:181:94;7096:87:56;7222:27;;;;7194:25;7266;;;;;;;;;;7259:32;;;;;;;;;;;;;;;;;;;;;7302:16;;;;:53;;-1:-1:-1;;;;;7302:29:56;7332:3;7222:27;7302:29;:53::i;:::-;7404:3;-1:-1:-1;;;;;7371:56:56;7390:12;7371:56;7409:17;7371:56;;;;16270:25:94;;16258:2;16243:18;;16225:76;7371:56:56;;;;;;;;-1:-1:-1;7445:4:56;;6457:999;-1:-1:-1;;;;;;;6457:999:56:o;4329:1351::-;4537:7;4582:1;4564:15;:19;4556:59;;;;-1:-1:-1;;;4556:59:56;;13574:2:94;4556:59:56;;;13556:21:94;13613:2;13593:18;;;13586:30;13652:29;13632:18;;;13625:57;13699:18;;4556:59:56;13546:177:94;4556:59:56;4650:1;4633:14;:18;;;4625:60;;;;-1:-1:-1;;;4625:60:56;;14288:2:94;4625:60:56;;;14270:21:94;14327:2;14307:18;;;14300:30;14366:31;14346:18;;;14339:59;14415:18;;4625:60:56;14260:179:94;4625:60:56;4695:39;4718:15;4695:22;:39::i;:::-;4745:24;4772:18;;4793:1;4772:22;;;;:::i;:::-;4804:18;:37;;;4745:49;-1:-1:-1;4852:15:56;4870:33;;;;:15;:33;:::i;:::-;4852:51;;4946:346;;;;;;;;4979:10;-1:-1:-1;;;;;4946:346:56;;;;;5019:15;4946:346;;;;;;5064:15;4946:346;;;;;;5108:14;4946:346;;;;;;5154:15;4946:346;;;;;;5191:6;-1:-1:-1;;;;;4946:346:56;;;;;5227:15;4946:346;;;;5274:7;4946:346;;;4914:11;:29;4926:16;4914:29;;;;;;;;;;;:378;;;;;;;;;;;;;-1:-1:-1;;;;;4914:378:56;;;;;-1:-1:-1;;;;;4914:378:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4914:378:56;;;;;-1:-1:-1;;;;;4914:378:56;;;;;;;;;;;;;;;;;;;;;;;;;5303:22;5328:6;-1:-1:-1;;;;;5328:16:56;;5353:4;5328:31;;;;;;;;;;;;;;-1:-1:-1;;;;;5506:55:94;;;;5488:74;;5476:2;5461:18;;5443:125;5328:31:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5303:56;-1:-1:-1;5370:59:56;-1:-1:-1;;;;;5370:23:56;;5394:10;5414:4;5421:7;5370:23;:59::i;:::-;5464:31;;;;;5489:4;5464:31;;;5488:74:94;5440:21:56;;-1:-1:-1;;;;;5464:16:56;;;;;5461:18:94;;5464:31:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5440:55;-1:-1:-1;5440:55:56;5514:24;5531:7;5514:14;:24;:::i;:::-;:41;5506:83;;;;-1:-1:-1;;;5506:83:56;;9590:2:94;5506:83:56;;;9572:21:94;9629:2;9609:18;;;9602:30;9668:31;9648:18;;;9641:59;9717:18;;5506:83:56;9562:179:94;5506:83:56;5605:34;;5622:16;;5605:34;;;;;-1:-1:-1;5657:16:56;;4329:1351;-1:-1:-1;;;;;;;;4329:1351:56:o;9958:165::-;10041:7;10067:49;10088:27;10102:12;10088:13;:27::i;:::-;10067:20;:49::i;8444:1091::-;8588:7;8607:27;8637;8651:12;8637:13;:27::i;:::-;8675:22;8736:28;;;:14;:28;;;;;;;;-1:-1:-1;;;;;8736:35:56;;;;;;;;;;8607:57;;-1:-1:-1;8675:22:56;8807:9;8675:22;8834:385;8866:15;8858:5;:23;8834:385;;;8906:14;8923:9;;8933:5;8923:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;8906:33;-1:-1:-1;18709:1:56;18667:30;;;;;;18666:45;;:50;8962:46;8954:86;;;;-1:-1:-1;;;8954:86:56;;12860:2:94;8954:86:56;;;12842:21:94;12899:2;12879:18;;;12872:30;12938:29;12918:18;;;12911:57;12985:18;;8954:86:56;12832:177:94;8954:86:56;9073:51;9096:5;9103:10;9115:8;9073:22;:51::i;:::-;9055:69;;;;:::i;:::-;;-1:-1:-1;17689:1:56;17681:22;;;;17659:45;;9138:70;;8892:327;8883:7;;;;;:::i;:::-;;;;8834:385;;;-1:-1:-1;9229:28:56;;;;:14;:28;;;;;;;;-1:-1:-1;;;;;9229:35:56;;;;;;;;;:56;;;9295:25;;;;;;;;;:42;;:60;;9341:14;;9229:28;9295:60;;9341:14;;9295:60;:::i;:::-;;;;-1:-1:-1;;9366:16:56;;;;:52;;-1:-1:-1;;;;;9366:29:56;9396:5;9403:14;9366:29;:52::i;:::-;9474:5;-1:-1:-1;;;;;9434:62:56;9449:12;9434:62;9463:9;;9481:14;9434:62;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;9514:14:56;;8444:1091;-1:-1:-1;;;;;;;8444:1091:56:o;9758:161::-;9839:7;9865:47;9884:27;9898:12;9884:13;:27::i;:::-;9865:18;:47::i;11706:145::-;11811:1;11793:15;:19;;;11785:59;;;;-1:-1:-1;;;11785:59:56;;12504:2:94;11785:59:56;;;12486:21:94;12543:2;12523:18;;;12516:30;12582:29;12562:18;;;12555:57;12629:18;;11785:59:56;12476:177:94;11785:59:56;11706:145;:::o;12720:269::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12816:27:56;12846:25;;;;;;;;;;;;12816:55;;;;;;;;;-1:-1:-1;;;;;12816:55:56;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12816:55:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12881:74;;;;-1:-1:-1;;;12881:74:56;;10308:2:94;12881:74:56;;;10290:21:94;10347:2;10327:18;;;10320:30;10386:31;10366:18;;;10359:59;10435:18;;12881:74:56;10280:179:94;11968:225:56;13399:25;;;;13372:24;;;;13343:25;;;;12115:15;;13372:52;;;;;13343:82;;;13320:105;;12075:55;12054:132;;;;-1:-1:-1;;;12054:132:56;;12145:2:94;12054:132:56;;;12127:21:94;12184:2;12164:18;;;12157:30;12223:32;12203:18;;;12196:60;12273:18;;12054:132:56;12117:180:94;912:241:6;1077:68;;-1:-1:-1;;;;;5854:15:94;;;1077:68:6;;;5836:34:94;5906:15;;5886:18;;;5879:43;5938:18;;;5931:34;;;1050:96:6;;1070:5;;1100:27;;5748:18:94;;1077:68:6;;;;-1:-1:-1;;1077:68:6;;;;;;;;;;;;;;;;;;;;;;;;;;;1050:19;:96::i;:::-;912:241;;;;:::o;14939:1310:56:-;15127:24;;;;15084:7;;15103:48;;15084:7;15220:25;;;;15103:48;15220:25;:::i;:::-;15191:10;:25;;;:55;;;;:::i;:::-;15161:85;-1:-1:-1;15256:25:56;15284:37;15307:14;15161:85;15284:37;:::i;:::-;15256:65;;15359:18;15340:37;;:15;:37;;15332:76;;;;-1:-1:-1;;;15332:76:56;;10666:2:94;15332:76:56;;;10648:21:94;10705:2;10685:18;;;10678:30;10744:28;10724:18;;;10717:56;10790:18;;15332:76:56;10638:176:94;15332:76:56;15437:10;:25;;;15426:36;;:8;:36;;;15418:77;;;;-1:-1:-1;;;15418:77:56;;11788:2:94;15418:77:56;;;11770:21:94;11827:2;11807:18;;;11800:30;11866;11846:18;;;11839:58;11914:18;;15418:77:56;11760:178:94;15418:77:56;15532:126;;;;;-1:-1:-1;;;;;6494:55:94;;;15532:126:56;;;6476:74:94;6569:18;6623:15;;;6603:18;;;6596:43;6675:15;;6655:18;;;6648:43;15506:23:56;;15532:6;:31;;;;;;6449:18:94;;15532:126:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15506:152;-1:-1:-1;15673:19:56;;15669:555;;15748:15;;;15761:1;15748:15;;;;;;;;;15708:37;;15748:15;;;;;;;;;;;-1:-1:-1;15748:15:56;15708:55;;15804:20;15777:21;15799:1;15777:24;;;;;;;;:::i;:::-;:47;;;;;:24;;;;;;;;;;;:47;15877:15;;;15890:1;15877:15;;;;;;;;;15839:35;;15877:15;;;;;;;;;;;;-1:-1:-1;15877:15:56;15839:53;;15931:18;15906:19;15926:1;15906:22;;;;;;;;:::i;:::-;:43;;;;:22;;;;;;;;;;;:43;15994:127;;;;;15964:27;;-1:-1:-1;;;;;15994:6:56;:37;;;;:127;;16049:21;;16088:19;;15994:127;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15994:127:56;;;;;;;;;;;;:::i;:::-;16122:1;15994:130;;;;;;;;:::i;:::-;;;;;;;15964:160;;16194:19;16175:15;16147:10;:25;;;:43;;;;:::i;:::-;16146:67;;;;:::i;:::-;16139:74;;;;;;;;;;;15669:555;16241:1;16234:8;;;;;;14939:1310;;;;;;:::o;12324:169::-;12433:18;;-1:-1:-1;;;;;12419:32:56;:10;:32;12411:75;;;;-1:-1:-1;;;12411:75:56;;15057:2:94;12411:75:56;;;15039:21:94;15096:2;15076:18;;;15069:30;15135:32;15115:18;;;15108:60;15185:18;;12411:75:56;15029:180:94;14014:418:56;14094:7;14113:23;14169:10;:25;;;14151:43;;:15;:43;14147:246;;;14344:10;:24;;;14276:92;;14295:10;:25;;;14277:43;;:15;:43;14276:92;;;;;:::i;:::-;;;14410:15;-1:-1:-1;;;14014:418:56:o;16483:331::-;13399:25;;;;13372:24;;;;13343:25;;;;16565:7;;13372:52;;;;;13343:82;;;13320:105;;16588:15;:55;16584:94;;;-1:-1:-1;16666:1:56;;16483:331;-1:-1:-1;16483:331:56:o;16584:94::-;16776:30;16795:10;16776:18;:30::i;:::-;16748:10;:25;;;:58;;;;;;:::i;:::-;16707:10;:25;;;:100;;;;:::i;701:205:6:-;840:58;;-1:-1:-1;;;;;6168:55:94;;840:58:6;;;6150:74:94;6240:18;;;6233:34;;;813:86:6;;833:5;;863:23;;6123:18:94;;840:58:6;6105:168:94;813:86:6;701:205;;;:::o;3207:706::-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:6;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:6;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:6;;14646:2:94;3811:85:6;;;14628:21:94;14685:2;14665:18;;;14658:30;14724:34;14704:18;;;14697:62;14795:12;14775:18;;;14768:40;14825:19;;3811:85:6;14618:232:94;3514:223:9;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;:::-;3671:59;3514:223;-1:-1:-1;;;;3514:223:9:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:9;;11381:2:94;4790:81:9;;;11363:21:94;11420:2;11400:18;;;11393:30;11459:34;11439:18;;;11432:62;11530:8;11510:18;;;11503:36;11556:19;;4790:81:9;11353:228:94;4790:81:9;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:9;;13930:2:94;4881:60:9;;;13912:21:94;13969:2;13949:18;;;13942:30;14008:31;13988:18;;;13981:59;14057:18;;4881:60:9;13902:179:94;4881:60:9;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:9;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:9:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:9;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:9;;;;;;;;:::i;14:156:94:-;80:20;;140:4;129:16;;119:27;;109:2;;160:1;157;150:12;109:2;61:109;;;:::o;175:816::-;277:6;285;293;301;354:2;342:9;333:7;329:23;325:32;322:2;;;370:1;367;360:12;322:2;409:9;396:23;428:31;453:5;428:31;:::i;:::-;478:5;-1:-1:-1;530:2:94;515:18;;502:32;;-1:-1:-1;585:2:94;570:18;;557:32;608:18;638:14;;;635:2;;;665:1;662;655:12;635:2;703:6;692:9;688:22;678:32;;748:7;741:4;737:2;733:13;729:27;719:2;;770:1;767;760:12;719:2;810;797:16;836:2;828:6;825:14;822:2;;;852:1;849;842:12;822:2;905:7;900:2;890:6;887:1;883:14;879:2;875:23;871:32;868:45;865:2;;;926:1;923;916:12;865:2;312:679;;;;-1:-1:-1;;957:2:94;949:11;;-1:-1:-1;;;312:679:94:o;996:1175::-;1091:6;1122:2;1165;1153:9;1144:7;1140:23;1136:32;1133:2;;;1181:1;1178;1171:12;1133:2;1214:9;1208:16;1243:18;1284:2;1276:6;1273:14;1270:2;;;1300:1;1297;1290:12;1270:2;1338:6;1327:9;1323:22;1313:32;;1383:7;1376:4;1372:2;1368:13;1364:27;1354:2;;1405:1;1402;1395:12;1354:2;1434;1428:9;1456:2;1452;1449:10;1446:2;;;1462:18;;:::i;:::-;1508:2;1505:1;1501:10;1540:2;1534:9;-1:-1:-1;;1594:2:94;1590;1586:11;1582:84;1574:6;1570:97;1717:6;1705:10;1702:22;1697:2;1685:10;1682:18;1679:46;1676:2;;;1728:18;;:::i;:::-;1764:2;1757:22;1814:18;;;1848:15;;;;-1:-1:-1;1883:11:94;;;1913;;;1909:20;;1906:33;-1:-1:-1;1903:2:94;;;1952:1;1949;1942:12;1903:2;1974:1;1965:10;;1984:156;1998:2;1995:1;1992:9;1984:156;;;2055:10;;2043:23;;2016:1;2009:9;;;;;2086:12;;;;2118;;1984:156;;;-1:-1:-1;2159:6:94;1102:1069;-1:-1:-1;;;;;;;;1102:1069:94:o;2176:277::-;2243:6;2296:2;2284:9;2275:7;2271:23;2267:32;2264:2;;;2312:1;2309;2302:12;2264:2;2344:9;2338:16;2397:5;2390:13;2383:21;2376:5;2373:32;2363:2;;2419:1;2416;2409:12;2458:757;2563:6;2571;2579;2587;2595;2648:3;2636:9;2627:7;2623:23;2619:33;2616:2;;;2665:1;2662;2655:12;2616:2;2704:9;2691:23;2723:31;2748:5;2723:31;:::i;:::-;2773:5;-1:-1:-1;2830:2:94;2815:18;;2802:32;2878:18;2865:32;;2853:45;;2843:2;;2912:1;2909;2902:12;2843:2;2935:7;-1:-1:-1;2989:2:94;2974:18;;2961:32;;-1:-1:-1;3045:2:94;3030:18;;3017:32;3093:14;3080:28;;3068:41;;3058:2;;3123:1;3120;3113:12;3058:2;3146:7;-1:-1:-1;3172:37:94;3204:3;3189:19;;3172:37;:::i;:::-;3162:47;;2606:609;;;;;;;;:::o;3220:180::-;3279:6;3332:2;3320:9;3311:7;3307:23;3303:32;3300:2;;;3348:1;3345;3338:12;3300:2;-1:-1:-1;3371:23:94;;3290:110;-1:-1:-1;3290:110:94:o;3405:184::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:2;;;3544:1;3541;3534:12;3496:2;-1:-1:-1;3567:16:94;;3486:103;-1:-1:-1;3486:103:94:o;3594:315::-;3662:6;3670;3723:2;3711:9;3702:7;3698:23;3694:32;3691:2;;;3739:1;3736;3729:12;3691:2;3775:9;3762:23;3752:33;;3835:2;3824:9;3820:18;3807:32;3848:31;3873:5;3848:31;:::i;:::-;3898:5;3888:15;;;3681:228;;;;;:::o;3914:250::-;3980:6;3988;4041:2;4029:9;4020:7;4016:23;4012:32;4009:2;;;4057:1;4054;4047:12;4009:2;4093:9;4080:23;4070:33;;4122:36;4154:2;4143:9;4139:18;4122:36;:::i;:::-;4112:46;;3999:165;;;;;:::o;4169:182::-;4226:6;4279:2;4267:9;4258:7;4254:23;4250:32;4247:2;;;4295:1;4292;4285:12;4247:2;4318:27;4335:9;4318:27;:::i;4356:459::-;4408:3;4446:5;4440:12;4473:6;4468:3;4461:19;4499:4;4528:2;4523:3;4519:12;4512:19;;4565:2;4558:5;4554:14;4586:1;4596:194;4610:6;4607:1;4604:13;4596:194;;;4675:13;;4690:18;4671:38;4659:51;;4730:12;;;;4765:15;;;;4632:1;4625:9;4596:194;;;-1:-1:-1;4806:3:94;;4416:399;-1:-1:-1;;;;;4416:399:94:o;5063:274::-;5192:3;5230:6;5224:13;5246:53;5292:6;5287:3;5280:4;5272:6;5268:17;5246:53;:::i;:::-;5315:16;;;;;5200:137;-1:-1:-1;;5200:137:94:o;6702:632::-;6873:2;6925:21;;;6995:13;;6898:18;;;7017:22;;;6844:4;;6873:2;7096:15;;;;7070:2;7055:18;;;6844:4;7139:169;7153:6;7150:1;7147:13;7139:169;;;7214:13;;7202:26;;7283:15;;;;7248:12;;;;7175:1;7168:9;7139:169;;;-1:-1:-1;7325:3:94;;6853:481;-1:-1:-1;;;;;;6853:481:94:o;7339:459::-;7592:2;7581:9;7574:21;7555:4;7618:55;7669:2;7658:9;7654:18;7646:6;7618:55;:::i;:::-;7721:9;7713:6;7709:22;7704:2;7693:9;7689:18;7682:50;7749:43;7785:6;7777;7749:43;:::i;:::-;7741:51;7564:234;-1:-1:-1;;;;;7564:234:94:o;7803:694::-;8027:2;8039:21;;;8012:18;;8095:22;;;7979:4;8174:6;8148:2;8133:18;;7979:4;8208:218;8222:6;8219:1;8216:13;8208:218;;;8313:4;8287:24;8304:6;8287:24;:::i;:::-;8283:35;8271:48;;8342:4;8401:15;;;;8366:12;;;;8244:1;8237:9;8208:218;;;-1:-1:-1;8477:4:94;8462:20;;;;8455:36;;;;-1:-1:-1;8443:3:94;7988:509;-1:-1:-1;;;7988:509:94:o;8941:442::-;9090:2;9079:9;9072:21;9053:4;9122:6;9116:13;9165:6;9160:2;9149:9;9145:18;9138:34;9181:66;9240:6;9235:2;9224:9;9220:18;9215:2;9207:6;9203:15;9181:66;:::i;:::-;9299:2;9287:15;-1:-1:-1;;9283:88:94;9268:104;;;;9374:2;9264:113;;9062:321;-1:-1:-1;;9062:321:94:o;15214:905::-;15362:4;15404:3;15393:9;15389:19;15381:27;;-1:-1:-1;;;;;15445:6:94;15439:13;15435:62;15424:9;15417:81;15566:18;15558:4;15550:6;15546:17;15540:24;15536:49;15529:4;15518:9;15514:20;15507:79;15654:4;15646;15638:6;15634:17;15628:24;15624:35;15617:4;15606:9;15602:20;15595:65;15728:14;15720:4;15712:6;15708:17;15702:24;15698:45;15691:4;15680:9;15676:20;15669:75;15791:4;15783:6;15779:17;15773:24;15806:53;15853:4;15842:9;15838:20;15824:12;5036:14;5025:26;5013:39;;5003:55;15806:53;;15908:4;15900:6;15896:17;15890:24;15923:64;15981:4;15970:9;15966:20;15950:14;-1:-1:-1;;;;;4894:54:94;4882:67;;4872:83;15923:64;;16043:4;16035:6;16031:17;16025:24;16018:4;16007:9;16003:20;15996:54;16106:4;16098:6;16094:17;16088:24;16081:4;16070:9;16066:20;16059:54;15371:748;;;;:::o;16954:128::-;16994:3;17025:1;17021:6;17018:1;17015:13;17012:2;;;17031:18;;:::i;:::-;-1:-1:-1;17067:9:94;;17002:80::o;17087:236::-;17126:3;17154:18;17199:2;17196:1;17192:10;17229:2;17226:1;17222:10;17260:3;17256:2;17252:12;17247:3;17244:21;17241:2;;;17268:18;;:::i;:::-;17304:13;;17134:189;-1:-1:-1;;;;17134:189:94:o;17328:204::-;17366:3;17402:4;17399:1;17395:12;17434:4;17431:1;17427:12;17469:3;17463:4;17459:14;17454:3;17451:23;17448:2;;;17477:18;;:::i;:::-;17513:13;;17374:158;-1:-1:-1;;;17374:158:94:o;17537:274::-;17577:1;17603;17593:2;;-1:-1:-1;;;17635:1:94;17628:88;17739:4;17736:1;17729:15;17767:4;17764:1;17757:15;17593:2;-1:-1:-1;17796:9:94;;17583:228::o;17816:::-;17856:7;17982:1;-1:-1:-1;;17910:74:94;17907:1;17904:81;17899:1;17892:9;17885:17;17881:105;17878:2;;;17989:18;;:::i;:::-;-1:-1:-1;18029:9:94;;17868:176::o;18049:270::-;18088:7;18120:18;18165:2;18162:1;18158:10;18195:2;18192:1;18188:10;18251:3;18247:2;18243:12;18238:3;18235:21;18228:3;18221:11;18214:19;18210:47;18207:2;;;18260:18;;:::i;:::-;18300:13;;18100:219;-1:-1:-1;;;;18100:219:94:o;18324:125::-;18364:4;18392:1;18389;18386:8;18383:2;;;18397:18;;:::i;:::-;-1:-1:-1;18434:9:94;;18373:76::o;18454:195::-;18492:4;18529;18526:1;18522:12;18561:4;18558:1;18554:12;18586:3;18581;18578:12;18575:2;;;18593:18;;:::i;:::-;18630:13;;;18501:148;-1:-1:-1;;;18501:148:94:o;18654:258::-;18726:1;18736:113;18750:6;18747:1;18744:13;18736:113;;;18826:11;;;18820:18;18807:11;;;18800:39;18772:2;18765:10;18736:113;;;18867:6;18864:1;18861:13;18858:2;;;-1:-1:-1;;18902:1:94;18884:16;;18877:27;18707:205::o;18917:195::-;18956:3;-1:-1:-1;;18980:5:94;18977:77;18974:2;;;19057:18;;:::i;:::-;-1:-1:-1;19104:1:94;19093:13;;18964:148::o;19117:184::-;-1:-1:-1;;;19166:1:94;19159:88;19266:4;19263:1;19256:15;19290:4;19287:1;19280:15;19306:184;-1:-1:-1;;;19355:1:94;19348:88;19455:4;19452:1;19445:15;19479:4;19476:1;19469:15;19495:184;-1:-1:-1;;;19544:1:94;19537:88;19644:4;19641:1;19634:15;19668:4;19665:1;19658:15;19684:184;-1:-1:-1;;;19733:1:94;19726:88;19833:4;19830:1;19823:15;19857:4;19854:1;19847:15;19873:154;-1:-1:-1;;;;;19952:5:94;19948:54;19941:5;19938:65;19928:2;;20017:1;20014;20007:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "1572200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "GRACE_PERIOD()": "248",
                "claimRewards(address,uint256,uint8[])": "infinite",
                "createPromotion(address,uint64,uint256,uint48,uint8)": "infinite",
                "destroyPromotion(uint256,address)": "infinite",
                "endPromotion(uint256,address)": "infinite",
                "extendPromotion(uint256,uint8)": "infinite",
                "getCurrentEpochId(uint256)": "infinite",
                "getPromotion(uint256)": "infinite",
                "getRemainingRewards(uint256)": "infinite",
                "getRewardsAmount(address,uint256,uint8[])": "infinite",
                "ticket()": "infinite"
              },
              "internal": {
                "_calculateRewardAmount(address,struct ITwabRewards.Promotion memory,uint8)": "infinite",
                "_getCurrentEpochId(struct ITwabRewards.Promotion memory)": "infinite",
                "_getPromotion(uint256)": "infinite",
                "_getPromotionEndTimestamp(struct ITwabRewards.Promotion memory)": "infinite",
                "_getRemainingRewards(struct ITwabRewards.Promotion memory)": "infinite",
                "_isClaimedEpoch(uint256,uint8)": "infinite",
                "_requireNumberOfEpochs(uint8)": "infinite",
                "_requirePromotionActive(struct ITwabRewards.Promotion memory)": "infinite",
                "_requirePromotionCreator(struct ITwabRewards.Promotion memory)": "infinite",
                "_requireTicket(contract ITicket)": "infinite",
                "_updateClaimedEpoch(uint256,uint8)": "infinite"
              }
            },
            "methodIdentifiers": {
              "GRACE_PERIOD()": "c1a287e2",
              "claimRewards(address,uint256,uint8[])": "b2456c3a",
              "createPromotion(address,uint64,uint256,uint48,uint8)": "66cfae5e",
              "destroyPromotion(uint256,address)": "20555db1",
              "endPromotion(uint256,address)": "120468a0",
              "extendPromotion(uint256,uint8)": "096fe668",
              "getCurrentEpochId(uint256)": "f824d0fb",
              "getPromotion(uint256)": "14fdecca",
              "getRemainingRewards(uint256)": "a4958845",
              "getRewardsAmount(address,uint256,uint8[])": "0b011a16",
              "ticket()": "6cc25db7"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"_ticket\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"promotionId\",\"type\":\"uint256\"}],\"name\":\"PromotionCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"promotionId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"PromotionDestroyed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"promotionId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"epochNumber\",\"type\":\"uint8\"}],\"name\":\"PromotionEnded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"promotionId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"numberOfEpochs\",\"type\":\"uint256\"}],\"name\":\"PromotionExtended\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"promotionId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8[]\",\"name\":\"epochIds\",\"type\":\"uint8[]\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"GRACE_PERIOD\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"uint8[]\",\"name\":\"_epochIds\",\"type\":\"uint8[]\"}],\"name\":\"claimRewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_startTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"_tokensPerEpoch\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"_epochDuration\",\"type\":\"uint48\"},{\"internalType\":\"uint8\",\"name\":\"_numberOfEpochs\",\"type\":\"uint8\"}],\"name\":\"createPromotion\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"destroyPromotion\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"endPromotion\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"_numberOfEpochs\",\"type\":\"uint8\"}],\"name\":\"extendPromotion\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"}],\"name\":\"getCurrentEpochId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"}],\"name\":\"getPromotion\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"creator\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"startTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint8\",\"name\":\"numberOfEpochs\",\"type\":\"uint8\"},{\"internalType\":\"uint48\",\"name\":\"epochDuration\",\"type\":\"uint48\"},{\"internalType\":\"uint48\",\"name\":\"createdAt\",\"type\":\"uint48\"},{\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokensPerEpoch\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsUnclaimed\",\"type\":\"uint256\"}],\"internalType\":\"struct ITwabRewards.Promotion\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"}],\"name\":\"getRemainingRewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"uint8[]\",\"name\":\"_epochIds\",\"type\":\"uint8[]\"}],\"name\":\"getRewardsAmount\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"details\":\"This contract supports only one prize pool ticket.This contract does not support the use of fee on transfer tokens.\",\"events\":{\"PromotionCreated(uint256)\":{\"params\":{\"promotionId\":\"Id of the newly created promotion\"}},\"PromotionDestroyed(uint256,address,uint256)\":{\"params\":{\"amount\":\"Amount of tokens transferred to the recipient\",\"promotionId\":\"Id of the promotion being destroyed\",\"recipient\":\"Address of the recipient that will receive the unclaimed rewards\"}},\"PromotionEnded(uint256,address,uint256,uint8)\":{\"params\":{\"amount\":\"Amount of tokens transferred to the recipient\",\"epochNumber\":\"Epoch number at which the promotion ended\",\"promotionId\":\"Id of the promotion being ended\",\"recipient\":\"Address of the recipient that will receive the remaining rewards\"}},\"PromotionExtended(uint256,uint256)\":{\"params\":{\"numberOfEpochs\":\"Number of epochs the promotion has been extended by\",\"promotionId\":\"Id of the promotion being extended\"}},\"RewardsClaimed(uint256,uint8[],address,uint256)\":{\"params\":{\"amount\":\"Amount of tokens transferred to the recipient address\",\"epochIds\":\"Ids of the epochs being claimed\",\"promotionId\":\"Id of the promotion for which epoch rewards were claimed\",\"user\":\"Address of the user for which the rewards were claimed\"}}},\"kind\":\"dev\",\"methods\":{\"claimRewards(address,uint256,uint8[])\":{\"details\":\"Rewards can be claimed on behalf of a user.Rewards can only be claimed for a past epoch.\",\"params\":{\"_epochIds\":\"Epoch ids to claim rewards for\",\"_promotionId\":\"Id of the promotion to claim rewards for\",\"_user\":\"Address of the user to claim rewards for\"},\"returns\":{\"_0\":\"Total amount of rewards claimed\"}},\"constructor\":{\"params\":{\"_ticket\":\"Prize Pool ticket address for which the promotions will be created\"}},\"createPromotion(address,uint64,uint256,uint48,uint8)\":{\"details\":\"For sake of simplicity, `msg.sender` will be the creator of the promotion.`_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc.The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`. This scenario could happen if the token supplied is a fee on transfer one.\",\"params\":{\"_epochDuration\":\"Duration of one epoch in seconds\",\"_numberOfEpochs\":\"Number of epochs the promotion will last for\",\"_startTimestamp\":\"Timestamp at which the promotion starts\",\"_token\":\"Address of the token to be distributed\",\"_tokensPerEpoch\":\"Number of tokens to be distributed per epoch\"},\"returns\":{\"_0\":\"Id of the newly created promotion\"}},\"destroyPromotion(uint256,address)\":{\"details\":\"Will send back all the tokens that have not been claimed yet by users.This function will revert if the promotion is still active.This function will revert if the grace period is not over yet.\",\"params\":{\"_promotionId\":\"Promotion id to destroy\",\"_to\":\"Address that will receive the remaining tokens if there are any left\"},\"returns\":{\"_0\":\"True if operation was successful\"}},\"endPromotion(uint256,address)\":{\"details\":\"Will only send back tokens from the epochs that have not completed.\",\"params\":{\"_promotionId\":\"Promotion id to end\",\"_to\":\"Address that will receive the remaining tokens if there are any left\"},\"returns\":{\"_0\":\"true if operation was successful\"}},\"extendPromotion(uint256,uint8)\":{\"params\":{\"_numberOfEpochs\":\"Number of epochs to add\",\"_promotionId\":\"Id of the promotion to extend\"},\"returns\":{\"_0\":\"True if the operation was successful\"}},\"getCurrentEpochId(uint256)\":{\"details\":\"Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\",\"params\":{\"_promotionId\":\"Id of the promotion to get current epoch for\"},\"returns\":{\"_0\":\"Current epoch id of the promotion\"}},\"getPromotion(uint256)\":{\"params\":{\"_promotionId\":\"Id of the promotion to get settings for\"},\"returns\":{\"_0\":\"Promotion settings\"}},\"getRemainingRewards(uint256)\":{\"params\":{\"_promotionId\":\"Id of the promotion to get the total amount of tokens left to be rewarded for\"},\"returns\":{\"_0\":\"Amount of tokens left to be rewarded\"}},\"getRewardsAmount(address,uint256,uint8[])\":{\"details\":\"Rewards amount can only be retrieved for epochs that are over.Will revert if `_epochId` is over the total number of epochs or if epoch is not over.Will return 0 if the user average balance of tickets is 0.Will be 0 if user has already claimed rewards for the epoch.\",\"params\":{\"_epochIds\":\"Epoch ids to get reward amount for\",\"_promotionId\":\"Id of the promotion from which the epoch is\",\"_user\":\"Address of the user to get amount of rewards for\"},\"returns\":{\"_0\":\"Amount of tokens per epoch to be rewarded\"}}},\"stateVariables\":{\"_claimedEpochs\":{\"details\":\"_claimedEpochs[promotionId][user] => claimedEpochsWe pack epochs claimed by a user into a uint256. So we can't store more than 256 epochs.\"},\"_latestPromotionId\":{\"details\":\"Starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc.\"}},\"title\":\"PoolTogether V4 TwabRewards\",\"version\":1},\"userdoc\":{\"events\":{\"PromotionCreated(uint256)\":{\"notice\":\"Emitted when a promotion is created.\"},\"PromotionDestroyed(uint256,address,uint256)\":{\"notice\":\"Emitted when a promotion is destroyed.\"},\"PromotionEnded(uint256,address,uint256,uint8)\":{\"notice\":\"Emitted when a promotion is ended.\"},\"PromotionExtended(uint256,uint256)\":{\"notice\":\"Emitted when a promotion is extended.\"},\"RewardsClaimed(uint256,uint8[],address,uint256)\":{\"notice\":\"Emitted when rewards have been claimed.\"}},\"kind\":\"user\",\"methods\":{\"GRACE_PERIOD()\":{\"notice\":\"Period during which the promotion owner can't destroy a promotion.\"},\"claimRewards(address,uint256,uint8[])\":{\"notice\":\"Claim rewards for a given promotion and epoch.\"},\"constructor\":{\"notice\":\"Constructor of the contract.\"},\"createPromotion(address,uint64,uint256,uint48,uint8)\":{\"notice\":\"Creates a new promotion.\"},\"destroyPromotion(uint256,address)\":{\"notice\":\"Delete an inactive promotion and send promotion tokens back to the creator.\"},\"endPromotion(uint256,address)\":{\"notice\":\"End currently active promotion and send promotion tokens back to the creator.\"},\"extendPromotion(uint256,uint8)\":{\"notice\":\"Extend promotion by adding more epochs.\"},\"getCurrentEpochId(uint256)\":{\"notice\":\"Get the current epoch id of a promotion.\"},\"getPromotion(uint256)\":{\"notice\":\"Get settings for a specific promotion.\"},\"getRemainingRewards(uint256)\":{\"notice\":\"Get the total amount of tokens left to be rewarded.\"},\"getRewardsAmount(address,uint256,uint8[])\":{\"notice\":\"Get amount of tokens to be rewarded for a given epoch.\"},\"ticket()\":{\"notice\":\"Prize pool ticket for which the promotions are created.\"}},\"notice\":\"Contract to distribute rewards to depositors in a pool. This contract supports the creation of several promotions that can run simultaneously. In order to calculate user rewards, we use the TWAB (Time-Weighted Average Balance) from the Ticket contract. This way, users simply need to hold their tickets to be eligible to claim rewards. Rewards are calculated based on the average amount of tickets they hold during the epoch duration.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-periphery/contracts/TwabRewards.sol\":\"TwabRewards\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/TwabRewards.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\\\";\\n\\nimport \\\"./interfaces/ITwabRewards.sol\\\";\\n\\n/**\\n * @title PoolTogether V4 TwabRewards\\n * @author PoolTogether Inc Team\\n * @notice Contract to distribute rewards to depositors in a pool.\\n * This contract supports the creation of several promotions that can run simultaneously.\\n * In order to calculate user rewards, we use the TWAB (Time-Weighted Average Balance) from the Ticket contract.\\n * This way, users simply need to hold their tickets to be eligible to claim rewards.\\n * Rewards are calculated based on the average amount of tickets they hold during the epoch duration.\\n * @dev This contract supports only one prize pool ticket.\\n * @dev This contract does not support the use of fee on transfer tokens.\\n */\\ncontract TwabRewards is ITwabRewards {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Prize pool ticket for which the promotions are created.\\n    ITicket public immutable ticket;\\n\\n    /// @notice Period during which the promotion owner can't destroy a promotion.\\n    uint32 public constant GRACE_PERIOD = 60 days;\\n\\n    /// @notice Settings of each promotion.\\n    mapping(uint256 => Promotion) internal _promotions;\\n\\n    /**\\n     * @notice Latest recorded promotion id.\\n     * @dev Starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc.\\n     */\\n    uint256 internal _latestPromotionId;\\n\\n    /**\\n     * @notice Keeps track of claimed rewards per user.\\n     * @dev _claimedEpochs[promotionId][user] => claimedEpochs\\n     * @dev We pack epochs claimed by a user into a uint256. So we can't store more than 256 epochs.\\n     */\\n    mapping(uint256 => mapping(address => uint256)) internal _claimedEpochs;\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Emitted when a promotion is created.\\n     * @param promotionId Id of the newly created promotion\\n     */\\n    event PromotionCreated(uint256 indexed promotionId);\\n\\n    /**\\n     * @notice Emitted when a promotion is ended.\\n     * @param promotionId Id of the promotion being ended\\n     * @param recipient Address of the recipient that will receive the remaining rewards\\n     * @param amount Amount of tokens transferred to the recipient\\n     * @param epochNumber Epoch number at which the promotion ended\\n     */\\n    event PromotionEnded(\\n        uint256 indexed promotionId,\\n        address indexed recipient,\\n        uint256 amount,\\n        uint8 epochNumber\\n    );\\n\\n    /**\\n     * @notice Emitted when a promotion is destroyed.\\n     * @param promotionId Id of the promotion being destroyed\\n     * @param recipient Address of the recipient that will receive the unclaimed rewards\\n     * @param amount Amount of tokens transferred to the recipient\\n     */\\n    event PromotionDestroyed(\\n        uint256 indexed promotionId,\\n        address indexed recipient,\\n        uint256 amount\\n    );\\n\\n    /**\\n     * @notice Emitted when a promotion is extended.\\n     * @param promotionId Id of the promotion being extended\\n     * @param numberOfEpochs Number of epochs the promotion has been extended by\\n     */\\n    event PromotionExtended(uint256 indexed promotionId, uint256 numberOfEpochs);\\n\\n    /**\\n     * @notice Emitted when rewards have been claimed.\\n     * @param promotionId Id of the promotion for which epoch rewards were claimed\\n     * @param epochIds Ids of the epochs being claimed\\n     * @param user Address of the user for which the rewards were claimed\\n     * @param amount Amount of tokens transferred to the recipient address\\n     */\\n    event RewardsClaimed(\\n        uint256 indexed promotionId,\\n        uint8[] epochIds,\\n        address indexed user,\\n        uint256 amount\\n    );\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor of the contract.\\n     * @param _ticket Prize Pool ticket address for which the promotions will be created\\n     */\\n    constructor(ITicket _ticket) {\\n        _requireTicket(_ticket);\\n        ticket = _ticket;\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc ITwabRewards\\n    function createPromotion(\\n        IERC20 _token,\\n        uint64 _startTimestamp,\\n        uint256 _tokensPerEpoch,\\n        uint48 _epochDuration,\\n        uint8 _numberOfEpochs\\n    ) external override returns (uint256) {\\n        require(_tokensPerEpoch > 0, \\\"TwabRewards/tokens-not-zero\\\");\\n        require(_epochDuration > 0, \\\"TwabRewards/duration-not-zero\\\");\\n        _requireNumberOfEpochs(_numberOfEpochs);\\n\\n        uint256 _nextPromotionId = _latestPromotionId + 1;\\n        _latestPromotionId = _nextPromotionId;\\n\\n        uint256 _amount = _tokensPerEpoch * _numberOfEpochs;\\n\\n        _promotions[_nextPromotionId] = Promotion({\\n            creator: msg.sender,\\n            startTimestamp: _startTimestamp,\\n            numberOfEpochs: _numberOfEpochs,\\n            epochDuration: _epochDuration,\\n            createdAt: uint48(block.timestamp),\\n            token: _token,\\n            tokensPerEpoch: _tokensPerEpoch,\\n            rewardsUnclaimed: _amount\\n        });\\n\\n        uint256 _beforeBalance = _token.balanceOf(address(this));\\n\\n        _token.safeTransferFrom(msg.sender, address(this), _amount);\\n\\n        uint256 _afterBalance = _token.balanceOf(address(this));\\n\\n        require(_beforeBalance + _amount == _afterBalance, \\\"TwabRewards/promo-amount-diff\\\");\\n\\n        emit PromotionCreated(_nextPromotionId);\\n\\n        return _nextPromotionId;\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function endPromotion(uint256 _promotionId, address _to) external override returns (bool) {\\n        require(_to != address(0), \\\"TwabRewards/payee-not-zero-addr\\\");\\n\\n        Promotion memory _promotion = _getPromotion(_promotionId);\\n        _requirePromotionCreator(_promotion);\\n        _requirePromotionActive(_promotion);\\n\\n        uint8 _epochNumber = uint8(_getCurrentEpochId(_promotion));\\n        _promotions[_promotionId].numberOfEpochs = _epochNumber;\\n\\n        uint256 _remainingRewards = _getRemainingRewards(_promotion);\\n        _promotion.token.safeTransfer(_to, _remainingRewards);\\n\\n        emit PromotionEnded(_promotionId, _to, _remainingRewards, _epochNumber);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function destroyPromotion(uint256 _promotionId, address _to) external override returns (bool) {\\n        require(_to != address(0), \\\"TwabRewards/payee-not-zero-addr\\\");\\n\\n        Promotion memory _promotion = _getPromotion(_promotionId);\\n        _requirePromotionCreator(_promotion);\\n\\n        uint256 _promotionEndTimestamp = _getPromotionEndTimestamp(_promotion);\\n        uint256 _promotionCreatedAt = _promotion.createdAt;\\n\\n        uint256 _gracePeriodEndTimestamp = (\\n            _promotionEndTimestamp < _promotionCreatedAt\\n                ? _promotionCreatedAt\\n                : _promotionEndTimestamp\\n        ) + GRACE_PERIOD;\\n\\n        require(block.timestamp >= _gracePeriodEndTimestamp, \\\"TwabRewards/grace-period-active\\\");\\n\\n        uint256 _rewardsUnclaimed = _promotion.rewardsUnclaimed;\\n        delete _promotions[_promotionId];\\n\\n        _promotion.token.safeTransfer(_to, _rewardsUnclaimed);\\n\\n        emit PromotionDestroyed(_promotionId, _to, _rewardsUnclaimed);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function extendPromotion(uint256 _promotionId, uint8 _numberOfEpochs)\\n        external\\n        override\\n        returns (bool)\\n    {\\n        _requireNumberOfEpochs(_numberOfEpochs);\\n\\n        Promotion memory _promotion = _getPromotion(_promotionId);\\n        _requirePromotionActive(_promotion);\\n\\n        uint8 _currentNumberOfEpochs = _promotion.numberOfEpochs;\\n\\n        require(\\n            _numberOfEpochs <= (type(uint8).max - _currentNumberOfEpochs),\\n            \\\"TwabRewards/epochs-over-limit\\\"\\n        );\\n\\n        _promotions[_promotionId].numberOfEpochs = _currentNumberOfEpochs + _numberOfEpochs;\\n\\n        uint256 _amount = _numberOfEpochs * _promotion.tokensPerEpoch;\\n\\n        _promotions[_promotionId].rewardsUnclaimed += _amount;\\n        _promotion.token.safeTransferFrom(msg.sender, address(this), _amount);\\n\\n        emit PromotionExtended(_promotionId, _numberOfEpochs);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function claimRewards(\\n        address _user,\\n        uint256 _promotionId,\\n        uint8[] calldata _epochIds\\n    ) external override returns (uint256) {\\n        Promotion memory _promotion = _getPromotion(_promotionId);\\n\\n        uint256 _rewardsAmount;\\n        uint256 _userClaimedEpochs = _claimedEpochs[_promotionId][_user];\\n        uint256 _epochIdsLength = _epochIds.length;\\n\\n        for (uint256 index = 0; index < _epochIdsLength; index++) {\\n            uint8 _epochId = _epochIds[index];\\n\\n            require(!_isClaimedEpoch(_userClaimedEpochs, _epochId), \\\"TwabRewards/rewards-claimed\\\");\\n\\n            _rewardsAmount += _calculateRewardAmount(_user, _promotion, _epochId);\\n            _userClaimedEpochs = _updateClaimedEpoch(_userClaimedEpochs, _epochId);\\n        }\\n\\n        _claimedEpochs[_promotionId][_user] = _userClaimedEpochs;\\n        _promotions[_promotionId].rewardsUnclaimed -= _rewardsAmount;\\n\\n        _promotion.token.safeTransfer(_user, _rewardsAmount);\\n\\n        emit RewardsClaimed(_promotionId, _epochIds, _user, _rewardsAmount);\\n\\n        return _rewardsAmount;\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function getPromotion(uint256 _promotionId) external view override returns (Promotion memory) {\\n        return _getPromotion(_promotionId);\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function getCurrentEpochId(uint256 _promotionId) external view override returns (uint256) {\\n        return _getCurrentEpochId(_getPromotion(_promotionId));\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function getRemainingRewards(uint256 _promotionId) external view override returns (uint256) {\\n        return _getRemainingRewards(_getPromotion(_promotionId));\\n    }\\n\\n    /// @inheritdoc ITwabRewards\\n    function getRewardsAmount(\\n        address _user,\\n        uint256 _promotionId,\\n        uint8[] calldata _epochIds\\n    ) external view override returns (uint256[] memory) {\\n        Promotion memory _promotion = _getPromotion(_promotionId);\\n\\n        uint256 _epochIdsLength = _epochIds.length;\\n        uint256[] memory _rewardsAmount = new uint256[](_epochIdsLength);\\n\\n        for (uint256 index = 0; index < _epochIdsLength; index++) {\\n            if (_isClaimedEpoch(_claimedEpochs[_promotionId][_user], uint8(index))) {\\n                _rewardsAmount[index] = 0;\\n            } else {\\n                _rewardsAmount[index] = _calculateRewardAmount(_user, _promotion, _epochIds[index]);\\n            }\\n        }\\n\\n        return _rewardsAmount;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Determine if address passed is actually a ticket.\\n     * @param _ticket Address to check\\n     */\\n    function _requireTicket(ITicket _ticket) internal view {\\n        require(address(_ticket) != address(0), \\\"TwabRewards/ticket-not-zero-addr\\\");\\n\\n        (bool succeeded, bytes memory data) = address(_ticket).staticcall(\\n            abi.encodePacked(_ticket.controller.selector)\\n        );\\n\\n        require(\\n            succeeded && data.length > 0 && abi.decode(data, (uint160)) != 0,\\n            \\\"TwabRewards/invalid-ticket\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Allow a promotion to be created or extended only by a positive number of epochs.\\n     * @param _numberOfEpochs Number of epochs to check\\n     */\\n    function _requireNumberOfEpochs(uint8 _numberOfEpochs) internal pure {\\n        require(_numberOfEpochs > 0, \\\"TwabRewards/epochs-not-zero\\\");\\n    }\\n\\n    /**\\n     * @notice Determine if a promotion is active.\\n     * @param _promotion Promotion to check\\n     */\\n    function _requirePromotionActive(Promotion memory _promotion) internal view {\\n        require(\\n            _getPromotionEndTimestamp(_promotion) > block.timestamp,\\n            \\\"TwabRewards/promotion-inactive\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Determine if msg.sender is the promotion creator.\\n     * @param _promotion Promotion to check\\n     */\\n    function _requirePromotionCreator(Promotion memory _promotion) internal view {\\n        require(msg.sender == _promotion.creator, \\\"TwabRewards/only-promo-creator\\\");\\n    }\\n\\n    /**\\n     * @notice Get settings for a specific promotion.\\n     * @dev Will revert if the promotion does not exist.\\n     * @param _promotionId Promotion id to get settings for\\n     * @return Promotion settings\\n     */\\n    function _getPromotion(uint256 _promotionId) internal view returns (Promotion memory) {\\n        Promotion memory _promotion = _promotions[_promotionId];\\n        require(_promotion.creator != address(0), \\\"TwabRewards/invalid-promotion\\\");\\n        return _promotion;\\n    }\\n\\n    /**\\n     * @notice Compute promotion end timestamp.\\n     * @param _promotion Promotion to compute end timestamp for\\n     * @return Promotion end timestamp\\n     */\\n    function _getPromotionEndTimestamp(Promotion memory _promotion)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        unchecked {\\n            return\\n                _promotion.startTimestamp + (_promotion.epochDuration * _promotion.numberOfEpochs);\\n        }\\n    }\\n\\n    /**\\n     * @notice Get the current epoch id of a promotion.\\n     * @dev Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\\n     * @dev We return the current epoch id if the promotion has not ended.\\n     * If the current timestamp is before the promotion start timestamp, we return 0.\\n     * Otherwise, we return the epoch id at the current timestamp. This could be greater than the number of epochs of the promotion.\\n     * @param _promotion Promotion to get current epoch for\\n     * @return Epoch id\\n     */\\n    function _getCurrentEpochId(Promotion memory _promotion) internal view returns (uint256) {\\n        uint256 _currentEpochId;\\n\\n        if (block.timestamp > _promotion.startTimestamp) {\\n            unchecked {\\n                _currentEpochId =\\n                    (block.timestamp - _promotion.startTimestamp) /\\n                    _promotion.epochDuration;\\n            }\\n        }\\n\\n        return _currentEpochId;\\n    }\\n\\n    /**\\n     * @notice Get reward amount for a specific user.\\n     * @dev Rewards can only be calculated once the epoch is over.\\n     * @dev Will revert if `_epochId` is over the total number of epochs or if epoch is not over.\\n     * @dev Will return 0 if the user average balance of tickets is 0.\\n     * @param _user User to get reward amount for\\n     * @param _promotion Promotion from which the epoch is\\n     * @param _epochId Epoch id to get reward amount for\\n     * @return Reward amount\\n     */\\n    function _calculateRewardAmount(\\n        address _user,\\n        Promotion memory _promotion,\\n        uint8 _epochId\\n    ) internal view returns (uint256) {\\n        uint64 _epochDuration = _promotion.epochDuration;\\n        uint64 _epochStartTimestamp = _promotion.startTimestamp + (_epochDuration * _epochId);\\n        uint64 _epochEndTimestamp = _epochStartTimestamp + _epochDuration;\\n\\n        require(block.timestamp >= _epochEndTimestamp, \\\"TwabRewards/epoch-not-over\\\");\\n        require(_epochId < _promotion.numberOfEpochs, \\\"TwabRewards/invalid-epoch-id\\\");\\n\\n        uint256 _averageBalance = ticket.getAverageBalanceBetween(\\n            _user,\\n            _epochStartTimestamp,\\n            _epochEndTimestamp\\n        );\\n\\n        if (_averageBalance > 0) {\\n            uint64[] memory _epochStartTimestamps = new uint64[](1);\\n            _epochStartTimestamps[0] = _epochStartTimestamp;\\n\\n            uint64[] memory _epochEndTimestamps = new uint64[](1);\\n            _epochEndTimestamps[0] = _epochEndTimestamp;\\n\\n            uint256 _averageTotalSupply = ticket.getAverageTotalSuppliesBetween(\\n                _epochStartTimestamps,\\n                _epochEndTimestamps\\n            )[0];\\n\\n            return (_promotion.tokensPerEpoch * _averageBalance) / _averageTotalSupply;\\n        }\\n\\n        return 0;\\n    }\\n\\n    /**\\n     * @notice Get the total amount of tokens left to be rewarded.\\n     * @param _promotion Promotion to get the total amount of tokens left to be rewarded for\\n     * @return Amount of tokens left to be rewarded\\n     */\\n    function _getRemainingRewards(Promotion memory _promotion) internal view returns (uint256) {\\n        if (block.timestamp > _getPromotionEndTimestamp(_promotion)) {\\n            return 0;\\n        }\\n\\n        return\\n            _promotion.tokensPerEpoch *\\n            (_promotion.numberOfEpochs - _getCurrentEpochId(_promotion));\\n    }\\n\\n    /**\\n    * @notice Set boolean value for a specific epoch.\\n    * @dev Bits are stored in a uint256 from right to left.\\n        Let's take the example of the following 8 bits word. 0110 0011\\n        To set the boolean value to 1 for the epoch id 2, we need to create a mask by shifting 1 to the left by 2 bits.\\n        We get: 0000 0001 << 2 = 0000 0100\\n        We then OR the mask with the word to set the value.\\n        We get: 0110 0011 | 0000 0100 = 0110 0111\\n    * @param _userClaimedEpochs Tightly packed epoch ids with their boolean values\\n    * @param _epochId Id of the epoch to set the boolean for\\n    * @return Tightly packed epoch ids with the newly boolean value set\\n    */\\n    function _updateClaimedEpoch(uint256 _userClaimedEpochs, uint8 _epochId)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return _userClaimedEpochs | (uint256(1) << _epochId);\\n    }\\n\\n    /**\\n    * @notice Check if rewards of an epoch for a given promotion have already been claimed by the user.\\n    * @dev Bits are stored in a uint256 from right to left.\\n        Let's take the example of the following 8 bits word. 0110 0111\\n        To retrieve the boolean value for the epoch id 2, we need to shift the word to the right by 2 bits.\\n        We get: 0110 0111 >> 2 = 0001 1001\\n        We then get the value of the last bit by masking with 1.\\n        We get: 0001 1001 & 0000 0001 = 0000 0001 = 1\\n        We then return the boolean value true since the last bit is 1.\\n    * @param _userClaimedEpochs Record of epochs already claimed by the user\\n    * @param _epochId Epoch id to check\\n    * @return true if the rewards have already been claimed for the given epoch, false otherwise\\n     */\\n    function _isClaimedEpoch(uint256 _userClaimedEpochs, uint8 _epochId)\\n        internal\\n        pure\\n        returns (bool)\\n    {\\n        return (_userClaimedEpochs >> _epochId) & uint256(1) == 1;\\n    }\\n}\\n\",\"keccak256\":\"0x3700cb7657174461ff5b496bbb3aa481275b6aa692dd62f33e726f1255d39d0b\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 ITwabRewards\\n * @author PoolTogether Inc Team\\n * @notice TwabRewards contract interface.\\n */\\ninterface ITwabRewards {\\n    /**\\n     * @notice Struct to keep track of each promotion's settings.\\n     * @param creator Addresss of the promotion creator\\n     * @param startTimestamp Timestamp at which the promotion starts\\n     * @param numberOfEpochs Number of epochs the promotion will last for\\n     * @param epochDuration Duration of one epoch in seconds\\n     * @param createdAt Timestamp at which the promotion was created\\n     * @param token Address of the token to be distributed as reward\\n     * @param tokensPerEpoch Number of tokens to be distributed per epoch\\n     * @param rewardsUnclaimed Amount of rewards that have not been claimed yet\\n     */\\n    struct Promotion {\\n        address creator;\\n        uint64 startTimestamp;\\n        uint8 numberOfEpochs;\\n        uint48 epochDuration;\\n        uint48 createdAt;\\n        IERC20 token;\\n        uint256 tokensPerEpoch;\\n        uint256 rewardsUnclaimed;\\n    }\\n\\n    /**\\n     * @notice Creates a new promotion.\\n     * @dev For sake of simplicity, `msg.sender` will be the creator of the promotion.\\n     * @dev `_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion.\\n     * So the first promotion will have id 1, the second 2, etc.\\n     * @dev The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`.\\n     * This scenario could happen if the token supplied is a fee on transfer one.\\n     * @param _token Address of the token to be distributed\\n     * @param _startTimestamp Timestamp at which the promotion starts\\n     * @param _tokensPerEpoch Number of tokens to be distributed per epoch\\n     * @param _epochDuration Duration of one epoch in seconds\\n     * @param _numberOfEpochs Number of epochs the promotion will last for\\n     * @return Id of the newly created promotion\\n     */\\n    function createPromotion(\\n        IERC20 _token,\\n        uint64 _startTimestamp,\\n        uint256 _tokensPerEpoch,\\n        uint48 _epochDuration,\\n        uint8 _numberOfEpochs\\n    ) external returns (uint256);\\n\\n    /**\\n     * @notice End currently active promotion and send promotion tokens back to the creator.\\n     * @dev Will only send back tokens from the epochs that have not completed.\\n     * @param _promotionId Promotion id to end\\n     * @param _to Address that will receive the remaining tokens if there are any left\\n     * @return true if operation was successful\\n     */\\n    function endPromotion(uint256 _promotionId, address _to) external returns (bool);\\n\\n    /**\\n     * @notice Delete an inactive promotion and send promotion tokens back to the creator.\\n     * @dev Will send back all the tokens that have not been claimed yet by users.\\n     * @dev This function will revert if the promotion is still active.\\n     * @dev This function will revert if the grace period is not over yet.\\n     * @param _promotionId Promotion id to destroy\\n     * @param _to Address that will receive the remaining tokens if there are any left\\n     * @return True if operation was successful\\n     */\\n    function destroyPromotion(uint256 _promotionId, address _to) external returns (bool);\\n\\n    /**\\n     * @notice Extend promotion by adding more epochs.\\n     * @param _promotionId Id of the promotion to extend\\n     * @param _numberOfEpochs Number of epochs to add\\n     * @return True if the operation was successful\\n     */\\n    function extendPromotion(uint256 _promotionId, uint8 _numberOfEpochs) external returns (bool);\\n\\n    /**\\n     * @notice Claim rewards for a given promotion and epoch.\\n     * @dev Rewards can be claimed on behalf of a user.\\n     * @dev Rewards can only be claimed for a past epoch.\\n     * @param _user Address of the user to claim rewards for\\n     * @param _promotionId Id of the promotion to claim rewards for\\n     * @param _epochIds Epoch ids to claim rewards for\\n     * @return Total amount of rewards claimed\\n     */\\n    function claimRewards(\\n        address _user,\\n        uint256 _promotionId,\\n        uint8[] calldata _epochIds\\n    ) external returns (uint256);\\n\\n    /**\\n     * @notice Get settings for a specific promotion.\\n     * @param _promotionId Id of the promotion to get settings for\\n     * @return Promotion settings\\n     */\\n    function getPromotion(uint256 _promotionId) external view returns (Promotion memory);\\n\\n    /**\\n     * @notice Get the current epoch id of a promotion.\\n     * @dev Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\\n     * @param _promotionId Id of the promotion to get current epoch for\\n     * @return Current epoch id of the promotion\\n     */\\n    function getCurrentEpochId(uint256 _promotionId) external view returns (uint256);\\n\\n    /**\\n     * @notice Get the total amount of tokens left to be rewarded.\\n     * @param _promotionId Id of the promotion to get the total amount of tokens left to be rewarded for\\n     * @return Amount of tokens left to be rewarded\\n     */\\n    function getRemainingRewards(uint256 _promotionId) external view returns (uint256);\\n\\n    /**\\n     * @notice Get amount of tokens to be rewarded for a given epoch.\\n     * @dev Rewards amount can only be retrieved for epochs that are over.\\n     * @dev Will revert if `_epochId` is over the total number of epochs or if epoch is not over.\\n     * @dev Will return 0 if the user average balance of tickets is 0.\\n     * @dev Will be 0 if user has already claimed rewards for the epoch.\\n     * @param _user Address of the user to get amount of rewards for\\n     * @param _promotionId Id of the promotion from which the epoch is\\n     * @param _epochIds Epoch ids to get reward amount for\\n     * @return Amount of tokens per epoch to be rewarded\\n     */\\n    function getRewardsAmount(\\n        address _user,\\n        uint256 _promotionId,\\n        uint8[] calldata _epochIds\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xbd96f3c1f80c16b2dcfbe0e9c3fd281044fef93c1db4d4c9d56dc3e2bf7ec47d\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 14102,
                "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                "label": "_promotions",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_uint256,t_struct(Promotion)15393_storage)"
              },
              {
                "astId": 14105,
                "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                "label": "_latestPromotionId",
                "offset": 0,
                "slot": "1",
                "type": "t_uint256"
              },
              {
                "astId": 14112,
                "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                "label": "_claimedEpochs",
                "offset": 0,
                "slot": "2",
                "type": "t_mapping(t_uint256,t_mapping(t_address,t_uint256))"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IERC20)663": {
                "encoding": "inplace",
                "label": "contract IERC20",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_mapping(t_uint256,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_uint256",
                "label": "mapping(uint256 => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_uint256,t_struct(Promotion)15393_storage)": {
                "encoding": "mapping",
                "key": "t_uint256",
                "label": "mapping(uint256 => struct ITwabRewards.Promotion)",
                "numberOfBytes": "32",
                "value": "t_struct(Promotion)15393_storage"
              },
              "t_struct(Promotion)15393_storage": {
                "encoding": "inplace",
                "label": "struct ITwabRewards.Promotion",
                "members": [
                  {
                    "astId": 15377,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "creator",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 15379,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "startTimestamp",
                    "offset": 20,
                    "slot": "0",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 15381,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "numberOfEpochs",
                    "offset": 28,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 15383,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "epochDuration",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_uint48"
                  },
                  {
                    "astId": 15385,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "createdAt",
                    "offset": 6,
                    "slot": "1",
                    "type": "t_uint48"
                  },
                  {
                    "astId": 15388,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "token",
                    "offset": 12,
                    "slot": "1",
                    "type": "t_contract(IERC20)663"
                  },
                  {
                    "astId": 15390,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "tokensPerEpoch",
                    "offset": 0,
                    "slot": "2",
                    "type": "t_uint256"
                  },
                  {
                    "astId": 15392,
                    "contract": "@pooltogether/v4-periphery/contracts/TwabRewards.sol:TwabRewards",
                    "label": "rewardsUnclaimed",
                    "offset": 0,
                    "slot": "3",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "128"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint48": {
                "encoding": "inplace",
                "label": "uint48",
                "numberOfBytes": "6"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "events": {
              "PromotionCreated(uint256)": {
                "notice": "Emitted when a promotion is created."
              },
              "PromotionDestroyed(uint256,address,uint256)": {
                "notice": "Emitted when a promotion is destroyed."
              },
              "PromotionEnded(uint256,address,uint256,uint8)": {
                "notice": "Emitted when a promotion is ended."
              },
              "PromotionExtended(uint256,uint256)": {
                "notice": "Emitted when a promotion is extended."
              },
              "RewardsClaimed(uint256,uint8[],address,uint256)": {
                "notice": "Emitted when rewards have been claimed."
              }
            },
            "kind": "user",
            "methods": {
              "GRACE_PERIOD()": {
                "notice": "Period during which the promotion owner can't destroy a promotion."
              },
              "claimRewards(address,uint256,uint8[])": {
                "notice": "Claim rewards for a given promotion and epoch."
              },
              "constructor": {
                "notice": "Constructor of the contract."
              },
              "createPromotion(address,uint64,uint256,uint48,uint8)": {
                "notice": "Creates a new promotion."
              },
              "destroyPromotion(uint256,address)": {
                "notice": "Delete an inactive promotion and send promotion tokens back to the creator."
              },
              "endPromotion(uint256,address)": {
                "notice": "End currently active promotion and send promotion tokens back to the creator."
              },
              "extendPromotion(uint256,uint8)": {
                "notice": "Extend promotion by adding more epochs."
              },
              "getCurrentEpochId(uint256)": {
                "notice": "Get the current epoch id of a promotion."
              },
              "getPromotion(uint256)": {
                "notice": "Get settings for a specific promotion."
              },
              "getRemainingRewards(uint256)": {
                "notice": "Get the total amount of tokens left to be rewarded."
              },
              "getRewardsAmount(address,uint256,uint8[])": {
                "notice": "Get amount of tokens to be rewarded for a given epoch."
              },
              "ticket()": {
                "notice": "Prize pool ticket for which the promotions are created."
              }
            },
            "notice": "Contract to distribute rewards to depositors in a pool. This contract supports the creation of several promotions that can run simultaneously. In order to calculate user rewards, we use the TWAB (Time-Weighted Average Balance) from the Ticket contract. This way, users simply need to hold their tickets to be eligible to claim rewards. Rewards are calculated based on the average amount of tickets they hold during the epoch duration.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol": {
        "IPrizeFlush": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "address",
                  "name": "destination",
                  "type": "address"
                }
              ],
              "name": "DestinationSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "destination",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Flushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "contract IReserve",
                  "name": "reserve",
                  "type": "address"
                }
              ],
              "name": "ReserveSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "contract IStrategy",
                  "name": "strategy",
                  "type": "address"
                }
              ],
              "name": "StrategySet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "flush",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDestination",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getReserve",
              "outputs": [
                {
                  "internalType": "contract IReserve",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getStrategy",
              "outputs": [
                {
                  "internalType": "contract IStrategy",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_destination",
                  "type": "address"
                }
              ],
              "name": "setDestination",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IReserve",
                  "name": "_reserve",
                  "type": "address"
                }
              ],
              "name": "setReserve",
              "outputs": [
                {
                  "internalType": "contract IReserve",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IStrategy",
                  "name": "_strategy",
                  "type": "address"
                }
              ],
              "name": "setStrategy",
              "outputs": [
                {
                  "internalType": "contract IStrategy",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "DestinationSet(address)": {
                "params": {
                  "destination": "Destination address"
                }
              },
              "Flushed(address,uint256)": {
                "params": {
                  "amount": "Amount of tokens transferred",
                  "destination": "Address receiving funds"
                }
              },
              "ReserveSet(address)": {
                "params": {
                  "reserve": "Reserve address"
                }
              },
              "StrategySet(address)": {
                "params": {
                  "strategy": "Strategy address"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "flush()": {
                "details": "Captures interest, checkpoint data and transfers tokens to final destination.",
                "returns": {
                  "_0": "True if operation is successful."
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "flush()": "6b9f96ea",
              "getDestination()": "16ad9542",
              "getReserve()": "59bf5d39",
              "getStrategy()": "07da0603",
              "setDestination(address)": "0a0a05e6",
              "setReserve(address)": "9cecc80a",
              "setStrategy(address)": "33a100ca"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"DestinationSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Flushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IReserve\",\"name\":\"reserve\",\"type\":\"address\"}],\"name\":\"ReserveSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IStrategy\",\"name\":\"strategy\",\"type\":\"address\"}],\"name\":\"StrategySet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"flush\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDestination\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getReserve\",\"outputs\":[{\"internalType\":\"contract IReserve\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getStrategy\",\"outputs\":[{\"internalType\":\"contract IStrategy\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_destination\",\"type\":\"address\"}],\"name\":\"setDestination\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IReserve\",\"name\":\"_reserve\",\"type\":\"address\"}],\"name\":\"setReserve\",\"outputs\":[{\"internalType\":\"contract IReserve\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IStrategy\",\"name\":\"_strategy\",\"type\":\"address\"}],\"name\":\"setStrategy\",\"outputs\":[{\"internalType\":\"contract IStrategy\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"DestinationSet(address)\":{\"params\":{\"destination\":\"Destination address\"}},\"Flushed(address,uint256)\":{\"params\":{\"amount\":\"Amount of tokens transferred\",\"destination\":\"Address receiving funds\"}},\"ReserveSet(address)\":{\"params\":{\"reserve\":\"Reserve address\"}},\"StrategySet(address)\":{\"params\":{\"strategy\":\"Strategy address\"}}},\"kind\":\"dev\",\"methods\":{\"flush()\":{\"details\":\"Captures interest, checkpoint data and transfers tokens to final destination.\",\"returns\":{\"_0\":\"True if operation is successful.\"}}},\"version\":1},\"userdoc\":{\"events\":{\"DestinationSet(address)\":{\"notice\":\"Emit when destination is set.\"},\"Flushed(address,uint256)\":{\"notice\":\"Emit when the flush function has executed.\"},\"ReserveSet(address)\":{\"notice\":\"Emit when reserve is set.\"},\"StrategySet(address)\":{\"notice\":\"Emit when strategy is set.\"}},\"kind\":\"user\",\"methods\":{\"flush()\":{\"notice\":\"Migrate interest from PrizePool to PrizeDistributor in a single transaction.\"},\"getDestination()\":{\"notice\":\"Read global destination variable.\"},\"getReserve()\":{\"notice\":\"Read global reserve variable.\"},\"getStrategy()\":{\"notice\":\"Read global strategy variable.\"},\"setDestination(address)\":{\"notice\":\"Set global destination variable.\"},\"setReserve(address)\":{\"notice\":\"Set global reserve variable.\"},\"setStrategy(address)\":{\"notice\":\"Set global strategy variable.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol\":\"IPrizeFlush\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IReserve {\\n    /**\\n     * @notice Emit when checkpoint is created.\\n     * @param reserveAccumulated  Total depsosited\\n     * @param withdrawAccumulated Total withdrawn\\n     */\\n\\n    event Checkpoint(uint256 reserveAccumulated, uint256 withdrawAccumulated);\\n    /**\\n     * @notice Emit when the withdrawTo function has executed.\\n     * @param recipient Address receiving funds\\n     * @param amount    Amount of tokens transfered.\\n     */\\n    event Withdrawn(address indexed recipient, uint256 amount);\\n\\n    /**\\n     * @notice Create observation checkpoint in ring bufferr.\\n     * @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint.\\n     */\\n    function checkpoint() external;\\n\\n    /**\\n     * @notice Read global token value.\\n     * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n     * @notice Calculate token accumulation beween timestamp range.\\n     * @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\\n     * @param startTimestamp Account address\\n     * @param endTimestamp   Transfer amount\\n     */\\n    function getReserveAccumulatedBetween(uint32 startTimestamp, uint32 endTimestamp)\\n        external\\n        returns (uint224);\\n\\n    /**\\n     * @notice Transfer Reserve token balance to recipient address.\\n     * @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\\n     * @param recipient Account address\\n     * @param amount    Transfer amount\\n     */\\n    function withdrawTo(address recipient, uint256 amount) external;\\n}\\n\",\"keccak256\":\"0x630c99a29c1df33cf2cf9492ea8640e875fa6cbb46c53a9d1ce935567589fef6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\ninterface IStrategy {\\n    /**\\n     * @notice Emit when a strategy captures award amount from PrizePool.\\n     * @param totalPrizeCaptured  Total prize captured from the PrizePool\\n     */\\n    event Distributed(uint256 totalPrizeCaptured);\\n\\n    /**\\n     * @notice Capture the award balance and distribute to prize splits.\\n     * @dev    Permissionless function to initialize distribution of interst\\n     * @return Prize captured from PrizePool\\n     */\\n    function distribute() external returns (uint256);\\n}\\n\",\"keccak256\":\"0x3c30617be7a8c311c320fe3b50c77c4270333ddcfe5b01822fcbe85e2db4623e\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IReserve.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IStrategy.sol\\\";\\n\\ninterface IPrizeFlush {\\n    /**\\n     * @notice Emit when the flush function has executed.\\n     * @param destination Address receiving funds\\n     * @param amount      Amount of tokens transferred\\n     */\\n    event Flushed(address indexed destination, uint256 amount);\\n\\n    /**\\n     * @notice Emit when destination is set.\\n     * @param destination Destination address\\n     */\\n    event DestinationSet(address destination);\\n\\n    /**\\n     * @notice Emit when strategy is set.\\n     * @param strategy Strategy address\\n     */\\n    event StrategySet(IStrategy strategy);\\n\\n    /**\\n     * @notice Emit when reserve is set.\\n     * @param reserve Reserve address\\n     */\\n    event ReserveSet(IReserve reserve);\\n\\n    /// @notice Read global destination variable.\\n    function getDestination() external view returns (address);\\n\\n    /// @notice Read global reserve variable.\\n    function getReserve() external view returns (IReserve);\\n\\n    /// @notice Read global strategy variable.\\n    function getStrategy() external view returns (IStrategy);\\n\\n    /// @notice Set global destination variable.\\n    function setDestination(address _destination) external returns (address);\\n\\n    /// @notice Set global reserve variable.\\n    function setReserve(IReserve _reserve) external returns (IReserve);\\n\\n    /// @notice Set global strategy variable.\\n    function setStrategy(IStrategy _strategy) external returns (IStrategy);\\n\\n    /**\\n     * @notice Migrate interest from PrizePool to PrizeDistributor in a single transaction.\\n     * @dev    Captures interest, checkpoint data and transfers tokens to final destination.\\n     * @return True if operation is successful.\\n     */\\n    function flush() external returns (bool);\\n}\\n\",\"keccak256\":\"0x47e8eeec8e793380f0425e73146ef41db37bec21997bdf06e5016d8ff049de57\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "DestinationSet(address)": {
                "notice": "Emit when destination is set."
              },
              "Flushed(address,uint256)": {
                "notice": "Emit when the flush function has executed."
              },
              "ReserveSet(address)": {
                "notice": "Emit when reserve is set."
              },
              "StrategySet(address)": {
                "notice": "Emit when strategy is set."
              }
            },
            "kind": "user",
            "methods": {
              "flush()": {
                "notice": "Migrate interest from PrizePool to PrizeDistributor in a single transaction."
              },
              "getDestination()": {
                "notice": "Read global destination variable."
              },
              "getReserve()": {
                "notice": "Read global reserve variable."
              },
              "getStrategy()": {
                "notice": "Read global strategy variable."
              },
              "setDestination(address)": {
                "notice": "Set global destination variable."
              },
              "setReserve(address)": {
                "notice": "Set global reserve variable."
              },
              "setStrategy(address)": {
                "notice": "Set global strategy variable."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol": {
        "IPrizeTierHistory": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "PrizeTierPushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "PrizeTierSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "count",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getNewestDrawId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getOldestDrawId",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "name": "getPrizeTier",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "prizeTier",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "getPrizeTierAtIndex",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                }
              ],
              "name": "getPrizeTierList",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier[]",
                  "name": "prizeTierList",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "popAndPush",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "drawPrizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    }
                  ],
                  "internalType": "struct IPrizeTierHistory.PrizeTier",
                  "name": "_prizeTier",
                  "type": "tuple"
                }
              ],
              "name": "replace",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "PrizeTierPushed(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "params": {
                  "drawId": "Draw ID",
                  "prizeTier": "PrizeTier parameters"
                }
              },
              "PrizeTierSet(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "params": {
                  "drawId": "Draw ID",
                  "prizeTier": "PrizeTier parameters"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "count()": {
                "returns": {
                  "_0": "The number of prize tiers that have been pushed"
                }
              },
              "getOldestDrawId()": {
                "returns": {
                  "_0": "Draw ID of first PrizeTier record"
                }
              },
              "getPrizeTier(uint32)": {
                "params": {
                  "drawId": "Draw ID"
                },
                "returns": {
                  "prizeTier": "prizeTier"
                }
              },
              "getPrizeTierList(uint32[])": {
                "params": {
                  "drawIds": "Draw ID array"
                },
                "returns": {
                  "prizeTierList": "prizeTierList"
                }
              },
              "popAndPush((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "details": "Callable only by owner.",
                "params": {
                  "prizeTier": "Updated PrizeTierHistory struct"
                },
                "returns": {
                  "drawId": "Draw ID linked to PrizeTierHistory"
                }
              },
              "push((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "details": "Callable only by owner or manager,",
                "params": {
                  "drawPrizeDistribution": "New PrizeTierHistory struct"
                }
              }
            },
            "title": "PoolTogether V4 IPrizeTierHistory",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "count()": "06661abd",
              "getNewestDrawId()": "472b619c",
              "getOldestDrawId()": "39dd7f08",
              "getPrizeTier(uint32)": "4aac253d",
              "getPrizeTierAtIndex(uint256)": "e4dd2690",
              "getPrizeTierList(uint32[])": "4e602cd8",
              "popAndPush((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "f1143765",
              "push((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "3659f543",
              "replace((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": "d365027d"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"indexed\":false,\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"prizeTier\",\"type\":\"tuple\"}],\"name\":\"PrizeTierPushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"indexed\":false,\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"prizeTier\",\"type\":\"tuple\"}],\"name\":\"PrizeTierSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"count\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNewestDrawId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOldestDrawId\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"name\":\"getPrizeTier\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"prizeTier\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"getPrizeTierAtIndex\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"}],\"name\":\"getPrizeTierList\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier[]\",\"name\":\"prizeTierList\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"prizeTier\",\"type\":\"tuple\"}],\"name\":\"popAndPush\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"drawPrizeDistribution\",\"type\":\"tuple\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"}],\"internalType\":\"struct IPrizeTierHistory.PrizeTier\",\"name\":\"_prizeTier\",\"type\":\"tuple\"}],\"name\":\"replace\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"PrizeTierPushed(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"params\":{\"drawId\":\"Draw ID\",\"prizeTier\":\"PrizeTier parameters\"}},\"PrizeTierSet(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"params\":{\"drawId\":\"Draw ID\",\"prizeTier\":\"PrizeTier parameters\"}}},\"kind\":\"dev\",\"methods\":{\"count()\":{\"returns\":{\"_0\":\"The number of prize tiers that have been pushed\"}},\"getOldestDrawId()\":{\"returns\":{\"_0\":\"Draw ID of first PrizeTier record\"}},\"getPrizeTier(uint32)\":{\"params\":{\"drawId\":\"Draw ID\"},\"returns\":{\"prizeTier\":\"prizeTier\"}},\"getPrizeTierList(uint32[])\":{\"params\":{\"drawIds\":\"Draw ID array\"},\"returns\":{\"prizeTierList\":\"prizeTierList\"}},\"popAndPush((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"details\":\"Callable only by owner.\",\"params\":{\"prizeTier\":\"Updated PrizeTierHistory struct\"},\"returns\":{\"drawId\":\"Draw ID linked to PrizeTierHistory\"}},\"push((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"details\":\"Callable only by owner or manager,\",\"params\":{\"drawPrizeDistribution\":\"New PrizeTierHistory struct\"}}},\"title\":\"PoolTogether V4 IPrizeTierHistory\",\"version\":1},\"userdoc\":{\"events\":{\"PrizeTierPushed(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"notice\":\"Emit when new PrizeTier is added to history\"},\"PrizeTierSet(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"notice\":\"Emit when existing PrizeTier is updated in history\"}},\"kind\":\"user\",\"methods\":{\"count()\":{\"notice\":\"Returns the number of Prize Tier structs pushed\"},\"getOldestDrawId()\":{\"notice\":\"Read first Draw ID used to initialize history\"},\"getPrizeTier(uint32)\":{\"notice\":\"Read PrizeTierHistory struct from history array.\"},\"getPrizeTierList(uint32[])\":{\"notice\":\"Read PrizeTierHistory List from history array.\"},\"popAndPush((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"notice\":\"Push PrizeTierHistory struct onto history array.\"},\"push((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))\":{\"notice\":\"Push PrizeTierHistory struct onto history array.\"}},\"notice\":\"IPrizeTierHistory is the base contract for PrizeTierHistory\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol\":\"IPrizeTierHistory\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/DrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./interfaces/IDrawBuffer.sol\\\";\\n\\n\\n/**\\n  * @title  PoolTogether V4 DrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\\n            The DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\\n            To create a new Draw, the user requests a new random number from the RNG service.\\n            When the random number is available, the user can create the draw using the create() method\\n            which will push the draw onto the DrawBuffer.\\n            If the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request.\\n*/\\ncontract DrawBeacon is IDrawBeacon, Ownable {\\n    using SafeCast for uint256;\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Variables ============ */\\n\\n    /// @notice RNG contract interface\\n    RNGInterface internal rng;\\n\\n    /// @notice Current RNG Request\\n    RngRequest internal rngRequest;\\n\\n    /// @notice DrawBuffer address\\n    IDrawBuffer internal drawBuffer;\\n\\n    /**\\n     * @notice RNG Request Timeout.  In fact, this is really a \\\"complete draw\\\" timeout.\\n     * @dev If the rng completes the award can still be cancelled.\\n     */\\n    uint32 internal rngTimeout;\\n\\n    /// @notice Seconds between beacon period request\\n    uint32 internal beaconPeriodSeconds;\\n\\n    /// @notice Epoch timestamp when beacon period can start\\n    uint64 internal beaconPeriodStartedAt;\\n\\n    /**\\n     * @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\\n     * @dev Starts at 1. This way we know that no Draw has been recorded at 0.\\n     */\\n    uint32 internal nextDrawId;\\n\\n    /* ============ Structs ============ */\\n\\n    /**\\n     * @notice RNG Request\\n     * @param id          RNG request ID\\n     * @param lockBlock   Block number that the RNG request is locked\\n     * @param requestedAt Time when RNG is requested\\n     */\\n    struct RngRequest {\\n        uint32 id;\\n        uint32 lockBlock;\\n        uint64 requestedAt;\\n    }\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Emit when the DrawBeacon is deployed.\\n     * @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param beaconPeriodStartedAt Timestamp when beacon period starts.\\n     */\\n    event Deployed(\\n        uint32 nextDrawId,\\n        uint64 beaconPeriodStartedAt\\n    );\\n\\n    /* ============ Modifiers ============ */\\n\\n    modifier requireDrawNotStarted() {\\n        _requireDrawNotStarted();\\n        _;\\n    }\\n\\n    modifier requireCanStartDraw() {\\n        require(_isBeaconPeriodOver(), \\\"DrawBeacon/beacon-period-not-over\\\");\\n        require(!isRngRequested(), \\\"DrawBeacon/rng-already-requested\\\");\\n        _;\\n    }\\n\\n    modifier requireCanCompleteRngRequest() {\\n        require(isRngRequested(), \\\"DrawBeacon/rng-not-requested\\\");\\n        require(isRngCompleted(), \\\"DrawBeacon/rng-not-complete\\\");\\n        _;\\n    }\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Deploy the DrawBeacon smart contract.\\n     * @param _owner Address of the DrawBeacon owner\\n     * @param _drawBuffer The address of the draw buffer to push draws to\\n     * @param _rng The RNG service to use\\n     * @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\\n     * @param _beaconPeriodStart The starting timestamp of the beacon period.\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        RNGInterface _rng,\\n        uint32 _nextDrawId,\\n        uint64 _beaconPeriodStart,\\n        uint32 _beaconPeriodSeconds,\\n        uint32 _rngTimeout\\n    ) Ownable(_owner) {\\n        require(_beaconPeriodStart > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        require(address(_rng) != address(0), \\\"DrawBeacon/rng-not-zero\\\");\\n        require(_nextDrawId >= 1, \\\"DrawBeacon/next-draw-id-gte-one\\\");\\n\\n        beaconPeriodStartedAt = _beaconPeriodStart;\\n        nextDrawId = _nextDrawId;\\n\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n        _setDrawBuffer(_drawBuffer);\\n        _setRngService(_rng);\\n        _setRngTimeout(_rngTimeout);\\n\\n        emit Deployed(_nextDrawId, _beaconPeriodStart);\\n        emit BeaconPeriodStarted(_beaconPeriodStart);\\n    }\\n\\n    /* ============ Public Functions ============ */\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() public view override returns (bool) {\\n        return rng.isRequestComplete(rngRequest.id);\\n    }\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() public view override returns (bool) {\\n        return rngRequest.id != 0;\\n    }\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() public view override returns (bool) {\\n        if (rngRequest.requestedAt == 0) {\\n            return false;\\n        } else {\\n            return rngTimeout + rngRequest.requestedAt < _currentTime();\\n        }\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canStartDraw() external view override returns (bool) {\\n        return _isBeaconPeriodOver() && !isRngRequested();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function canCompleteDraw() external view override returns (bool) {\\n        return isRngRequested() && isRngCompleted();\\n    }\\n\\n    /// @notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\\n    /// @return The next beacon period start time\\n    function calculateNextBeaconPeriodStartTimeFromCurrentTime() external view returns (uint64) {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _currentTime()\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function calculateNextBeaconPeriodStartTime(uint64 _time)\\n        external\\n        view\\n        override\\n        returns (uint64)\\n    {\\n        return\\n            _calculateNextBeaconPeriodStartTime(\\n                beaconPeriodStartedAt,\\n                beaconPeriodSeconds,\\n                _time\\n            );\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function cancelDraw() external override {\\n        require(isRngTimedOut(), \\\"DrawBeacon/rng-not-timedout\\\");\\n        uint32 requestId = rngRequest.id;\\n        uint32 lockBlock = rngRequest.lockBlock;\\n        delete rngRequest;\\n        emit DrawCancelled(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function completeDraw() external override requireCanCompleteRngRequest {\\n        uint256 randomNumber = rng.randomNumber(rngRequest.id);\\n        uint32 _nextDrawId = nextDrawId;\\n        uint64 _beaconPeriodStartedAt = beaconPeriodStartedAt;\\n        uint32 _beaconPeriodSeconds = beaconPeriodSeconds;\\n        uint64 _time = _currentTime();\\n\\n        // create Draw struct\\n        IDrawBeacon.Draw memory _draw = IDrawBeacon.Draw({\\n            winningRandomNumber: randomNumber,\\n            drawId: _nextDrawId,\\n            timestamp: rngRequest.requestedAt, // must use the startAward() timestamp to prevent front-running\\n            beaconPeriodStartedAt: _beaconPeriodStartedAt,\\n            beaconPeriodSeconds: _beaconPeriodSeconds\\n        });\\n\\n        drawBuffer.pushDraw(_draw);\\n\\n        // to avoid clock drift, we should calculate the start time based on the previous period start time.\\n        uint64 nextBeaconPeriodStartedAt = _calculateNextBeaconPeriodStartTime(\\n            _beaconPeriodStartedAt,\\n            _beaconPeriodSeconds,\\n            _time\\n        );\\n        beaconPeriodStartedAt = nextBeaconPeriodStartedAt;\\n        nextDrawId = _nextDrawId + 1;\\n\\n        // Reset the rngReqeust state so Beacon period can start again.\\n        delete rngRequest;\\n\\n        emit DrawCompleted(randomNumber);\\n        emit BeaconPeriodStarted(nextBeaconPeriodStartedAt);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodRemainingSeconds() external view override returns (uint64) {\\n        return _beaconPeriodRemainingSeconds();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function beaconPeriodEndAt() external view override returns (uint64) {\\n        return _beaconPeriodEndAt();\\n    }\\n\\n    function getBeaconPeriodSeconds() external view returns (uint32) {\\n        return beaconPeriodSeconds;\\n    }\\n\\n    function getBeaconPeriodStartedAt() external view returns (uint64) {\\n        return beaconPeriodStartedAt;\\n    }\\n\\n    function getDrawBuffer() external view returns (IDrawBuffer) {\\n        return drawBuffer;\\n    }\\n\\n    function getNextDrawId() external view returns (uint32) {\\n        return nextDrawId;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function getLastRngLockBlock() external view override returns (uint32) {\\n        return rngRequest.lockBlock;\\n    }\\n\\n    function getLastRngRequestId() external view override returns (uint32) {\\n        return rngRequest.id;\\n    }\\n\\n    function getRngService() external view returns (RNGInterface) {\\n        return rng;\\n    }\\n\\n    function getRngTimeout() external view returns (uint32) {\\n        return rngTimeout;\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function isBeaconPeriodOver() external view override returns (bool) {\\n        return _isBeaconPeriodOver();\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawBuffer)\\n    {\\n        return _setDrawBuffer(newDrawBuffer);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function startDraw() external override requireCanStartDraw {\\n        (address feeToken, uint256 requestFee) = rng.getRequestFee();\\n\\n        if (feeToken != address(0) && requestFee > 0) {\\n            IERC20(feeToken).safeIncreaseAllowance(address(rng), requestFee);\\n        }\\n\\n        (uint32 requestId, uint32 lockBlock) = rng.requestRandomNumber();\\n        rngRequest.id = requestId;\\n        rngRequest.lockBlock = lockBlock;\\n        rngRequest.requestedAt = _currentTime();\\n\\n        emit DrawStarted(requestId, lockBlock);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setBeaconPeriodSeconds(_beaconPeriodSeconds);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngTimeout(uint32 _rngTimeout) external override onlyOwner requireDrawNotStarted {\\n        _setRngTimeout(_rngTimeout);\\n    }\\n\\n    /// @inheritdoc IDrawBeacon\\n    function setRngService(RNGInterface _rngService)\\n        external\\n        override\\n        onlyOwner\\n        requireDrawNotStarted\\n    {\\n        _setRngService(_rngService);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param _rngService The address of the new RNG service interface\\n     */\\n    function _setRngService(RNGInterface _rngService) internal\\n    {\\n        rng = _rngService;\\n        emit RngServiceUpdated(_rngService);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start\\n     * @param _beaconPeriodStartedAt The timestamp at which the beacon period started\\n     * @param _beaconPeriodSeconds The duration of the beacon period in seconds\\n     * @param _time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function _calculateNextBeaconPeriodStartTime(\\n        uint64 _beaconPeriodStartedAt,\\n        uint32 _beaconPeriodSeconds,\\n        uint64 _time\\n    ) internal pure returns (uint64) {\\n        uint64 elapsedPeriods = (_time - _beaconPeriodStartedAt) / _beaconPeriodSeconds;\\n        return _beaconPeriodStartedAt + (elapsedPeriods * _beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice returns the current time.  Used for testing.\\n     * @return The current time (block.timestamp)\\n     */\\n    function _currentTime() internal view virtual returns (uint64) {\\n        return uint64(block.timestamp);\\n    }\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends\\n     */\\n    function _beaconPeriodEndAt() internal view returns (uint64) {\\n        return beaconPeriodStartedAt + beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the prize can be awarded.\\n     * @return The number of seconds remaining until the prize can be awarded.\\n     */\\n    function _beaconPeriodRemainingSeconds() internal view returns (uint64) {\\n        uint64 endAt = _beaconPeriodEndAt();\\n        uint64 time = _currentTime();\\n\\n        if (endAt <= time) {\\n            return 0;\\n        }\\n\\n        return endAt - time;\\n    }\\n\\n    /**\\n     * @notice Returns whether the beacon period is over.\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function _isBeaconPeriodOver() internal view returns (bool) {\\n        return _beaconPeriodEndAt() <= _currentTime();\\n    }\\n\\n    /**\\n     * @notice Check to see draw is in progress.\\n     */\\n    function _requireDrawNotStarted() internal view {\\n        uint256 currentBlock = block.number;\\n\\n        require(\\n            rngRequest.lockBlock == 0 || currentBlock < rngRequest.lockBlock,\\n            \\\"DrawBeacon/rng-in-flight\\\"\\n        );\\n    }\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param _newDrawBuffer  DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function _setDrawBuffer(IDrawBuffer _newDrawBuffer) internal returns (IDrawBuffer) {\\n        IDrawBuffer _previousDrawBuffer = drawBuffer;\\n        require(address(_newDrawBuffer) != address(0), \\\"DrawBeacon/draw-history-not-zero-address\\\");\\n\\n        require(\\n            address(_newDrawBuffer) != address(_previousDrawBuffer),\\n            \\\"DrawBeacon/existing-draw-history-address\\\"\\n        );\\n\\n        drawBuffer = _newDrawBuffer;\\n\\n        emit DrawBufferUpdated(_newDrawBuffer);\\n\\n        return _newDrawBuffer;\\n    }\\n\\n    /**\\n     * @notice Sets the beacon period in seconds.\\n     * @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function _setBeaconPeriodSeconds(uint32 _beaconPeriodSeconds) internal {\\n        require(_beaconPeriodSeconds > 0, \\\"DrawBeacon/beacon-period-greater-than-zero\\\");\\n        beaconPeriodSeconds = _beaconPeriodSeconds;\\n\\n        emit BeaconPeriodSecondsUpdated(_beaconPeriodSeconds);\\n    }\\n\\n    /**\\n     * @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param _rngTimeout The RNG request timeout in seconds.\\n     */\\n    function _setRngTimeout(uint32 _rngTimeout) internal {\\n        require(_rngTimeout > 60, \\\"DrawBeacon/rng-timeout-gt-60-secs\\\");\\n        rngTimeout = _rngTimeout;\\n\\n        emit RngTimeoutSet(_rngTimeout);\\n    }\\n}\\n\",\"keccak256\":\"0xb12addf63f79aedc80fea67b0f36d405155f5b06a2a1cf018f6aee43aa4c26d6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/DrawBeacon.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IPrizeTierHistory\\n * @author PoolTogether Inc Team\\n * @notice IPrizeTierHistory is the base contract for PrizeTierHistory\\n */\\ninterface IPrizeTierHistory {\\n    /**\\n     * @notice Linked Draw and PrizeDistribution parameters storage schema\\n     */\\n    struct PrizeTier {\\n        uint8 bitRangeSize;\\n        uint32 drawId;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint32 endTimestampOffset;\\n        uint256 prize;\\n        uint32[16] tiers;\\n    }\\n\\n    /**\\n     * @notice Emit when new PrizeTier is added to history\\n     * @param drawId    Draw ID\\n     * @param prizeTier PrizeTier parameters\\n     */\\n    event PrizeTierPushed(uint32 indexed drawId, PrizeTier prizeTier);\\n\\n    /**\\n     * @notice Emit when existing PrizeTier is updated in history\\n     * @param drawId    Draw ID\\n     * @param prizeTier PrizeTier parameters\\n     */\\n    event PrizeTierSet(uint32 indexed drawId, PrizeTier prizeTier);\\n\\n    /**\\n     * @notice Push PrizeTierHistory struct onto history array.\\n     * @dev    Callable only by owner or manager,\\n     * @param drawPrizeDistribution New PrizeTierHistory struct\\n     */\\n    function push(PrizeTier calldata drawPrizeDistribution) external;\\n\\n    function replace(PrizeTier calldata _prizeTier) external;\\n\\n    /**\\n     * @notice Read PrizeTierHistory struct from history array.\\n     * @param drawId Draw ID\\n     * @return prizeTier\\n     */\\n    function getPrizeTier(uint32 drawId) external view returns (PrizeTier memory prizeTier);\\n\\n    /**\\n     * @notice Read first Draw ID used to initialize history\\n     * @return Draw ID of first PrizeTier record\\n     */\\n    function getOldestDrawId() external view returns (uint32);\\n\\n    function getNewestDrawId() external view returns (uint32);\\n\\n    /**\\n     * @notice Read PrizeTierHistory List from history array.\\n     * @param drawIds Draw ID array\\n     * @return prizeTierList\\n     */\\n    function getPrizeTierList(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (PrizeTier[] memory prizeTierList);\\n\\n    /**\\n     * @notice Push PrizeTierHistory struct onto history array.\\n     * @dev    Callable only by owner.\\n     * @param prizeTier Updated PrizeTierHistory struct\\n     * @return drawId Draw ID linked to PrizeTierHistory\\n     */\\n    function popAndPush(PrizeTier calldata prizeTier) external returns (uint32 drawId);\\n\\n    function getPrizeTierAtIndex(uint256 index) external view returns (PrizeTier memory);\\n\\n    /**\\n     * @notice Returns the number of Prize Tier structs pushed\\n     * @return The number of prize tiers that have been pushed\\n     */\\n    function count() external view returns (uint256);\\n}\\n\",\"keccak256\":\"0xd521322f630dfcb577a28bdbdc0f13a17ef1eb7152d3daa193dd76e1be3d8e7c\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "PrizeTierPushed(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "notice": "Emit when new PrizeTier is added to history"
              },
              "PrizeTierSet(uint32,(uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "notice": "Emit when existing PrizeTier is updated in history"
              }
            },
            "kind": "user",
            "methods": {
              "count()": {
                "notice": "Returns the number of Prize Tier structs pushed"
              },
              "getOldestDrawId()": {
                "notice": "Read first Draw ID used to initialize history"
              },
              "getPrizeTier(uint32)": {
                "notice": "Read PrizeTierHistory struct from history array."
              },
              "getPrizeTierList(uint32[])": {
                "notice": "Read PrizeTierHistory List from history array."
              },
              "popAndPush((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "notice": "Push PrizeTierHistory struct onto history array."
              },
              "push((uint8,uint32,uint32,uint32,uint32,uint256,uint32[16]))": {
                "notice": "Push PrizeTierHistory struct onto history array."
              }
            },
            "notice": "IPrizeTierHistory is the base contract for PrizeTierHistory",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol": {
        "ITwabRewards": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8[]",
                  "name": "_epochIds",
                  "type": "uint8[]"
                }
              ],
              "name": "claimRewards",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "contract IERC20",
                  "name": "_token",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_startTimestamp",
                  "type": "uint64"
                },
                {
                  "internalType": "uint256",
                  "name": "_tokensPerEpoch",
                  "type": "uint256"
                },
                {
                  "internalType": "uint48",
                  "name": "_epochDuration",
                  "type": "uint48"
                },
                {
                  "internalType": "uint8",
                  "name": "_numberOfEpochs",
                  "type": "uint8"
                }
              ],
              "name": "createPromotion",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "destroyPromotion",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "endPromotion",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8",
                  "name": "_numberOfEpochs",
                  "type": "uint8"
                }
              ],
              "name": "extendPromotion",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                }
              ],
              "name": "getCurrentEpochId",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                }
              ],
              "name": "getPromotion",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "creator",
                      "type": "address"
                    },
                    {
                      "internalType": "uint64",
                      "name": "startTimestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint8",
                      "name": "numberOfEpochs",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint48",
                      "name": "epochDuration",
                      "type": "uint48"
                    },
                    {
                      "internalType": "uint48",
                      "name": "createdAt",
                      "type": "uint48"
                    },
                    {
                      "internalType": "contract IERC20",
                      "name": "token",
                      "type": "address"
                    },
                    {
                      "internalType": "uint256",
                      "name": "tokensPerEpoch",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint256",
                      "name": "rewardsUnclaimed",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct ITwabRewards.Promotion",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                }
              ],
              "name": "getRemainingRewards",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_promotionId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint8[]",
                  "name": "_epochIds",
                  "type": "uint8[]"
                }
              ],
              "name": "getRewardsAmount",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claimRewards(address,uint256,uint8[])": {
                "details": "Rewards can be claimed on behalf of a user.Rewards can only be claimed for a past epoch.",
                "params": {
                  "_epochIds": "Epoch ids to claim rewards for",
                  "_promotionId": "Id of the promotion to claim rewards for",
                  "_user": "Address of the user to claim rewards for"
                },
                "returns": {
                  "_0": "Total amount of rewards claimed"
                }
              },
              "createPromotion(address,uint64,uint256,uint48,uint8)": {
                "details": "For sake of simplicity, `msg.sender` will be the creator of the promotion.`_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc.The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`. This scenario could happen if the token supplied is a fee on transfer one.",
                "params": {
                  "_epochDuration": "Duration of one epoch in seconds",
                  "_numberOfEpochs": "Number of epochs the promotion will last for",
                  "_startTimestamp": "Timestamp at which the promotion starts",
                  "_token": "Address of the token to be distributed",
                  "_tokensPerEpoch": "Number of tokens to be distributed per epoch"
                },
                "returns": {
                  "_0": "Id of the newly created promotion"
                }
              },
              "destroyPromotion(uint256,address)": {
                "details": "Will send back all the tokens that have not been claimed yet by users.This function will revert if the promotion is still active.This function will revert if the grace period is not over yet.",
                "params": {
                  "_promotionId": "Promotion id to destroy",
                  "_to": "Address that will receive the remaining tokens if there are any left"
                },
                "returns": {
                  "_0": "True if operation was successful"
                }
              },
              "endPromotion(uint256,address)": {
                "details": "Will only send back tokens from the epochs that have not completed.",
                "params": {
                  "_promotionId": "Promotion id to end",
                  "_to": "Address that will receive the remaining tokens if there are any left"
                },
                "returns": {
                  "_0": "true if operation was successful"
                }
              },
              "extendPromotion(uint256,uint8)": {
                "params": {
                  "_numberOfEpochs": "Number of epochs to add",
                  "_promotionId": "Id of the promotion to extend"
                },
                "returns": {
                  "_0": "True if the operation was successful"
                }
              },
              "getCurrentEpochId(uint256)": {
                "details": "Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.",
                "params": {
                  "_promotionId": "Id of the promotion to get current epoch for"
                },
                "returns": {
                  "_0": "Current epoch id of the promotion"
                }
              },
              "getPromotion(uint256)": {
                "params": {
                  "_promotionId": "Id of the promotion to get settings for"
                },
                "returns": {
                  "_0": "Promotion settings"
                }
              },
              "getRemainingRewards(uint256)": {
                "params": {
                  "_promotionId": "Id of the promotion to get the total amount of tokens left to be rewarded for"
                },
                "returns": {
                  "_0": "Amount of tokens left to be rewarded"
                }
              },
              "getRewardsAmount(address,uint256,uint8[])": {
                "details": "Rewards amount can only be retrieved for epochs that are over.Will revert if `_epochId` is over the total number of epochs or if epoch is not over.Will return 0 if the user average balance of tickets is 0.Will be 0 if user has already claimed rewards for the epoch.",
                "params": {
                  "_epochIds": "Epoch ids to get reward amount for",
                  "_promotionId": "Id of the promotion from which the epoch is",
                  "_user": "Address of the user to get amount of rewards for"
                },
                "returns": {
                  "_0": "Amount of tokens per epoch to be rewarded"
                }
              }
            },
            "title": "PoolTogether V4 ITwabRewards",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "claimRewards(address,uint256,uint8[])": "b2456c3a",
              "createPromotion(address,uint64,uint256,uint48,uint8)": "66cfae5e",
              "destroyPromotion(uint256,address)": "20555db1",
              "endPromotion(uint256,address)": "120468a0",
              "extendPromotion(uint256,uint8)": "096fe668",
              "getCurrentEpochId(uint256)": "f824d0fb",
              "getPromotion(uint256)": "14fdecca",
              "getRemainingRewards(uint256)": "a4958845",
              "getRewardsAmount(address,uint256,uint8[])": "0b011a16"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"uint8[]\",\"name\":\"_epochIds\",\"type\":\"uint8[]\"}],\"name\":\"claimRewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_startTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint256\",\"name\":\"_tokensPerEpoch\",\"type\":\"uint256\"},{\"internalType\":\"uint48\",\"name\":\"_epochDuration\",\"type\":\"uint48\"},{\"internalType\":\"uint8\",\"name\":\"_numberOfEpochs\",\"type\":\"uint8\"}],\"name\":\"createPromotion\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"destroyPromotion\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"endPromotion\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"_numberOfEpochs\",\"type\":\"uint8\"}],\"name\":\"extendPromotion\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"}],\"name\":\"getCurrentEpochId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"}],\"name\":\"getPromotion\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"creator\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"startTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint8\",\"name\":\"numberOfEpochs\",\"type\":\"uint8\"},{\"internalType\":\"uint48\",\"name\":\"epochDuration\",\"type\":\"uint48\"},{\"internalType\":\"uint48\",\"name\":\"createdAt\",\"type\":\"uint48\"},{\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokensPerEpoch\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsUnclaimed\",\"type\":\"uint256\"}],\"internalType\":\"struct ITwabRewards.Promotion\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"}],\"name\":\"getRemainingRewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_promotionId\",\"type\":\"uint256\"},{\"internalType\":\"uint8[]\",\"name\":\"_epochIds\",\"type\":\"uint8[]\"}],\"name\":\"getRewardsAmount\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claimRewards(address,uint256,uint8[])\":{\"details\":\"Rewards can be claimed on behalf of a user.Rewards can only be claimed for a past epoch.\",\"params\":{\"_epochIds\":\"Epoch ids to claim rewards for\",\"_promotionId\":\"Id of the promotion to claim rewards for\",\"_user\":\"Address of the user to claim rewards for\"},\"returns\":{\"_0\":\"Total amount of rewards claimed\"}},\"createPromotion(address,uint64,uint256,uint48,uint8)\":{\"details\":\"For sake of simplicity, `msg.sender` will be the creator of the promotion.`_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc.The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`. This scenario could happen if the token supplied is a fee on transfer one.\",\"params\":{\"_epochDuration\":\"Duration of one epoch in seconds\",\"_numberOfEpochs\":\"Number of epochs the promotion will last for\",\"_startTimestamp\":\"Timestamp at which the promotion starts\",\"_token\":\"Address of the token to be distributed\",\"_tokensPerEpoch\":\"Number of tokens to be distributed per epoch\"},\"returns\":{\"_0\":\"Id of the newly created promotion\"}},\"destroyPromotion(uint256,address)\":{\"details\":\"Will send back all the tokens that have not been claimed yet by users.This function will revert if the promotion is still active.This function will revert if the grace period is not over yet.\",\"params\":{\"_promotionId\":\"Promotion id to destroy\",\"_to\":\"Address that will receive the remaining tokens if there are any left\"},\"returns\":{\"_0\":\"True if operation was successful\"}},\"endPromotion(uint256,address)\":{\"details\":\"Will only send back tokens from the epochs that have not completed.\",\"params\":{\"_promotionId\":\"Promotion id to end\",\"_to\":\"Address that will receive the remaining tokens if there are any left\"},\"returns\":{\"_0\":\"true if operation was successful\"}},\"extendPromotion(uint256,uint8)\":{\"params\":{\"_numberOfEpochs\":\"Number of epochs to add\",\"_promotionId\":\"Id of the promotion to extend\"},\"returns\":{\"_0\":\"True if the operation was successful\"}},\"getCurrentEpochId(uint256)\":{\"details\":\"Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\",\"params\":{\"_promotionId\":\"Id of the promotion to get current epoch for\"},\"returns\":{\"_0\":\"Current epoch id of the promotion\"}},\"getPromotion(uint256)\":{\"params\":{\"_promotionId\":\"Id of the promotion to get settings for\"},\"returns\":{\"_0\":\"Promotion settings\"}},\"getRemainingRewards(uint256)\":{\"params\":{\"_promotionId\":\"Id of the promotion to get the total amount of tokens left to be rewarded for\"},\"returns\":{\"_0\":\"Amount of tokens left to be rewarded\"}},\"getRewardsAmount(address,uint256,uint8[])\":{\"details\":\"Rewards amount can only be retrieved for epochs that are over.Will revert if `_epochId` is over the total number of epochs or if epoch is not over.Will return 0 if the user average balance of tickets is 0.Will be 0 if user has already claimed rewards for the epoch.\",\"params\":{\"_epochIds\":\"Epoch ids to get reward amount for\",\"_promotionId\":\"Id of the promotion from which the epoch is\",\"_user\":\"Address of the user to get amount of rewards for\"},\"returns\":{\"_0\":\"Amount of tokens per epoch to be rewarded\"}}},\"title\":\"PoolTogether V4 ITwabRewards\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"claimRewards(address,uint256,uint8[])\":{\"notice\":\"Claim rewards for a given promotion and epoch.\"},\"createPromotion(address,uint64,uint256,uint48,uint8)\":{\"notice\":\"Creates a new promotion.\"},\"destroyPromotion(uint256,address)\":{\"notice\":\"Delete an inactive promotion and send promotion tokens back to the creator.\"},\"endPromotion(uint256,address)\":{\"notice\":\"End currently active promotion and send promotion tokens back to the creator.\"},\"extendPromotion(uint256,uint8)\":{\"notice\":\"Extend promotion by adding more epochs.\"},\"getCurrentEpochId(uint256)\":{\"notice\":\"Get the current epoch id of a promotion.\"},\"getPromotion(uint256)\":{\"notice\":\"Get settings for a specific promotion.\"},\"getRemainingRewards(uint256)\":{\"notice\":\"Get the total amount of tokens left to be rewarded.\"},\"getRewardsAmount(address,uint256,uint8[])\":{\"notice\":\"Get amount of tokens to be rewarded for a given epoch.\"}},\"notice\":\"TwabRewards contract interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol\":\"ITwabRewards\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 ITwabRewards\\n * @author PoolTogether Inc Team\\n * @notice TwabRewards contract interface.\\n */\\ninterface ITwabRewards {\\n    /**\\n     * @notice Struct to keep track of each promotion's settings.\\n     * @param creator Addresss of the promotion creator\\n     * @param startTimestamp Timestamp at which the promotion starts\\n     * @param numberOfEpochs Number of epochs the promotion will last for\\n     * @param epochDuration Duration of one epoch in seconds\\n     * @param createdAt Timestamp at which the promotion was created\\n     * @param token Address of the token to be distributed as reward\\n     * @param tokensPerEpoch Number of tokens to be distributed per epoch\\n     * @param rewardsUnclaimed Amount of rewards that have not been claimed yet\\n     */\\n    struct Promotion {\\n        address creator;\\n        uint64 startTimestamp;\\n        uint8 numberOfEpochs;\\n        uint48 epochDuration;\\n        uint48 createdAt;\\n        IERC20 token;\\n        uint256 tokensPerEpoch;\\n        uint256 rewardsUnclaimed;\\n    }\\n\\n    /**\\n     * @notice Creates a new promotion.\\n     * @dev For sake of simplicity, `msg.sender` will be the creator of the promotion.\\n     * @dev `_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion.\\n     * So the first promotion will have id 1, the second 2, etc.\\n     * @dev The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`.\\n     * This scenario could happen if the token supplied is a fee on transfer one.\\n     * @param _token Address of the token to be distributed\\n     * @param _startTimestamp Timestamp at which the promotion starts\\n     * @param _tokensPerEpoch Number of tokens to be distributed per epoch\\n     * @param _epochDuration Duration of one epoch in seconds\\n     * @param _numberOfEpochs Number of epochs the promotion will last for\\n     * @return Id of the newly created promotion\\n     */\\n    function createPromotion(\\n        IERC20 _token,\\n        uint64 _startTimestamp,\\n        uint256 _tokensPerEpoch,\\n        uint48 _epochDuration,\\n        uint8 _numberOfEpochs\\n    ) external returns (uint256);\\n\\n    /**\\n     * @notice End currently active promotion and send promotion tokens back to the creator.\\n     * @dev Will only send back tokens from the epochs that have not completed.\\n     * @param _promotionId Promotion id to end\\n     * @param _to Address that will receive the remaining tokens if there are any left\\n     * @return true if operation was successful\\n     */\\n    function endPromotion(uint256 _promotionId, address _to) external returns (bool);\\n\\n    /**\\n     * @notice Delete an inactive promotion and send promotion tokens back to the creator.\\n     * @dev Will send back all the tokens that have not been claimed yet by users.\\n     * @dev This function will revert if the promotion is still active.\\n     * @dev This function will revert if the grace period is not over yet.\\n     * @param _promotionId Promotion id to destroy\\n     * @param _to Address that will receive the remaining tokens if there are any left\\n     * @return True if operation was successful\\n     */\\n    function destroyPromotion(uint256 _promotionId, address _to) external returns (bool);\\n\\n    /**\\n     * @notice Extend promotion by adding more epochs.\\n     * @param _promotionId Id of the promotion to extend\\n     * @param _numberOfEpochs Number of epochs to add\\n     * @return True if the operation was successful\\n     */\\n    function extendPromotion(uint256 _promotionId, uint8 _numberOfEpochs) external returns (bool);\\n\\n    /**\\n     * @notice Claim rewards for a given promotion and epoch.\\n     * @dev Rewards can be claimed on behalf of a user.\\n     * @dev Rewards can only be claimed for a past epoch.\\n     * @param _user Address of the user to claim rewards for\\n     * @param _promotionId Id of the promotion to claim rewards for\\n     * @param _epochIds Epoch ids to claim rewards for\\n     * @return Total amount of rewards claimed\\n     */\\n    function claimRewards(\\n        address _user,\\n        uint256 _promotionId,\\n        uint8[] calldata _epochIds\\n    ) external returns (uint256);\\n\\n    /**\\n     * @notice Get settings for a specific promotion.\\n     * @param _promotionId Id of the promotion to get settings for\\n     * @return Promotion settings\\n     */\\n    function getPromotion(uint256 _promotionId) external view returns (Promotion memory);\\n\\n    /**\\n     * @notice Get the current epoch id of a promotion.\\n     * @dev Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\\n     * @param _promotionId Id of the promotion to get current epoch for\\n     * @return Current epoch id of the promotion\\n     */\\n    function getCurrentEpochId(uint256 _promotionId) external view returns (uint256);\\n\\n    /**\\n     * @notice Get the total amount of tokens left to be rewarded.\\n     * @param _promotionId Id of the promotion to get the total amount of tokens left to be rewarded for\\n     * @return Amount of tokens left to be rewarded\\n     */\\n    function getRemainingRewards(uint256 _promotionId) external view returns (uint256);\\n\\n    /**\\n     * @notice Get amount of tokens to be rewarded for a given epoch.\\n     * @dev Rewards amount can only be retrieved for epochs that are over.\\n     * @dev Will revert if `_epochId` is over the total number of epochs or if epoch is not over.\\n     * @dev Will return 0 if the user average balance of tickets is 0.\\n     * @dev Will be 0 if user has already claimed rewards for the epoch.\\n     * @param _user Address of the user to get amount of rewards for\\n     * @param _promotionId Id of the promotion from which the epoch is\\n     * @param _epochIds Epoch ids to get reward amount for\\n     * @return Amount of tokens per epoch to be rewarded\\n     */\\n    function getRewardsAmount(\\n        address _user,\\n        uint256 _promotionId,\\n        uint8[] calldata _epochIds\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xbd96f3c1f80c16b2dcfbe0e9c3fd281044fef93c1db4d4c9d56dc3e2bf7ec47d\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "claimRewards(address,uint256,uint8[])": {
                "notice": "Claim rewards for a given promotion and epoch."
              },
              "createPromotion(address,uint64,uint256,uint48,uint8)": {
                "notice": "Creates a new promotion."
              },
              "destroyPromotion(uint256,address)": {
                "notice": "Delete an inactive promotion and send promotion tokens back to the creator."
              },
              "endPromotion(uint256,address)": {
                "notice": "End currently active promotion and send promotion tokens back to the creator."
              },
              "extendPromotion(uint256,uint8)": {
                "notice": "Extend promotion by adding more epochs."
              },
              "getCurrentEpochId(uint256)": {
                "notice": "Get the current epoch id of a promotion."
              },
              "getPromotion(uint256)": {
                "notice": "Get settings for a specific promotion."
              },
              "getRemainingRewards(uint256)": {
                "notice": "Get the total amount of tokens left to be rewarded."
              },
              "getRewardsAmount(address,uint256,uint8[])": {
                "notice": "Get amount of tokens to be rewarded for a given epoch."
              }
            },
            "notice": "TwabRewards contract interface.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol": {
        "BeaconTimelockTrigger": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "_prizeDistributionFactory",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "_timelock",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "prizeDistributionFactory",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "timelock",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "DrawLockedAndTotalNetworkTicketSupplyPushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionFactory",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_draw",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "_totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "timelock",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_owner": "The smart contract owner",
                  "_prizeDistributionFactory": "PrizeDistributionFactory address",
                  "_timelock": "DrawCalculatorTimelock address"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "details": "Restricts new draws for N seconds by forcing timelock on the next target draw id.",
                "params": {
                  "draw": "Draw",
                  "totalNetworkTicketSupply": "totalNetworkTicketSupply"
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 BeaconTimelockTrigger",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15543": {
                  "entryPoint": null,
                  "id": 15543,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 149,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionFactory_$16284t_contract$_IDrawCalculatorTimelock_$16274_fromMemory": {
                  "entryPoint": 229,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "validator_revert_address": {
                  "entryPoint": 306,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:739:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "197:404:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "243:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "252:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "255:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "245:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "245:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "245:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "218:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "227:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "214:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "214:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "239:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "210:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "210:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "207:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "268:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "287:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "272:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "331:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "306:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "346:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "356:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "346:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "370:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "395:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "406:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "391:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "391:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "385:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "385:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "374:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "444:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "419:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "419:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "419:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "461:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "471:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "461:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "487:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "512:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "523:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "508:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "508:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "502:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "502:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "491:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "561:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "536:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "536:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "536:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "578:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "588:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "578:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionFactory_$16284t_contract$_IDrawCalculatorTimelock_$16274_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "147:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "158:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "170:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "178:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "186:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:587:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "651:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "715:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "724:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "727:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "717:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "717:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "717:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "674:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "685:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "700:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "705:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "696:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "696:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "709:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "692:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "692:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "681:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "681:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "671:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "671:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "664:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "664:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "661:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "640:5:94",
                            "type": ""
                          }
                        ],
                        "src": "606:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizeDistributionFactory_$16284t_contract$_IDrawCalculatorTimelock_$16274_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60c060405234801561001057600080fd5b50604051610bdc380380610bdc83398101604081905261002f916100e5565b8261003981610095565b506001600160601b0319606083811b821660805282901b1660a0526040516001600160a01b0382811691908416907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec2090600090a350505061014a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000606084860312156100fa57600080fd5b835161010581610132565b602085015190935061011681610132565b604085015190925061012781610132565b809150509250925092565b6001600160a01b038116811461014757600080fd5b50565b60805160601c60a05160601c610a5961018360003960008181610172015261037501526000818161010401526104a10152610a596000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c8063a913c9da11610076578063d33219b41161005b578063d33219b41461016d578063e30c397814610194578063f2fde38b146101a557600080fd5b8063a913c9da14610137578063d0ebdbe71461014a57600080fd5b8063715018a6116100a7578063715018a6146100f757806378e072a9146100ff5780638da5cb5b1461012657600080fd5b8063481c6a75146100c35780634e71e0c8146100ed575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6100f56101b8565b005b6100f561024b565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100d0565b6100f561014536600461090a565b6102c0565b61015d6101583660046108b8565b61058b565b60405190151581526020016100e4565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100d0565b6100f56101b33660046108b8565b610607565b6001546001600160a01b031633146102175760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461022c906001600160a01b0316610743565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361025e6000546001600160a01b031690565b6001600160a01b0316146102b45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6102be6000610743565b565b336102d36002546001600160a01b031690565b6001600160a01b031614806103015750336102f66000546001600160a01b031690565b6001600160a01b0316145b6103735760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161020e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103c191906109d0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561042757600080fd5b505af115801561043b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045f91906108e8565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156104ed57600080fd5b505af1158015610501573d6000803e3d6000fd5b50505050602082810180516040805186518152925163ffffffff908116948401949094528086015167ffffffffffffffff908116848301526060808801519091169084015260808087015185169084015260a08301859052519216917fedb65adbca0b9daa2f70fb5e43a2119fdc09136b9552987e6e82ac54b9131dfa9181900360c00190a25050565b6000336105a06000546001600160a01b031690565b6001600160a01b0316146105f65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6105ff826107a0565b90505b919050565b3361061a6000546001600160a01b031690565b6001600160a01b0316146106705760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6001600160a01b0381166106ec5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161020e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108295760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161020e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b803563ffffffff8116811461060257600080fd5b803567ffffffffffffffff8116811461060257600080fd5b6000602082840312156108ca57600080fd5b81356001600160a01b03811681146108e157600080fd5b9392505050565b6000602082840312156108fa57600080fd5b815180151581146108e157600080fd5b60008082840360c081121561091e57600080fd5b60a081121561092c57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610977577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040528335815261098a6020850161088c565b602082015261099b604085016108a0565b60408201526109ac606085016108a0565b60608201526109bd6080850161088c565b60808201529460a0939093013593505050565b600067ffffffffffffffff808316818516808303821115610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b0194935050505056fea26469706673582212208d595c27e720e7672c3a6e1983d1e14cdb95326cd3fc96c721812d1490361c4f64736f6c63430008060033",
              "opcodes": "PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xBDC CODESIZE SUB DUP1 PUSH2 0xBDC DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0xE5 JUMP JUMPDEST DUP3 PUSH2 0x39 DUP2 PUSH2 0x95 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP4 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP3 SWAP1 SHL AND PUSH1 0xA0 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x9E48DF7857BD0C1E0D31BB8A85D42CF1874817895F171C917F6EE2CEA73EC20 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP POP PUSH2 0x14A JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xFA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x105 DUP2 PUSH2 0x132 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x116 DUP2 PUSH2 0x132 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x127 DUP2 PUSH2 0x132 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x147 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH2 0xA59 PUSH2 0x183 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x172 ADD MSTORE PUSH2 0x375 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x104 ADD MSTORE PUSH2 0x4A1 ADD MSTORE PUSH2 0xA59 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA913C9DA GT PUSH2 0x76 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x194 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA913C9DA EQ PUSH2 0x137 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x14A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xA7 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xF7 JUMPI DUP1 PUSH4 0x78E072A9 EQ PUSH2 0xFF JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x126 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0xED JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH2 0x1B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF5 PUSH2 0x24B JUMP JUMPDEST PUSH2 0xD0 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD0 JUMP JUMPDEST PUSH2 0xF5 PUSH2 0x145 CALLDATASIZE PUSH1 0x4 PUSH2 0x90A JUMP JUMPDEST PUSH2 0x2C0 JUMP JUMPDEST PUSH2 0x15D PUSH2 0x158 CALLDATASIZE PUSH1 0x4 PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE4 JUMP JUMPDEST PUSH2 0xD0 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD0 JUMP JUMPDEST PUSH2 0xF5 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x607 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x217 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x22C SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x743 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x25E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH2 0x2BE PUSH1 0x0 PUSH2 0x743 JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x2D3 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x301 JUMPI POP CALLER PUSH2 0x2F6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x373 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8871189B DUP4 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP6 PUSH1 0x40 ADD MLOAD PUSH2 0x3C1 SWAP2 SWAP1 PUSH2 0x9D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x427 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x43B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x45F SWAP2 SWAP1 PUSH2 0x8E8 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH32 0x348B07600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x348B076 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x501 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x20 DUP3 DUP2 ADD DUP1 MLOAD PUSH1 0x40 DUP1 MLOAD DUP7 MLOAD DUP2 MSTORE SWAP3 MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE DUP1 DUP7 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP9 ADD MLOAD SWAP1 SWAP2 AND SWAP1 DUP5 ADD MSTORE PUSH1 0x80 DUP1 DUP8 ADD MLOAD DUP6 AND SWAP1 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD DUP6 SWAP1 MSTORE MLOAD SWAP3 AND SWAP2 PUSH32 0xEDB65ADBCA0B9DAA2F70FB5E43A2119FDC09136B9552987E6E82AC54B9131DFA SWAP2 DUP2 SWAP1 SUB PUSH1 0xC0 ADD SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x5A0 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5F6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH2 0x5FF DUP3 PUSH2 0x7A0 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x61A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x670 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6EC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x829 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x602 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x602 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x8CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x8FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH1 0xC0 DUP2 SLT ISZERO PUSH2 0x91E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0x92C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x977 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP4 CALLDATALOAD DUP2 MSTORE PUSH2 0x98A PUSH1 0x20 DUP6 ADD PUSH2 0x88C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x99B PUSH1 0x40 DUP6 ADD PUSH2 0x8A0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x9AC PUSH1 0x60 DUP6 ADD PUSH2 0x8A0 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x9BD PUSH1 0x80 DUP6 ADD PUSH2 0x88C JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP5 PUSH1 0xA0 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xA1A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP14 MSIZE 0x5C 0x27 0xE7 KECCAK256 0xE7 PUSH8 0x2C3A6E1983D1E14C 0xDB SWAP6 ORIGIN PUSH13 0xD3FC96C721812D1490361C4F64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "871:1520:60:-:0;;;1535:322;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1689:6;1648:24:19;1689:6:60;1648:9:19;:24::i;:::-;-1:-1:-1;;;;;;;1707:52:60::1;::::0;;;;;::::1;::::0;1769:20;;;;::::1;::::0;1804:46:::1;::::0;-1:-1:-1;;;;;1769:20:60;;::::1;::::0;1707:52;;::::1;::::0;1804:46:::1;::::0;;;::::1;1535:322:::0;;;871:1520;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:587:94:-;170:6;178;186;239:2;227:9;218:7;214:23;210:32;207:2;;;255:1;252;245:12;207:2;287:9;281:16;306:31;331:5;306:31;:::i;:::-;406:2;391:18;;385:25;356:5;;-1:-1:-1;419:33:94;385:25;419:33;:::i;:::-;523:2;508:18;;502:25;471:7;;-1:-1:-1;536:33:94;502:25;536:33;:::i;:::-;588:7;578:17;;;197:404;;;;;:::o;606:131::-;-1:-1:-1;;;;;681:31:94;;671:42;;661:2;;727:1;724;717:12;661:2;651:86;:::o;:::-;871:1520:60;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_3068": {
                  "entryPoint": 1952,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 1859,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 440,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionFactory_15510": {
                  "entryPoint": null,
                  "id": 15510,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_15583": {
                  "entryPoint": 704,
                  "id": 15583,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 587,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 1419,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_15514": {
                  "entryPoint": null,
                  "id": 15514,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 1543,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2232,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 2280,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_uint256": {
                  "entryPoint": 2314,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint32": {
                  "entryPoint": 2188,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 2208,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16284__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_uint256__to_t_struct$_Draw_$8176_memory_ptr_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 2512,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:6550:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:163:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "230:123:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "262:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "309:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "288:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "288:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "278:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "209:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "220:5:94",
                            "type": ""
                          }
                        ],
                        "src": "182:171:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "428:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "474:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "483:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "486:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "476:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "476:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "476:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "449:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "458:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "445:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "445:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "470:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "441:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "441:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "438:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "499:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "512:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "512:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "503:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "621:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "630:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "633:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "623:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "623:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "623:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "575:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "564:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "564:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "554:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "554:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "544:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "646:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "656:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "646:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "394:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "405:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "417:6:94",
                            "type": ""
                          }
                        ],
                        "src": "358:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "750:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "796:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "805:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "808:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "798:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "798:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "798:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "771:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "780:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "767:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "767:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "792:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "763:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "763:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "760:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "821:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "840:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "834:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "834:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "825:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "903:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "912:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "915:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "905:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "905:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "905:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "872:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "893:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "886:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "886:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "879:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "879:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "869:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "869:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "862:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "862:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "859:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "928:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "938:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "928:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "716:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "727:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "739:6:94",
                            "type": ""
                          }
                        ],
                        "src": "672:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1063:902:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1073:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1087:7:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1096:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1083:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1083:23:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1077:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1131:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1140:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1143:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1133:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1133:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1133:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1122:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1126:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1118:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1118:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1115:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1173:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1182:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1185:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1175:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1175:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1175:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1163:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1167:4:94",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1159:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1159:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1156:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1198:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1218:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1212:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1202:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1230:35:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1252:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1260:4:94",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1248:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1248:17:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1234:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1348:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1369:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1372:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1362:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1362:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1362:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1470:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1473:4:94",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1463:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1463:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1498:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1501:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1491:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1491:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1491:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1283:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1295:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1280:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1280:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1319:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1331:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1316:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1316:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1277:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1277:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1274:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1532:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1536:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1525:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1525:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1525:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1563:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1584:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1571:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1571:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1556:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1556:39:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1556:39:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1615:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1623:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1611:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1611:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1650:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1661:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1646:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1646:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1628:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1628:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1604:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1604:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1604:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1686:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1694:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1682:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1682:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1721:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1732:2:94",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1717:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1717:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1699:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1699:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1675:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1675:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1675:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1757:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1765:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1753:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1753:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1792:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1803:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1788:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1788:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1770:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1770:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1746:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1746:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1746:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1828:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1836:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1824:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1824:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1864:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1875:3:94",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1860:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1860:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1842:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1842:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1817:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1817:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1817:64:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1890:16:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1900:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1890:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1915:44:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1942:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1953:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1938:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1938:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1925:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1925:34:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1915:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1021:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1032:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1044:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1052:6:94",
                            "type": ""
                          }
                        ],
                        "src": "954:1011:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2071:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2081:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2093:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2104:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2089:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2089:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2081:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2123:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2138:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2146:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2134:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2134:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2116:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2116:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2116:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2040:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2051:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2062:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1970:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2296:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2306:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2318:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2329:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2314:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2314:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2306:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2348:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2373:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2366:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2366:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2359:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2359:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2341:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2341:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2341:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2265:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2276:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2287:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2201:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2527:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2537:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2549:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2560:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2545:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2545:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2537:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2579:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2594:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2602:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2590:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2590:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2572:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2572:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2572:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2496:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2507:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2518:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2393:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2793:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2803:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2815:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2826:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2811:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2811:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2803:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2845:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2860:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2868:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2856:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2856:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2838:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2838:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2838:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16284__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2762:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2773:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2784:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2657:261:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3289:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3301:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3312:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3297:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3297:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3289:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2923:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3501:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3518:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3529:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3511:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3511:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3511:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3552:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3563:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3548:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3548:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3568:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3541:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3541:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3541:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3591:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3602:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3587:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3587:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3607:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3580:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3580:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3580:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3643:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3655:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3666:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3651:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3651:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3643:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3478:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3492:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3327:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3854:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3871:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3882:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3864:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3864:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3864:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3905:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3916:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3901:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3901:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3921:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3894:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3894:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3894:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3944:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3955:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3940:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3940:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3960:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3933:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3933:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3933:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4003:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4015:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4026:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4011:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4011:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3831:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3845:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3680:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4214:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4231:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4242:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4224:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4224:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4224:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4265:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4276:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4261:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4261:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4281:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4254:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4254:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4254:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4304:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4315:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4300:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4300:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4320:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4293:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4293:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4293:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4375:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4386:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4371:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4371:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4391:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4364:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4364:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4364:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4409:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4421:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4432:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4417:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4417:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4409:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4191:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4205:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4040:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4621:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4638:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4649:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4631:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4631:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4631:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4672:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4683:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4668:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4668:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4688:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4661:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4661:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4661:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4711:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4722:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4707:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4707:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4727:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4700:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4700:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4700:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4782:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4793:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4778:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4778:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4798:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4771:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4771:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4771:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4815:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4827:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4838:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4823:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4823:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4815:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4598:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4612:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4447:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5026:568:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5036:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5048:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5059:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5044:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5044:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5036:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5079:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5096:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "5090:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5090:13:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5072:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5072:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5072:32:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5113:44:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5143:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5151:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5139:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5139:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5133:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5133:24:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "5117:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5166:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5176:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5170:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5206:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5217:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5202:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5202:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5228:12:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5242:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5224:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5224:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5195:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5195:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5195:51:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5255:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5287:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5295:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5283:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5283:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5277:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5277:24:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5259:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5310:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5320:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5314:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5358:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5369:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5354:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5380:14:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "5396:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5376:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5376:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5347:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5347:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5347:53:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5420:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5431:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5416:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5416:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "5452:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5460:4:94",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5448:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5448:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "5442:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5442:24:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "5468:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5438:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5438:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5409:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5409:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5409:63:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5492:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5503:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5488:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5488:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "5524:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5532:4:94",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5520:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5520:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "5514:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5514:24:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5540:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5510:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5481:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5481:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5481:63:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5564:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5575:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5560:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5560:19:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5581:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5553:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5553:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5553:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_uint256__to_t_struct$_Draw_$8176_memory_ptr_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4987:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4998:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5006:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5017:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4853:741:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5726:136:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5736:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5748:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5759:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5744:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5744:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5736:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5778:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5793:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5801:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5789:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5789:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5771:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5771:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5771:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5833:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5844:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5829:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5829:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5849:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5822:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5822:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5822:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5687:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5698:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5706:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5717:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5599:263:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5992:161:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6002:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6014:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6025:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6010:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6010:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6002:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6044:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6059:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6067:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6055:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6055:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6037:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6037:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6037:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6099:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6110:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6095:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6095:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6119:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6127:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6115:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6115:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6088:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6088:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6088:59:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5953:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5964:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5972:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5983:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5867:286:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6205:343:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6215:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6225:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6219:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6252:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6267:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6270:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6263:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6263:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6256:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6282:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6297:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6300:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6293:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6293:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6286:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6345:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6366:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6369:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6359:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6359:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6359:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6467:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6470:4:94",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6460:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6460:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6460:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6495:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6498:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6488:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6488:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6488:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6318:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6327:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6331:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6323:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6323:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6315:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6315:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6312:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6522:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6533:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6538:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6529:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6529:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "6522:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6188:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6191:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6197:3:94",
                            "type": ""
                          }
                        ],
                        "src": "6158:390:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 192) { revert(0, 0) }\n        if slt(_1, 0xa0) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, calldataload(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint64(add(headStart, 64)))\n        mstore(add(memPtr, 96), abi_decode_uint64(add(headStart, 96)))\n        mstore(add(memPtr, 128), abi_decode_uint32(add(headStart, 128)))\n        value0 := memPtr\n        value1 := calldataload(add(headStart, 0xa0))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16284__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_uint256__to_t_struct$_Draw_$8176_memory_ptr_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, mload(value0))\n        let memberValue0 := mload(add(value0, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(headStart, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value0, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(headStart, 0x40), and(memberValue0_1, _2))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), _2))\n        mstore(add(headStart, 0x80), and(mload(add(value0, 0x80)), _1))\n        mstore(add(headStart, 160), value1)\n    }\n    function abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x_1, y_1)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15510": [
                  {
                    "length": 32,
                    "start": 260
                  },
                  {
                    "length": 32,
                    "start": 1185
                  }
                ],
                "15514": [
                  {
                    "length": 32,
                    "start": 370
                  },
                  {
                    "length": 32,
                    "start": 885
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100be5760003560e01c8063a913c9da11610076578063d33219b41161005b578063d33219b41461016d578063e30c397814610194578063f2fde38b146101a557600080fd5b8063a913c9da14610137578063d0ebdbe71461014a57600080fd5b8063715018a6116100a7578063715018a6146100f757806378e072a9146100ff5780638da5cb5b1461012657600080fd5b8063481c6a75146100c35780634e71e0c8146100ed575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6100f56101b8565b005b6100f561024b565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100d0565b6100f561014536600461090a565b6102c0565b61015d6101583660046108b8565b61058b565b60405190151581526020016100e4565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100d0565b6100f56101b33660046108b8565b610607565b6001546001600160a01b031633146102175760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461022c906001600160a01b0316610743565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361025e6000546001600160a01b031690565b6001600160a01b0316146102b45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6102be6000610743565b565b336102d36002546001600160a01b031690565b6001600160a01b031614806103015750336102f66000546001600160a01b031690565b6001600160a01b0316145b6103735760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161020e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103c191906109d0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561042757600080fd5b505af115801561043b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045f91906108e8565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156104ed57600080fd5b505af1158015610501573d6000803e3d6000fd5b50505050602082810180516040805186518152925163ffffffff908116948401949094528086015167ffffffffffffffff908116848301526060808801519091169084015260808087015185169084015260a08301859052519216917fedb65adbca0b9daa2f70fb5e43a2119fdc09136b9552987e6e82ac54b9131dfa9181900360c00190a25050565b6000336105a06000546001600160a01b031690565b6001600160a01b0316146105f65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6105ff826107a0565b90505b919050565b3361061a6000546001600160a01b031690565b6001600160a01b0316146106705760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6001600160a01b0381166106ec5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161020e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108295760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161020e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b803563ffffffff8116811461060257600080fd5b803567ffffffffffffffff8116811461060257600080fd5b6000602082840312156108ca57600080fd5b81356001600160a01b03811681146108e157600080fd5b9392505050565b6000602082840312156108fa57600080fd5b815180151581146108e157600080fd5b60008082840360c081121561091e57600080fd5b60a081121561092c57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610977577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040528335815261098a6020850161088c565b602082015261099b604085016108a0565b60408201526109ac606085016108a0565b60608201526109bd6080850161088c565b60808201529460a0939093013593505050565b600067ffffffffffffffff808316818516808303821115610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b0194935050505056fea26469706673582212208d595c27e720e7672c3a6e1983d1e14cdb95326cd3fc96c721812d1490361c4f64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA913C9DA GT PUSH2 0x76 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x194 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA913C9DA EQ PUSH2 0x137 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x14A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xA7 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xF7 JUMPI DUP1 PUSH4 0x78E072A9 EQ PUSH2 0xFF JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x126 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0xED JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH2 0x1B8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xF5 PUSH2 0x24B JUMP JUMPDEST PUSH2 0xD0 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD0 JUMP JUMPDEST PUSH2 0xF5 PUSH2 0x145 CALLDATASIZE PUSH1 0x4 PUSH2 0x90A JUMP JUMPDEST PUSH2 0x2C0 JUMP JUMPDEST PUSH2 0x15D PUSH2 0x158 CALLDATASIZE PUSH1 0x4 PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE4 JUMP JUMPDEST PUSH2 0xD0 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xD0 JUMP JUMPDEST PUSH2 0xF5 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0x8B8 JUMP JUMPDEST PUSH2 0x607 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x217 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x22C SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x743 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x25E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH2 0x2BE PUSH1 0x0 PUSH2 0x743 JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x2D3 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x301 JUMPI POP CALLER PUSH2 0x2F6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x373 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8871189B DUP4 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP6 PUSH1 0x40 ADD MLOAD PUSH2 0x3C1 SWAP2 SWAP1 PUSH2 0x9D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x427 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x43B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x45F SWAP2 SWAP1 PUSH2 0x8E8 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH32 0x348B07600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x348B076 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x501 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x20 DUP3 DUP2 ADD DUP1 MLOAD PUSH1 0x40 DUP1 MLOAD DUP7 MLOAD DUP2 MSTORE SWAP3 MLOAD PUSH4 0xFFFFFFFF SWAP1 DUP2 AND SWAP5 DUP5 ADD SWAP5 SWAP1 SWAP5 MSTORE DUP1 DUP7 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 DUP2 AND DUP5 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP9 ADD MLOAD SWAP1 SWAP2 AND SWAP1 DUP5 ADD MSTORE PUSH1 0x80 DUP1 DUP8 ADD MLOAD DUP6 AND SWAP1 DUP5 ADD MSTORE PUSH1 0xA0 DUP4 ADD DUP6 SWAP1 MSTORE MLOAD SWAP3 AND SWAP2 PUSH32 0xEDB65ADBCA0B9DAA2F70FB5E43A2119FDC09136B9552987E6E82AC54B9131DFA SWAP2 DUP2 SWAP1 SUB PUSH1 0xC0 ADD SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x5A0 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5F6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH2 0x5FF DUP3 PUSH2 0x7A0 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x61A PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x670 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6EC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x829 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x602 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x602 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x8CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x8FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x8E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH1 0xC0 DUP2 SLT ISZERO PUSH2 0x91E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0x92C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x977 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP4 CALLDATALOAD DUP2 MSTORE PUSH2 0x98A PUSH1 0x20 DUP6 ADD PUSH2 0x88C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x99B PUSH1 0x40 DUP6 ADD PUSH2 0x8A0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x9AC PUSH1 0x60 DUP6 ADD PUSH2 0x8A0 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x9BD PUSH1 0x80 DUP6 ADD PUSH2 0x88C JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP5 PUSH1 0xA0 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xA1A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP14 MSIZE 0x5C 0x27 0xE7 KECCAK256 0xE7 PUSH8 0x2C3A6E1983D1E14C 0xDB SWAP6 ORIGIN PUSH13 0xD3FC96C721812D1490361C4F64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "871:1520:60:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1403:89:18;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;;-1:-1:-1;;;;;2134:55:94;;;2116:74;;2104:2;2089:18;1403:89:18;;;;;;;;3147:129:19;;;:::i;:::-;;2508:94;;;:::i;1052:67:60:-;;;;;1814:85:19;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;1906:483:60;;;;;;:::i;:::-;;:::i;1744:123:18:-;;;;;;:::i;:::-;;:::i;:::-;;;2366:14:94;;2359:22;2341:41;;2329:2;2314:18;1744:123:18;2296:92:94;1176:49:60;;;;;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;3882:2:94;4028:71:19;;;3864:21:94;3921:2;3901:18;;;3894:30;3960:33;3940:18;;;3933:61;4011:18;;4028:71:19;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3529:2:94;3819:58:19;;;3511:21:94;3568:2;3548:18;;;3541:30;3607:26;3587:18;;;3580:54;3651:18;;3819:58:19;3501:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;1906:483:60:-;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;4242:2:94;2840:99:18;;;4224:21:94;4281:2;4261:18;;;4254:30;4320:34;4300:18;;;4293:62;4391:8;4371:18;;;4364:36;4417:19;;2840:99:18;4214:228:94;2840:99:18;2061:8:60::1;-1:-1:-1::0;;;;;2061:13:60::1;;2075:5;:12;;;2107:5;:25;;;2089:43;;:5;:15;;;:43;;;;:::i;:::-;2061:72;::::0;;::::1;::::0;;;;;;::::1;6055:23:94::0;;;;2061:72:60::1;::::0;::::1;6037:42:94::0;6127:18;6115:31;6095:18;;;6088:59;6010:18;;2061:72:60::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;2190:12:60::1;::::0;::::1;::::0;2143:87:::1;::::0;;;;5801:10:94;5789:23;;;2143:87:60::1;::::0;::::1;5771:42:94::0;5829:18;;;5822:34;;;2143:24:60::1;-1:-1:-1::0;;;;;2143:46:60::1;::::0;::::1;::::0;5744:18:94;;2143:87:60::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;2302:12:60::1;::::0;;::::1;::::0;;2245:137:::1;::::0;;5090:13:94;;5072:32;;5133:24;;2245:137:60::1;5224:21:94::0;;;5202:20;;;5195:51;;;;5283:17;;;5277:24;5320:18;5376:23;;;5354:20;;;5347:53;5460:4;5448:17;;;5442:24;5438:33;;;5416:20;;;5409:63;5532:4;5520:17;;;5514:24;5510:33;;5488:20;;;5481:63;5575:3;5560:19;;5553:35;;;2245:137:60;;::::1;::::0;::::1;::::0;;;;5059:3:94;2245:137:60;;::::1;1906:483:::0;;:::o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3529:2:94;3819:58:19;;;3511:21:94;3568:2;3548:18;;;3541:30;3607:26;3587:18;;;3580:54;3651:18;;3819:58:19;3501:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:19;1744:123:18::0;;;:::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;3529:2:94;3819:58:19;;;3511:21:94;3568:2;3548:18;;;3541:30;3607:26;3587:18;;;3580:54;3651:18;;3819:58:19;3501:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;4649:2:94;2826:73:19::1;::::0;::::1;4631:21:94::0;4688:2;4668:18;;;4661:30;4727:34;4707:18;;;4700:62;4798:7;4778:18;;;4771:35;4823:19;;2826:73:19::1;4621:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;3125:2:94;2230:79:18;;;3107:21:94;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:5;3254:18;;;3247:33;3297:19;;2230:79:18;3097:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;14:163:94:-;81:20;;141:10;130:22;;120:33;;110:2;;167:1;164;157:12;182:171;249:20;;309:18;298:30;;288:41;;278:2;;343:1;340;333:12;358:309;417:6;470:2;458:9;449:7;445:23;441:32;438:2;;;486:1;483;476:12;438:2;525:9;512:23;-1:-1:-1;;;;;568:5:94;564:54;557:5;554:65;544:2;;633:1;630;623:12;544:2;656:5;428:239;-1:-1:-1;;;428:239:94:o;672:277::-;739:6;792:2;780:9;771:7;767:23;763:32;760:2;;;808:1;805;798:12;760:2;840:9;834:16;893:5;886:13;879:21;872:5;869:32;859:2;;915:1;912;905:12;954:1011;1044:6;1052;1096:9;1087:7;1083:23;1126:3;1122:2;1118:12;1115:2;;;1143:1;1140;1133:12;1115:2;1167:4;1163:2;1159:13;1156:2;;;1185:1;1182;1175:12;1156:2;;1218;1212:9;1260:4;1252:6;1248:17;1331:6;1319:10;1316:22;1295:18;1283:10;1280:34;1277:62;1274:2;;;1372:77;1369:1;1362:88;1473:4;1470:1;1463:15;1501:4;1498:1;1491:15;1274:2;1532;1525:22;1571:23;;1556:39;;1628:37;1661:2;1646:18;;1628:37;:::i;:::-;1623:2;1615:6;1611:15;1604:62;1699:37;1732:2;1721:9;1717:18;1699:37;:::i;:::-;1694:2;1686:6;1682:15;1675:62;1770:37;1803:2;1792:9;1788:18;1770:37;:::i;:::-;1765:2;1757:6;1753:15;1746:62;1842:38;1875:3;1864:9;1860:19;1842:38;:::i;:::-;1836:3;1824:16;;1817:64;1828:6;1953:4;1938:20;;;;1925:34;;-1:-1:-1;;;1063:902:94:o;6158:390::-;6197:3;6225:18;6270:2;6267:1;6263:10;6300:2;6297:1;6293:10;6331:3;6327:2;6323:12;6318:3;6315:21;6312:2;;;6369:77;6366:1;6359:88;6470:4;6467:1;6460:15;6498:4;6495:1;6488:15;6312:2;6529:13;;6205:343;-1:-1:-1;;;;6205:343:94:o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "529800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54487",
                "manager()": "2333",
                "owner()": "2387",
                "pendingOwner()": "2364",
                "prizeDistributionFactory()": "infinite",
                "push((uint256,uint32,uint64,uint64,uint32),uint256)": "infinite",
                "renounceOwnership()": "28158",
                "setManager(address)": "30559",
                "timelock()": "infinite",
                "transferOwnership(address)": "27937"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "prizeDistributionFactory()": "78e072a9",
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": "a913c9da",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "timelock()": "d33219b4",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"_prizeDistributionFactory\",\"type\":\"address\"},{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"_timelock\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"prizeDistributionFactory\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"timelock\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"DrawLockedAndTotalNetworkTicketSupplyPushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionFactory\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_draw\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_owner\":\"The smart contract owner\",\"_prizeDistributionFactory\":\"PrizeDistributionFactory address\",\"_timelock\":\"DrawCalculatorTimelock address\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"details\":\"Restricts new draws for N seconds by forcing timelock on the next target draw id.\",\"params\":{\"draw\":\"Draw\",\"totalNetworkTicketSupply\":\"totalNetworkTicketSupply\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 BeaconTimelockTrigger\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"DrawLockedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initialize BeaconTimelockTrigger smart contract.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"prizeDistributionFactory()\":{\"notice\":\"PrizeDistributionFactory reference.\"},\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"timelock()\":{\"notice\":\"DrawCalculatorTimelock reference.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The BeaconTimelockTrigger smart contract is an upgrade of the L1TimelockTimelock smart contract. Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will only pass the total supply of all tickets in a \\\"PrizePool Network\\\" to the prize distribution factory contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol\":\"BeaconTimelockTrigger\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"./interfaces/IBeaconTimelockTrigger.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionFactory.sol\\\";\\nimport \\\"./interfaces/IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 BeaconTimelockTrigger\\n  * @author PoolTogether Inc Team\\n  * @notice The BeaconTimelockTrigger smart contract is an upgrade of the L1TimelockTimelock smart contract.\\n            Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will\\n            only pass the total supply of all tickets in a \\\"PrizePool Network\\\" to the prize distribution factory contract.\\n*/\\ncontract BeaconTimelockTrigger is IBeaconTimelockTrigger, Manageable {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice PrizeDistributionFactory reference.\\n    IPrizeDistributionFactory public immutable prizeDistributionFactory;\\n\\n    /// @notice DrawCalculatorTimelock reference.\\n    IDrawCalculatorTimelock public immutable timelock;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Initialize BeaconTimelockTrigger smart contract.\\n     * @param _owner The smart contract owner\\n     * @param _prizeDistributionFactory PrizeDistributionFactory address\\n     * @param _timelock DrawCalculatorTimelock address\\n     */\\n    constructor(\\n        address _owner,\\n        IPrizeDistributionFactory _prizeDistributionFactory,\\n        IDrawCalculatorTimelock _timelock\\n    ) Ownable(_owner) {\\n        prizeDistributionFactory = _prizeDistributionFactory;\\n        timelock = _timelock;\\n        emit Deployed(_prizeDistributionFactory, _timelock);\\n    }\\n\\n    /// @inheritdoc IBeaconTimelockTrigger\\n    function push(IDrawBeacon.Draw memory _draw, uint256 _totalNetworkTicketSupply)\\n        external\\n        override\\n        onlyManagerOrOwner\\n    {\\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\\n        prizeDistributionFactory.pushPrizeDistribution(_draw.drawId, _totalNetworkTicketSupply);\\n        emit DrawLockedAndTotalNetworkTicketSupplyPushed(\\n            _draw.drawId,\\n            _draw,\\n            _totalNetworkTicketSupply\\n        );\\n    }\\n}\\n\",\"keccak256\":\"0x4efbca883d0e8b28079b13bd4882e9b4ad452ef55fd5d4ba98251b81662712d5\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./IPrizeDistributionFactory.sol\\\";\\nimport \\\"./IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IBeaconTimelockTrigger\\n * @author PoolTogether Inc Team\\n * @notice The IBeaconTimelockTrigger smart contract interface...\\n */\\ninterface IBeaconTimelockTrigger {\\n    /// @notice Emitted when the contract is deployed.\\n    event Deployed(\\n        IPrizeDistributionFactory indexed prizeDistributionFactory,\\n        IDrawCalculatorTimelock indexed timelock\\n    );\\n\\n    /**\\n     * @notice Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\\n     * @param drawId Draw ID\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    event DrawLockedAndTotalNetworkTicketSupplyPushed(\\n        uint32 indexed drawId,\\n        IDrawBeacon.Draw draw,\\n        uint256 totalNetworkTicketSupply\\n    );\\n\\n    /**\\n     * @notice Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory\\n     * @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    function push(IDrawBeacon.Draw memory draw, uint256 totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x729afb3ec0681df30f6f6884fbcf8485df319db514e5f3e5bbacf36b6e4d5c4d\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\ninterface IPrizeDistributionFactory {\\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x035644792635f46d3ce9878f2e6e19ce4b9c7eaafde336222ffb45889ff18e5d\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol:BeaconTimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol:BeaconTimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol:BeaconTimelockTrigger",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address)": {
                "notice": "Emitted when the contract is deployed."
              },
              "DrawLockedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory"
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initialize BeaconTimelockTrigger smart contract."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "prizeDistributionFactory()": {
                "notice": "PrizeDistributionFactory reference."
              },
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory"
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "timelock()": {
                "notice": "DrawCalculatorTimelock reference."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The BeaconTimelockTrigger smart contract is an upgrade of the L1TimelockTimelock smart contract. Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will only pass the total supply of all tickets in a \"PrizePool Network\" to the prize distribution factory contract.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol": {
        "DrawCalculatorTimelock": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "_calculator",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculator",
                  "name": "drawCalculator",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint64",
                  "name": "timestamp",
                  "type": "uint64"
                }
              ],
              "name": "LockedDraw",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": [
                {
                  "components": [
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawCalculatorTimelock.Timelock",
                  "name": "timelock",
                  "type": "tuple"
                }
              ],
              "name": "TimelockSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTimelock",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawCalculatorTimelock.Timelock",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "hasElapsed",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint64",
                  "name": "_timestamp",
                  "type": "uint64"
                }
              ],
              "name": "lock",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawCalculatorTimelock.Timelock",
                  "name": "_timelock",
                  "type": "tuple"
                }
              ],
              "name": "setTimelock",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address)": {
                "params": {
                  "drawCalculator": "DrawCalculator address bound to this timelock"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "details": "Will enforce a \"cooldown\" period between when a Draw is pushed and when users can start to claim prizes.",
                "params": {
                  "data": "Encoded pick indices",
                  "drawIds": "Draw.drawId",
                  "user": "User address"
                },
                "returns": {
                  "_0": "Prizes awardable array"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_calculator": "DrawCalculator address.",
                  "_owner": "Address of the DrawCalculator owner."
                }
              },
              "getDrawCalculator()": {
                "returns": {
                  "_0": "IDrawCalculator"
                }
              },
              "getTimelock()": {
                "returns": {
                  "_0": "Timelock"
                }
              },
              "hasElapsed()": {
                "returns": {
                  "_0": "True if timelockDuration, since last timelock has elapsed, false otherwise."
                }
              },
              "lock(uint32,uint64)": {
                "details": "Restricts new draws by forcing a push timelock.",
                "params": {
                  "_drawId": "Draw id to lock.",
                  "_timestamp": "Epoch timestamp to unlock the draw."
                },
                "returns": {
                  "_0": "True if operation was successful."
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "setTimelock((uint64,uint32))": {
                "params": {
                  "_timelock": "Timelock struct to set."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 OracleTimelock",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15628": {
                  "entryPoint": null,
                  "id": 15628,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 135,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawCalculator_$8482_fromMemory": {
                  "entryPoint": 215,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "validator_revert_address": {
                  "entryPoint": 273,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:561:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "136:287:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "182:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "191:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "194:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "184:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "184:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "184:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "166:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "153:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "153:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "178:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "149:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "149:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "146:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "207:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "226:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "220:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "220:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "211:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "270:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "245:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "245:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "245:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "285:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "295:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "285:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "309:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "334:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "345:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "330:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "330:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "324:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "324:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "313:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "383:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "358:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "358:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "358:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "400:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "410:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "400:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawCalculator_$8482_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "94:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "105:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "117:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "125:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:409:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "473:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "537:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "546:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "549:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "539:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "539:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "539:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "496:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "507:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "522:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "527:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "518:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "518:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "531:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "514:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "514:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "503:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "503:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "493:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "493:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "486:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "486:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "483:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "462:5:94",
                            "type": ""
                          }
                        ],
                        "src": "428:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IDrawCalculator_$8482_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a060405234801561001057600080fd5b5060405161120338038061120383398101604081905261002f916100d7565b8161003981610087565b506001600160601b0319606082901b166080526040516001600160a01b038216907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a25050610129565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100ea57600080fd5b82516100f581610111565b602084015190925061010681610111565b809150509250929050565b6001600160a01b038116811461012657600080fd5b50565b60805160601c6110b661014d6000396000818160e601526105f501526110b66000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe714610209578063d3a9c6121461021c578063e30c397814610224578063f2fde38b1461023557600080fd5b80638da5cb5b146101c4578063aaca392e146101d5578063bdf28f5e146101f657600080fd5b80636221a54b116100bd5780636221a54b1461013e578063715018a6146101995780638871189b146101a157600080fd5b80632d680cfa146100e4578063481c6a75146101235780634e71e0c814610134575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b0316610106565b61013c610248565b005b60408051808201825260008082526020918201528151808301835260035467ffffffffffffffff811680835263ffffffff6801000000000000000090920482169284019283528451908152915116918101919091520161011a565b61013c6102db565b6101b46101af366004610e5d565b610350565b604051901515815260200161011a565b6000546001600160a01b0316610106565b6101e86101e3366004610c63565b61052a565b60405161011a929190610f14565b61013c610204366004610de7565b610695565b6101b4610217366004610c41565b610782565b6101b46107fe565b6001546001600160a01b0316610106565b61013c610243366004610c41565b610840565b6001546001600160a01b031633146102a75760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b6001546102bc906001600160a01b031661097c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102ee6000546001600160a01b031690565b6001600160a01b0316146103445760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b61034e600061097c565b565b6000336103656002546001600160a01b031690565b6001600160a01b031614806103935750336103886000546001600160a01b031690565b6001600160a01b0316145b6104055760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161029e565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff1660208201819052610443906001610fad565b63ffffffff168463ffffffff161461049d5760405162461bcd60e51b815260206004820152601660248201527f4f4d2f6e6f742d6472617769642d706c75732d6f6e6500000000000000000000604482015260640161029e565b6104a6816109d9565b60408051808201825267ffffffffffffffff851680825263ffffffff87166020928301819052600380546bffffffffffffffffffffffff1916831768010000000000000000830217905592519081527f20bc545b2cd11ce6226bb1c860ff6f659360e1010b2c3b738c9937c71e45d314910160405180910390a25060019392505050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff166020820152606090819060005b868110156105c457816020015163ffffffff1688888381811061058857610588611054565b905060200201602081019061059d9190610e42565b63ffffffff1614156105b2576105b2826109d9565b806105bc81611005565b915050610563565b506040517faaca392e0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063aaca392e90610632908b908b908b908b908b90600401610e90565b60006040518083038186803b15801561064a57600080fd5b505afa15801561065e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106869190810190610d15565b92509250509550959350505050565b336106a86000546001600160a01b031690565b6001600160a01b0316146106fe5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b8051600380546020808501805167ffffffffffffffff9095166bffffffffffffffffffffffff1990931683176801000000000000000063ffffffff9687160217909355604080519283529251909316928101929092527f51ca607fe37449f0b3448b77ae0b2162d498f335628b88d450cd671ebb5e1881910160405180910390a150565b6000336107976000546001600160a01b031690565b6001600160a01b0316146107ed5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6107f682610a31565b90505b919050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff16602082015260009061083b90610b1d565b905090565b336108536000546001600160a01b031690565b6001600160a01b0316146108a95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6001600160a01b0381166109255760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161029e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109e281610b1d565b610a2e5760405162461bcd60e51b815260206004820152601760248201527f4f4d2f74696d656c6f636b2d6e6f742d65787069726564000000000000000000604482015260640161029e565b50565b6002546000906001600160a01b03908116908316811415610aba5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161029e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b805160009067ffffffffffffffff16610b3857506001919050565b505167ffffffffffffffff16421190565b80356001600160a01b03811681146107f957600080fd5b60008083601f840112610b7257600080fd5b50813567ffffffffffffffff811115610b8a57600080fd5b602083019150836020828501011115610ba257600080fd5b9250929050565b600082601f830112610bba57600080fd5b815167ffffffffffffffff811115610bd457610bd461106a565b610be76020601f19601f84011601610f7c565b818152846020838601011115610bfc57600080fd5b610c0d826020830160208701610fd5565b949350505050565b803563ffffffff811681146107f957600080fd5b803567ffffffffffffffff811681146107f957600080fd5b600060208284031215610c5357600080fd5b610c5c82610b49565b9392505050565b600080600080600060608688031215610c7b57600080fd5b610c8486610b49565b9450602086013567ffffffffffffffff80821115610ca157600080fd5b818801915088601f830112610cb557600080fd5b813581811115610cc457600080fd5b8960208260051b8501011115610cd957600080fd5b602083019650809550506040880135915080821115610cf757600080fd5b50610d0488828901610b60565b969995985093965092949392505050565b60008060408385031215610d2857600080fd5b825167ffffffffffffffff80821115610d4057600080fd5b818501915085601f830112610d5457600080fd5b8151602082821115610d6857610d6861106a565b8160051b610d77828201610f7c565b8381528281019086840183880185018c1015610d9257600080fd5b600097505b85881015610db5578051835260019790970196918401918401610d97565b509289015192975091945050505080821115610dd057600080fd5b50610ddd85828601610ba9565b9150509250929050565b600060408284031215610df957600080fd5b6040516040810181811067ffffffffffffffff82111715610e1c57610e1c61106a565b604052610e2883610c29565b8152610e3660208401610c15565b60208201529392505050565b600060208284031215610e5457600080fd5b610c5c82610c15565b60008060408385031215610e7057600080fd5b610e7983610c15565b9150610e8760208401610c29565b90509250929050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b88811015610ee05763ffffffff610ecd85610c15565b1682529282019290820190600101610eb7565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b604080825283519082018190526000906020906060840190828701845b82811015610f4d57815184529284019290840190600101610f31565b505050838103828501528451808252610f6b81848401858901610fd5565b601f01601f19160101949350505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610fa557610fa561106a565b604052919050565b600063ffffffff808316818516808303821115610fcc57610fcc61103e565b01949350505050565b60005b83811015610ff0578181015183820152602001610fd8565b83811115610fff576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156110375761103761103e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212206f958f4689e5182a13d806222098a80c3003b318fbe3650ace8e361a712da1d664736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1203 CODESIZE SUB DUP1 PUSH2 0x1203 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0xD7 JUMP JUMPDEST DUP2 PUSH2 0x39 DUP2 PUSH2 0x87 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH1 0x80 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH32 0xF40FCEC21964FFB566044D083B4073F29F7F7929110EA19E1B3EBE375D89055E SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP PUSH2 0x129 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0xF5 DUP2 PUSH2 0x111 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x106 DUP2 PUSH2 0x111 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x126 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0x10B6 PUSH2 0x14D PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xE6 ADD MSTORE PUSH2 0x5F5 ADD MSTORE PUSH2 0x10B6 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xD3A9C612 EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x235 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1C4 JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x1D5 JUMPI DUP1 PUSH4 0xBDF28F5E EQ PUSH2 0x1F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6221A54B GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x6221A54B EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0x8871189B EQ PUSH2 0x1A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2D680CFA EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x134 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x106 JUMP JUMPDEST PUSH2 0x13C PUSH2 0x248 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP2 MLOAD DUP1 DUP4 ADD DUP4 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP1 DUP4 MSTORE PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP3 AND SWAP3 DUP5 ADD SWAP3 DUP4 MSTORE DUP5 MLOAD SWAP1 DUP2 MSTORE SWAP2 MLOAD AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x11A JUMP JUMPDEST PUSH2 0x13C PUSH2 0x2DB JUMP JUMPDEST PUSH2 0x1B4 PUSH2 0x1AF CALLDATASIZE PUSH1 0x4 PUSH2 0xE5D JUMP JUMPDEST PUSH2 0x350 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x11A JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x106 JUMP JUMPDEST PUSH2 0x1E8 PUSH2 0x1E3 CALLDATASIZE PUSH1 0x4 PUSH2 0xC63 JUMP JUMPDEST PUSH2 0x52A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP3 SWAP2 SWAP1 PUSH2 0xF14 JUMP JUMPDEST PUSH2 0x13C PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0xDE7 JUMP JUMPDEST PUSH2 0x695 JUMP JUMPDEST PUSH2 0x1B4 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xC41 JUMP JUMPDEST PUSH2 0x782 JUMP JUMPDEST PUSH2 0x1B4 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x106 JUMP JUMPDEST PUSH2 0x13C PUSH2 0x243 CALLDATASIZE PUSH1 0x4 PUSH2 0xC41 JUMP JUMPDEST PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x2A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x2BC SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x97C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x2EE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x344 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH2 0x34E PUSH1 0x0 PUSH2 0x97C JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x365 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x393 JUMPI POP CALLER PUSH2 0x388 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x405 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x443 SWAP1 PUSH1 0x1 PUSH2 0xFAD JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND EQ PUSH2 0x49D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F4D2F6E6F742D6472617769642D706C75732D6F6E6500000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH2 0x4A6 DUP2 PUSH2 0x9D9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF DUP6 AND DUP1 DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND PUSH1 0x20 SWAP3 DUP4 ADD DUP2 SWAP1 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP4 OR PUSH9 0x10000000000000000 DUP4 MUL OR SWAP1 SSTORE SWAP3 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x20BC545B2CD11CE6226BB1C860FF6F659360E1010B2C3B738C9937C71E45D314 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 SWAP1 DUP2 SWAP1 PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x5C4 JUMPI DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x588 JUMPI PUSH2 0x588 PUSH2 0x1054 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x59D SWAP2 SWAP1 PUSH2 0xE42 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x5B2 JUMPI PUSH2 0x5B2 DUP3 PUSH2 0x9D9 JUMP JUMPDEST DUP1 PUSH2 0x5BC DUP2 PUSH2 0x1005 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x563 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0xAACA392E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xAACA392E SWAP1 PUSH2 0x632 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0xE90 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x64A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x65E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x686 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0xD15 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x6A8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6FE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST DUP1 MLOAD PUSH1 0x3 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD DUP1 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP6 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND DUP4 OR PUSH9 0x10000000000000000 PUSH4 0xFFFFFFFF SWAP7 DUP8 AND MUL OR SWAP1 SWAP4 SSTORE PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 MLOAD SWAP1 SWAP4 AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH32 0x51CA607FE37449F0B3448B77AE0B2162D498F335628B88D450CD671EBB5E1881 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x797 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH2 0x7F6 DUP3 PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH2 0x83B SWAP1 PUSH2 0xB1D JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH2 0x853 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x925 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x9E2 DUP2 PUSH2 0xB1D JUMP JUMPDEST PUSH2 0xA2E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F4D2F74696D656C6F636B2D6E6F742D65787069726564000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xABA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xB38 JUMPI POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST POP MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP GT SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xB72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xBA2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xBBA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xBD4 JUMPI PUSH2 0xBD4 PUSH2 0x106A JUMP JUMPDEST PUSH2 0xBE7 PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0xF7C JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xBFC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC0D DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP8 ADD PUSH2 0xFD5 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC53 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC5C DUP3 PUSH2 0xB49 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xC7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC84 DUP7 PUSH2 0xB49 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xCA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xCB5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xCC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xCD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP7 POP DUP1 SWAP6 POP POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xCF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xD04 DUP9 DUP3 DUP10 ADD PUSH2 0xB60 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xD40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP3 DUP3 GT ISZERO PUSH2 0xD68 JUMPI PUSH2 0xD68 PUSH2 0x106A JUMP JUMPDEST DUP2 PUSH1 0x5 SHL PUSH2 0xD77 DUP3 DUP3 ADD PUSH2 0xF7C JUMP JUMPDEST DUP4 DUP2 MSTORE DUP3 DUP2 ADD SWAP1 DUP7 DUP5 ADD DUP4 DUP9 ADD DUP6 ADD DUP13 LT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP8 POP JUMPDEST DUP6 DUP9 LT ISZERO PUSH2 0xDB5 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP8 SWAP1 SWAP8 ADD SWAP7 SWAP2 DUP5 ADD SWAP2 DUP5 ADD PUSH2 0xD97 JUMP JUMPDEST POP SWAP3 DUP10 ADD MLOAD SWAP3 SWAP8 POP SWAP2 SWAP5 POP POP POP POP DUP1 DUP3 GT ISZERO PUSH2 0xDD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xDDD DUP6 DUP3 DUP7 ADD PUSH2 0xBA9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xE1C JUMPI PUSH2 0xE1C PUSH2 0x106A JUMP JUMPDEST PUSH1 0x40 MSTORE PUSH2 0xE28 DUP4 PUSH2 0xC29 JUMP JUMPDEST DUP2 MSTORE PUSH2 0xE36 PUSH1 0x20 DUP5 ADD PUSH2 0xC15 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC5C DUP3 PUSH2 0xC15 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE79 DUP4 PUSH2 0xC15 JUMP JUMPDEST SWAP2 POP PUSH2 0xE87 PUSH1 0x20 DUP5 ADD PUSH2 0xC29 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP7 SWAP1 PUSH1 0x80 DUP5 ADD DUP4 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0xEE0 JUMPI PUSH4 0xFFFFFFFF PUSH2 0xECD DUP6 PUSH2 0xC15 JUMP JUMPDEST AND DUP3 MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xEB7 JUMP JUMPDEST POP DUP5 DUP2 SUB PUSH1 0x40 DUP7 ADD MSTORE DUP6 DUP2 MSTORE DUP6 DUP8 DUP4 DUP4 ADD CALLDATACOPY PUSH1 0x0 DUP2 DUP8 ADD DUP4 ADD MSTORE PUSH1 0x1F SWAP1 SWAP6 ADD PUSH1 0x1F NOT AND SWAP1 SWAP5 ADD SWAP1 SWAP4 ADD SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP4 MLOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x20 SWAP1 PUSH1 0x60 DUP5 ADD SWAP1 DUP3 DUP8 ADD DUP5 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xF4D JUMPI DUP2 MLOAD DUP5 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP1 DUP5 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xF31 JUMP JUMPDEST POP POP POP DUP4 DUP2 SUB DUP3 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH2 0xF6B DUP2 DUP5 DUP5 ADD DUP6 DUP10 ADD PUSH2 0xFD5 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xFA5 JUMPI PUSH2 0xFA5 PUSH2 0x106A JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xFCC JUMPI PUSH2 0xFCC PUSH2 0x103E JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xFF0 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xFD8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xFFF JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1037 JUMPI PUSH2 0x1037 PUSH2 0x103E JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH16 0x958F4689E5182A13D806222098A80C30 SUB 0xB3 XOR 0xFB 0xE3 PUSH6 0xACE8E361A71 0x2D LOG1 0xD6 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "725:3639:61:-:0;;;1579:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1644:6;1648:24:19;1644:6:61;1648:9:19;:24::i;:::-;-1:-1:-1;;;;;;;1662:24:61::1;::::0;;;;::::1;::::0;1702:21:::1;::::0;-1:-1:-1;;;;;1662:24:61;::::1;::::0;1702:21:::1;::::0;;;::::1;1579:151:::0;;725:3639;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:409:94:-;117:6;125;178:2;166:9;157:7;153:23;149:32;146:2;;;194:1;191;184:12;146:2;226:9;220:16;245:31;270:5;245:31;:::i;:::-;345:2;330:18;;324:25;295:5;;-1:-1:-1;358:33:94;324:25;358:33;:::i;:::-;410:7;400:17;;;136:287;;;;;:::o;428:131::-;-1:-1:-1;;;;;503:31:94;;493:42;;483:2;;549:1;546;539:12;483:2;473:86;:::o;:::-;725:3639:61;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_requireTimelockElapsed_15823": {
                  "entryPoint": 2521,
                  "id": 15823,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setManager_3068": {
                  "entryPoint": 2609,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 2428,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_timelockHasElapsed_15808": {
                  "entryPoint": 2845,
                  "id": 15808,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@calculate_15683": {
                  "entryPoint": 1322,
                  "id": 15683,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@claimOwnership_3210": {
                  "entryPoint": 584,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawCalculator_15741": {
                  "entryPoint": null,
                  "id": 15741,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getTimelock_15752": {
                  "entryPoint": null,
                  "id": 15752,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@hasElapsed_15783": {
                  "entryPoint": 2046,
                  "id": 15783,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@lock_15730": {
                  "entryPoint": 848,
                  "id": 15730,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 731,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 1922,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setTimelock_15771": {
                  "entryPoint": 1685,
                  "id": 15771,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 2112,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 2889,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_bytes_calldata": {
                  "entryPoint": 2912,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_bytes_fromMemory": {
                  "entryPoint": 2985,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 3137,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr": {
                  "entryPoint": 3171,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory": {
                  "entryPoint": 3349,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_struct$_Timelock_$16207_memory_ptr": {
                  "entryPoint": 3559,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 3650,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint32t_uint64": {
                  "entryPoint": 3677,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_uint32": {
                  "entryPoint": 3093,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 3113,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3728,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3860,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculator_$8482__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3b94bf08c62f227970785d1aa1846dcc2e65986b745b5e79ce64e97e577b1104__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_a71dbedad0a9bb0ec5b3d22a69b03c3a407fe8d356a0633da67309c7fc7e9844__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Timelock_$16207_memory_ptr__to_t_struct$_Timelock_$16207_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 3964,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint32": {
                  "entryPoint": 4013,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 4053,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 4101,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4158,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 4180,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 4202,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:12308:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "287:275:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "336:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "345:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "348:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "338:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "338:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "338:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "315:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "323:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "311:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "311:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "330:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "307:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "307:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "300:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "300:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "297:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "361:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "384:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "371:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "371:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "361:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "434:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "443:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "446:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "436:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "436:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "436:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "406:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "414:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "403:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "403:30:94"
                              },
                              "nodeType": "YulIf",
                              "src": "400:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "459:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "475:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "483:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "471:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "471:17:94"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "459:8:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "540:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "549:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "552:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "542:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "542:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "542:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "511:6:94"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "519:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "507:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "507:19:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "528:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "503:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "503:30:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "535:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "500:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "500:39:94"
                              },
                              "nodeType": "YulIf",
                              "src": "497:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "250:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "258:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "266:8:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "276:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:347:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "630:492:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "679:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "688:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "691:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "681:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "681:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "681:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "658:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "666:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "654:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "654:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "673:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "650:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "650:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "643:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "643:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "640:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "704:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "720:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "714:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "714:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "708:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "766:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "768:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "768:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "768:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "742:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "746:18:94",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "739:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "739:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "736:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "797:129:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "840:2:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "844:4:94",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "836:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "836:13:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "851:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "832:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "832:86:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "920:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "828:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "828:97:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "812:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "812:114:94"
                              },
                              "variables": [
                                {
                                  "name": "array_1",
                                  "nodeType": "YulTypedName",
                                  "src": "801:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "942:7:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "951:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "935:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "935:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "935:19:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1002:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1011:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1014:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1004:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1004:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1004:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "977:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "985:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "973:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "973:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "990:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "969:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "969:26:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "997:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "966:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "966:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "963:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1053:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1061:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1049:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1049:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "array_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1072:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1081:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1068:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1068:18:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1088:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1027:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1027:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1027:64:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1100:16:94",
                              "value": {
                                "name": "array_1",
                                "nodeType": "YulIdentifier",
                                "src": "1109:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "1100:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "604:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "612:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "620:5:94",
                            "type": ""
                          }
                        ],
                        "src": "567:555:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1175:115:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1185:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1207:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1194:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1194:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1185:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1268:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1277:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1280:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1270:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1270:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1270:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1236:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1247:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1254:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1243:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1243:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1226:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1226:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1223:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1154:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1165:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1127:163:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1343:123:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1353:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1362:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1362:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1444:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1453:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1456:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1446:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1446:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1446:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1404:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1415:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1422:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1411:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1411:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1401:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1401:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1394:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1394:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1391:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1322:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1333:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1295:171:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1541:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1587:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1596:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1599:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1589:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1589:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1589:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1562:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1571:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1558:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1558:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1583:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1554:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1554:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1551:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1612:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1641:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1622:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1622:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1507:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1518:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1530:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1471:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1819:818:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1865:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1874:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1877:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1867:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1867:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1867:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1840:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1849:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1836:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1836:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1861:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1832:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1832:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1829:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1890:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1919:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1900:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1900:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1890:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1938:46:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1969:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1980:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1965:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1965:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1952:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1952:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1942:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1993:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2003:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1997:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2048:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2057:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2060:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2050:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2050:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2050:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2036:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2044:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2033:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2033:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2030:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2073:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2087:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2098:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2083:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2083:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2077:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2153:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2162:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2165:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2155:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2155:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2155:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2132:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2136:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2128:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2128:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2143:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2124:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2124:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2117:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2117:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2114:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2178:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2205:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2192:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2192:16:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2182:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2235:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2244:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2247:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2237:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2237:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2237:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2223:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2220:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2220:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2217:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2309:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2318:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2321:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2311:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2311:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2311:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2274:2:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2282:1:94",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2285:6:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2278:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2278:14:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2270:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2270:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2295:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2266:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2266:32:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2300:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2263:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2263:45:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2260:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2334:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2348:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2352:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2344:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2344:11:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2364:16:94",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2374:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2364:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2389:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2422:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2433:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2418:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2418:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2405:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2405:32:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2393:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2466:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2475:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2478:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2468:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2468:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2468:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2452:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2462:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2449:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2449:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2446:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2491:86:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2547:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2558:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2543:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2543:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2569:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2517:25:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2517:60:94"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2495:8:94",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2505:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2586:18:94",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "2596:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2586:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2613:18:94",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "2623:8:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2613:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1753:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1764:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1776:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1784:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1792:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1800:6:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1808:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1662:975:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2774:1019:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2820:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2829:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2832:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2822:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2822:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2822:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2795:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2804:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2791:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2791:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2816:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2787:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2787:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2784:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2845:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2865:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2859:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2859:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2849:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2884:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2894:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2888:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2939:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2948:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2951:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2941:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2941:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2941:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2927:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2935:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2924:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2924:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2921:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2964:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2978:9:94"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2989:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2974:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2974:22:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2968:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3044:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3053:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3056:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3046:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3046:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3023:2:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3027:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3019:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3019:13:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3015:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3015:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3008:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3008:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3005:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3069:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3085:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3079:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3079:9:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3073:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3097:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3107:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3101:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3134:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "3136:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3136:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3136:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3126:2:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3130:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3123:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3123:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3120:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3165:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3179:1:94",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3182:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "3175:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3175:10:94"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3169:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3194:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulIdentifier",
                                        "src": "3225:2:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3229:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3221:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3221:11:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3205:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3205:28:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3198:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3242:16:94",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3255:3:94"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3246:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3274:3:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3279:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3267:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3267:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3267:15:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3291:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3302:3:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3307:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3298:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3291:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3319:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3334:2:94"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3338:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3330:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3330:11:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "3323:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3387:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3396:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3399:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3389:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3389:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3389:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3364:2:94"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "3368:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3360:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3360:11:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3373:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3356:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3356:20:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3378:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3353:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3353:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3350:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3412:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3421:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3416:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3476:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3497:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "3508:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3502:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3502:10:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3490:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3490:23:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3490:23:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3526:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3537:3:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3542:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3533:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3533:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "3526:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3558:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "3569:3:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3574:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3565:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3565:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "3558:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3442:1:94"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3445:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3439:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3439:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3449:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3451:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3460:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3463:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3456:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3456:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3451:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3435:3:94",
                                "statements": []
                              },
                              "src": "3431:156:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3596:15:94",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "3606:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3596:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3620:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3646:9:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3657:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3642:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3642:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3636:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3636:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3624:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3690:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3699:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3702:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3692:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3692:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3692:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3676:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3686:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3673:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3673:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3670:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3715:72:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3757:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3768:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3753:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3753:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3779:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3725:27:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3725:62:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3715:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2732:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2743:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2755:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2763:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2642:1151:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3895:419:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3941:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3950:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3953:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3943:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3943:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3943:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3916:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3925:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3912:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3912:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3937:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3908:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3908:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3905:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3966:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3986:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3980:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3980:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3970:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3998:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4020:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4028:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4016:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4016:15:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4002:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4106:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "4108:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4108:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4108:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4049:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4061:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4046:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4046:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4085:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4097:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4082:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4082:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "4043:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4043:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4040:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4144:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4148:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4137:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4137:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4137:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4175:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4201:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "4183:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4183:28:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4168:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4168:44:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4168:44:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4232:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4240:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4228:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4228:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "4267:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4278:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4263:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4263:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "4245:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4245:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4221:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4221:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4221:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4292:16:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "4302:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4292:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Timelock_$16207_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3861:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3872:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3884:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3798:516:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4388:115:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4434:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4443:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4446:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4436:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4436:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4436:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4409:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4418:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4405:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4405:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4430:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4401:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4401:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4398:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4459:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4487:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4469:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4469:28:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4459:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4354:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4365:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4377:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4319:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4593:171:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4639:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4648:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4651:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4641:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4641:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4641:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4614:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4623:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4610:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4610:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4635:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4606:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4606:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "4603:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4664:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4692:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4674:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4674:28:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4664:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4711:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4743:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4754:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4739:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4739:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "4721:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4721:37:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4711:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4551:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4562:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4574:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4582:6:94",
                            "type": ""
                          }
                        ],
                        "src": "4508:256:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4870:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4880:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4892:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4903:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4888:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4888:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4880:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4922:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4937:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4945:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4933:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4933:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4915:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4915:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4915:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4839:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4850:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4861:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4769:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5243:842:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5253:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5271:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5282:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5267:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5267:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5257:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5301:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5316:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5324:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5312:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5312:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5294:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5294:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5294:74:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5377:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5387:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5381:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5409:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5420:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5405:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5405:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5425:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5398:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5398:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5398:30:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5437:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "5448:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "5441:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5470:6:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5478:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5463:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5463:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5463:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5494:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5505:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5516:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5501:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5501:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "5494:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5529:20:94",
                              "value": {
                                "name": "value1",
                                "nodeType": "YulIdentifier",
                                "src": "5543:6:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "5533:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5558:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5567:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5562:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5626:149:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5647:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5674:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "abi_decode_uint32",
                                                "nodeType": "YulIdentifier",
                                                "src": "5656:17:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5656:25:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "5683:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "5652:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5652:42:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5640:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5640:55:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5640:55:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5708:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5719:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5724:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5715:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5715:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5708:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5740:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "5754:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5762:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5750:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5750:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "5740:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5588:1:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5591:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5585:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5585:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5599:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5601:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5610:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5613:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5606:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5606:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5601:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5581:3:94",
                                "statements": []
                              },
                              "src": "5577:198:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5795:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5806:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5791:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5791:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5815:3:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5820:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5811:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5811:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5784:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5784:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5784:47:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5847:3:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5852:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5840:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5840:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5840:19:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5885:3:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5890:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5881:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5881:12:94"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5895:6:94"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5903:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "5868:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5868:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5868:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "pos",
                                            "nodeType": "YulIdentifier",
                                            "src": "5934:3:94"
                                          },
                                          {
                                            "name": "value4",
                                            "nodeType": "YulIdentifier",
                                            "src": "5939:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5930:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5930:16:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5948:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5926:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5926:25:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5953:1:94",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5919:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5919:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5919:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5964:115:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5980:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5993:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6001:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5989:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5989:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6006:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5985:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5985:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5976:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5976:98:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6076:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5972:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5972:107:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5964:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5180:9:94",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5191:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5199:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5207:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5223:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5234:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5000:1085:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6287:784:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6297:32:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6315:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6326:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6311:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6311:18:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6301:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6345:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6356:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6338:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6338:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6338:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6368:17:94",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "6379:6:94"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "6372:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6394:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6414:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6408:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6408:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "6398:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6437:6:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6445:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6430:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6430:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6430:22:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6461:25:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6472:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6483:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6468:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6468:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "6461:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6495:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6505:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6499:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6518:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6536:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6544:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6532:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6532:15:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6522:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6556:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6565:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "6560:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6624:120:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6645:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "6656:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "6650:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6650:13:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6638:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6638:26:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6638:26:94"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6677:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6688:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6693:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6684:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6684:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6677:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6709:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "6723:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6731:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6719:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6719:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6709:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "6586:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6589:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6583:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6583:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6597:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6599:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "6608:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6611:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6604:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6604:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "6599:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "6579:3:94",
                                "statements": []
                              },
                              "src": "6575:169:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6764:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6775:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6760:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6760:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6784:3:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6789:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6780:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6780:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6753:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6753:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6753:47:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6809:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6831:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6825:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6825:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6813:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "6854:3:94"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6859:8:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6847:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6847:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6847:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6903:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6911:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6899:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6899:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6920:3:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6925:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6916:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6916:12:94"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6930:8:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "6877:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6877:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6877:62:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6948:117:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6964:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6977:8:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6987:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6973:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6973:17:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6992:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "6969:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6969:90:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6960:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6960:100:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7062:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6956:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6956:109:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6948:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6248:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6259:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6267:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6278:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6090:981:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7171:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7181:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7193:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7204:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7189:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7189:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7181:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7223:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7248:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7241:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7241:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7234:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7234:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7216:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7216:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7216:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7140:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7151:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7162:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7076:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7393:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7403:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7415:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7426:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7411:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7411:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7403:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7445:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7460:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7468:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7456:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7456:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7438:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7438:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7438:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculator_$8482__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7362:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7373:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7384:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7268:250:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7697:173:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7714:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7725:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7707:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7707:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7707:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7748:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7759:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7744:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7744:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7764:2:94",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7737:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7737:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7737:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7787:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7798:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7783:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7783:18:94"
                                  },
                                  {
                                    "hexValue": "4f4d2f74696d656c6f636b2d6e6f742d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7803:25:94",
                                    "type": "",
                                    "value": "OM/timelock-not-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7776:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7776:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7776:53:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7838:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7850:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7861:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7846:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7846:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7838:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3b94bf08c62f227970785d1aa1846dcc2e65986b745b5e79ce64e97e577b1104__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7674:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7688:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7523:347:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8049:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8066:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8077:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8059:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8059:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8059:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8100:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8111:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8096:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8096:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8116:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8089:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8089:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8089:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8139:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8150:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8135:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8135:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8155:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8128:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8128:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8128:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8210:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8221:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8206:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8206:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8226:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8199:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8199:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8199:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8241:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8253:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8264:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8249:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8249:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8241:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8026:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8040:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7875:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8453:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8470:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8481:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8463:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8463:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8463:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8504:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8515:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8500:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8500:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8520:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8493:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8493:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8493:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8543:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8554:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8539:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8539:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8559:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8532:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8532:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8532:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8595:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8607:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8618:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8603:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8603:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8595:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8430:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8444:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8279:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8806:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8823:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8834:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8816:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8816:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8816:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8857:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8868:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8853:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8853:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8873:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8846:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8846:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8846:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8896:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8907:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8892:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8892:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8912:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8885:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8885:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8885:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8955:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8967:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8978:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8963:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8963:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8955:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8783:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8797:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8632:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9166:172:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9183:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9194:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9176:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9176:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9176:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9217:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9228:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9213:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9213:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9233:2:94",
                                    "type": "",
                                    "value": "22"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9206:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9206:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9206:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9256:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9267:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9252:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9252:18:94"
                                  },
                                  {
                                    "hexValue": "4f4d2f6e6f742d6472617769642d706c75732d6f6e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9272:24:94",
                                    "type": "",
                                    "value": "OM/not-drawid-plus-one"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9245:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9245:52:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9245:52:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9306:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9318:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9329:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9314:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9314:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9306:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_a71dbedad0a9bb0ec5b3d22a69b03c3a407fe8d356a0633da67309c7fc7e9844__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9143:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9157:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8992:346:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9517:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9534:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9545:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9527:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9527:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9527:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9568:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9579:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9564:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9564:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9584:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9557:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9557:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9557:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9607:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9618:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9603:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9603:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9623:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9596:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9596:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9596:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9678:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9689:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9674:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9674:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9694:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9667:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9667:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9667:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9712:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9724:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9735:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9720:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9720:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9712:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9494:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9508:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9343:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9924:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9941:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9952:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9934:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9934:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9934:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9975:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9986:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9971:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9971:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9991:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9964:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9964:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9964:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10014:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10025:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10010:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10010:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10030:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10003:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10003:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10003:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10085:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10096:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10081:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10081:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10101:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10074:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10074:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10074:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10118:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10130:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10141:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10126:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10126:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10118:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9901:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9915:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9750:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10311:188:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10321:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10333:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10344:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10329:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10329:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10321:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10363:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "10384:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "10378:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10378:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10393:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10374:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10374:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10356:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10356:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10356:57:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10433:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10444:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10429:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10429:20:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "10465:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "10473:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "10461:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "10461:17:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "10455:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10455:24:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10481:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10451:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10451:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10422:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10422:71:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10422:71:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Timelock_$16207_memory_ptr__to_t_struct$_Timelock_$16207_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10280:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10291:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10302:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10156:343:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10603:101:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10613:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10625:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10636:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10621:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10621:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10613:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10655:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10670:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10678:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10666:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10666:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10648:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10648:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10648:50:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10572:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10583:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10594:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10504:200:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10754:289:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10764:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10780:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10774:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10774:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "10764:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10792:117:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10814:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "10830:4:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10836:2:94",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "10826:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10826:13:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10841:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10822:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10822:86:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10810:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10810:99:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10796:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10984:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "10986:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10986:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10986:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10927:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10939:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10924:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10924:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10963:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10975:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10960:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10960:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "10921:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10921:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "10918:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11022:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "11026:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11015:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11015:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11015:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "10734:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "10743:6:94",
                            "type": ""
                          }
                        ],
                        "src": "10709:334:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11095:181:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11105:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11115:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11109:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11134:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11149:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11152:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11145:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11145:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11138:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11164:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11179:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11182:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11175:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11175:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11168:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11219:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11221:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11221:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11221:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11200:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11209:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11213:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11205:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11205:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11197:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11197:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "11194:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11250:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11261:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11266:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11257:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11257:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "11250:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11078:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11081:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "11087:3:94",
                            "type": ""
                          }
                        ],
                        "src": "11048:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11334:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11344:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11353:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11348:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11413:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11438:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "11443:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11434:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11434:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11457:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11462:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11453:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11453:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11447:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11447:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11427:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11427:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11427:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11374:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11377:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11371:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11371:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11385:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11387:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11396:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11399:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11392:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11392:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11387:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11367:3:94",
                                "statements": []
                              },
                              "src": "11363:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11502:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11515:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "11520:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11511:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11511:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11529:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11504:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11504:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11504:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11491:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11494:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11488:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11488:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "11485:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "11312:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "11317:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "11322:6:94",
                            "type": ""
                          }
                        ],
                        "src": "11281:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11591:148:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11682:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11684:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11684:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11684:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11607:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11614:66:94",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "11604:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11604:77:94"
                              },
                              "nodeType": "YulIf",
                              "src": "11601:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11713:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11724:5:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11731:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11720:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11720:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "11713:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11573:5:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "11583:3:94",
                            "type": ""
                          }
                        ],
                        "src": "11544:195:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11776:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11793:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11796:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11786:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11786:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11786:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11890:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11893:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11883:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11883:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11883:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11914:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11917:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "11907:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11907:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11907:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11744:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11965:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11982:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11985:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11975:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11975:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11975:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12079:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12082:4:94",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12072:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12072:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12072:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12103:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12106:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12096:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12096:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12096:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11933:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12154:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12171:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12174:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12164:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12164:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12164:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12268:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12271:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12261:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12261:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12261:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12292:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12295:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12285:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12285:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12285:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12122:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_bytes_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_bytes_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        if gt(_1, 0xffffffffffffffff) { panic_error_0x41() }\n        let array_1 := allocate_memory(add(and(add(_1, 0x1f), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), 0x20))\n        mstore(array_1, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(array_1, 0x20), _1)\n        array := array_1\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let offset := calldataload(add(headStart, 32))\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, _1) { revert(0, 0) }\n        if gt(add(add(_2, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_2, 32)\n        value2 := length\n        let offset_1 := calldataload(add(headStart, 64))\n        if gt(offset_1, _1) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\n    }\n    function abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptrt_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := 0xffffffffffffffff\n        if gt(offset, _1) { revert(0, 0) }\n        let _2 := add(headStart, offset)\n        if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n        let _3 := mload(_2)\n        let _4 := 0x20\n        if gt(_3, _1) { panic_error_0x41() }\n        let _5 := shl(5, _3)\n        let dst := allocate_memory(add(_5, _4))\n        let dst_1 := dst\n        mstore(dst, _3)\n        dst := add(dst, _4)\n        let src := add(_2, _4)\n        if gt(add(add(_2, _5), _4), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _3) { i := add(i, 1) }\n        {\n            mstore(dst, mload(src))\n            dst := add(dst, _4)\n            src := add(src, _4)\n        }\n        value0 := dst_1\n        let offset_1 := mload(add(headStart, _4))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_bytes_fromMemory(add(headStart, offset_1), dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_Timelock_$16207_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 64)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, abi_decode_uint64(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n    }\n    function abi_decode_tuple_t_uint32t_uint64(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n        value1 := abi_decode_uint64(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_array$_t_uint32_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_address_t_array$_t_uint32_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        let _1 := 32\n        mstore(add(headStart, _1), 96)\n        let pos := tail_1\n        mstore(tail_1, value2)\n        pos := add(headStart, 128)\n        let srcPtr := value1\n        let i := 0\n        for { } lt(i, value2) { i := add(i, 1) }\n        {\n            mstore(pos, and(abi_decode_uint32(srcPtr), 0xffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        mstore(add(headStart, 64), sub(pos, headStart))\n        mstore(pos, value4)\n        calldatacopy(add(pos, _1), value3, value4)\n        mstore(add(add(pos, value4), _1), 0)\n        tail := add(add(pos, and(add(value4, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 64)\n        mstore(headStart, 64)\n        let pos := tail_1\n        let length := mload(value0)\n        mstore(tail_1, length)\n        pos := add(headStart, 96)\n        let _1 := 0x20\n        let srcPtr := add(value0, _1)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        mstore(add(headStart, _1), sub(pos, headStart))\n        let length_1 := mload(value1)\n        mstore(pos, length_1)\n        copy_memory_to_memory(add(value1, _1), add(pos, _1), length_1)\n        tail := add(add(pos, and(add(length_1, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), _1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawCalculator_$8482__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_3b94bf08c62f227970785d1aa1846dcc2e65986b745b5e79ce64e97e577b1104__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"OM/timelock-not-expired\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_a71dbedad0a9bb0ec5b3d22a69b03c3a407fe8d356a0633da67309c7fc7e9844__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 22)\n        mstore(add(headStart, 64), \"OM/not-drawid-plus-one\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_Timelock_$16207_memory_ptr__to_t_struct$_Timelock_$16207_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(mload(value0), 0xffffffffffffffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint32(x, y) -> sum\n    {\n        let _1 := 0xffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1)) { panic_error_0x11() }\n        sum := add(x_1, y_1)\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15597": [
                  {
                    "length": 32,
                    "start": 230
                  },
                  {
                    "length": 32,
                    "start": 1525
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe714610209578063d3a9c6121461021c578063e30c397814610224578063f2fde38b1461023557600080fd5b80638da5cb5b146101c4578063aaca392e146101d5578063bdf28f5e146101f657600080fd5b80636221a54b116100bd5780636221a54b1461013e578063715018a6146101995780638871189b146101a157600080fd5b80632d680cfa146100e4578063481c6a75146101235780634e71e0c814610134575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b0316610106565b61013c610248565b005b60408051808201825260008082526020918201528151808301835260035467ffffffffffffffff811680835263ffffffff6801000000000000000090920482169284019283528451908152915116918101919091520161011a565b61013c6102db565b6101b46101af366004610e5d565b610350565b604051901515815260200161011a565b6000546001600160a01b0316610106565b6101e86101e3366004610c63565b61052a565b60405161011a929190610f14565b61013c610204366004610de7565b610695565b6101b4610217366004610c41565b610782565b6101b46107fe565b6001546001600160a01b0316610106565b61013c610243366004610c41565b610840565b6001546001600160a01b031633146102a75760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b6001546102bc906001600160a01b031661097c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102ee6000546001600160a01b031690565b6001600160a01b0316146103445760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b61034e600061097c565b565b6000336103656002546001600160a01b031690565b6001600160a01b031614806103935750336103886000546001600160a01b031690565b6001600160a01b0316145b6104055760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161029e565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff1660208201819052610443906001610fad565b63ffffffff168463ffffffff161461049d5760405162461bcd60e51b815260206004820152601660248201527f4f4d2f6e6f742d6472617769642d706c75732d6f6e6500000000000000000000604482015260640161029e565b6104a6816109d9565b60408051808201825267ffffffffffffffff851680825263ffffffff87166020928301819052600380546bffffffffffffffffffffffff1916831768010000000000000000830217905592519081527f20bc545b2cd11ce6226bb1c860ff6f659360e1010b2c3b738c9937c71e45d314910160405180910390a25060019392505050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff166020820152606090819060005b868110156105c457816020015163ffffffff1688888381811061058857610588611054565b905060200201602081019061059d9190610e42565b63ffffffff1614156105b2576105b2826109d9565b806105bc81611005565b915050610563565b506040517faaca392e0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063aaca392e90610632908b908b908b908b908b90600401610e90565b60006040518083038186803b15801561064a57600080fd5b505afa15801561065e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106869190810190610d15565b92509250509550959350505050565b336106a86000546001600160a01b031690565b6001600160a01b0316146106fe5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b8051600380546020808501805167ffffffffffffffff9095166bffffffffffffffffffffffff1990931683176801000000000000000063ffffffff9687160217909355604080519283529251909316928101929092527f51ca607fe37449f0b3448b77ae0b2162d498f335628b88d450cd671ebb5e1881910160405180910390a150565b6000336107976000546001600160a01b031690565b6001600160a01b0316146107ed5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6107f682610a31565b90505b919050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff16602082015260009061083b90610b1d565b905090565b336108536000546001600160a01b031690565b6001600160a01b0316146108a95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6001600160a01b0381166109255760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161029e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109e281610b1d565b610a2e5760405162461bcd60e51b815260206004820152601760248201527f4f4d2f74696d656c6f636b2d6e6f742d65787069726564000000000000000000604482015260640161029e565b50565b6002546000906001600160a01b03908116908316811415610aba5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161029e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b805160009067ffffffffffffffff16610b3857506001919050565b505167ffffffffffffffff16421190565b80356001600160a01b03811681146107f957600080fd5b60008083601f840112610b7257600080fd5b50813567ffffffffffffffff811115610b8a57600080fd5b602083019150836020828501011115610ba257600080fd5b9250929050565b600082601f830112610bba57600080fd5b815167ffffffffffffffff811115610bd457610bd461106a565b610be76020601f19601f84011601610f7c565b818152846020838601011115610bfc57600080fd5b610c0d826020830160208701610fd5565b949350505050565b803563ffffffff811681146107f957600080fd5b803567ffffffffffffffff811681146107f957600080fd5b600060208284031215610c5357600080fd5b610c5c82610b49565b9392505050565b600080600080600060608688031215610c7b57600080fd5b610c8486610b49565b9450602086013567ffffffffffffffff80821115610ca157600080fd5b818801915088601f830112610cb557600080fd5b813581811115610cc457600080fd5b8960208260051b8501011115610cd957600080fd5b602083019650809550506040880135915080821115610cf757600080fd5b50610d0488828901610b60565b969995985093965092949392505050565b60008060408385031215610d2857600080fd5b825167ffffffffffffffff80821115610d4057600080fd5b818501915085601f830112610d5457600080fd5b8151602082821115610d6857610d6861106a565b8160051b610d77828201610f7c565b8381528281019086840183880185018c1015610d9257600080fd5b600097505b85881015610db5578051835260019790970196918401918401610d97565b509289015192975091945050505080821115610dd057600080fd5b50610ddd85828601610ba9565b9150509250929050565b600060408284031215610df957600080fd5b6040516040810181811067ffffffffffffffff82111715610e1c57610e1c61106a565b604052610e2883610c29565b8152610e3660208401610c15565b60208201529392505050565b600060208284031215610e5457600080fd5b610c5c82610c15565b60008060408385031215610e7057600080fd5b610e7983610c15565b9150610e8760208401610c29565b90509250929050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b88811015610ee05763ffffffff610ecd85610c15565b1682529282019290820190600101610eb7565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b604080825283519082018190526000906020906060840190828701845b82811015610f4d57815184529284019290840190600101610f31565b505050838103828501528451808252610f6b81848401858901610fd5565b601f01601f19160101949350505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610fa557610fa561106a565b604052919050565b600063ffffffff808316818516808303821115610fcc57610fcc61103e565b01949350505050565b60005b83811015610ff0578181015183820152602001610fd8565b83811115610fff576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156110375761103761103e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212206f958f4689e5182a13d806222098a80c3003b318fbe3650ace8e361a712da1d664736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xDF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xD3A9C612 EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x235 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x1C4 JUMPI DUP1 PUSH4 0xAACA392E EQ PUSH2 0x1D5 JUMPI DUP1 PUSH4 0xBDF28F5E EQ PUSH2 0x1F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6221A54B GT PUSH2 0xBD JUMPI DUP1 PUSH4 0x6221A54B EQ PUSH2 0x13E JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0x8871189B EQ PUSH2 0x1A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2D680CFA EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x134 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x106 JUMP JUMPDEST PUSH2 0x13C PUSH2 0x248 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP2 MLOAD DUP1 DUP4 ADD DUP4 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP1 DUP4 MSTORE PUSH4 0xFFFFFFFF PUSH9 0x10000000000000000 SWAP1 SWAP3 DIV DUP3 AND SWAP3 DUP5 ADD SWAP3 DUP4 MSTORE DUP5 MLOAD SWAP1 DUP2 MSTORE SWAP2 MLOAD AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x11A JUMP JUMPDEST PUSH2 0x13C PUSH2 0x2DB JUMP JUMPDEST PUSH2 0x1B4 PUSH2 0x1AF CALLDATASIZE PUSH1 0x4 PUSH2 0xE5D JUMP JUMPDEST PUSH2 0x350 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x11A JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x106 JUMP JUMPDEST PUSH2 0x1E8 PUSH2 0x1E3 CALLDATASIZE PUSH1 0x4 PUSH2 0xC63 JUMP JUMPDEST PUSH2 0x52A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP3 SWAP2 SWAP1 PUSH2 0xF14 JUMP JUMPDEST PUSH2 0x13C PUSH2 0x204 CALLDATASIZE PUSH1 0x4 PUSH2 0xDE7 JUMP JUMPDEST PUSH2 0x695 JUMP JUMPDEST PUSH2 0x1B4 PUSH2 0x217 CALLDATASIZE PUSH1 0x4 PUSH2 0xC41 JUMP JUMPDEST PUSH2 0x782 JUMP JUMPDEST PUSH2 0x1B4 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x106 JUMP JUMPDEST PUSH2 0x13C PUSH2 0x243 CALLDATASIZE PUSH1 0x4 PUSH2 0xC41 JUMP JUMPDEST PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x2A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x2BC SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x97C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x2EE PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x344 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH2 0x34E PUSH1 0x0 PUSH2 0x97C JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x365 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x393 JUMPI POP CALLER PUSH2 0x388 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x405 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH2 0x443 SWAP1 PUSH1 0x1 PUSH2 0xFAD JUMP JUMPDEST PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND EQ PUSH2 0x49D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F4D2F6E6F742D6472617769642D706C75732D6F6E6500000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH2 0x4A6 DUP2 PUSH2 0x9D9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH8 0xFFFFFFFFFFFFFFFF DUP6 AND DUP1 DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND PUSH1 0x20 SWAP3 DUP4 ADD DUP2 SWAP1 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP4 OR PUSH9 0x10000000000000000 DUP4 MUL OR SWAP1 SSTORE SWAP3 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x20BC545B2CD11CE6226BB1C860FF6F659360E1010B2C3B738C9937C71E45D314 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x60 SWAP1 DUP2 SWAP1 PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x5C4 JUMPI DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x588 JUMPI PUSH2 0x588 PUSH2 0x1054 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x59D SWAP2 SWAP1 PUSH2 0xE42 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ ISZERO PUSH2 0x5B2 JUMPI PUSH2 0x5B2 DUP3 PUSH2 0x9D9 JUMP JUMPDEST DUP1 PUSH2 0x5BC DUP2 PUSH2 0x1005 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x563 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0xAACA392E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xAACA392E SWAP1 PUSH2 0x632 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0xE90 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x64A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x65E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x686 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0xD15 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP6 POP SWAP6 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x6A8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6FE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST DUP1 MLOAD PUSH1 0x3 DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD DUP1 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP6 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP4 AND DUP4 OR PUSH9 0x10000000000000000 PUSH4 0xFFFFFFFF SWAP7 DUP8 AND MUL OR SWAP1 SWAP4 SSTORE PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE SWAP3 MLOAD SWAP1 SWAP4 AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH32 0x51CA607FE37449F0B3448B77AE0B2162D498F335628B88D450CD671EBB5E1881 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x797 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7ED JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH2 0x7F6 DUP3 PUSH2 0xA31 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x3 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP3 MSTORE PUSH9 0x10000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH2 0x83B SWAP1 PUSH2 0xB1D JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH2 0x853 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x8A9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x925 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x9E2 DUP2 PUSH2 0xB1D JUMP JUMPDEST PUSH2 0xA2E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F4D2F74696D656C6F636B2D6E6F742D65787069726564000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x29E JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0xABA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x29E JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x0 SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH2 0xB38 JUMPI POP PUSH1 0x1 SWAP2 SWAP1 POP JUMP JUMPDEST POP MLOAD PUSH8 0xFFFFFFFFFFFFFFFF AND TIMESTAMP GT SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xB72 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xBA2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xBBA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xBD4 JUMPI PUSH2 0xBD4 PUSH2 0x106A JUMP JUMPDEST PUSH2 0xBE7 PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0xF7C JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH2 0xBFC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC0D DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP8 ADD PUSH2 0xFD5 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xC53 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC5C DUP3 PUSH2 0xB49 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0xC7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC84 DUP7 PUSH2 0xB49 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xCA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xCB5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xCC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xCD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP7 POP DUP1 SWAP6 POP POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0xCF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xD04 DUP9 DUP3 DUP10 ADD PUSH2 0xB60 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xD40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP3 DUP3 GT ISZERO PUSH2 0xD68 JUMPI PUSH2 0xD68 PUSH2 0x106A JUMP JUMPDEST DUP2 PUSH1 0x5 SHL PUSH2 0xD77 DUP3 DUP3 ADD PUSH2 0xF7C JUMP JUMPDEST DUP4 DUP2 MSTORE DUP3 DUP2 ADD SWAP1 DUP7 DUP5 ADD DUP4 DUP9 ADD DUP6 ADD DUP13 LT ISZERO PUSH2 0xD92 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP8 POP JUMPDEST DUP6 DUP9 LT ISZERO PUSH2 0xDB5 JUMPI DUP1 MLOAD DUP4 MSTORE PUSH1 0x1 SWAP8 SWAP1 SWAP8 ADD SWAP7 SWAP2 DUP5 ADD SWAP2 DUP5 ADD PUSH2 0xD97 JUMP JUMPDEST POP SWAP3 DUP10 ADD MLOAD SWAP3 SWAP8 POP SWAP2 SWAP5 POP POP POP POP DUP1 DUP3 GT ISZERO PUSH2 0xDD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xDDD DUP6 DUP3 DUP7 ADD PUSH2 0xBA9 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xE1C JUMPI PUSH2 0xE1C PUSH2 0x106A JUMP JUMPDEST PUSH1 0x40 MSTORE PUSH2 0xE28 DUP4 PUSH2 0xC29 JUMP JUMPDEST DUP2 MSTORE PUSH2 0xE36 PUSH1 0x20 DUP5 ADD PUSH2 0xC15 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC5C DUP3 PUSH2 0xC15 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE79 DUP4 PUSH2 0xC15 JUMP JUMPDEST SWAP2 POP PUSH2 0xE87 PUSH1 0x20 DUP5 ADD PUSH2 0xC29 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 DUP7 SWAP1 PUSH1 0x80 DUP5 ADD DUP4 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0xEE0 JUMPI PUSH4 0xFFFFFFFF PUSH2 0xECD DUP6 PUSH2 0xC15 JUMP JUMPDEST AND DUP3 MSTORE SWAP3 DUP3 ADD SWAP3 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xEB7 JUMP JUMPDEST POP DUP5 DUP2 SUB PUSH1 0x40 DUP7 ADD MSTORE DUP6 DUP2 MSTORE DUP6 DUP8 DUP4 DUP4 ADD CALLDATACOPY PUSH1 0x0 DUP2 DUP8 ADD DUP4 ADD MSTORE PUSH1 0x1F SWAP1 SWAP6 ADD PUSH1 0x1F NOT AND SWAP1 SWAP5 ADD SWAP1 SWAP4 ADD SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP4 MLOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x20 SWAP1 PUSH1 0x60 DUP5 ADD SWAP1 DUP3 DUP8 ADD DUP5 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xF4D JUMPI DUP2 MLOAD DUP5 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP1 DUP5 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xF31 JUMP JUMPDEST POP POP POP DUP4 DUP2 SUB DUP3 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH2 0xF6B DUP2 DUP5 DUP5 ADD DUP6 DUP10 ADD PUSH2 0xFD5 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND ADD ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xFA5 JUMPI PUSH2 0xFA5 PUSH2 0x106A JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xFCC JUMPI PUSH2 0xFCC PUSH2 0x103E JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xFF0 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xFD8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xFFF JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1037 JUMPI PUSH2 0x1037 PUSH2 0x103E JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH16 0x958F4689E5182A13D806222098A80C30 SUB 0xB3 XOR 0xFB 0xE3 PUSH6 0xACE8E361A71 0x2D LOG1 0xD6 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "725:3639:61:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2924:112;3019:10;2924:112;;;-1:-1:-1;;;;;4933:55:94;;;4915:74;;4903:2;4888:18;2924:112:61;;;;;;;;1403:89:18;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;3147:129:19;;;:::i;:::-;;3086:104:61;-1:-1:-1;;;;;;;;;;;;;;;;;3168:15:61;;;;;;;3175:8;3168:15;;;;;;;;;;;;;;;;;;;;3086:104;;10356:57:94;;;10455:24;;10451:41;10429:20;;;10422:71;;;;10329:18;3086:104:61;10311:188:94;2508:94:19;;;:::i;2422:452:61:-;;;;;;:::i;:::-;;:::i;:::-;;;7241:14:94;;7234:22;7216:41;;7204:2;7189:18;2422:452:61;7171:92:94;1814:85:19;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;1836:536:61;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3240:151::-;;;;;;:::i;:::-;;:::i;1744:123:18:-;;;;;;:::i;:::-;;:::i;3441:113:61:-;;;:::i;2014:101:19:-;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;8834:2:94;4028:71:19;;;8816:21:94;8873:2;8853:18;;;8846:30;8912:33;8892:18;;;8885:61;8963:18;;4028:71:19;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;8481:2:94;3819:58:19;;;8463:21:94;8520:2;8500:18;;;8493:30;8559:26;8539:18;;;8532:54;8603:18;;3819:58:19;8453:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2422:452:61:-;2549:4;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;9545:2:94;2840:99:18;;;9527:21:94;9584:2;9564:18;;;9557:30;9623:34;9603:18;;;9596:62;9694:8;9674:18;;;9667:36;9720:19;;2840:99:18;9517:228:94;2840:99:18;2569:36:61::1;::::0;;;;::::1;::::0;;;2597:8:::1;2569:36:::0;::::1;::::0;::::1;::::0;;;;::::1;;;;::::0;::::1;::::0;;;2634:20:::1;::::0;2569:36;2634:20:::1;:::i;:::-;2623:31;;:7;:31;;;2615:66;;;::::0;-1:-1:-1;;;2615:66:61;;9194:2:94;2615:66:61::1;::::0;::::1;9176:21:94::0;9233:2;9213:18;;;9206:30;9272:24;9252:18;;;9245:52;9314:18;;2615:66:61::1;9166:172:94::0;2615:66:61::1;2692:34;2716:9;2692:23;:34::i;:::-;2747:52;::::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;2736:8:::1;:63:::0;;-1:-1:-1;;2736:63:61;;;;;::::1;;::::0;;2814:31;;10648:50:94;;;2814:31:61::1;::::0;10621:18:94;2814:31:61::1;;;;;;;-1:-1:-1::0;2863:4:61::1;::::0;2422:452;-1:-1:-1;;;2422:452:61:o;1836:536::-;2021:36;;;;;;;;;2049:8;2021:36;;;;;;;;;;;;;;;1979:16;;;;-1:-1:-1;2068:239:61;2088:18;;;2068:239;;;2212:9;:16;;;2198:30;;:7;;2206:1;2198:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;:30;;;2194:103;;;2248:34;2272:9;2248:23;:34::i;:::-;2108:3;;;;:::i;:::-;;;;2068:239;;;-1:-1:-1;2324:41:61;;;;;-1:-1:-1;;;;;2324:10:61;:20;;;;:41;;2345:4;;2351:7;;;;2360:4;;;;2324:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2324:41:61;;;;;;;;;;;;:::i;:::-;2317:48;;;;;1836:536;;;;;;;;:::o;3240:151::-;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;8481:2:94;3819:58:19;;;8463:21:94;8520:2;8500:18;;;8493:30;8559:26;8539:18;;;8532:54;8603:18;;3819:58:19;8453:174:94;3819:58:19;3326:20:61;;:8:::1;:20:::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;-1:-1:-1::0;;3326:20:61;;;;;;::::1;::::0;;::::1;;;::::0;;;3362:22:::1;::::0;;10356:57:94;;;10455:24;;10451:41;;;10429:20;;;10422:71;;;;3362:22:61::1;::::0;10329:18:94;3362:22:61::1;;;;;;;3240:151:::0;:::o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;8481:2:94;3819:58:19;;;8463:21:94;8520:2;8500:18;;;8493:30;8559:26;8539:18;;;8532:54;8603:18;;3819:58:19;8453:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:19;1744:123:18::0;;;:::o;3441:113:61:-;3518:29;;;;;;;;;3538:8;3518:29;;;;;;;;;;;;;;;-1:-1:-1;;3518:29:61;;:19;:29::i;:::-;3511:36;;3441:113;:::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;8481:2:94;3819:58:19;;;8463:21:94;8520:2;8500:18;;;8493:30;8559:26;8539:18;;;8532:54;8603:18;;3819:58:19;8453:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;9952:2:94;2826:73:19::1;::::0;::::1;9934:21:94::0;9991:2;9971:18;;;9964:30;10030:34;10010:18;;;10003:62;10101:7;10081:18;;;10074:35;10126:19;;2826:73:19::1;9924:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4205:157:61:-;4297:30;4317:9;4297:19;:30::i;:::-;4289:66;;;;-1:-1:-1;;;4289:66:61;;7725:2:94;4289:66:61;;;7707:21:94;7764:2;7744:18;;;7737:30;7803:25;7783:18;;;7776:53;7846:18;;4289:66:61;7697:173:94;4289:66:61;4205:157;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;8077:2:94;2230:79:18;;;8059:21:94;8116:2;8096:18;;;8089:30;8155:34;8135:18;;;8128:62;8226:5;8206:18;;;8199:33;8249:19;;2230:79:18;8049:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;3715:356:61:-;3884:19;;3794:4;;3884:24;;3880:66;;-1:-1:-1;3931:4:61;;3715:356;-1:-1:-1;3715:356:61:o;3880:66::-;-1:-1:-1;4044:19:61;4026:37;;:15;:37;;3715:356::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;215:347;266:8;276:6;330:3;323:4;315:6;311:17;307:27;297:2;;348:1;345;338:12;297:2;-1:-1:-1;371:20:94;;414:18;403:30;;400:2;;;446:1;443;436:12;400:2;483:4;475:6;471:17;459:29;;535:3;528:4;519:6;511;507:19;503:30;500:39;497:2;;;552:1;549;542:12;497:2;287:275;;;;;:::o;567:555::-;620:5;673:3;666:4;658:6;654:17;650:27;640:2;;691:1;688;681:12;640:2;720:6;714:13;746:18;742:2;739:26;736:2;;;768:18;;:::i;:::-;812:114;920:4;-1:-1:-1;;844:4:94;840:2;836:13;832:86;828:97;812:114;:::i;:::-;951:2;942:7;935:19;997:3;990:4;985:2;977:6;973:15;969:26;966:35;963:2;;;1014:1;1011;1004:12;963:2;1027:64;1088:2;1081:4;1072:7;1068:18;1061:4;1053:6;1049:17;1027:64;:::i;:::-;1109:7;630:492;-1:-1:-1;;;;630:492:94:o;1127:163::-;1194:20;;1254:10;1243:22;;1233:33;;1223:2;;1280:1;1277;1270:12;1295:171;1362:20;;1422:18;1411:30;;1401:41;;1391:2;;1456:1;1453;1446:12;1471:186;1530:6;1583:2;1571:9;1562:7;1558:23;1554:32;1551:2;;;1599:1;1596;1589:12;1551:2;1622:29;1641:9;1622:29;:::i;:::-;1612:39;1541:116;-1:-1:-1;;;1541:116:94:o;1662:975::-;1776:6;1784;1792;1800;1808;1861:2;1849:9;1840:7;1836:23;1832:32;1829:2;;;1877:1;1874;1867:12;1829:2;1900:29;1919:9;1900:29;:::i;:::-;1890:39;;1980:2;1969:9;1965:18;1952:32;2003:18;2044:2;2036:6;2033:14;2030:2;;;2060:1;2057;2050:12;2030:2;2098:6;2087:9;2083:22;2073:32;;2143:7;2136:4;2132:2;2128:13;2124:27;2114:2;;2165:1;2162;2155:12;2114:2;2205;2192:16;2231:2;2223:6;2220:14;2217:2;;;2247:1;2244;2237:12;2217:2;2300:7;2295:2;2285:6;2282:1;2278:14;2274:2;2270:23;2266:32;2263:45;2260:2;;;2321:1;2318;2311:12;2260:2;2352;2348;2344:11;2334:21;;2374:6;2364:16;;;2433:2;2422:9;2418:18;2405:32;2389:48;;2462:2;2452:8;2449:16;2446:2;;;2478:1;2475;2468:12;2446:2;;2517:60;2569:7;2558:8;2547:9;2543:24;2517:60;:::i;:::-;1819:818;;;;-1:-1:-1;1819:818:94;;-1:-1:-1;2596:8:94;;2491:86;1819:818;-1:-1:-1;;;1819:818:94:o;2642:1151::-;2755:6;2763;2816:2;2804:9;2795:7;2791:23;2787:32;2784:2;;;2832:1;2829;2822:12;2784:2;2865:9;2859:16;2894:18;2935:2;2927:6;2924:14;2921:2;;;2951:1;2948;2941:12;2921:2;2989:6;2978:9;2974:22;2964:32;;3034:7;3027:4;3023:2;3019:13;3015:27;3005:2;;3056:1;3053;3046:12;3005:2;3085;3079:9;3107:4;3130:2;3126;3123:10;3120:2;;;3136:18;;:::i;:::-;3182:2;3179:1;3175:10;3205:28;3229:2;3225;3221:11;3205:28;:::i;:::-;3267:15;;;3298:12;;;;3330:11;;;3360;;;3356:20;;3353:33;-1:-1:-1;3350:2:94;;;3399:1;3396;3389:12;3350:2;3421:1;3412:10;;3431:156;3445:2;3442:1;3439:9;3431:156;;;3502:10;;3490:23;;3463:1;3456:9;;;;;3533:12;;;;3565;;3431:156;;;-1:-1:-1;3642:18:94;;;3636:25;3606:5;;-1:-1:-1;3636:25:94;;-1:-1:-1;;;;3673:16:94;;;3670:2;;;3702:1;3699;3692:12;3670:2;;3725:62;3779:7;3768:8;3757:9;3753:24;3725:62;:::i;:::-;3715:72;;;2774:1019;;;;;:::o;3798:516::-;3884:6;3937:2;3925:9;3916:7;3912:23;3908:32;3905:2;;;3953:1;3950;3943:12;3905:2;3986;3980:9;4028:2;4020:6;4016:15;4097:6;4085:10;4082:22;4061:18;4049:10;4046:34;4043:62;4040:2;;;4108:18;;:::i;:::-;4144:2;4137:22;4183:28;4201:9;4183:28;:::i;:::-;4175:6;4168:44;4245:37;4278:2;4267:9;4263:18;4245:37;:::i;:::-;4240:2;4228:15;;4221:62;4232:6;3895:419;-1:-1:-1;;;3895:419:94:o;4319:184::-;4377:6;4430:2;4418:9;4409:7;4405:23;4401:32;4398:2;;;4446:1;4443;4436:12;4398:2;4469:28;4487:9;4469:28;:::i;4508:256::-;4574:6;4582;4635:2;4623:9;4614:7;4610:23;4606:32;4603:2;;;4651:1;4648;4641:12;4603:2;4674:28;4692:9;4674:28;:::i;:::-;4664:38;;4721:37;4754:2;4743:9;4739:18;4721:37;:::i;:::-;4711:47;;4593:171;;;;;:::o;5000:1085::-;-1:-1:-1;;;;;5312:55:94;;5294:74;;5282:2;5387;5405:18;;;5398:30;;;5267:18;;;5463:22;;;5234:4;;5543:6;;5516:3;5501:19;;5234:4;5577:198;5591:6;5588:1;5585:13;5577:198;;;5683:10;5656:25;5674:6;5656:25;:::i;:::-;5652:42;5640:55;;5750:15;;;;5715:12;;;;5613:1;5606:9;5577:198;;;5581:3;5820:9;5815:3;5811:19;5806:2;5795:9;5791:18;5784:47;5852:6;5847:3;5840:19;5903:6;5895;5890:2;5885:3;5881:12;5868:42;5953:1;5930:16;;;5926:25;;5919:36;6001:2;5989:15;;;-1:-1:-1;;5985:88:94;5976:98;;;5972:107;;;;5243:842;-1:-1:-1;;;;;;;5243:842:94:o;6090:981::-;6326:2;6338:21;;;6408:13;;6311:18;;;6430:22;;;6278:4;;6505;;6483:2;6468:18;;;6532:15;;;6278:4;6575:169;6589:6;6586:1;6583:13;6575:169;;;6650:13;;6638:26;;6684:12;;;;6719:15;;;;6611:1;6604:9;6575:169;;;6579:3;;;6789:9;6784:3;6780:19;6775:2;6764:9;6760:18;6753:47;6831:6;6825:13;6859:8;6854:3;6847:21;6877:62;6930:8;6925:2;6920:3;6916:12;6911:2;6903:6;6899:15;6877:62;:::i;:::-;6987:2;6973:17;-1:-1:-1;;6969:90:94;6960:100;6956:109;;6287:784;-1:-1:-1;;;;6287:784:94:o;10709:334::-;10780:2;10774:9;10836:2;10826:13;;-1:-1:-1;;10822:86:94;10810:99;;10939:18;10924:34;;10960:22;;;10921:62;10918:2;;;10986:18;;:::i;:::-;11022:2;11015:22;10754:289;;-1:-1:-1;10754:289:94:o;11048:228::-;11087:3;11115:10;11152:2;11149:1;11145:10;11182:2;11179:1;11175:10;11213:3;11209:2;11205:12;11200:3;11197:21;11194:2;;;11221:18;;:::i;:::-;11257:13;;11095:181;-1:-1:-1;;;;11095:181:94:o;11281:258::-;11353:1;11363:113;11377:6;11374:1;11371:13;11363:113;;;11453:11;;;11447:18;11434:11;;;11427:39;11399:2;11392:10;11363:113;;;11494:6;11491:1;11488:13;11485:2;;;11529:1;11520:6;11515:3;11511:16;11504:27;11485:2;;11334:205;;;:::o;11544:195::-;11583:3;11614:66;11607:5;11604:77;11601:2;;;11684:18;;:::i;:::-;-1:-1:-1;11731:1:94;11720:13;;11591:148::o;11744:184::-;-1:-1:-1;;;11793:1:94;11786:88;11893:4;11890:1;11883:15;11917:4;11914:1;11907:15;11933:184;-1:-1:-1;;;11982:1:94;11975:88;12082:4;12079:1;12072:15;12106:4;12103:1;12096:15;12122:184;-1:-1:-1;;;12171:1:94;12164:88;12271:4;12268:1;12261:15;12295:4;12292:1;12285:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "855600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "calculate(address,uint32[],bytes)": "infinite",
                "claimOwnership()": "54509",
                "getDrawCalculator()": "infinite",
                "getTimelock()": "2476",
                "hasElapsed()": "2523",
                "lock(uint32,uint64)": "infinite",
                "manager()": "2366",
                "owner()": "2343",
                "pendingOwner()": "2386",
                "renounceOwnership()": "28180",
                "setManager(address)": "infinite",
                "setTimelock((uint64,uint32))": "infinite",
                "transferOwnership(address)": "27994"
              },
              "internal": {
                "_requireTimelockElapsed(struct IDrawCalculatorTimelock.Timelock memory)": "infinite",
                "_timelockHasElapsed(struct IDrawCalculatorTimelock.Timelock memory)": "infinite"
              }
            },
            "methodIdentifiers": {
              "calculate(address,uint32[],bytes)": "aaca392e",
              "claimOwnership()": "4e71e0c8",
              "getDrawCalculator()": "2d680cfa",
              "getTimelock()": "6221a54b",
              "hasElapsed()": "d3a9c612",
              "lock(uint32,uint64)": "8871189b",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "setTimelock((uint64,uint32))": "bdf28f5e",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IDrawCalculator\",\"name\":\"_calculator\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawCalculator\",\"name\":\"drawCalculator\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"}],\"name\":\"LockedDraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":[{\"components\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawCalculatorTimelock.Timelock\",\"name\":\"timelock\",\"type\":\"tuple\"}],\"name\":\"TimelockSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTimelock\",\"outputs\":[{\"components\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawCalculatorTimelock.Timelock\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"hasElapsed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"_timestamp\",\"type\":\"uint64\"}],\"name\":\"lock\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawCalculatorTimelock.Timelock\",\"name\":\"_timelock\",\"type\":\"tuple\"}],\"name\":\"setTimelock\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address)\":{\"params\":{\"drawCalculator\":\"DrawCalculator address bound to this timelock\"}}},\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"details\":\"Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\",\"params\":{\"data\":\"Encoded pick indices\",\"drawIds\":\"Draw.drawId\",\"user\":\"User address\"},\"returns\":{\"_0\":\"Prizes awardable array\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_calculator\":\"DrawCalculator address.\",\"_owner\":\"Address of the DrawCalculator owner.\"}},\"getDrawCalculator()\":{\"returns\":{\"_0\":\"IDrawCalculator\"}},\"getTimelock()\":{\"returns\":{\"_0\":\"Timelock\"}},\"hasElapsed()\":{\"returns\":{\"_0\":\"True if timelockDuration, since last timelock has elapsed, false otherwise.\"}},\"lock(uint32,uint64)\":{\"details\":\"Restricts new draws by forcing a push timelock.\",\"params\":{\"_drawId\":\"Draw id to lock.\",\"_timestamp\":\"Epoch timestamp to unlock the draw.\"},\"returns\":{\"_0\":\"True if operation was successful.\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"setTimelock((uint64,uint32))\":{\"params\":{\"_timelock\":\"Timelock struct to set.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 OracleTimelock\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address)\":{\"notice\":\"Deployed event when the constructor is called\"},\"LockedDraw(uint32,uint64)\":{\"notice\":\"Emitted when target draw id is locked.\"},\"TimelockSet((uint64,uint32))\":{\"notice\":\"Emitted event when the timelock struct is updated\"}},\"kind\":\"user\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"notice\":\"Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initialize DrawCalculatorTimelockTrigger smart contract.\"},\"getDrawCalculator()\":{\"notice\":\"Read internal DrawCalculator variable.\"},\"getTimelock()\":{\"notice\":\"Read internal Timelock struct.\"},\"hasElapsed()\":{\"notice\":\"Returns bool for timelockDuration elapsing.\"},\"lock(uint32,uint64)\":{\"notice\":\"Lock passed draw id for `timelockDuration` seconds.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"setTimelock((uint64,uint32))\":{\"notice\":\"Set the Timelock struct. Only callable by the contract owner.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"OracleTimelock(s) acts as an intermediary between multiple V4 smart contracts. The OracleTimelock is responsible for pushing Draws to a DrawBuffer and routing claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is to include a \\\"cooldown\\\" period for all new Draws. Allowing the correction of a maliciously set Draw in the unfortunate event an Owner is compromised.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol\":\"DrawCalculatorTimelock\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./interfaces/IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 OracleTimelock\\n  * @author PoolTogether Inc Team\\n  * @notice OracleTimelock(s) acts as an intermediary between multiple V4 smart contracts.\\n            The OracleTimelock is responsible for pushing Draws to a DrawBuffer and routing\\n            claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\\n            to include a \\\"cooldown\\\" period for all new Draws. Allowing the correction of a\\n            maliciously set Draw in the unfortunate event an Owner is compromised.\\n*/\\ncontract DrawCalculatorTimelock is IDrawCalculatorTimelock, Manageable {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Internal DrawCalculator reference.\\n    IDrawCalculator internal immutable calculator;\\n\\n    /// @notice Internal Timelock struct reference.\\n    Timelock internal timelock;\\n\\n    /* ============ Events ============ */\\n\\n    /**\\n     * @notice Deployed event when the constructor is called\\n     * @param drawCalculator DrawCalculator address bound to this timelock\\n     */\\n    event Deployed(IDrawCalculator indexed drawCalculator);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initialize DrawCalculatorTimelockTrigger smart contract.\\n     * @param _owner                       Address of the DrawCalculator owner.\\n     * @param _calculator                 DrawCalculator address.\\n     */\\n    constructor(address _owner, IDrawCalculator _calculator) Ownable(_owner) {\\n        calculator = _calculator;\\n\\n        emit Deployed(_calculator);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IDrawCalculatorTimelock\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view override returns (uint256[] memory, bytes memory) {\\n        Timelock memory _timelock = timelock;\\n\\n        for (uint256 i = 0; i < drawIds.length; i++) {\\n            // if draw id matches timelock and not expired, revert\\n            if (drawIds[i] == _timelock.drawId) {\\n                _requireTimelockElapsed(_timelock);\\n            }\\n        }\\n\\n        return calculator.calculate(user, drawIds, data);\\n    }\\n\\n    /// @inheritdoc IDrawCalculatorTimelock\\n    function lock(uint32 _drawId, uint64 _timestamp)\\n        external\\n        override\\n        onlyManagerOrOwner\\n        returns (bool)\\n    {\\n        Timelock memory _timelock = timelock;\\n        require(_drawId == _timelock.drawId + 1, \\\"OM/not-drawid-plus-one\\\");\\n\\n        _requireTimelockElapsed(_timelock);\\n        timelock = Timelock({ drawId: _drawId, timestamp: _timestamp });\\n        emit LockedDraw(_drawId, _timestamp);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IDrawCalculatorTimelock\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return calculator;\\n    }\\n\\n    /// @inheritdoc IDrawCalculatorTimelock\\n    function getTimelock() external view override returns (Timelock memory) {\\n        return timelock;\\n    }\\n\\n    /// @inheritdoc IDrawCalculatorTimelock\\n    function setTimelock(Timelock memory _timelock) external override onlyOwner {\\n        timelock = _timelock;\\n\\n        emit TimelockSet(_timelock);\\n    }\\n\\n    /// @inheritdoc IDrawCalculatorTimelock\\n    function hasElapsed() external view override returns (bool) {\\n        return _timelockHasElapsed(timelock);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Read global DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function _timelockHasElapsed(Timelock memory _timelock) internal view returns (bool) {\\n        // If the timelock hasn't been initialized, then it's elapsed\\n        if (_timelock.timestamp == 0) {\\n            return true;\\n        }\\n\\n        // Otherwise if the timelock has expired, we're good.\\n        return (block.timestamp > _timelock.timestamp);\\n    }\\n\\n    /**\\n     * @notice Require the timelock \\\"cooldown\\\" period has elapsed\\n     * @param _timelock the Timelock to check\\n     */\\n    function _requireTimelockElapsed(Timelock memory _timelock) internal view {\\n        require(_timelockHasElapsed(_timelock), \\\"OM/timelock-not-expired\\\");\\n    }\\n}\\n\",\"keccak256\":\"0x80b4ed30325cc8c2e3c3e7d6e0e95f375c7b60a8219e436a8f7baad5fbe13b85\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 15601,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "timelock",
                "offset": 0,
                "slot": "3",
                "type": "t_struct(Timelock)16207_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_struct(Timelock)16207_storage": {
                "encoding": "inplace",
                "label": "struct IDrawCalculatorTimelock.Timelock",
                "members": [
                  {
                    "astId": 16204,
                    "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                    "label": "timestamp",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 16206,
                    "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                    "label": "drawId",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_uint32": {
                "encoding": "inplace",
                "label": "uint32",
                "numberOfBytes": "4"
              },
              "t_uint64": {
                "encoding": "inplace",
                "label": "uint64",
                "numberOfBytes": "8"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address)": {
                "notice": "Deployed event when the constructor is called"
              },
              "LockedDraw(uint32,uint64)": {
                "notice": "Emitted when target draw id is locked."
              },
              "TimelockSet((uint64,uint32))": {
                "notice": "Emitted event when the timelock struct is updated"
              }
            },
            "kind": "user",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "notice": "Routes claim/calculate requests between PrizeDistributor and DrawCalculator."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initialize DrawCalculatorTimelockTrigger smart contract."
              },
              "getDrawCalculator()": {
                "notice": "Read internal DrawCalculator variable."
              },
              "getTimelock()": {
                "notice": "Read internal Timelock struct."
              },
              "hasElapsed()": {
                "notice": "Returns bool for timelockDuration elapsing."
              },
              "lock(uint32,uint64)": {
                "notice": "Lock passed draw id for `timelockDuration` seconds."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "setTimelock((uint64,uint32))": {
                "notice": "Set the Timelock struct. Only callable by the contract owner."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "OracleTimelock(s) acts as an intermediary between multiple V4 smart contracts. The OracleTimelock is responsible for pushing Draws to a DrawBuffer and routing claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is to include a \"cooldown\" period for all new Draws. Allowing the correction of a maliciously set Draw in the unfortunate event an Owner is compromised.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol": {
        "L1TimelockTrigger": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "_prizeDistributionBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "_timelock",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "prizeDistributionBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "timelock",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "PrizeDistributionPushed",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_draw",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "timelock",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "Deployed(address,address)": {
                "params": {
                  "prizeDistributionBuffer": "The address of the prize distribution buffer contract.",
                  "timelock": "The address of the DrawCalculatorTimelock"
                }
              },
              "PrizeDistributionPushed(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "params": {
                  "drawId": "Draw ID",
                  "prizeDistribution": "PrizeDistribution"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_owner": "Address of the L1TimelockTrigger owner.",
                  "_prizeDistributionBuffer": "PrizeDistributionBuffer address",
                  "_timelock": "Elapsed seconds before new Draw is available"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Restricts new draws by forcing a push timelock.",
                "params": {
                  "_draw": "Draw struct",
                  "_prizeDistribution": "PrizeDistribution struct"
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 L1TimelockTrigger",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_15886": {
                  "entryPoint": null,
                  "id": 15886,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 161,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionBuffer_$8587t_contract$_IDrawCalculatorTimelock_$16274_fromMemory": {
                  "entryPoint": 241,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "validator_revert_address": {
                  "entryPoint": 318,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:737:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "195:404:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "241:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "250:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "253:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "243:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "243:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "243:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "216:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "225:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "212:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "212:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "237:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "208:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "208:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "205:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "285:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "279:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "279:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "270:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "329:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "304:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "304:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "304:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "344:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "354:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "344:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "368:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "393:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "404:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "389:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "389:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "383:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "383:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "372:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "442:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "417:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "417:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "417:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "459:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "469:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "459:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "485:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "510:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "521:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "506:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "506:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "500:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "500:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "489:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "559:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "534:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "534:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "534:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "576:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "586:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "576:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionBuffer_$8587t_contract$_IDrawCalculatorTimelock_$16274_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "145:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "156:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "168:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "176:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "184:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:585:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "649:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "713:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "722:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "725:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "715:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "715:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "715:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "683:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "698:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "703:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "694:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "694:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "707:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "690:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "690:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "679:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "669:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "669:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "662:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "662:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "659:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "638:5:94",
                            "type": ""
                          }
                        ],
                        "src": "604:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizeDistributionBuffer_$8587t_contract$_IDrawCalculatorTimelock_$16274_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a060405234801561001057600080fd5b50604051610e23380380610e2383398101604081905261002f916100f1565b82610039816100a1565b50606082901b6001600160601b031916608052600380546001600160a01b0319166001600160a01b0383811691821790925560405190918416907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec2090600090a3505050610156565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060006060848603121561010657600080fd5b83516101118161013e565b60208501519093506101228161013e565b60408501519092506101338161013e565b809150509250925092565b6001600160a01b038116811461015357600080fd5b50565b60805160601c610ca961017a6000396000818160c8015261045d0152610ca96000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c8063af32b60511610076578063d33219b41161005b578063d33219b414610171578063e30c397814610184578063f2fde38b1461019557600080fd5b8063af32b6051461013b578063d0ebdbe71461014e57600080fd5b80634e71e0c8116100a75780634e71e0c814610118578063715018a6146101225780638da5cb5b1461012a57600080fd5b80630840bbdd146100c3578063481c6a7514610107575b600080fd5b6100ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100ea565b6101206101a8565b005b61012061023b565b6000546001600160a01b03166100ea565b61012061014936600461096a565b6102b0565b61016161015c366004610918565b610554565b60405190151581526020016100fe565b6003546100ea906001600160a01b031681565b6001546001600160a01b03166100ea565b6101206101a3366004610918565b6105d0565b6001546001600160a01b031633146102075760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461021c906001600160a01b031661070c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361024e6000546001600160a01b031690565b6001600160a01b0316146102a45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6102ae600061070c565b565b336102c36002546001600160a01b031690565b6001600160a01b031614806102f15750336102e66000546001600160a01b031690565b6001600160a01b0316145b6103635760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016101fe565b6003546001600160a01b0316638871189b6103846040850160208601610a6c565b61039460a0860160808701610a6c565b63ffffffff166103aa6060870160408801610a87565b6103b49190610bf1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561041a57600080fd5b505af115801561042e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104529190610948565b506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631124e1dc6104926040850160208601610a6c565b836040518363ffffffff1660e01b81526004016104b0929190610bac565b602060405180830381600087803b1580156104ca57600080fd5b505af11580156104de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105029190610948565b506105136040830160208401610a6c565b63ffffffff167fa8d834c585da75dc5076dfaed2f4cc0c65d2d07cfc01f7c27023ab61563f257e826040516105489190610b97565b60405180910390a25050565b6000336105696000546001600160a01b031690565b6001600160a01b0316146105bf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6105c882610769565b90505b919050565b336105e36000546001600160a01b031690565b6001600160a01b0316146106395760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6001600160a01b0381166106b55760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016101fe565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156107f25760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016101fe565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261086657600080fd5b60405161020080820182811067ffffffffffffffff8211171561088b5761088b610c44565b604052818482810187101561089f57600080fd5b600092505b60108310156108cb576108b6816108f3565b825260019290920191602091820191016108a4565b509195945050505050565b80356cffffffffffffffffffffffffff811681146105cb57600080fd5b803563ffffffff811681146105cb57600080fd5b803560ff811681146105cb57600080fd5b60006020828403121561092a57600080fd5b81356001600160a01b038116811461094157600080fd5b9392505050565b60006020828403121561095a57600080fd5b8151801515811461094157600080fd5b6000808284036103a081121561097f57600080fd5b60a081121561098d57600080fd5b8392506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60820112156109c157600080fd5b506109ca610bc7565b6109d660a08501610907565b81526109e460c08501610907565b60208201526109f560e085016108f3565b6040820152610100610a088186016108f3565b6060830152610a1a61012086016108f3565b6080830152610a2c61014086016108f3565b60a0830152610a3e61016086016108d6565b60c0830152610a51866101808701610855565b60e08301526103808501358183015250809150509250929050565b600060208284031215610a7e57600080fd5b610941826108f3565b600060208284031215610a9957600080fd5b813567ffffffffffffffff8116811461094157600080fd5b8060005b6010811015610ada57815163ffffffff16845260209384019390910190600101610ab5565b50505050565b60ff815116825260ff60208201511660208301526040810151610b0b604084018263ffffffff169052565b506060810151610b23606084018263ffffffff169052565b506080810151610b3b608084018263ffffffff169052565b5060a0810151610b5360a084018263ffffffff169052565b5060c0810151610b7460c08401826cffffffffffffffffffffffffff169052565b5060e0810151610b8760e0840182610ab1565b5061010001516102e09190910152565b6103008101610ba68284610ae0565b92915050565b63ffffffff8316815261032081016109416020830184610ae0565b604051610120810167ffffffffffffffff81118282101715610beb57610beb610c44565b60405290565b600067ffffffffffffffff808316818516808303821115610c3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220cc9a2293ede58992a97601778f8b737433ca1ee51419db5312b578ee2290681464736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xE23 CODESIZE SUB DUP1 PUSH2 0xE23 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0xF1 JUMP JUMPDEST DUP3 PUSH2 0x39 DUP2 PUSH2 0xA1 JUMP JUMPDEST POP PUSH1 0x60 DUP3 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x80 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP5 AND SWAP1 PUSH32 0x9E48DF7857BD0C1E0D31BB8A85D42CF1874817895F171C917F6EE2CEA73EC20 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP POP PUSH2 0x156 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x106 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x111 DUP2 PUSH2 0x13E JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x122 DUP2 PUSH2 0x13E JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x133 DUP2 PUSH2 0x13E JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x153 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0xCA9 PUSH2 0x17A PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xC8 ADD MSTORE PUSH2 0x45D ADD MSTORE PUSH2 0xCA9 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAF32B605 GT PUSH2 0x76 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x171 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x195 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAF32B605 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x14E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xA7 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x12A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x107 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEA PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEA JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x23B JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEA JUMP JUMPDEST PUSH2 0x120 PUSH2 0x149 CALLDATASIZE PUSH1 0x4 PUSH2 0x96A JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST PUSH2 0x161 PUSH2 0x15C CALLDATASIZE PUSH1 0x4 PUSH2 0x918 JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0xEA SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEA JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x918 JUMP JUMPDEST PUSH2 0x5D0 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x207 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x21C SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x70C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x24E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x2AE PUSH1 0x0 PUSH2 0x70C JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x2C3 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2F1 JUMPI POP CALLER PUSH2 0x2E6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x363 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8871189B PUSH2 0x384 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xA6C JUMP JUMPDEST PUSH2 0x394 PUSH1 0xA0 DUP7 ADD PUSH1 0x80 DUP8 ADD PUSH2 0xA6C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x3AA PUSH1 0x60 DUP8 ADD PUSH1 0x40 DUP9 ADD PUSH2 0xA87 JUMP JUMPDEST PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0xBF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x42E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x452 SWAP2 SWAP1 PUSH2 0x948 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x1124E1DC PUSH2 0x492 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xA6C JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B0 SWAP3 SWAP2 SWAP1 PUSH2 0xBAC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4DE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x502 SWAP2 SWAP1 PUSH2 0x948 JUMP JUMPDEST POP PUSH2 0x513 PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0xA6C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH32 0xA8D834C585DA75DC5076DFAED2F4CC0C65D2D07CFC01F7C27023AB61563F257E DUP3 PUSH1 0x40 MLOAD PUSH2 0x548 SWAP2 SWAP1 PUSH2 0xB97 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x569 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5BF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x5C8 DUP3 PUSH2 0x769 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x5E3 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x639 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x7F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x866 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x88B JUMPI PUSH2 0x88B PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x89F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x8CB JUMPI PUSH2 0x8B6 DUP2 PUSH2 0x8F3 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x8A4 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x5CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x92A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x95A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x3A0 DUP2 SLT ISZERO PUSH2 0x97F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0x98D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF60 DUP3 ADD SLT ISZERO PUSH2 0x9C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9CA PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x9D6 PUSH1 0xA0 DUP6 ADD PUSH2 0x907 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x9E4 PUSH1 0xC0 DUP6 ADD PUSH2 0x907 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x9F5 PUSH1 0xE0 DUP6 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x100 PUSH2 0xA08 DUP2 DUP7 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0xA1A PUSH2 0x120 DUP7 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0xA2C PUSH2 0x140 DUP7 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xA3E PUSH2 0x160 DUP7 ADD PUSH2 0x8D6 JUMP JUMPDEST PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0xA51 DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x855 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x380 DUP6 ADD CALLDATALOAD DUP2 DUP4 ADD MSTORE POP DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA7E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x941 DUP3 PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0xADA JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xAB5 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0xB0B PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0xB23 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0xB3B PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0xB53 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0xB74 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0xB87 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0xAB1 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0xBA6 DUP3 DUP5 PUSH2 0xAE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND DUP2 MSTORE PUSH2 0x320 DUP2 ADD PUSH2 0x941 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xAE0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xBEB JUMPI PUSH2 0xBEB PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xC3B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCC SWAP11 0x22 SWAP4 0xED 0xE5 DUP10 SWAP3 0xA9 PUSH23 0x1778F8B737433CA1EE51419DB5312B578EE2290681464 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "813:2429:62:-:0;;;2199:318;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2351:6;1648:24:19;2351:6:62;1648:9:19;:24::i;:::-;-1:-1:-1;2369:50:62::1;::::0;;;-1:-1:-1;;;;;;2369:50:62;::::1;::::0;2429:8:::1;:20:::0;;-1:-1:-1;;;;;;2429:20:62::1;-1:-1:-1::0;;;;;2429:20:62;;::::1;::::0;;::::1;::::0;;;2465:45:::1;::::0;2429:20;;2369:50;::::1;::::0;2465:45:::1;::::0;-1:-1:-1;;2465:45:62::1;2199:318:::0;;;813:2429;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:585:94:-;168:6;176;184;237:2;225:9;216:7;212:23;208:32;205:2;;;253:1;250;243:12;205:2;285:9;279:16;304:31;329:5;304:31;:::i;:::-;404:2;389:18;;383:25;354:5;;-1:-1:-1;417:33:94;383:25;417:33;:::i;:::-;521:2;506:18;;500:25;469:7;;-1:-1:-1;534:33:94;500:25;534:33;:::i;:::-;586:7;576:17;;;195:404;;;;;:::o;604:131::-;-1:-1:-1;;;;;679:31:94;;669:42;;659:2;;725:1;722;715:12;659:2;649:86;:::o;:::-;813:2429:62;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_3068": {
                  "entryPoint": 1897,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 1804,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 424,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_15853": {
                  "entryPoint": null,
                  "id": 15853,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_15925": {
                  "entryPoint": 688,
                  "id": 15925,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 571,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 1364,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_15857": {
                  "entryPoint": null,
                  "id": 15857,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 1488,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_array_uint32": {
                  "entryPoint": 2133,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2328,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 2376,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Draw_$8176_calldata_ptrt_struct$_PrizeDistribution_$8506_memory_ptr": {
                  "entryPoint": 2410,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 2668,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 2695,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint104": {
                  "entryPoint": 2262,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 2291,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 2311,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint32": {
                  "entryPoint": 2737,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_struct_PrizeDistribution": {
                  "entryPoint": 2784,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2967,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2988,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_uint104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "allocate_memory": {
                  "entryPoint": 3015,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 3057,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 3140,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9616:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:649:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "122:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "131:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "134:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "124:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "124:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "101:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "109:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "97:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "97:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "116:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "93:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "93:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "86:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "86:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "83:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "147:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "167:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "161:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "161:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "151:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "179:13:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "189:3:94",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "183:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "201:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "223:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "219:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "219:15:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "205:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "309:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "311:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "311:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "311:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "252:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "264:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "249:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "249:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "288:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "300:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "285:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "285:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "246:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "246:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "243:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "347:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "351:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "340:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "340:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "340:22:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "371:17:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "382:6:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "375:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "397:17:94",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "408:6:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "401:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "451:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "460:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "453:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "453:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "453:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "441:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "429:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "429:15:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "446:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "426:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "426:24:94"
                              },
                              "nodeType": "YulIf",
                              "src": "423:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "476:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "485:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "480:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "542:150:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "563:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "586:3:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:17:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "568:22:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "556:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "556:35:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "556:35:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "604:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "614:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "608:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "631:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "642:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "647:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "638:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "638:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "631:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "663:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "674:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "670:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "670:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "663:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "506:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "509:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "503:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "503:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "515:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "517:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "526:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "529:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "522:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "522:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "517:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "499:3:94",
                                "statements": []
                              },
                              "src": "495:197:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "701:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "710:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "701:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "47:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "55:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "63:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:708:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "776:133:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "786:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "808:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "795:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "795:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "786:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "887:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "896:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "899:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "889:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "889:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "889:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "837:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "848:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "855:28:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "844:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "844:40:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "834:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "834:51:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "827:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "827:59:94"
                              },
                              "nodeType": "YulIf",
                              "src": "824:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "755:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "766:5:94",
                            "type": ""
                          }
                        ],
                        "src": "727:182:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "962:115:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "972:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "994:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "981:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "981:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "972:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1055:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1064:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1067:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1057:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1057:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1057:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1034:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1041:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1030:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1030:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1020:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1020:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1013:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1013:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1010:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "941:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "952:5:94",
                            "type": ""
                          }
                        ],
                        "src": "914:163:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1129:109:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1139:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1161:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1148:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1148:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1139:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1216:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1225:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1228:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1218:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1218:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1218:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1190:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1201:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1208:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1197:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1197:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1187:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1187:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1180:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1180:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1177:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1108:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1119:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1082:156:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1313:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1359:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1368:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1361:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1361:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1361:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1334:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1343:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1330:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1330:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1355:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1326:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1326:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1323:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1384:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1388:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1506:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1515:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1518:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1508:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1508:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1508:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1442:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1453:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1460:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1449:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1449:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1439:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1439:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1432:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1432:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1429:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1531:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1541:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1531:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1279:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1290:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1302:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1243:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1635:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1681:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1690:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1693:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1683:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1683:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1683:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1665:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1652:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1652:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1677:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1648:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1648:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1645:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1706:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1725:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1719:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1719:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1710:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1788:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1797:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1800:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1790:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1790:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1790:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1757:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1778:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1771:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1771:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1764:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1764:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1754:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1754:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1747:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1747:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1744:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1813:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1823:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1813:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1601:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1612:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1624:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1557:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1985:1006:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1995:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2009:7:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2018:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2005:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2005:23:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1999:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2053:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2062:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2065:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2055:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2055:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2055:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2044:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2048:3:94",
                                    "type": "",
                                    "value": "928"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2040:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2040:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2037:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2094:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2103:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2106:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2096:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2096:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2096:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2085:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2089:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2081:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2081:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2078:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2119:19:94",
                              "value": {
                                "name": "headStart",
                                "nodeType": "YulIdentifier",
                                "src": "2129:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2119:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2239:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2248:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2251:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2241:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2241:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2241:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2158:2:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2162:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2154:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2154:75:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2231:6:94",
                                    "type": "",
                                    "value": "0x0300"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2150:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2150:88:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2147:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2264:30:94",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2277:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2277:17:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2268:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2310:5:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2338:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2349:3:94",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2334:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2334:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2317:16:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2317:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2303:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2303:52:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2303:52:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2375:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2382:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2371:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2371:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2408:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2419:3:94",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2404:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2404:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2387:16:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2387:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2364:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2364:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2364:61:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2445:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2452:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2441:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2441:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2479:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2490:3:94",
                                            "type": "",
                                            "value": "224"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2475:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2475:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2457:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2457:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2434:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2434:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2434:62:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2505:13:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2515:3:94",
                                "type": "",
                                "value": "256"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2509:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2538:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2545:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2534:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2534:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2572:9:94"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2583:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2568:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2568:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2550:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2550:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2527:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2527:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2527:61:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2608:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2615:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2604:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2604:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2643:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2654:6:94",
                                            "type": "",
                                            "value": "0x0120"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2639:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2639:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2621:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2621:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2597:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2597:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2597:66:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2683:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2690:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2679:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2679:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2718:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2729:3:94",
                                            "type": "",
                                            "value": "320"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2714:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2714:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2696:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2696:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2672:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2672:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2672:63:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2755:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2762:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2751:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2751:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2791:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2802:3:94",
                                            "type": "",
                                            "value": "352"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2787:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2787:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "2768:18:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2768:39:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2744:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2744:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2744:64:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2828:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2835:3:94",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2824:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2824:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2869:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2880:3:94",
                                            "type": "",
                                            "value": "384"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2865:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2865:19:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2886:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_array_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2841:23:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2841:53:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2817:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2817:78:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2817:78:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2915:5:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2922:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2911:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2911:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2944:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2955:3:94",
                                            "type": "",
                                            "value": "896"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2940:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2940:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2927:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2927:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2904:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2904:57:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2904:57:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2970:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2980:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2970:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$8176_calldata_ptrt_struct$_PrizeDistribution_$8506_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1943:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1954:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1966:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1974:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1839:1152:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3065:115:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3111:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3120:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3123:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3113:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3113:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3113:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3086:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3095:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3082:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3082:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3107:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3078:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3078:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3075:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3136:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3164:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3146:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3146:28:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3136:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3031:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3042:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3054:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2996:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3254:215:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3300:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3309:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3312:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3302:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3302:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3302:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3275:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3284:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3271:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3271:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3296:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3267:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3267:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3264:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3325:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3351:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3338:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3338:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3329:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3423:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3432:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3435:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3425:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3425:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3425:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3383:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3394:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3401:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3390:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3390:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3380:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3380:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3373:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3373:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3370:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3448:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3458:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3448:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3220:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3231:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3243:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3185:284:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3523:293:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3533:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "3540:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3533:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3552:19:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3566:5:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3556:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3580:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3589:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3584:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3646:164:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3667:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3682:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "3676:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3676:13:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "3691:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "3672:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3672:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3660:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3660:43:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3660:43:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "3716:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "3726:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "3720:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3743:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3754:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3759:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3750:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3750:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3743:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3775:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3789:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3797:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3785:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3785:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3775:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3610:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3613:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3607:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3607:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3619:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3621:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3630:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3633:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3626:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3626:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3621:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3603:3:94",
                                "statements": []
                              },
                              "src": "3599:211:94"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3507:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3514:3:94",
                            "type": ""
                          }
                        ],
                        "src": "3474:342:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3882:854:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3899:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3914:5:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3908:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3908:12:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3922:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3904:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3904:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3892:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3892:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3892:36:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3948:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3953:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3944:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3944:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3974:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3981:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3970:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3970:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3964:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3964:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3989:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3960:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3960:34:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3937:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3937:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3937:58:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4004:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4034:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4041:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4030:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4030:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4024:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4024:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "4008:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4074:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4092:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4097:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4088:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4088:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4056:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4056:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4056:47:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4112:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4144:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4151:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4140:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4140:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4134:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4134:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4116:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4184:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4204:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4209:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4200:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4200:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4166:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4166:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4166:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4224:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4256:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4263:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4252:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4252:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4246:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4246:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4228:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4296:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4316:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4321:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4312:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4312:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4278:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4278:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4278:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4336:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4368:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4375:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4364:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4364:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4358:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4358:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "4340:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4408:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4428:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4433:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4424:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4424:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4390:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4390:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4390:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4448:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4480:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4487:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4476:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4476:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4470:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4470:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "4452:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "4521:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4541:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4546:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4537:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4537:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "4502:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4502:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4502:50:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4561:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4593:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4600:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4589:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4589:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4583:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4583:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "4565:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "4639:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4659:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4664:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4655:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4655:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4615:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4615:55:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4615:55:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4690:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4695:6:94",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4686:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4686:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4714:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4721:6:94",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4710:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4710:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4704:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4704:25:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4679:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4679:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4679:51:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3866:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3873:3:94",
                            "type": ""
                          }
                        ],
                        "src": "3821:915:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4785:69:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4802:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4811:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4818:28:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4807:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4807:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4795:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4795:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4795:53:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4769:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4776:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4741:113:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4902:51:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4919:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4928:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4935:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4924:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4924:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4912:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4912:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4912:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4886:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4893:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4859:94:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5059:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5069:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5081:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5092:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5077:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5077:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5069:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5111:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5126:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5134:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5122:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5122:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5104:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5104:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5104:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5028:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5039:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5050:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4958:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5284:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5294:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5306:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5317:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5302:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5302:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5294:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5336:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "5361:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5354:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5354:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5347:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5347:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5329:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5329:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5329:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5253:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5264:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5275:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5189:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5515:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5525:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5537:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5548:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5533:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5533:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5525:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5567:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5582:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5590:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5578:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5578:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5560:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5560:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5560:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5484:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5495:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5506:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5381:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5779:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5789:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5801:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5812:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5797:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5797:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5789:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5831:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5846:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5854:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5842:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5842:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5824:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5824:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5824:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5748:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5759:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5770:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5645:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6083:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6100:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6111:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6093:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6093:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6093:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6134:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6145:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6130:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6130:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6150:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6123:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6123:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6123:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6173:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6184:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6169:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6169:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6189:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6162:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6162:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6162:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6244:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6255:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6240:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6240:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6260:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6233:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6233:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6233:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6275:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6287:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6298:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6283:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6283:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6275:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6060:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6074:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5909:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6487:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6504:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6515:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6497:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6497:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6497:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6538:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6549:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6534:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6534:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6554:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6527:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6527:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6527:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6577:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6588:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6573:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6573:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6593:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6566:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6566:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6566:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6629:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6641:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6652:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6637:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6637:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6629:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6464:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6478:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6313:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6840:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6857:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6868:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6850:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6850:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6850:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6891:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6902:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6887:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6887:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6907:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6880:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6880:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6880:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6930:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6941:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6926:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6926:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6946:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6919:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6919:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6919:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6989:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7001:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7012:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6997:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6997:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6989:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6817:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6831:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6666:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7200:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7217:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7228:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7210:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7210:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7210:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7251:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7262:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7247:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7247:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7267:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7240:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7240:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7240:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7290:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7301:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7286:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7286:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7306:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7279:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7279:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7279:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7361:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7372:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7357:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7357:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7377:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7350:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7350:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7350:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7395:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7407:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7418:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7403:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7403:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7395:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7177:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7191:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7026:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7607:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7624:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7635:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7617:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7617:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7617:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7658:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7669:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7654:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7654:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7674:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7647:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7647:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7647:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7697:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7708:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7693:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7693:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7713:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7686:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7686:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7686:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7768:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7779:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7764:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7764:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7784:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7757:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7757:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7757:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7801:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7813:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7824:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7809:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7809:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7801:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7584:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7598:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7433:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8010:106:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8020:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8032:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8043:3:94",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8028:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8028:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8020:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8092:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8100:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "8056:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8056:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8056:54:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7979:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7990:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8001:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7839:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8318:166:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8328:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8340:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8351:3:94",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8336:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8336:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8328:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8371:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8386:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8394:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8382:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8382:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8364:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8364:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8364:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8451:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8463:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8474:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8459:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8459:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "8415:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8415:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8415:63:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8279:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8290:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8298:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8309:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8121:363:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8614:161:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8624:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8636:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8647:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8632:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8632:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8624:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8666:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8681:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8689:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8677:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8677:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8659:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8659:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8659:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8721:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8732:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8717:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8717:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8741:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8749:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8737:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8737:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8710:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8710:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8710:59:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8575:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8586:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8594:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8605:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8489:286:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8821:209:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8831:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8847:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8841:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8841:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "8831:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8859:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "8881:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8889:6:94",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8877:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8877:19:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "8863:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8971:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "8973:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8973:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8973:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8914:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8926:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "8911:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8911:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8950:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8962:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "8947:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8947:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "8908:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8908:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8905:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9009:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "9013:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9002:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9002:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9002:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "8810:6:94",
                            "type": ""
                          }
                        ],
                        "src": "8780:250:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9082:343:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9092:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9102:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9096:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9129:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9144:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9147:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9140:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9140:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9133:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9159:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9174:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9177:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9170:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9170:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9163:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9222:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9243:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9246:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9236:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9236:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9236:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9344:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9347:4:94",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9337:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9337:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9337:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9372:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9375:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9365:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9365:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9365:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9195:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9204:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9208:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "9200:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9200:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9192:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9192:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9189:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9399:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9410:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9415:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9406:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9406:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "9399:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9065:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9068:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "9074:3:94",
                            "type": ""
                          }
                        ],
                        "src": "9035:390:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9462:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9479:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9482:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9472:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9472:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9472:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9576:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9579:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9569:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9569:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9569:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9600:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9603:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9593:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9593:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9593:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9430:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_array_uint32(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let memPtr := mload(64)\n        let _1 := 512\n        let newFreePtr := add(memPtr, _1)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        let src := offset\n        if gt(add(offset, _1), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            mstore(dst, abi_decode_uint32(src))\n            let _2 := 0x20\n            dst := add(dst, _2)\n            src := add(src, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_uint104(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_Draw_$8176_calldata_ptrt_struct$_PrizeDistribution_$8506_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 928) { revert(0, 0) }\n        if slt(_1, 160) { revert(0, 0) }\n        value0 := headStart\n        if slt(add(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60), 0x0300) { revert(0, 0) }\n        let value := allocate_memory()\n        mstore(value, abi_decode_uint8(add(headStart, 160)))\n        mstore(add(value, 32), abi_decode_uint8(add(headStart, 192)))\n        mstore(add(value, 64), abi_decode_uint32(add(headStart, 224)))\n        let _2 := 256\n        mstore(add(value, 96), abi_decode_uint32(add(headStart, _2)))\n        mstore(add(value, 128), abi_decode_uint32(add(headStart, 0x0120)))\n        mstore(add(value, 160), abi_decode_uint32(add(headStart, 320)))\n        mstore(add(value, 192), abi_decode_uint104(add(headStart, 352)))\n        mstore(add(value, 224), abi_decode_array_uint32(add(headStart, 384), dataEnd))\n        mstore(add(value, _2), calldataload(add(headStart, 896)))\n        value1 := value\n    }\n    function abi_decode_tuple_t_uint32(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint32(headStart)\n    }\n    function abi_decode_tuple_t_uint64(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_array_uint32(value, pos)\n    {\n        pos := pos\n        let srcPtr := value\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_struct_PrizeDistribution(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xff))\n        let memberValue0 := mload(add(value, 0x40))\n        abi_encode_uint32(memberValue0, add(pos, 0x40))\n        let memberValue0_1 := mload(add(value, 0x60))\n        abi_encode_uint32(memberValue0_1, add(pos, 0x60))\n        let memberValue0_2 := mload(add(value, 0x80))\n        abi_encode_uint32(memberValue0_2, add(pos, 0x80))\n        let memberValue0_3 := mload(add(value, 0xa0))\n        abi_encode_uint32(memberValue0_3, add(pos, 0xa0))\n        let memberValue0_4 := mload(add(value, 0xc0))\n        abi_encode_uint104(memberValue0_4, add(pos, 0xc0))\n        let memberValue0_5 := mload(add(value, 0xe0))\n        abi_encode_array_uint32(memberValue0_5, add(pos, 0xe0))\n        mstore(add(pos, 0x02e0), mload(add(value, 0x0100)))\n    }\n    function abi_encode_uint104(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffffffffffffff))\n    }\n    function abi_encode_uint32(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PrizeDistribution(value0, headStart)\n    }\n    function abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 800)\n        mstore(headStart, and(value0, 0xffffffff))\n        abi_encode_struct_PrizeDistribution(value1, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0120)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x_1, y_1)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15853": [
                  {
                    "length": 32,
                    "start": 200
                  },
                  {
                    "length": 32,
                    "start": 1117
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100be5760003560e01c8063af32b60511610076578063d33219b41161005b578063d33219b414610171578063e30c397814610184578063f2fde38b1461019557600080fd5b8063af32b6051461013b578063d0ebdbe71461014e57600080fd5b80634e71e0c8116100a75780634e71e0c814610118578063715018a6146101225780638da5cb5b1461012a57600080fd5b80630840bbdd146100c3578063481c6a7514610107575b600080fd5b6100ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100ea565b6101206101a8565b005b61012061023b565b6000546001600160a01b03166100ea565b61012061014936600461096a565b6102b0565b61016161015c366004610918565b610554565b60405190151581526020016100fe565b6003546100ea906001600160a01b031681565b6001546001600160a01b03166100ea565b6101206101a3366004610918565b6105d0565b6001546001600160a01b031633146102075760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461021c906001600160a01b031661070c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361024e6000546001600160a01b031690565b6001600160a01b0316146102a45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6102ae600061070c565b565b336102c36002546001600160a01b031690565b6001600160a01b031614806102f15750336102e66000546001600160a01b031690565b6001600160a01b0316145b6103635760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016101fe565b6003546001600160a01b0316638871189b6103846040850160208601610a6c565b61039460a0860160808701610a6c565b63ffffffff166103aa6060870160408801610a87565b6103b49190610bf1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561041a57600080fd5b505af115801561042e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104529190610948565b506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631124e1dc6104926040850160208601610a6c565b836040518363ffffffff1660e01b81526004016104b0929190610bac565b602060405180830381600087803b1580156104ca57600080fd5b505af11580156104de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105029190610948565b506105136040830160208401610a6c565b63ffffffff167fa8d834c585da75dc5076dfaed2f4cc0c65d2d07cfc01f7c27023ab61563f257e826040516105489190610b97565b60405180910390a25050565b6000336105696000546001600160a01b031690565b6001600160a01b0316146105bf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6105c882610769565b90505b919050565b336105e36000546001600160a01b031690565b6001600160a01b0316146106395760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6001600160a01b0381166106b55760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016101fe565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156107f25760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016101fe565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261086657600080fd5b60405161020080820182811067ffffffffffffffff8211171561088b5761088b610c44565b604052818482810187101561089f57600080fd5b600092505b60108310156108cb576108b6816108f3565b825260019290920191602091820191016108a4565b509195945050505050565b80356cffffffffffffffffffffffffff811681146105cb57600080fd5b803563ffffffff811681146105cb57600080fd5b803560ff811681146105cb57600080fd5b60006020828403121561092a57600080fd5b81356001600160a01b038116811461094157600080fd5b9392505050565b60006020828403121561095a57600080fd5b8151801515811461094157600080fd5b6000808284036103a081121561097f57600080fd5b60a081121561098d57600080fd5b8392506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60820112156109c157600080fd5b506109ca610bc7565b6109d660a08501610907565b81526109e460c08501610907565b60208201526109f560e085016108f3565b6040820152610100610a088186016108f3565b6060830152610a1a61012086016108f3565b6080830152610a2c61014086016108f3565b60a0830152610a3e61016086016108d6565b60c0830152610a51866101808701610855565b60e08301526103808501358183015250809150509250929050565b600060208284031215610a7e57600080fd5b610941826108f3565b600060208284031215610a9957600080fd5b813567ffffffffffffffff8116811461094157600080fd5b8060005b6010811015610ada57815163ffffffff16845260209384019390910190600101610ab5565b50505050565b60ff815116825260ff60208201511660208301526040810151610b0b604084018263ffffffff169052565b506060810151610b23606084018263ffffffff169052565b506080810151610b3b608084018263ffffffff169052565b5060a0810151610b5360a084018263ffffffff169052565b5060c0810151610b7460c08401826cffffffffffffffffffffffffff169052565b5060e0810151610b8760e0840182610ab1565b5061010001516102e09190910152565b6103008101610ba68284610ae0565b92915050565b63ffffffff8316815261032081016109416020830184610ae0565b604051610120810167ffffffffffffffff81118282101715610beb57610beb610c44565b60405290565b600067ffffffffffffffff808316818516808303821115610c3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220cc9a2293ede58992a97601778f8b737433ca1ee51419db5312b578ee2290681464736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBE JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAF32B605 GT PUSH2 0x76 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x171 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x184 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x195 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAF32B605 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x14E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xA7 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x12A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0xC3 JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x107 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEA PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEA JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x23B JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEA JUMP JUMPDEST PUSH2 0x120 PUSH2 0x149 CALLDATASIZE PUSH1 0x4 PUSH2 0x96A JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST PUSH2 0x161 PUSH2 0x15C CALLDATASIZE PUSH1 0x4 PUSH2 0x918 JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0xEA SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xEA JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x918 JUMP JUMPDEST PUSH2 0x5D0 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x207 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x21C SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x70C JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x24E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x2AE PUSH1 0x0 PUSH2 0x70C JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x2C3 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2F1 JUMPI POP CALLER PUSH2 0x2E6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x363 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8871189B PUSH2 0x384 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xA6C JUMP JUMPDEST PUSH2 0x394 PUSH1 0xA0 DUP7 ADD PUSH1 0x80 DUP8 ADD PUSH2 0xA6C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x3AA PUSH1 0x60 DUP8 ADD PUSH1 0x40 DUP9 ADD PUSH2 0xA87 JUMP JUMPDEST PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0xBF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x42E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x452 SWAP2 SWAP1 PUSH2 0x948 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x1124E1DC PUSH2 0x492 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xA6C JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B0 SWAP3 SWAP2 SWAP1 PUSH2 0xBAC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4DE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x502 SWAP2 SWAP1 PUSH2 0x948 JUMP JUMPDEST POP PUSH2 0x513 PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0xA6C JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH32 0xA8D834C585DA75DC5076DFAED2F4CC0C65D2D07CFC01F7C27023AB61563F257E DUP3 PUSH1 0x40 MLOAD PUSH2 0x548 SWAP2 SWAP1 PUSH2 0xB97 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x569 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5BF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH2 0x5C8 DUP3 PUSH2 0x769 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x5E3 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x639 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x7F2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1FE JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x866 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x88B JUMPI PUSH2 0x88B PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x89F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x8CB JUMPI PUSH2 0x8B6 DUP2 PUSH2 0x8F3 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x8A4 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x5CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x5CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x92A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x95A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x3A0 DUP2 SLT ISZERO PUSH2 0x97F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0x98D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF60 DUP3 ADD SLT ISZERO PUSH2 0x9C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9CA PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x9D6 PUSH1 0xA0 DUP6 ADD PUSH2 0x907 JUMP JUMPDEST DUP2 MSTORE PUSH2 0x9E4 PUSH1 0xC0 DUP6 ADD PUSH2 0x907 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x9F5 PUSH1 0xE0 DUP6 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x100 PUSH2 0xA08 DUP2 DUP7 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0xA1A PUSH2 0x120 DUP7 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0xA2C PUSH2 0x140 DUP7 ADD PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xA3E PUSH2 0x160 DUP7 ADD PUSH2 0x8D6 JUMP JUMPDEST PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0xA51 DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x855 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x380 DUP6 ADD CALLDATALOAD DUP2 DUP4 ADD MSTORE POP DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA7E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x941 DUP3 PUSH2 0x8F3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0xADA JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xAB5 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0xB0B PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0xB23 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0xB3B PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0xB53 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0xB74 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0xB87 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0xAB1 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0xBA6 DUP3 DUP5 PUSH2 0xAE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND DUP2 MSTORE PUSH2 0x320 DUP2 ADD PUSH2 0x941 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xAE0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xBEB JUMPI PUSH2 0xBEB PUSH2 0xC44 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xC3B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCC SWAP11 0x22 SWAP4 0xED 0xE5 DUP10 SWAP3 0xA9 PUSH23 0x1778F8B737433CA1EE51419DB5312B578EE2290681464 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "813:2429:62:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1682:65;;;;;;;;-1:-1:-1;;;;;5122:55:94;;;5104:74;;5092:2;5077:18;1682:65:62;;;;;;;;1403:89:18;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;3147:129:19;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;2749:491:62;;;;;;:::i;:::-;;:::i;1744:123:18:-;;;;;;:::i;:::-;;:::i;:::-;;;5354:14:94;;5347:22;5329:41;;5317:2;5302:18;1744:123:18;5284:92:94;1797:39:62;;;;;-1:-1:-1;;;;;1797:39:62;;;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;6868:2:94;4028:71:19;;;6850:21:94;6907:2;6887:18;;;6880:30;6946:33;6926:18;;;6919:61;6997:18;;4028:71:19;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;6515:2:94;3819:58:19;;;6497:21:94;6554:2;6534:18;;;6527:30;6593:26;6573:18;;;6566:54;6637:18;;3819:58:19;6487:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2749:491:62:-;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;7228:2:94;2840:99:18;;;7210:21:94;7267:2;7247:18;;;7240:30;7306:34;7286:18;;;7279:62;7377:8;7357:18;;;7350:36;7403:19;;2840:99:18;7200:228:94;2840:99:18;3000:8:62::1;::::0;-1:-1:-1;;;;;3000:8:62::1;:13;3014:12;::::0;;;::::1;::::0;::::1;;:::i;:::-;3046:25;::::0;;;::::1;::::0;::::1;;:::i;:::-;3028:43;;:15;::::0;;;::::1;::::0;::::1;;:::i;:::-;:43;;;;:::i;:::-;3000:72;::::0;;::::1;::::0;;;;;;::::1;8677:23:94::0;;;;3000:72:62::1;::::0;::::1;8659:42:94::0;8749:18;8737:31;8717:18;;;8710:59;8632:18;;3000:72:62::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;3082:23:62::1;:45;;3128:12;::::0;;;::::1;::::0;::::1;;:::i;:::-;3142:18;3082:79;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;3200:12:62::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;3176:57;;;3214:18;3176:57;;;;;;:::i;:::-;;;;;;;;2749:491:::0;;:::o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;6515:2:94;3819:58:19;;;6497:21:94;6554:2;6534:18;;;6527:30;6593:26;6573:18;;;6566:54;6637:18;;3819:58:19;6487:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:19;1744:123:18::0;;;:::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;6515:2:94;3819:58:19;;;6497:21:94;6554:2;6534:18;;;6527:30;6593:26;6573:18;;;6566:54;6637:18;;3819:58:19;6487:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;7635:2:94;2826:73:19::1;::::0;::::1;7617:21:94::0;7674:2;7654:18;;;7647:30;7713:34;7693:18;;;7686:62;7784:7;7764:18;;;7757:35;7809:19;;2826:73:19::1;7607:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;6111:2:94;2230:79:18;;;6093:21:94;6150:2;6130:18;;;6123:30;6189:34;6169:18;;;6162:62;6260:5;6240:18;;;6233:33;6283:19;;2230:79:18;6083:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;14:708:94:-;63:5;116:3;109:4;101:6;97:17;93:27;83:2;;134:1;131;124:12;83:2;167;161:9;189:3;231:2;223:6;219:15;300:6;288:10;285:22;264:18;252:10;249:34;246:62;243:2;;;311:18;;:::i;:::-;347:2;340:22;382:6;408;429:15;;;426:24;-1:-1:-1;423:2:94;;;463:1;460;453:12;423:2;485:1;476:10;;495:197;509:4;506:1;503:11;495:197;;;568:22;586:3;568:22;:::i;:::-;556:35;;529:1;522:9;;;;;614:4;638:12;;;;670;495:197;;;-1:-1:-1;710:6:94;;73:649;-1:-1:-1;;;;;73:649:94:o;727:182::-;795:20;;855:28;844:40;;834:51;;824:2;;899:1;896;889:12;914:163;981:20;;1041:10;1030:22;;1020:33;;1010:2;;1067:1;1064;1057:12;1082:156;1148:20;;1208:4;1197:16;;1187:27;;1177:2;;1228:1;1225;1218:12;1243:309;1302:6;1355:2;1343:9;1334:7;1330:23;1326:32;1323:2;;;1371:1;1368;1361:12;1323:2;1410:9;1397:23;-1:-1:-1;;;;;1453:5:94;1449:54;1442:5;1439:65;1429:2;;1518:1;1515;1508:12;1429:2;1541:5;1313:239;-1:-1:-1;;;1313:239:94:o;1557:277::-;1624:6;1677:2;1665:9;1656:7;1652:23;1648:32;1645:2;;;1693:1;1690;1683:12;1645:2;1725:9;1719:16;1778:5;1771:13;1764:21;1757:5;1754:32;1744:2;;1800:1;1797;1790:12;1839:1152;1966:6;1974;2018:9;2009:7;2005:23;2048:3;2044:2;2040:12;2037:2;;;2065:1;2062;2055:12;2037:2;2089:3;2085:2;2081:12;2078:2;;;2106:1;2103;2096:12;2078:2;2129:9;2119:19;;2231:6;2162:66;2158:2;2154:75;2150:88;2147:2;;;2251:1;2248;2241:12;2147:2;;2277:17;;:::i;:::-;2317:37;2349:3;2338:9;2334:19;2317:37;:::i;:::-;2310:5;2303:52;2387:37;2419:3;2408:9;2404:19;2387:37;:::i;:::-;2382:2;2375:5;2371:14;2364:61;2457:38;2490:3;2479:9;2475:19;2457:38;:::i;:::-;2452:2;2445:5;2441:14;2434:62;2515:3;2550:37;2583:2;2572:9;2568:18;2550:37;:::i;:::-;2545:2;2538:5;2534:14;2527:61;2621:41;2654:6;2643:9;2639:22;2621:41;:::i;:::-;2615:3;2608:5;2604:15;2597:66;2696:38;2729:3;2718:9;2714:19;2696:38;:::i;:::-;2690:3;2683:5;2679:15;2672:63;2768:39;2802:3;2791:9;2787:19;2768:39;:::i;:::-;2762:3;2755:5;2751:15;2744:64;2841:53;2886:7;2880:3;2869:9;2865:19;2841:53;:::i;:::-;2835:3;2828:5;2824:15;2817:78;2955:3;2944:9;2940:19;2927:33;2922:2;2915:5;2911:14;2904:57;;2980:5;2970:15;;;1985:1006;;;;;:::o;2996:184::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:2;;;3123:1;3120;3113:12;3075:2;3146:28;3164:9;3146:28;:::i;3185:284::-;3243:6;3296:2;3284:9;3275:7;3271:23;3267:32;3264:2;;;3312:1;3309;3302:12;3264:2;3351:9;3338:23;3401:18;3394:5;3390:30;3383:5;3380:41;3370:2;;3435:1;3432;3425:12;3474:342;3566:5;3589:1;3599:211;3613:4;3610:1;3607:11;3599:211;;;3676:13;;3691:10;3672:30;3660:43;;3726:4;3750:12;;;;3785:15;;;;3633:1;3626:9;3599:211;;;3603:3;;3523:293;;:::o;3821:915::-;3922:4;3914:5;3908:12;3904:23;3899:3;3892:36;3989:4;3981;3974:5;3970:16;3964:23;3960:34;3953:4;3948:3;3944:14;3937:58;4041:4;4034:5;4030:16;4024:23;4056:47;4097:4;4092:3;4088:14;4074:12;4935:10;4924:22;4912:35;;4902:51;4056:47;;4151:4;4144:5;4140:16;4134:23;4166:49;4209:4;4204:3;4200:14;4184;4935:10;4924:22;4912:35;;4902:51;4166:49;;4263:4;4256:5;4252:16;4246:23;4278:49;4321:4;4316:3;4312:14;4296;4935:10;4924:22;4912:35;;4902:51;4278:49;;4375:4;4368:5;4364:16;4358:23;4390:49;4433:4;4428:3;4424:14;4408;4935:10;4924:22;4912:35;;4902:51;4390:49;;4487:4;4480:5;4476:16;4470:23;4502:50;4546:4;4541:3;4537:14;4521;4818:28;4807:40;4795:53;;4785:69;4502:50;;4600:4;4593:5;4589:16;4583:23;4615:55;4664:4;4659:3;4655:14;4639;4615:55;:::i;:::-;-1:-1:-1;4721:6:94;4710:18;4704:25;4695:6;4686:16;;;;4679:51;3882:854::o;7839:277::-;8043:3;8028:19;;8056:54;8032:9;8092:6;8056:54;:::i;:::-;8010:106;;;;:::o;8121:363::-;8394:10;8382:23;;8364:42;;8351:3;8336:19;;8415:63;8474:2;8459:18;;8451:6;8415:63;:::i;8780:250::-;8847:2;8841:9;8889:6;8877:19;;8926:18;8911:34;;8947:22;;;8908:62;8905:2;;;8973:18;;:::i;:::-;9009:2;9002:22;8821:209;:::o;9035:390::-;9074:3;9102:18;9147:2;9144:1;9140:10;9177:2;9174:1;9170:10;9208:3;9204:2;9200:12;9195:3;9192:21;9189:2;;;9246:77;9243:1;9236:88;9347:4;9344:1;9337:15;9375:4;9372:1;9365:15;9189:2;9406:13;;9082:343;-1:-1:-1;;;;9082:343:94:o;9430:184::-;9482:77;9479:1;9472:88;9579:4;9576:1;9569:15;9603:4;9600:1;9593:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "648200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54464",
                "manager()": "2366",
                "owner()": "2387",
                "pendingOwner()": "2364",
                "prizeDistributionBuffer()": "infinite",
                "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "renounceOwnership()": "28180",
                "setManager(address)": "30559",
                "timelock()": "2348",
                "transferOwnership(address)": "27937"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "prizeDistributionBuffer()": "0840bbdd",
              "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "af32b605",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "timelock()": "d33219b4",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"_prizeDistributionBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"_timelock\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"prizeDistributionBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"timelock\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"PrizeDistributionPushed\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_draw\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"Deployed(address,address)\":{\"params\":{\"prizeDistributionBuffer\":\"The address of the prize distribution buffer contract.\",\"timelock\":\"The address of the DrawCalculatorTimelock\"}},\"PrizeDistributionPushed(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"params\":{\"drawId\":\"Draw ID\",\"prizeDistribution\":\"PrizeDistribution\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_owner\":\"Address of the L1TimelockTrigger owner.\",\"_prizeDistributionBuffer\":\"PrizeDistributionBuffer address\",\"_timelock\":\"Elapsed seconds before new Draw is available\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Restricts new draws by forcing a push timelock.\",\"params\":{\"_draw\":\"Draw struct\",\"_prizeDistribution\":\"PrizeDistribution struct\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 L1TimelockTrigger\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"PrizeDistributionPushed(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Emitted when target prize distribution is pushed.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initialize L1TimelockTrigger smart contract.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"prizeDistributionBuffer()\":{\"notice\":\"Internal PrizeDistributionBuffer reference.\"},\"push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Push Draw onto draws ring buffer history.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"timelock()\":{\"notice\":\"Timelock struct reference.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"L1TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts. The L1TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is to  include a \\\"cooldown\\\" period for all new Draws. Allowing the correction of a malicously set Draw in the unfortunate event an Owner is compromised.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol\":\"L1TimelockTrigger\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 L1TimelockTrigger\\n  * @author PoolTogether Inc Team\\n  * @notice L1TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts.\\n            The L1TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing\\n            claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\\n            to  include a \\\"cooldown\\\" period for all new Draws. Allowing the correction of a\\n            malicously set Draw in the unfortunate event an Owner is compromised.\\n*/\\ncontract L1TimelockTrigger is Manageable {\\n    /* ============ Events ============ */\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param prizeDistributionBuffer The address of the prize distribution buffer contract.\\n    /// @param timelock The address of the DrawCalculatorTimelock\\n    event Deployed(\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer,\\n        IDrawCalculatorTimelock indexed timelock\\n    );\\n\\n    /**\\n     * @notice Emitted when target prize distribution is pushed.\\n     * @param drawId    Draw ID\\n     * @param prizeDistribution PrizeDistribution\\n     */\\n    event PrizeDistributionPushed(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice Internal PrizeDistributionBuffer reference.\\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\\n\\n    /// @notice Timelock struct reference.\\n    IDrawCalculatorTimelock public timelock;\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initialize L1TimelockTrigger smart contract.\\n     * @param _owner                    Address of the L1TimelockTrigger owner.\\n     * @param _prizeDistributionBuffer PrizeDistributionBuffer address\\n     * @param _timelock                 Elapsed seconds before new Draw is available\\n     */\\n    constructor(\\n        address _owner,\\n        IPrizeDistributionBuffer _prizeDistributionBuffer,\\n        IDrawCalculatorTimelock _timelock\\n    ) Ownable(_owner) {\\n        prizeDistributionBuffer = _prizeDistributionBuffer;\\n        timelock = _timelock;\\n\\n        emit Deployed(_prizeDistributionBuffer, _timelock);\\n    }\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _draw Draw struct\\n     * @param _prizeDistribution PrizeDistribution struct\\n     */\\n    function push(\\n        IDrawBeacon.Draw calldata _draw,\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\\n    ) external onlyManagerOrOwner {\\n        // Locks the new PrizeDistribution according to the Draw endtime.\\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\\n        prizeDistributionBuffer.pushPrizeDistribution(_draw.drawId, _prizeDistribution);\\n        emit PrizeDistributionPushed(_draw.drawId, _prizeDistribution);\\n    }\\n}\\n\",\"keccak256\":\"0x6d341d591fd269aa70c52b13538f1b0d7011ad19189178060691d9b5fbde5638\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 15857,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "timelock",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(IDrawCalculatorTimelock)16274"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawCalculatorTimelock)16274": {
                "encoding": "inplace",
                "label": "contract IDrawCalculatorTimelock",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address)": {
                "notice": "Emitted when the contract is deployed."
              },
              "PrizeDistributionPushed(uint32,(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Emitted when target prize distribution is pushed."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initialize L1TimelockTrigger smart contract."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "prizeDistributionBuffer()": {
                "notice": "Internal PrizeDistributionBuffer reference."
              },
              "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Push Draw onto draws ring buffer history."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "timelock()": {
                "notice": "Timelock struct reference."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "L1TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts. The L1TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is to  include a \"cooldown\" period for all new Draws. Allowing the correction of a malicously set Draw in the unfortunate event an Owner is compromised.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol": {
        "L2TimelockTrigger": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "_prizeDistributionBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "_timelock",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "prizeDistributionBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "timelock",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "DrawAndPrizeDistributionPushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionBuffer",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_draw",
                  "type": "tuple"
                },
                {
                  "components": [
                    {
                      "internalType": "uint8",
                      "name": "bitRangeSize",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint8",
                      "name": "matchCardinality",
                      "type": "uint8"
                    },
                    {
                      "internalType": "uint32",
                      "name": "startTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "endTimestampOffset",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "maxPicksPerUser",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint32",
                      "name": "expiryDuration",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint104",
                      "name": "numberOfPicks",
                      "type": "uint104"
                    },
                    {
                      "internalType": "uint32[16]",
                      "name": "tiers",
                      "type": "uint32[16]"
                    },
                    {
                      "internalType": "uint256",
                      "name": "prize",
                      "type": "uint256"
                    }
                  ],
                  "internalType": "struct IPrizeDistributionBuffer.PrizeDistribution",
                  "name": "_prizeDistribution",
                  "type": "tuple"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "timelock",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "DrawAndPrizeDistributionPushed(uint32,(uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "params": {
                  "drawId": "Draw ID",
                  "prizeDistribution": "PrizeDistribution"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_drawBuffer": "DrawBuffer address",
                  "_owner": "Address of the L2TimelockTrigger owner.",
                  "_prizeDistributionBuffer": "PrizeDistributionBuffer address",
                  "_timelock": "Elapsed seconds before timelocked Draw is available"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "details": "Restricts new draws by forcing a push timelock.",
                "params": {
                  "_draw": "Draw struct from IDrawBeacon",
                  "_prizeDistribution": "PrizeDistribution struct from IPrizeDistributionBuffer"
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 L2TimelockTrigger",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16008": {
                  "entryPoint": null,
                  "id": 16008,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 178,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587t_contract$_IDrawCalculatorTimelock_$16274_fromMemory": {
                  "entryPoint": 258,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "validator_revert_address": {
                  "entryPoint": 353,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:892:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "232:522:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "279:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "288:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "291:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "281:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "281:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "281:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "253:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "262:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "249:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "249:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "274:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "245:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "245:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "242:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "304:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "323:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "317:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "317:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "308:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "367:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "342:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "382:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "392:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "382:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "406:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "431:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "442:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "427:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "427:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "421:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "421:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "410:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "480:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "455:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "455:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "455:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "497:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "507:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "497:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "523:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "548:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "559:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "544:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "544:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "538:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "538:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "527:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "597:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "572:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "572:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "572:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "614:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "624:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "614:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "640:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "665:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "676:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "661:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "661:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "644:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "714:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "689:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "689:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "689:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "731:17:94",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "741:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "731:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587t_contract$_IDrawCalculatorTimelock_$16274_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "174:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "185:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "197:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "205:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "213:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "221:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:740:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "804:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "868:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "877:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "880:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "870:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "870:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "870:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "827:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "838:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "853:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "858:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "849:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "849:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "862:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "845:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "845:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "834:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "834:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "824:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "824:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "817:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "817:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "814:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "793:5:94",
                            "type": ""
                          }
                        ],
                        "src": "759:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionBuffer_$8587t_contract$_IDrawCalculatorTimelock_$16274_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := mload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60c060405234801561001057600080fd5b506040516200104f3803806200104f83398101604081905261003191610102565b8361003b816100b2565b506001600160601b0319606084811b821660805283901b1660a052600380546001600160a01b038381166001600160a01b03199092168217909255604051909184811691908616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505050610179565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000806080858703121561011857600080fd5b845161012381610161565b602086015190945061013481610161565b604086015190935061014581610161565b606086015190925061015681610161565b939692955090935050565b6001600160a01b038116811461017657600080fd5b50565b60805160601c60a05160601c610e9d620001b26000396000818160d3015261055801526000818161015e015261049b0152610e9d6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063af32b60511610081578063d33219b41161005b578063d33219b4146101a3578063e30c3978146101b6578063f2fde38b146101c757600080fd5b8063af32b60514610146578063ce343bb614610159578063d0ebdbe71461018057600080fd5b80634e71e0c8116100b25780634e71e0c814610123578063715018a61461012d5780638da5cb5b1461013557600080fd5b80630840bbdd146100ce578063481c6a7514610112575b600080fd5b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f5565b61012b6101da565b005b61012b61026d565b6000546001600160a01b03166100f5565b61012b610154366004610a50565b6102e2565b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b61019361018e3660046109fe565b610629565b6040519015158152602001610109565b6003546100f5906001600160a01b031681565b6001546001600160a01b03166100f5565b61012b6101d53660046109fe565b6106a5565b6001546001600160a01b031633146102395760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461024e906001600160a01b03166107e1565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102806000546001600160a01b031690565b6001600160a01b0316146102d65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6102e060006107e1565b565b336102f56002546001600160a01b031690565b6001600160a01b031614806103235750336103186000546001600160a01b031690565b6001600160a01b0316145b6103955760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610230565b6003546020830151608084015160408501516001600160a01b0390931692638871189b92916103cc9163ffffffff90911690610dd0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561043257600080fd5b505af1158015610446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046a9190610a2e565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104d0908590600401610ca8565b602060405180830381600087803b1580156104ea57600080fd5b505af11580156104fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105229190610ba5565b5060208201516040517f1124e1dc0000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691631124e1dc9161058e91908590600401610d68565b602060405180830381600087803b1580156105a857600080fd5b505af11580156105bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e09190610a2e565b50816020015163ffffffff167f4b2c9bed31045ac093e453f0c6fcdde124408fae75b3e3b3f788c1c0a8775f95838360405161061d929190610d04565b60405180910390a25050565b60003361063e6000546001600160a01b031690565b6001600160a01b0316146106945760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b61069d8261083e565b90505b919050565b336106b86000546001600160a01b031690565b6001600160a01b03161461070e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6001600160a01b03811661078a5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610230565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108c75760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610230565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261093b57600080fd5b60405161020080820182811067ffffffffffffffff8211171561096057610960610e23565b604052818482810187101561097457600080fd5b600092505b60108310156109a257803561098d81610e52565b82526001929092019160209182019101610979565b509195945050505050565b80356cffffffffffffffffffffffffff811681146106a057600080fd5b80356106a081610e52565b803567ffffffffffffffff811681146106a057600080fd5b803560ff811681146106a057600080fd5b600060208284031215610a1057600080fd5b81356001600160a01b0381168114610a2757600080fd5b9392505050565b600060208284031215610a4057600080fd5b81518015158114610a2757600080fd5b6000808284036103a0811215610a6557600080fd5b60a0811215610a7357600080fd5b610a7b610d83565b843581526020850135610a8d81610e52565b6020820152610a9e604086016109d5565b6040820152610aaf606086016109d5565b60608201526080850135610ac281610e52565b608082015292506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6082011215610afa57600080fd5b50610b03610dac565b610b0f60a085016109ed565b8152610b1d60c085016109ed565b6020820152610b2e60e085016109ca565b6040820152610100610b418186016109ca565b6060830152610b5361012086016109ca565b6080830152610b6561014086016109ca565b60a0830152610b7761016086016109ad565b60c0830152610b8a86610180870161092a565b60e08301526103808501358183015250809150509250929050565b600060208284031215610bb757600080fd5b8151610a2781610e52565b8060005b6010811015610beb57815163ffffffff16845260209384019390910190600101610bc6565b50505050565b60ff815116825260ff60208201511660208301526040810151610c1c604084018263ffffffff169052565b506060810151610c34606084018263ffffffff169052565b506080810151610c4c608084018263ffffffff169052565b5060a0810151610c6460a084018263ffffffff169052565b5060c0810151610c8560c08401826cffffffffffffffffffffffffff169052565b5060e0810151610c9860e0840182610bc2565b5061010001516102e09190910152565b60a08101610cfe828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b6103a08101610d5b828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b610a2760a0830184610bf1565b63ffffffff831681526103208101610a276020830184610bf1565b60405160a0810167ffffffffffffffff81118282101715610da657610da6610e23565b60405290565b604051610120810167ffffffffffffffff81118282101715610da657610da6610e23565b600067ffffffffffffffff808316818516808303821115610e1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b63ffffffff81168114610e6457600080fd5b5056fea26469706673582212202e6d6aa7bbe1567dc42c9373ced3437e0b864541c3e11e4cc5c8435e9859dc4a64736f6c63430008060033",
              "opcodes": "PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x104F CODESIZE SUB DUP1 PUSH3 0x104F DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x31 SWAP2 PUSH2 0x102 JUMP JUMPDEST DUP4 PUSH2 0x3B DUP2 PUSH2 0xB2 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP4 SWAP1 SHL AND PUSH1 0xA0 MSTORE PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP3 AND DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP5 DUP2 AND SWAP2 SWAP1 DUP7 AND SWAP1 PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP POP POP POP PUSH2 0x179 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x118 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH2 0x123 DUP2 PUSH2 0x161 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP PUSH2 0x134 DUP2 PUSH2 0x161 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x145 DUP2 PUSH2 0x161 JUMP JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x156 DUP2 PUSH2 0x161 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x176 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH2 0xE9D PUSH3 0x1B2 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH1 0xD3 ADD MSTORE PUSH2 0x558 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x15E ADD MSTORE PUSH2 0x49B ADD MSTORE PUSH2 0xE9D PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAF32B605 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1B6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAF32B605 EQ PUSH2 0x146 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x180 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x135 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x112 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF5 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF5 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x1DA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x12B PUSH2 0x26D JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF5 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x154 CALLDATASIZE PUSH1 0x4 PUSH2 0xA50 JUMP JUMPDEST PUSH2 0x2E2 JUMP JUMPDEST PUSH2 0xF5 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x193 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0x9FE JUMP JUMPDEST PUSH2 0x629 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0xF5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF5 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x1D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x9FE JUMP JUMPDEST PUSH2 0x6A5 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x239 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x24E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7E1 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x280 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x230 JUMP JUMPDEST PUSH2 0x2E0 PUSH1 0x0 PUSH2 0x7E1 JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x2F5 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x323 JUMPI POP CALLER PUSH2 0x318 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x395 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x80 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 PUSH4 0x8871189B SWAP3 SWAP2 PUSH2 0x3CC SWAP2 PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH2 0xDD0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x432 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x446 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x46A SWAP2 SWAP1 PUSH2 0xA2E JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH2 0x4D0 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4FE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x522 SWAP2 SWAP1 PUSH2 0xBA5 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH32 0x1124E1DC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP2 PUSH4 0x1124E1DC SWAP2 PUSH2 0x58E SWAP2 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0xD68 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5BC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5E0 SWAP2 SWAP1 PUSH2 0xA2E JUMP JUMPDEST POP DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH32 0x4B2C9BED31045AC093E453F0C6FCDDE124408FAE75B3E3B3F788C1C0A8775F95 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x61D SWAP3 SWAP2 SWAP1 PUSH2 0xD04 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x63E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x694 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x230 JUMP JUMPDEST PUSH2 0x69D DUP3 PUSH2 0x83E JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x6B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x70E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x78A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x8C7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x93B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x960 JUMPI PUSH2 0x960 PUSH2 0xE23 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x974 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x9A2 JUMPI DUP1 CALLDATALOAD PUSH2 0x98D DUP2 PUSH2 0xE52 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x979 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x6A0 DUP2 PUSH2 0xE52 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xA27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x3A0 DUP2 SLT ISZERO PUSH2 0xA65 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0xA73 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA7B PUSH2 0xD83 JUMP JUMPDEST DUP5 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0xA8D DUP2 PUSH2 0xE52 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xA9E PUSH1 0x40 DUP7 ADD PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0xAAF PUSH1 0x60 DUP7 ADD PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD PUSH2 0xAC2 DUP2 PUSH2 0xE52 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF60 DUP3 ADD SLT ISZERO PUSH2 0xAFA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB03 PUSH2 0xDAC JUMP JUMPDEST PUSH2 0xB0F PUSH1 0xA0 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST DUP2 MSTORE PUSH2 0xB1D PUSH1 0xC0 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xB2E PUSH1 0xE0 DUP6 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x100 PUSH2 0xB41 DUP2 DUP7 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0xB53 PUSH2 0x120 DUP7 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0xB65 PUSH2 0x140 DUP7 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xB77 PUSH2 0x160 DUP7 ADD PUSH2 0x9AD JUMP JUMPDEST PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0xB8A DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x92A JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x380 DUP6 ADD CALLDATALOAD DUP2 DUP4 ADD MSTORE POP DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBB7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA27 DUP2 PUSH2 0xE52 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0xBEB JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xBC6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0xC1C PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0xC34 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0xC4C PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0xC64 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0xC85 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0xC98 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0xBC2 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xCFE DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3A0 DUP2 ADD PUSH2 0xD5B DUP3 DUP6 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0xA27 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0xBF1 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND DUP2 MSTORE PUSH2 0x320 DUP2 ADD PUSH2 0xA27 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xBF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xDA6 JUMPI PUSH2 0xDA6 PUSH2 0xE23 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xDA6 JUMPI PUSH2 0xDA6 PUSH2 0xE23 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xE1A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xE64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E PUSH14 0x6AA7BBE1567DC42C9373CED3437E SIGNEXTEND DUP7 GASLIMIT COINBASE 0xC3 0xE1 0x1E 0x4C 0xC5 0xC8 NUMBER 0x5E SWAP9 MSIZE 0xDC 0x4A PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "951:2663:63:-:0;;;2401:398;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2586:6;1648:24:19;2586:6:63;1648:9:19;:24::i;:::-;-1:-1:-1;;;;;;;2604:24:63::1;::::0;;;;;::::1;::::0;2638:50;;;;::::1;::::0;2698:8:::1;:20:::0;;-1:-1:-1;;;;;2698:20:63;;::::1;-1:-1:-1::0;;;;;;2698:20:63;;::::1;::::0;::::1;::::0;;;2734:58:::1;::::0;2698:20;;2638:50;;::::1;::::0;2604:24;;::::1;::::0;2734:58:::1;::::0;2698:8:::1;::::0;2734:58:::1;2401:398:::0;;;;951:2663;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:740:94:-;197:6;205;213;221;274:3;262:9;253:7;249:23;245:33;242:2;;;291:1;288;281:12;242:2;323:9;317:16;342:31;367:5;342:31;:::i;:::-;442:2;427:18;;421:25;392:5;;-1:-1:-1;455:33:94;421:25;455:33;:::i;:::-;559:2;544:18;;538:25;507:7;;-1:-1:-1;572:33:94;538:25;572:33;:::i;:::-;676:2;661:18;;655:25;624:7;;-1:-1:-1;689:33:94;655:25;689:33;:::i;:::-;232:522;;;;-1:-1:-1;232:522:94;;-1:-1:-1;;232:522:94:o;759:131::-;-1:-1:-1;;;;;834:31:94;;824:42;;814:2;;880:1;877;870:12;814:2;804:86;:::o;:::-;951:2663:63;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_3068": {
                  "entryPoint": 2110,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 2017,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 474,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@drawBuffer_15963": {
                  "entryPoint": null,
                  "id": 15963,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_15967": {
                  "entryPoint": null,
                  "id": 15967,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_16054": {
                  "entryPoint": 738,
                  "id": 16054,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 621,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 1577,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_15971": {
                  "entryPoint": null,
                  "id": 15971,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 1701,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_array_uint32": {
                  "entryPoint": 2346,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2558,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 2606,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_struct$_PrizeDistribution_$8506_memory_ptr": {
                  "entryPoint": 2640,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32_fromMemory": {
                  "entryPoint": 2981,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint104": {
                  "entryPoint": 2477,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 2506,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 2517,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint8": {
                  "entryPoint": 2541,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_array_uint32": {
                  "entryPoint": 3010,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_struct_Draw": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_struct_PrizeDistribution": {
                  "entryPoint": 3057,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3240,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3332,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3432,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_uint104": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_uint32": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "allocate_memory": {
                  "entryPoint": 3500,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "allocate_memory_1588": {
                  "entryPoint": 3459,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 3536,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 3619,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_uint32": {
                  "entryPoint": 3666,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:11648:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:718:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "122:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "131:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "134:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "124:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "124:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "101:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "109:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "97:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "97:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "116:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "93:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "93:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "86:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "86:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "83:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "147:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "167:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "161:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "161:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "151:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "179:13:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "189:3:94",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "183:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "201:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "223:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "219:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "219:15:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "205:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "309:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "311:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "311:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "311:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "252:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "264:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "249:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "249:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "288:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "300:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "285:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "285:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "246:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "246:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "243:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "347:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "351:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "340:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "340:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "340:22:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "371:17:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "382:6:94"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "375:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "397:17:94",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "408:6:94"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "401:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "451:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "460:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "453:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "453:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "453:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "441:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "429:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "429:15:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "446:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "426:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "426:24:94"
                              },
                              "nodeType": "YulIf",
                              "src": "423:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "476:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "485:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "480:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "542:219:94",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "556:30:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "582:3:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "569:12:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "569:17:94"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "560:5:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "623:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "599:23:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "599:30:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "599:30:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "649:3:94"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "654:5:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "642:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "642:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "642:18:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "673:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "683:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "677:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "700:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "711:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "716:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "700:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "732:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "743:3:94"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "748:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "739:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "739:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "732:3:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "506:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "509:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "503:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "503:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "515:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "517:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "526:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "529:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "522:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "522:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "517:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "499:3:94",
                                "statements": []
                              },
                              "src": "495:266:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "770:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "779:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "770:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "47:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "55:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "63:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:777:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "845:133:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "855:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "877:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "864:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "864:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "855:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "956:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "965:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "968:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "958:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "958:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "958:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "906:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "917:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "924:28:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "913:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "913:40:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "903:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "903:51:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "896:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "896:59:94"
                              },
                              "nodeType": "YulIf",
                              "src": "893:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "824:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "835:5:94",
                            "type": ""
                          }
                        ],
                        "src": "796:182:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1031:84:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1041:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1063:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1041:5:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1103:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1079:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1079:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1079:30:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1010:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1021:5:94",
                            "type": ""
                          }
                        ],
                        "src": "983:132:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1168:123:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1178:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1200:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1178:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1269:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1278:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1281:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1271:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1271:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1271:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1229:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1240:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1247:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1236:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1236:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1226:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1226:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1219:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1219:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1216:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1147:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1158:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1120:171:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1343:109:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1353:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1362:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1362:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1430:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1439:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1442:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1432:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1432:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1432:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1404:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1415:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1422:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1411:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1411:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1401:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1401:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1394:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1394:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1391:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1322:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1333:5:94",
                            "type": ""
                          }
                        ],
                        "src": "1296:156:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1527:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1573:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1582:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1585:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1575:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1575:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1575:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1548:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1557:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1544:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1544:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1569:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1540:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1540:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1537:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1598:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1611:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1611:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1602:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1720:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1729:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1732:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1722:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1722:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1722:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1667:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1674:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1663:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1663:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1653:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1653:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1646:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1646:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1643:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1745:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1755:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1745:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1493:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1504:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1516:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1457:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1849:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1895:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1904:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1907:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1897:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1897:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1897:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1870:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1879:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1866:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1866:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1891:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1859:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1920:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1939:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1933:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1933:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1924:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2002:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2011:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2014:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2004:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2004:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2004:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1971:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1992:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1985:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1985:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1978:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1978:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1968:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1968:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1961:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1961:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1958:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2027:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2037:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2027:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1815:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1826:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1838:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1771:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2197:1534:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2207:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2221:7:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2230:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2217:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2217:23:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2211:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2265:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2274:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2277:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2267:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2267:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2267:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2256:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2260:3:94",
                                    "type": "",
                                    "value": "928"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2252:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2252:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2249:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2307:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2316:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2319:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2309:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2309:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2309:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2297:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2301:4:94",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2293:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2293:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2290:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2332:35:94",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_1588",
                                  "nodeType": "YulIdentifier",
                                  "src": "2345:20:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2345:22:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2336:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2383:5:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2403:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2390:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2390:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2376:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2376:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2376:38:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2423:47:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2455:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2466:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2451:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2451:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2438:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2438:32:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2427:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2503:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2479:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2479:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2479:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2531:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2538:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2527:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2527:14:94"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2543:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2520:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2520:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2520:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2571:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2578:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2567:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2567:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2605:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2616:2:94",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2601:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2601:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2583:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2583:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2560:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2560:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2560:61:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2641:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2648:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2637:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2637:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2675:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2686:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2671:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2671:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2653:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2653:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2630:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2630:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2630:61:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2700:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2732:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2743:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2728:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2728:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2715:33:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2704:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2781:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2757:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2757:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2757:32:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2809:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2816:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2805:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2805:15:94"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2822:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2798:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2798:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2798:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2839:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2849:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2839:6:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2955:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2964:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2967:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2957:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2957:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2957:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2874:2:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2878:66:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2870:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2870:75:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2947:6:94",
                                    "type": "",
                                    "value": "0x0300"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2866:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2866:88:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2863:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2980:32:94",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2995:15:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2995:17:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "2984:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3028:7:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3058:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3069:4:94",
                                            "type": "",
                                            "value": "0xa0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3054:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3054:20:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "3037:16:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3037:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3021:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3021:55:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3021:55:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3096:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3105:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3092:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3092:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3131:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3142:3:94",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3127:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3127:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "3110:16:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3110:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3085:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3085:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3085:63:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3168:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3177:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3164:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3164:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3204:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3215:3:94",
                                            "type": "",
                                            "value": "224"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3200:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3200:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3182:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3182:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3157:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3157:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3157:64:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3230:13:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3240:3:94",
                                "type": "",
                                "value": "256"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3234:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3263:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3272:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3259:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3259:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3299:9:94"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3310:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3295:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3295:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3277:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3277:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3252:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3252:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3252:63:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3335:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3344:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3331:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3331:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3372:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3383:6:94",
                                            "type": "",
                                            "value": "0x0120"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3368:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3368:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3350:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3350:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3324:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3324:68:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3324:68:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3412:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3421:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3408:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3408:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3450:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3461:3:94",
                                            "type": "",
                                            "value": "320"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3446:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3446:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3428:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3428:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3401:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3401:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3401:66:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3487:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3496:3:94",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3483:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3483:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3525:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3536:3:94",
                                            "type": "",
                                            "value": "352"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3521:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3521:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "3502:18:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3502:39:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3476:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3476:66:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3476:66:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3562:7:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3571:3:94",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3558:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3558:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3605:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3616:3:94",
                                            "type": "",
                                            "value": "384"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3601:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3601:19:94"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3622:7:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_array_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3577:23:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3577:53:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3551:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3551:80:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3551:80:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3651:7:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3660:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3647:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3647:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3682:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3693:3:94",
                                            "type": "",
                                            "value": "896"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3678:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3678:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3665:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3665:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3640:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3640:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3640:59:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3708:17:94",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "3718:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3708:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_struct$_PrizeDistribution_$8506_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2155:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2166:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2178:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2186:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2053:1678:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3816:169:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3862:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3871:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3874:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3864:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3864:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3864:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3837:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3846:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3833:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3833:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3858:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3829:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3829:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3826:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3887:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3906:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3900:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3900:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3891:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3949:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3925:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3925:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3925:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3964:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3974:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3964:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3782:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3793:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3805:6:94",
                            "type": ""
                          }
                        ],
                        "src": "3736:249:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4039:293:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4049:10:94",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4056:3:94"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4049:3:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4068:19:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4082:5:94"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4072:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4096:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4105:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4100:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4162:164:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4183:3:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4198:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "4192:5:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4192:13:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4207:10:94",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "4188:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4188:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4176:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4176:43:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4176:43:94"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4232:14:94",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "4242:4:94",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4236:2:94",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4259:19:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4270:3:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4275:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4266:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4266:12:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4259:3:94"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4291:25:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4305:6:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4313:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4301:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4301:15:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4291:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4126:1:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4129:4:94",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4123:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4123:11:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4135:18:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4137:14:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4146:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4149:1:94",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4142:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4142:9:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4137:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4119:3:94",
                                "statements": []
                              },
                              "src": "4115:211:94"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4023:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4030:3:94",
                            "type": ""
                          }
                        ],
                        "src": "3990:342:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4385:453:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4402:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4413:5:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4407:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4407:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4395:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4395:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4395:25:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4429:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4459:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4466:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4455:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4455:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4449:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4449:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "4433:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4481:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4491:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4485:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4521:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4526:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4517:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4517:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4537:12:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4551:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4533:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4533:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4510:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4510:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4510:45:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4564:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4596:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4603:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4592:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4592:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4586:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4586:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4568:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4618:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4628:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4622:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4666:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4671:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4662:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4662:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4682:14:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4698:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4678:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4678:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4655:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4655:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4655:47:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4722:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4727:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4718:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4718:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4748:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4755:4:94",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4744:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4744:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4738:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4738:23:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4763:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4734:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4734:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4711:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4711:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4711:56:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4787:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4792:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4783:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4783:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4813:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4820:4:94",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4809:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4809:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4803:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4803:23:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4828:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4799:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4799:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4776:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4776:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4776:56:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4369:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4376:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4337:501:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4904:854:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4921:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4936:5:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4930:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4930:12:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4944:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4926:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4926:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4914:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4914:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4914:36:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4970:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4975:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4966:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4966:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4996:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5003:4:94",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4992:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4992:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4986:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4986:23:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5011:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4982:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4982:34:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4959:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4959:58:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4959:58:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5026:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5056:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5063:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5052:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5052:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5046:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5046:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "5030:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5096:12:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5114:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5119:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5110:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5110:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5078:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5078:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5078:47:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5134:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5166:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5173:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5162:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5162:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5156:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5156:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5138:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5206:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5226:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5231:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5222:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5222:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5188:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5188:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5188:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5246:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5278:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5285:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5274:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5274:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5268:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5268:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5250:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5318:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5338:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5343:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5334:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5334:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5300:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5300:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5300:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5358:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5390:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5397:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5386:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5386:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5380:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5380:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5362:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5430:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5450:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5455:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5446:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5446:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5412:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5412:49:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5412:49:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5470:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5502:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5509:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5498:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5498:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5492:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5492:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5474:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5543:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5563:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5568:4:94",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5559:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5559:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "5524:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5524:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5524:50:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5583:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5615:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5622:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5611:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5611:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5605:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5605:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "5587:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "5661:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5681:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5686:4:94",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5677:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5677:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5637:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5637:55:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5637:55:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5712:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5717:6:94",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5708:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5708:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "5736:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5743:6:94",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5732:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5732:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "5726:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5726:25:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5701:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5701:51:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5701:51:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4888:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4895:3:94",
                            "type": ""
                          }
                        ],
                        "src": "4843:915:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5807:69:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5824:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5833:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5840:28:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5829:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5829:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5817:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5817:53:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5817:53:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5791:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5798:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5763:113:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5924:51:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5941:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5950:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5957:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5946:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5946:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5934:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5934:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5934:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5908:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5915:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5881:94:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6081:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6091:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6103:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6114:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6099:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6099:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6091:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6133:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6148:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6156:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6144:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6144:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6126:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6126:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6126:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6050:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6061:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6072:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5980:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6306:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6316:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6328:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6339:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6324:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6324:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6316:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6358:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "6383:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "6376:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6376:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "6369:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6369:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6351:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6351:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6351:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6275:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6286:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6297:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6211:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6524:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6534:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6546:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6557:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6542:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6542:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6534:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6576:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6591:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6599:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6587:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6587:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6569:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6569:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6569:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6493:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6504:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6515:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6403:246:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6788:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6798:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6810:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6821:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6806:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6806:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6798:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6840:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6855:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6863:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6851:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6851:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6833:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6833:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6833:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6757:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6768:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6779:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6654:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7052:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7062:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7074:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7085:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7070:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7070:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7062:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7104:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7119:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7127:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7115:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7115:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7097:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7097:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7097:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7021:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7032:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7043:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6918:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7356:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7373:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7384:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7366:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7366:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7366:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7407:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7418:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7403:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7403:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7423:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7396:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7396:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7396:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7446:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7457:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7442:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7442:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7462:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7435:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7435:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7435:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7517:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7528:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7513:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7513:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7533:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7506:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7506:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7506:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7548:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7560:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7571:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7556:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7556:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7548:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7333:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7347:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7182:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7760:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7777:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7788:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7770:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7770:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7770:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7811:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7822:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7807:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7807:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7827:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7800:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7800:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7800:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7850:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7861:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7846:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7846:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7866:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7839:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7839:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7839:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7902:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7914:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7925:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7910:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7910:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7902:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7737:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7751:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7586:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8113:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8130:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8141:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8123:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8123:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8123:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8164:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8175:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8160:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8160:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8180:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8153:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8153:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8153:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8203:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8214:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8199:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8199:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8219:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8192:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8192:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8192:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8262:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8274:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8285:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8270:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8270:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8262:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8090:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8104:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7939:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8473:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8490:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8501:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8483:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8483:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8483:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8524:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8535:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8520:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8520:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8540:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8513:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8513:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8513:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8563:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8574:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8559:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8559:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8579:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8552:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8552:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8552:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8634:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8645:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8630:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8630:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8650:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8623:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8623:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8623:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8668:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8680:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8691:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8676:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8676:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8668:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8450:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8464:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8299:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8880:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8897:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8908:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8890:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8890:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8890:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8931:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8942:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8927:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8927:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8947:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8920:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8920:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8920:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8970:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8981:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8966:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8966:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8986:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8959:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8959:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8959:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9041:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9052:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9037:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9037:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9057:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9030:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9030:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9030:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9074:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9086:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9097:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9082:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9082:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9074:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8857:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8871:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8706:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9257:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9267:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9279:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9290:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9275:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9275:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9267:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9326:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9334:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "9303:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9303:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9303:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9226:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9237:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9248:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9112:238:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9598:166:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9608:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9620:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9631:3:94",
                                    "type": "",
                                    "value": "928"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9616:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9616:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9608:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9667:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9675:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "9644:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9644:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9644:41:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9730:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9742:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9753:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9738:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9738:19:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "9694:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9694:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9694:64:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9559:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9570:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9578:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9589:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9355:409:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9966:166:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9976:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9988:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9999:3:94",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9984:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9984:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9976:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10019:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10034:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10042:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10030:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10030:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10012:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10012:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10012:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10099:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10111:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10122:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10107:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10107:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "10063:35:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10063:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10063:63:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9927:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9938:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9946:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9957:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9769:363:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10262:161:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10272:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10284:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10295:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10280:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10280:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10272:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10314:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10329:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10337:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10325:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10325:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10307:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10307:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10307:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10369:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10380:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10365:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10365:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10389:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10397:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10385:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10385:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10358:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10358:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10358:59:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10223:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10234:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10242:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10253:4:94",
                            "type": ""
                          }
                        ],
                        "src": "10137:286:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10474:207:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10484:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10500:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10494:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10494:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "10484:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10512:35:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10534:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10542:4:94",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10530:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10530:17:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10516:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10622:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "10624:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10624:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10624:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10565:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10577:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10562:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10562:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10601:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10613:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10598:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10598:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "10559:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10559:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "10556:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10660:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10664:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10653:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10653:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10653:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory_1588",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "10463:6:94",
                            "type": ""
                          }
                        ],
                        "src": "10428:253:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10727:209:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10737:19:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10753:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10747:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10747:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "10737:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10765:37:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10787:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10795:6:94",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10783:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10783:19:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10769:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10877:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "10879:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10879:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10879:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10820:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10832:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10817:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10817:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10856:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10868:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10853:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10853:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "10814:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10814:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "10811:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10915:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10919:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10908:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10908:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10908:22:94"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "10716:6:94",
                            "type": ""
                          }
                        ],
                        "src": "10686:250:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10988:343:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10998:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11008:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11002:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11035:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11050:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11053:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11046:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11046:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11039:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11065:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11080:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11083:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11076:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11076:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11069:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11128:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11149:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11152:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11142:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11142:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11142:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11250:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11253:4:94",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11243:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11243:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11243:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11278:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11281:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11271:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11271:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11271:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11101:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11110:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11114:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11106:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11106:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11098:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11098:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "11095:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11305:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11316:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11321:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11312:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11312:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "11305:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10971:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10974:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "10980:3:94",
                            "type": ""
                          }
                        ],
                        "src": "10941:390:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11368:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11385:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11388:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11378:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11378:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11378:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11482:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11485:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11475:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11475:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11475:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11506:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11509:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "11499:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11499:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11499:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11336:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11569:77:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11624:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11633:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11636:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11626:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11626:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11626:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11592:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "11603:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11610:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11599:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11599:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "11589:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11589:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11582:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11582:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "11579:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11558:5:94",
                            "type": ""
                          }
                        ],
                        "src": "11525:121:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_array_uint32(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let memPtr := mload(64)\n        let _1 := 512\n        let newFreePtr := add(memPtr, _1)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        let dst := memPtr\n        let src := offset\n        if gt(add(offset, _1), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            let value := calldataload(src)\n            validator_revert_uint32(value)\n            mstore(dst, value)\n            let _2 := 0x20\n            dst := add(dst, _2)\n            src := add(src, _2)\n        }\n        array := memPtr\n    }\n    function abi_decode_uint104(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint8(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_struct$_PrizeDistribution_$8506_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 928) { revert(0, 0) }\n        if slt(_1, 0xa0) { revert(0, 0) }\n        let value := allocate_memory_1588()\n        mstore(value, calldataload(headStart))\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        mstore(add(value, 32), value_1)\n        mstore(add(value, 64), abi_decode_uint64(add(headStart, 64)))\n        mstore(add(value, 96), abi_decode_uint64(add(headStart, 96)))\n        let value_2 := calldataload(add(headStart, 128))\n        validator_revert_uint32(value_2)\n        mstore(add(value, 128), value_2)\n        value0 := value\n        if slt(add(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60), 0x0300) { revert(0, 0) }\n        let value_3 := allocate_memory()\n        mstore(value_3, abi_decode_uint8(add(headStart, 0xa0)))\n        mstore(add(value_3, 32), abi_decode_uint8(add(headStart, 192)))\n        mstore(add(value_3, 64), abi_decode_uint32(add(headStart, 224)))\n        let _2 := 256\n        mstore(add(value_3, 96), abi_decode_uint32(add(headStart, _2)))\n        mstore(add(value_3, 128), abi_decode_uint32(add(headStart, 0x0120)))\n        mstore(add(value_3, 0xa0), abi_decode_uint32(add(headStart, 320)))\n        mstore(add(value_3, 192), abi_decode_uint104(add(headStart, 352)))\n        mstore(add(value_3, 224), abi_decode_array_uint32(add(headStart, 384), dataEnd))\n        mstore(add(value_3, _2), calldataload(add(headStart, 896)))\n        value1 := value_3\n    }\n    function abi_decode_tuple_t_uint32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_encode_array_uint32(value, pos)\n    {\n        pos := pos\n        let srcPtr := value\n        let i := 0\n        for { } lt(i, 0x10) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), 0xffffffff))\n            let _1 := 0x20\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n    }\n    function abi_encode_struct_Draw(value, pos)\n    {\n        mstore(pos, mload(value))\n        let memberValue0 := mload(add(value, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(pos, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(pos, 0x40), and(memberValue0_1, _2))\n        mstore(add(pos, 0x60), and(mload(add(value, 0x60)), _2))\n        mstore(add(pos, 0x80), and(mload(add(value, 0x80)), _1))\n    }\n    function abi_encode_struct_PrizeDistribution(value, pos)\n    {\n        mstore(pos, and(mload(value), 0xff))\n        mstore(add(pos, 0x20), and(mload(add(value, 0x20)), 0xff))\n        let memberValue0 := mload(add(value, 0x40))\n        abi_encode_uint32(memberValue0, add(pos, 0x40))\n        let memberValue0_1 := mload(add(value, 0x60))\n        abi_encode_uint32(memberValue0_1, add(pos, 0x60))\n        let memberValue0_2 := mload(add(value, 0x80))\n        abi_encode_uint32(memberValue0_2, add(pos, 0x80))\n        let memberValue0_3 := mload(add(value, 0xa0))\n        abi_encode_uint32(memberValue0_3, add(pos, 0xa0))\n        let memberValue0_4 := mload(add(value, 0xc0))\n        abi_encode_uint104(memberValue0_4, add(pos, 0xc0))\n        let memberValue0_5 := mload(add(value, 0xe0))\n        abi_encode_array_uint32(memberValue0_5, add(pos, 0xe0))\n        mstore(add(pos, 0x02e0), mload(add(value, 0x0100)))\n    }\n    function abi_encode_uint104(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffffffffffffff))\n    }\n    function abi_encode_uint32(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffff))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$8587__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        abi_encode_struct_Draw(value0, headStart)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 928)\n        abi_encode_struct_Draw(value0, headStart)\n        abi_encode_struct_PrizeDistribution(value1, add(headStart, 160))\n    }\n    function abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$8506_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 800)\n        mstore(headStart, and(value0, 0xffffffff))\n        abi_encode_struct_PrizeDistribution(value1, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function allocate_memory_1588() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0120)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x_1, y_1)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15963": [
                  {
                    "length": 32,
                    "start": 350
                  },
                  {
                    "length": 32,
                    "start": 1179
                  }
                ],
                "15967": [
                  {
                    "length": 32,
                    "start": 211
                  },
                  {
                    "length": 32,
                    "start": 1368
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c8063af32b60511610081578063d33219b41161005b578063d33219b4146101a3578063e30c3978146101b6578063f2fde38b146101c757600080fd5b8063af32b60514610146578063ce343bb614610159578063d0ebdbe71461018057600080fd5b80634e71e0c8116100b25780634e71e0c814610123578063715018a61461012d5780638da5cb5b1461013557600080fd5b80630840bbdd146100ce578063481c6a7514610112575b600080fd5b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f5565b61012b6101da565b005b61012b61026d565b6000546001600160a01b03166100f5565b61012b610154366004610a50565b6102e2565b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b61019361018e3660046109fe565b610629565b6040519015158152602001610109565b6003546100f5906001600160a01b031681565b6001546001600160a01b03166100f5565b61012b6101d53660046109fe565b6106a5565b6001546001600160a01b031633146102395760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461024e906001600160a01b03166107e1565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102806000546001600160a01b031690565b6001600160a01b0316146102d65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6102e060006107e1565b565b336102f56002546001600160a01b031690565b6001600160a01b031614806103235750336103186000546001600160a01b031690565b6001600160a01b0316145b6103955760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610230565b6003546020830151608084015160408501516001600160a01b0390931692638871189b92916103cc9163ffffffff90911690610dd0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561043257600080fd5b505af1158015610446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046a9190610a2e565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104d0908590600401610ca8565b602060405180830381600087803b1580156104ea57600080fd5b505af11580156104fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105229190610ba5565b5060208201516040517f1124e1dc0000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691631124e1dc9161058e91908590600401610d68565b602060405180830381600087803b1580156105a857600080fd5b505af11580156105bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e09190610a2e565b50816020015163ffffffff167f4b2c9bed31045ac093e453f0c6fcdde124408fae75b3e3b3f788c1c0a8775f95838360405161061d929190610d04565b60405180910390a25050565b60003361063e6000546001600160a01b031690565b6001600160a01b0316146106945760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b61069d8261083e565b90505b919050565b336106b86000546001600160a01b031690565b6001600160a01b03161461070e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6001600160a01b03811661078a5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610230565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108c75760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610230565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261093b57600080fd5b60405161020080820182811067ffffffffffffffff8211171561096057610960610e23565b604052818482810187101561097457600080fd5b600092505b60108310156109a257803561098d81610e52565b82526001929092019160209182019101610979565b509195945050505050565b80356cffffffffffffffffffffffffff811681146106a057600080fd5b80356106a081610e52565b803567ffffffffffffffff811681146106a057600080fd5b803560ff811681146106a057600080fd5b600060208284031215610a1057600080fd5b81356001600160a01b0381168114610a2757600080fd5b9392505050565b600060208284031215610a4057600080fd5b81518015158114610a2757600080fd5b6000808284036103a0811215610a6557600080fd5b60a0811215610a7357600080fd5b610a7b610d83565b843581526020850135610a8d81610e52565b6020820152610a9e604086016109d5565b6040820152610aaf606086016109d5565b60608201526080850135610ac281610e52565b608082015292506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6082011215610afa57600080fd5b50610b03610dac565b610b0f60a085016109ed565b8152610b1d60c085016109ed565b6020820152610b2e60e085016109ca565b6040820152610100610b418186016109ca565b6060830152610b5361012086016109ca565b6080830152610b6561014086016109ca565b60a0830152610b7761016086016109ad565b60c0830152610b8a86610180870161092a565b60e08301526103808501358183015250809150509250929050565b600060208284031215610bb757600080fd5b8151610a2781610e52565b8060005b6010811015610beb57815163ffffffff16845260209384019390910190600101610bc6565b50505050565b60ff815116825260ff60208201511660208301526040810151610c1c604084018263ffffffff169052565b506060810151610c34606084018263ffffffff169052565b506080810151610c4c608084018263ffffffff169052565b5060a0810151610c6460a084018263ffffffff169052565b5060c0810151610c8560c08401826cffffffffffffffffffffffffff169052565b5060e0810151610c9860e0840182610bc2565b5061010001516102e09190910152565b60a08101610cfe828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b6103a08101610d5b828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b610a2760a0830184610bf1565b63ffffffff831681526103208101610a276020830184610bf1565b60405160a0810167ffffffffffffffff81118282101715610da657610da6610e23565b60405290565b604051610120810167ffffffffffffffff81118282101715610da657610da6610e23565b600067ffffffffffffffff808316818516808303821115610e1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b63ffffffff81168114610e6457600080fd5b5056fea26469706673582212202e6d6aa7bbe1567dc42c9373ced3437e0b864541c3e11e4cc5c8435e9859dc4a64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xAF32B605 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1B6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAF32B605 EQ PUSH2 0x146 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x159 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x180 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x4E71E0C8 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x135 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x840BBDD EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x112 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF5 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF5 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x1DA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x12B PUSH2 0x26D JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF5 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x154 CALLDATASIZE PUSH1 0x4 PUSH2 0xA50 JUMP JUMPDEST PUSH2 0x2E2 JUMP JUMPDEST PUSH2 0xF5 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x193 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0x9FE JUMP JUMPDEST PUSH2 0x629 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x109 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0xF5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF5 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x1D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x9FE JUMP JUMPDEST PUSH2 0x6A5 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x239 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x24E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7E1 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x280 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x230 JUMP JUMPDEST PUSH2 0x2E0 PUSH1 0x0 PUSH2 0x7E1 JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x2F5 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x323 JUMPI POP CALLER PUSH2 0x318 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x395 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x80 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND SWAP3 PUSH4 0x8871189B SWAP3 SWAP2 PUSH2 0x3CC SWAP2 PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND SWAP1 PUSH2 0xDD0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x432 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x446 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x46A SWAP2 SWAP1 PUSH2 0xA2E JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH2 0x4D0 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0xCA8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4FE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x522 SWAP2 SWAP1 PUSH2 0xBA5 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH32 0x1124E1DC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP2 PUSH4 0x1124E1DC SWAP2 PUSH2 0x58E SWAP2 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0xD68 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5BC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5E0 SWAP2 SWAP1 PUSH2 0xA2E JUMP JUMPDEST POP DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH32 0x4B2C9BED31045AC093E453F0C6FCDDE124408FAE75B3E3B3F788C1C0A8775F95 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x61D SWAP3 SWAP2 SWAP1 PUSH2 0xD04 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x63E PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x694 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x230 JUMP JUMPDEST PUSH2 0x69D DUP3 PUSH2 0x83E JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x6B8 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x70E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x78A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x8C7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x230 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x93B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 DUP1 DUP3 ADD DUP3 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x960 JUMPI PUSH2 0x960 PUSH2 0xE23 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP5 DUP3 DUP2 ADD DUP8 LT ISZERO PUSH2 0x974 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP3 POP JUMPDEST PUSH1 0x10 DUP4 LT ISZERO PUSH2 0x9A2 JUMPI DUP1 CALLDATALOAD PUSH2 0x98D DUP2 PUSH2 0xE52 JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x979 JUMP JUMPDEST POP SWAP2 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x6A0 DUP2 PUSH2 0xE52 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x6A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xA27 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH2 0x3A0 DUP2 SLT ISZERO PUSH2 0xA65 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0xA73 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA7B PUSH2 0xD83 JUMP JUMPDEST DUP5 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0xA8D DUP2 PUSH2 0xE52 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xA9E PUSH1 0x40 DUP7 ADD PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0xAAF PUSH1 0x60 DUP7 ADD PUSH2 0x9D5 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD PUSH2 0xAC2 DUP2 PUSH2 0xE52 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP3 POP PUSH2 0x300 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF60 DUP3 ADD SLT ISZERO PUSH2 0xAFA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB03 PUSH2 0xDAC JUMP JUMPDEST PUSH2 0xB0F PUSH1 0xA0 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST DUP2 MSTORE PUSH2 0xB1D PUSH1 0xC0 DUP6 ADD PUSH2 0x9ED JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xB2E PUSH1 0xE0 DUP6 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x100 PUSH2 0xB41 DUP2 DUP7 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0xB53 PUSH2 0x120 DUP7 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0xB65 PUSH2 0x140 DUP7 ADD PUSH2 0x9CA JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xB77 PUSH2 0x160 DUP7 ADD PUSH2 0x9AD JUMP JUMPDEST PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0xB8A DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x92A JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x380 DUP6 ADD CALLDATALOAD DUP2 DUP4 ADD MSTORE POP DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xBB7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA27 DUP2 PUSH2 0xE52 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST PUSH1 0x10 DUP2 LT ISZERO PUSH2 0xBEB JUMPI DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xBC6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 MLOAD AND DUP3 MSTORE PUSH1 0xFF PUSH1 0x20 DUP3 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0xC1C PUSH1 0x40 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0xC34 PUSH1 0x60 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0x80 DUP2 ADD MLOAD PUSH2 0xC4C PUSH1 0x80 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xA0 DUP2 ADD MLOAD PUSH2 0xC64 PUSH1 0xA0 DUP5 ADD DUP3 PUSH4 0xFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xC0 DUP2 ADD MLOAD PUSH2 0xC85 PUSH1 0xC0 DUP5 ADD DUP3 PUSH13 0xFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0xC98 PUSH1 0xE0 DUP5 ADD DUP3 PUSH2 0xBC2 JUMP JUMPDEST POP PUSH2 0x100 ADD MLOAD PUSH2 0x2E0 SWAP2 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xCFE DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3A0 DUP2 ADD PUSH2 0xD5B DUP3 DUP6 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0xA27 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0xBF1 JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP4 AND DUP2 MSTORE PUSH2 0x320 DUP2 ADD PUSH2 0xA27 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xBF1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xDA6 JUMPI PUSH2 0xDA6 PUSH2 0xE23 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x120 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xDA6 JUMPI PUSH2 0xDA6 PUSH2 0xE23 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xE1A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xE64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E PUSH14 0x6AA7BBE1567DC42C9373CED3437E SIGNEXTEND DUP7 GASLIMIT COINBASE 0xC3 0xE1 0x1E 0x4C 0xC5 0xC8 NUMBER 0x5E SWAP9 MSIZE 0xDC 0x4A PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "951:2663:63:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1821:65;;;;;;;;-1:-1:-1;;;;;6144:55:94;;;6126:74;;6114:2;6099:18;1821:65:63;;;;;;;;1403:89:18;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;3147:129:19;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;3147:465:63;;;;;;:::i;:::-;;:::i;1715:39::-;;;;;1744:123:18;;;;;;:::i;:::-;;:::i;:::-;;;6376:14:94;;6369:22;6351:41;;6339:2;6324:18;1744:123:18;6306:92:94;1936:39:63;;;;;-1:-1:-1;;;;;1936:39:63;;;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;8141:2:94;4028:71:19;;;8123:21:94;8180:2;8160:18;;;8153:30;8219:33;8199:18;;;8192:61;8270:18;;4028:71:19;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7788:2:94;3819:58:19;;;7770:21:94;7827:2;7807:18;;;7800:30;7866:26;7846:18;;;7839:54;7910:18;;3819:58:19;7760:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;3147:465:63:-;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;8501:2:94;2840:99:18;;;8483:21:94;8540:2;8520:18;;;8513:30;8579:34;8559:18;;;8552:62;8650:8;8630:18;;;8623:36;8676:19;;2840:99:18;8473:228:94;2840:99:18;3322:8:63::1;::::0;3336:12:::1;::::0;::::1;::::0;3368:25:::1;::::0;::::1;::::0;3350:15:::1;::::0;::::1;::::0;-1:-1:-1;;;;;3322:8:63;;::::1;::::0;:13:::1;::::0;3336:12;3350:43:::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;3322:72;::::0;;::::1;::::0;;;;;;::::1;10325:23:94::0;;;;3322:72:63::1;::::0;::::1;10307:42:94::0;10397:18;10385:31;10365:18;;;10358:59;10280:18;;3322:72:63::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;3404:26:63::1;::::0;;;;-1:-1:-1;;;;;3404:10:63::1;:19;::::0;::::1;::::0;:26:::1;::::0;3424:5;;3404:26:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;3486:12:63::1;::::0;::::1;::::0;3440:79:::1;::::0;;;;-1:-1:-1;;;;;3440:23:63::1;:45;::::0;::::1;::::0;:79:::1;::::0;3486:12;3500:18;;3440:79:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3565:5;:12;;;3534:71;;;3579:5;3586:18;3534:71;;;;;;;:::i;:::-;;;;;;;;3147:465:::0;;:::o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7788:2:94;3819:58:19;;;7770:21:94;7827:2;7807:18;;;7800:30;7866:26;7846:18;;;7839:54;7910:18;;3819:58:19;7760:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:19;1744:123:18::0;;;:::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;7788:2:94;3819:58:19;;;7770:21:94;7827:2;7807:18;;;7800:30;7866:26;7846:18;;;7839:54;7910:18;;3819:58:19;7760:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;8908:2:94;2826:73:19::1;::::0;::::1;8890:21:94::0;8947:2;8927:18;;;8920:30;8986:34;8966:18;;;8959:62;9057:7;9037:18;;;9030:35;9082:19;;2826:73:19::1;8880:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;7384:2:94;2230:79:18;;;7366:21:94;7423:2;7403:18;;;7396:30;7462:34;7442:18;;;7435:62;7533:5;7513:18;;;7506:33;7556:19;;2230:79:18;7356:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;14:777:94:-;63:5;116:3;109:4;101:6;97:17;93:27;83:2;;134:1;131;124:12;83:2;167;161:9;189:3;231:2;223:6;219:15;300:6;288:10;285:22;264:18;252:10;249:34;246:62;243:2;;;311:18;;:::i;:::-;347:2;340:22;382:6;408;429:15;;;426:24;-1:-1:-1;423:2:94;;;463:1;460;453:12;423:2;485:1;476:10;;495:266;509:4;506:1;503:11;495:266;;;582:3;569:17;599:30;623:5;599:30;:::i;:::-;642:18;;529:1;522:9;;;;;683:4;707:12;;;;739;495:266;;;-1:-1:-1;779:6:94;;73:718;-1:-1:-1;;;;;73:718:94:o;796:182::-;864:20;;924:28;913:40;;903:51;;893:2;;968:1;965;958:12;983:132;1050:20;;1079:30;1050:20;1079:30;:::i;1120:171::-;1187:20;;1247:18;1236:30;;1226:41;;1216:2;;1281:1;1278;1271:12;1296:156;1362:20;;1422:4;1411:16;;1401:27;;1391:2;;1442:1;1439;1432:12;1457:309;1516:6;1569:2;1557:9;1548:7;1544:23;1540:32;1537:2;;;1585:1;1582;1575:12;1537:2;1624:9;1611:23;-1:-1:-1;;;;;1667:5:94;1663:54;1656:5;1653:65;1643:2;;1732:1;1729;1722:12;1643:2;1755:5;1527:239;-1:-1:-1;;;1527:239:94:o;1771:277::-;1838:6;1891:2;1879:9;1870:7;1866:23;1862:32;1859:2;;;1907:1;1904;1897:12;1859:2;1939:9;1933:16;1992:5;1985:13;1978:21;1971:5;1968:32;1958:2;;2014:1;2011;2004:12;2053:1678;2178:6;2186;2230:9;2221:7;2217:23;2260:3;2256:2;2252:12;2249:2;;;2277:1;2274;2267:12;2249:2;2301:4;2297:2;2293:13;2290:2;;;2319:1;2316;2309:12;2290:2;2345:22;;:::i;:::-;2403:9;2390:23;2383:5;2376:38;2466:2;2455:9;2451:18;2438:32;2479;2503:7;2479:32;:::i;:::-;2538:2;2527:14;;2520:31;2583:37;2616:2;2601:18;;2583:37;:::i;:::-;2578:2;2571:5;2567:14;2560:61;2653:37;2686:2;2675:9;2671:18;2653:37;:::i;:::-;2648:2;2641:5;2637:14;2630:61;2743:3;2732:9;2728:19;2715:33;2757:32;2781:7;2757:32;:::i;:::-;2816:3;2805:15;;2798:32;2809:5;-1:-1:-1;2947:6:94;2878:66;2870:75;;2866:88;2863:2;;;2967:1;2964;2957:12;2863:2;;2995:17;;:::i;:::-;3037:38;3069:4;3058:9;3054:20;3037:38;:::i;:::-;3028:7;3021:55;3110:37;3142:3;3131:9;3127:19;3110:37;:::i;:::-;3105:2;3096:7;3092:16;3085:63;3182:38;3215:3;3204:9;3200:19;3182:38;:::i;:::-;3177:2;3168:7;3164:16;3157:64;3240:3;3277:37;3310:2;3299:9;3295:18;3277:37;:::i;:::-;3272:2;3263:7;3259:16;3252:63;3350:41;3383:6;3372:9;3368:22;3350:41;:::i;:::-;3344:3;3335:7;3331:17;3324:68;3428:38;3461:3;3450:9;3446:19;3428:38;:::i;:::-;3421:4;3412:7;3408:18;3401:66;3502:39;3536:3;3525:9;3521:19;3502:39;:::i;:::-;3496:3;3487:7;3483:17;3476:66;3577:53;3622:7;3616:3;3605:9;3601:19;3577:53;:::i;:::-;3571:3;3562:7;3558:17;3551:80;3693:3;3682:9;3678:19;3665:33;3660:2;3651:7;3647:16;3640:59;;3718:7;3708:17;;;2197:1534;;;;;:::o;3736:249::-;3805:6;3858:2;3846:9;3837:7;3833:23;3829:32;3826:2;;;3874:1;3871;3864:12;3826:2;3906:9;3900:16;3925:30;3949:5;3925:30;:::i;3990:342::-;4082:5;4105:1;4115:211;4129:4;4126:1;4123:11;4115:211;;;4192:13;;4207:10;4188:30;4176:43;;4242:4;4266:12;;;;4301:15;;;;4149:1;4142:9;4115:211;;;4119:3;;4039:293;;:::o;4843:915::-;4944:4;4936:5;4930:12;4926:23;4921:3;4914:36;5011:4;5003;4996:5;4992:16;4986:23;4982:34;4975:4;4970:3;4966:14;4959:58;5063:4;5056:5;5052:16;5046:23;5078:47;5119:4;5114:3;5110:14;5096:12;5957:10;5946:22;5934:35;;5924:51;5078:47;;5173:4;5166:5;5162:16;5156:23;5188:49;5231:4;5226:3;5222:14;5206;5957:10;5946:22;5934:35;;5924:51;5188:49;;5285:4;5278:5;5274:16;5268:23;5300:49;5343:4;5338:3;5334:14;5318;5957:10;5946:22;5934:35;;5924:51;5300:49;;5397:4;5390:5;5386:16;5380:23;5412:49;5455:4;5450:3;5446:14;5430;5957:10;5946:22;5934:35;;5924:51;5412:49;;5509:4;5502:5;5498:16;5492:23;5524:50;5568:4;5563:3;5559:14;5543;5840:28;5829:40;5817:53;;5807:69;5524:50;;5622:4;5615:5;5611:16;5605:23;5637:55;5686:4;5681:3;5677:14;5661;5637:55;:::i;:::-;-1:-1:-1;5743:6:94;5732:18;5726:25;5717:6;5708:16;;;;5701:51;4904:854::o;9112:238::-;9290:3;9275:19;;9303:41;9279:9;9326:6;4413:5;4407:12;4402:3;4395:25;4466:4;4459:5;4455:16;4449:23;4491:10;4551:2;4537:12;4533:21;4526:4;4521:3;4517:14;4510:45;4603:4;4596:5;4592:16;4586:23;4564:45;;4628:18;4698:2;4682:14;4678:23;4671:4;4666:3;4662:14;4655:47;4763:2;4755:4;4748:5;4744:16;4738:23;4734:32;4727:4;4722:3;4718:14;4711:56;;4828:2;4820:4;4813:5;4809:16;4803:23;4799:32;4792:4;4787:3;4783:14;4776:56;;;4385:453;;;9303:41;9257:93;;;;:::o;9355:409::-;9631:3;9616:19;;9644:41;9620:9;9667:6;4413:5;4407:12;4402:3;4395:25;4466:4;4459:5;4455:16;4449:23;4491:10;4551:2;4537:12;4533:21;4526:4;4521:3;4517:14;4510:45;4603:4;4596:5;4592:16;4586:23;4564:45;;4628:18;4698:2;4682:14;4678:23;4671:4;4666:3;4662:14;4655:47;4763:2;4755:4;4748:5;4744:16;4738:23;4734:32;4727:4;4722:3;4718:14;4711:56;;4828:2;4820:4;4813:5;4809:16;4803:23;4799:32;4792:4;4787:3;4783:14;4776:56;;;4385:453;;;9644:41;9694:64;9753:3;9742:9;9738:19;9730:6;9694:64;:::i;9769:363::-;10042:10;10030:23;;10012:42;;9999:3;9984:19;;10063:63;10122:2;10107:18;;10099:6;10063:63;:::i;10428:253::-;10500:2;10494:9;10542:4;10530:17;;10577:18;10562:34;;10598:22;;;10559:62;10556:2;;;10624:18;;:::i;:::-;10660:2;10653:22;10474:207;:::o;10686:250::-;10753:2;10747:9;10795:6;10783:19;;10832:18;10817:34;;10853:22;;;10814:62;10811:2;;;10879:18;;:::i;10941:390::-;10980:3;11008:18;11053:2;11050:1;11046:10;11083:2;11080:1;11076:10;11114:3;11110:2;11106:12;11101:3;11098:21;11095:2;;;11152:77;11149:1;11142:88;11253:4;11250:1;11243:15;11281:4;11278:1;11271:15;11095:2;11312:13;;10988:343;-1:-1:-1;;;;10988:343:94:o;11336:184::-;11388:77;11385:1;11378:88;11485:4;11482:1;11475:15;11509:4;11506:1;11499:15;11525:121;11610:10;11603:5;11599:22;11592:5;11589:33;11579:2;;11636:1;11633;11626:12;11579:2;11569:77;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "748200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54464",
                "drawBuffer()": "infinite",
                "manager()": "2366",
                "owner()": "2387",
                "pendingOwner()": "2364",
                "prizeDistributionBuffer()": "infinite",
                "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "infinite",
                "renounceOwnership()": "28180",
                "setManager(address)": "30581",
                "timelock()": "2348",
                "transferOwnership(address)": "27937"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "drawBuffer()": "ce343bb6",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "prizeDistributionBuffer()": "0840bbdd",
              "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": "af32b605",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "timelock()": "d33219b4",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"_prizeDistributionBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"_timelock\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"prizeDistributionBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"timelock\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"DrawAndPrizeDistributionPushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionBuffer\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_draw\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint8\",\"name\":\"bitRangeSize\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"matchCardinality\",\"type\":\"uint8\"},{\"internalType\":\"uint32\",\"name\":\"startTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"endTimestampOffset\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"maxPicksPerUser\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"expiryDuration\",\"type\":\"uint32\"},{\"internalType\":\"uint104\",\"name\":\"numberOfPicks\",\"type\":\"uint104\"},{\"internalType\":\"uint32[16]\",\"name\":\"tiers\",\"type\":\"uint32[16]\"},{\"internalType\":\"uint256\",\"name\":\"prize\",\"type\":\"uint256\"}],\"internalType\":\"struct IPrizeDistributionBuffer.PrizeDistribution\",\"name\":\"_prizeDistribution\",\"type\":\"tuple\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"DrawAndPrizeDistributionPushed(uint32,(uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"params\":{\"drawId\":\"Draw ID\",\"prizeDistribution\":\"PrizeDistribution\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_drawBuffer\":\"DrawBuffer address\",\"_owner\":\"Address of the L2TimelockTrigger owner.\",\"_prizeDistributionBuffer\":\"PrizeDistributionBuffer address\",\"_timelock\":\"Elapsed seconds before timelocked Draw is available\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"details\":\"Restricts new draws by forcing a push timelock.\",\"params\":{\"_draw\":\"Draw struct from IDrawBeacon\",\"_prizeDistribution\":\"PrizeDistribution struct from IPrizeDistributionBuffer\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 L2TimelockTrigger\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"DrawAndPrizeDistributionPushed(uint32,(uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Emitted when Draw and PrizeDistribution are pushed to external contracts.\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initialize L2TimelockTrigger smart contract.\"},\"drawBuffer()\":{\"notice\":\"The DrawBuffer contract address.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"prizeDistributionBuffer()\":{\"notice\":\"Internal PrizeDistributionBuffer reference.\"},\"push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))\":{\"notice\":\"Push Draw onto draws ring buffer history.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"timelock()\":{\"notice\":\"Timelock struct reference.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"L2TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts. The L2TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is to  include a \\\"cooldown\\\" period for all new Draws. Allowing the correction of a malicously set Draw in the unfortunate event an Owner is compromised.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol\":\"L2TimelockTrigger\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./interfaces/IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 L2TimelockTrigger\\n  * @author PoolTogether Inc Team\\n  * @notice L2TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts.\\n            The L2TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing\\n            claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\\n            to  include a \\\"cooldown\\\" period for all new Draws. Allowing the correction of a\\n            malicously set Draw in the unfortunate event an Owner is compromised.\\n*/\\ncontract L2TimelockTrigger is Manageable {\\n    /// @notice Emitted when the contract is deployed.\\n    event Deployed(\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer,\\n        IDrawCalculatorTimelock indexed timelock\\n    );\\n\\n    /**\\n     * @notice Emitted when Draw and PrizeDistribution are pushed to external contracts.\\n     * @param drawId            Draw ID\\n     * @param prizeDistribution PrizeDistribution\\n     */\\n    event DrawAndPrizeDistributionPushed(\\n        uint32 indexed drawId,\\n        IDrawBeacon.Draw draw,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice The DrawBuffer contract address.\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice Internal PrizeDistributionBuffer reference.\\n    IPrizeDistributionBuffer public immutable prizeDistributionBuffer;\\n\\n    /// @notice Timelock struct reference.\\n    IDrawCalculatorTimelock public timelock;\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initialize L2TimelockTrigger smart contract.\\n     * @param _owner                   Address of the L2TimelockTrigger owner.\\n     * @param _prizeDistributionBuffer PrizeDistributionBuffer address\\n     * @param _drawBuffer              DrawBuffer address\\n     * @param _timelock                Elapsed seconds before timelocked Draw is available\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionBuffer _prizeDistributionBuffer,\\n        IDrawCalculatorTimelock _timelock\\n    ) Ownable(_owner) {\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionBuffer = _prizeDistributionBuffer;\\n        timelock = _timelock;\\n\\n        emit Deployed(_drawBuffer, _prizeDistributionBuffer, _timelock);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _draw              Draw struct from IDrawBeacon\\n     * @param _prizeDistribution PrizeDistribution struct from IPrizeDistributionBuffer\\n     */\\n    function push(\\n        IDrawBeacon.Draw memory _draw,\\n        IPrizeDistributionBuffer.PrizeDistribution memory _prizeDistribution\\n    ) external onlyManagerOrOwner {\\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\\n        drawBuffer.pushDraw(_draw);\\n        prizeDistributionBuffer.pushPrizeDistribution(_draw.drawId, _prizeDistribution);\\n        emit DrawAndPrizeDistributionPushed(_draw.drawId, _draw, _prizeDistribution);\\n    }\\n}\\n\",\"keccak256\":\"0x557cc4015f7b1f923340b22ad6c477f1f4cc38e1798b17cf5d9d4beca9e20050\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 15971,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "timelock",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(IDrawCalculatorTimelock)16274"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawCalculatorTimelock)16274": {
                "encoding": "inplace",
                "label": "contract IDrawCalculatorTimelock",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is deployed."
              },
              "DrawAndPrizeDistributionPushed(uint32,(uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Emitted when Draw and PrizeDistribution are pushed to external contracts."
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initialize L2TimelockTrigger smart contract."
              },
              "drawBuffer()": {
                "notice": "The DrawBuffer contract address."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "prizeDistributionBuffer()": {
                "notice": "Internal PrizeDistributionBuffer reference."
              },
              "push((uint256,uint32,uint64,uint64,uint32),(uint8,uint8,uint32,uint32,uint32,uint32,uint104,uint32[16],uint256))": {
                "notice": "Push Draw onto draws ring buffer history."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "timelock()": {
                "notice": "Timelock struct reference."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "L2TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts. The L2TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing claim requests from a PrizeDistributor to a DrawCalculator. The primary objective is to  include a \"cooldown\" period for all new Draws. Allowing the correction of a malicously set Draw in the unfortunate event an Owner is compromised.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol": {
        "ReceiverTimelockTrigger": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "_drawBuffer",
                  "type": "address"
                },
                {
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "_prizeDistributionFactory",
                  "type": "address"
                },
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "_timelock",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "prizeDistributionFactory",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "timelock",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "DrawLockedPushedAndTotalNetworkTicketSupplyPushed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "previousManager",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newManager",
                  "type": "address"
                }
              ],
              "name": "ManagerTransferred",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "pendingOwner",
                  "type": "address"
                }
              ],
              "name": "OwnershipOffered",
              "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"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "drawBuffer",
              "outputs": [
                {
                  "internalType": "contract IDrawBuffer",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "owner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "pendingOwner",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "prizeDistributionFactory",
              "outputs": [
                {
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "_draw",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "_totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newManager",
                  "type": "address"
                }
              ],
              "name": "setManager",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "timelock",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_drawBuffer": "DrawBuffer address",
                  "_owner": "The smart contract owner",
                  "_prizeDistributionFactory": "PrizeDistributionFactory address",
                  "_timelock": "DrawCalculatorTimelock address"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "details": "Restricts new draws for N seconds by forcing timelock on the next target draw id.",
                "params": {
                  "draw": "Draw",
                  "totalNetworkTicketSupply": "totalNetworkTicketSupply"
                }
              },
              "renounceOwnership()": {
                "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
              },
              "setManager(address)": {
                "details": "Throws if called by any account other than the owner.",
                "params": {
                  "_newManager": "New _manager address."
                },
                "returns": {
                  "_0": "Boolean to indicate if the operation was successful or not."
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "title": "PoolTogether V4 ReceiverTimelockTrigger",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16117": {
                  "entryPoint": null,
                  "id": 16117,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_3133": {
                  "entryPoint": null,
                  "id": 3133,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_3230": {
                  "entryPoint": 161,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionFactory_$16284t_contract$_IDrawCalculatorTimelock_$16274_fromMemory": {
                  "entryPoint": 241,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "validator_revert_address": {
                  "entryPoint": 336,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:894:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "234:522:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "281:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "290:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "293:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "283:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "283:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "283:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "255:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "264:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "251:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "251:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "276:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "247:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "247:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "244:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "306:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "325:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "319:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "319:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "310:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "369:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "344:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "344:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "344:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "384:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "394:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "384:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "408:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "444:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "429:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "429:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "423:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "423:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "412:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "482:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "457:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "457:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "457:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "499:17:94",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "509:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "499:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "525:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "550:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "561:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "546:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "546:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "540:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "540:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "529:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "599:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "574:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "616:17:94",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "626:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "616:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "642:40:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "678:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "663:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "663:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "657:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "657:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "646:7:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "716:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "691:24:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "691:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "691:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "733:17:94",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "743:7:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "733:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionFactory_$16284t_contract$_IDrawCalculatorTimelock_$16274_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "176:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "187:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "199:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "207:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "215:6:94",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "223:6:94",
                            "type": ""
                          }
                        ],
                        "src": "14:742:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "806:86:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "870:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "879:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "882:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "872:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "872:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "872:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "829:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "840:5:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "855:3:94",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "860:1:94",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "851:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "851:11:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "864:1:94",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "847:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "847:19:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "836:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "836:31:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "826:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "826:42:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "819:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "819:50:94"
                              },
                              "nodeType": "YulIf",
                              "src": "816:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "795:5:94",
                            "type": ""
                          }
                        ],
                        "src": "761:131:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$8409t_contract$_IPrizeDistributionFactory_$16284t_contract$_IDrawCalculatorTimelock_$16274_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := mload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e060405234801561001057600080fd5b50604051610da2380380610da283398101604081905261002f916100f1565b83610039816100a1565b506001600160601b0319606084811b821660805283811b821660a05282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505050610168565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000806080858703121561010757600080fd5b845161011281610150565b602086015190945061012381610150565b604086015190935061013481610150565b606086015190925061014581610150565b939692955090935050565b6001600160a01b038116811461016557600080fd5b50565b60805160601c60a05160601c60c05160601c610bed6101b5600039600081816101a401526103a701526000818161010f015261058b01526000818161015a01526104c20152610bed6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063a913c9da11610081578063d33219b41161005b578063d33219b41461019f578063e30c3978146101c6578063f2fde38b146101d757600080fd5b8063a913c9da14610142578063ce343bb614610155578063d0ebdbe71461017c57600080fd5b8063715018a6116100b2578063715018a61461010257806378e072a91461010a5780638da5cb5b1461013157600080fd5b8063481c6a75146100ce5780634e71e0c8146100f8575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6101006101ea565b005b61010061027d565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100db565b6101006101503660046109ad565b6102f2565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b61018f61018a36600461095b565b610637565b60405190151581526020016100ef565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100db565b6101006101e536600461095b565b6106b3565b6001546001600160a01b031633146102495760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461025e906001600160a01b03166107ef565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102906000546001600160a01b031690565b6001600160a01b0316146102e65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6102f060006107ef565b565b336103056002546001600160a01b031690565b6001600160a01b031614806103335750336103286000546001600160a01b031690565b6001600160a01b0316145b6103a55760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610240565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103f39190610b4f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561045957600080fd5b505af115801561046d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610491919061098b565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104f7908590600401610a90565b602060405180830381600087803b15801561051157600080fd5b505af1158015610525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105499190610a73565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156105d757600080fd5b505af11580156105eb573d6000803e3d6000fd5b50505050816020015163ffffffff167f4f6e50730fff1d693de88b3bd047b65c8fb3f1223d553f8c6f528050e88f1ad6838360405161062b929190610aec565b60405180910390a25050565b60003361064c6000546001600160a01b031690565b6001600160a01b0316146106a25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6106ab8261084c565b90505b919050565b336106c66000546001600160a01b031690565b6001600160a01b03161461071c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6001600160a01b0381166107985760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610240565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108d55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610240565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b80356106ae81610ba2565b803567ffffffffffffffff811681146106ae57600080fd5b60006020828403121561096d57600080fd5b81356001600160a01b038116811461098457600080fd5b9392505050565b60006020828403121561099d57600080fd5b8151801515811461098457600080fd5b60008082840360c08112156109c157600080fd5b60a08112156109cf57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405283358152610a2d60208501610938565b6020820152610a3e60408501610943565b6040820152610a4f60608501610943565b6060820152610a6060808501610938565b60808201529460a0939093013593505050565b600060208284031215610a8557600080fd5b815161098481610ba2565b60a08101610ae6828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b60c08101610b42828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b8260a08301529392505050565b600067ffffffffffffffff808316818516808303821115610b99577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b63ffffffff81168114610bb457600080fd5b5056fea26469706673582212200ea867b307adf42707f1a1a8bf086daa1a913d18e5d933fc3c203ec68cd9d34764736f6c63430008060033",
              "opcodes": "PUSH1 0xE0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xDA2 CODESIZE SUB DUP1 PUSH2 0xDA2 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0xF1 JUMP JUMPDEST DUP4 PUSH2 0x39 DUP2 PUSH2 0xA1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP4 DUP2 SHL DUP3 AND PUSH1 0xA0 MSTORE DUP3 SWAP1 SHL AND PUSH1 0xC0 MSTORE PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND SWAP2 DUP5 DUP3 AND SWAP2 DUP7 AND SWAP1 PUSH32 0xC95935A66D15E0DA5E412ACA0AD27AE891D20B2FB91CF3994B6A3BF2B8178082 SWAP1 PUSH1 0x0 SWAP1 LOG4 POP POP POP POP PUSH2 0x168 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x107 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH2 0x112 DUP2 PUSH2 0x150 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP PUSH2 0x123 DUP2 PUSH2 0x150 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x134 DUP2 PUSH2 0x150 JUMP JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x145 DUP2 PUSH2 0x150 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x165 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH1 0xA0 MLOAD PUSH1 0x60 SHR PUSH1 0xC0 MLOAD PUSH1 0x60 SHR PUSH2 0xBED PUSH2 0x1B5 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x1A4 ADD MSTORE PUSH2 0x3A7 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x10F ADD MSTORE PUSH2 0x58B ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x15A ADD MSTORE PUSH2 0x4C2 ADD MSTORE PUSH2 0xBED PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA913C9DA GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA913C9DA EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x17C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x102 JUMPI DUP1 PUSH4 0x78E072A9 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x131 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0xF8 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x100 PUSH2 0x1EA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x100 PUSH2 0x27D JUMP JUMPDEST PUSH2 0xDB PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDB JUMP JUMPDEST PUSH2 0x100 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0x9AD JUMP JUMPDEST PUSH2 0x2F2 JUMP JUMPDEST PUSH2 0xDB PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x95B JUMP JUMPDEST PUSH2 0x637 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xEF JUMP JUMPDEST PUSH2 0xDB PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDB JUMP JUMPDEST PUSH2 0x100 PUSH2 0x1E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x95B JUMP JUMPDEST PUSH2 0x6B3 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x249 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x25E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7EF JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x290 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2E6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x240 JUMP JUMPDEST PUSH2 0x2F0 PUSH1 0x0 PUSH2 0x7EF JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x305 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x333 JUMPI POP CALLER PUSH2 0x328 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x3A5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x240 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8871189B DUP4 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP6 PUSH1 0x40 ADD MLOAD PUSH2 0x3F3 SWAP2 SWAP1 PUSH2 0xB4F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x459 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x46D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x491 SWAP2 SWAP1 PUSH2 0x98B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH2 0x4F7 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0xA90 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x525 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x549 SWAP2 SWAP1 PUSH2 0xA73 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH32 0x348B07600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x348B076 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5EB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH32 0x4F6E50730FFF1D693DE88B3BD047B65C8FB3F1223D553F8C6F528050E88F1AD6 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x62B SWAP3 SWAP2 SWAP1 PUSH2 0xAEC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x64C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x240 JUMP JUMPDEST PUSH2 0x6AB DUP3 PUSH2 0x84C JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x6C6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x71C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x240 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x798 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x240 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x8D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x240 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x6AE DUP2 PUSH2 0xBA2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x6AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x984 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x99D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x984 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH1 0xC0 DUP2 SLT ISZERO PUSH2 0x9C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0x9CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xA1A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP4 CALLDATALOAD DUP2 MSTORE PUSH2 0xA2D PUSH1 0x20 DUP6 ADD PUSH2 0x938 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xA3E PUSH1 0x40 DUP6 ADD PUSH2 0x943 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0xA4F PUSH1 0x60 DUP6 ADD PUSH2 0x943 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0xA60 PUSH1 0x80 DUP6 ADD PUSH2 0x938 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP5 PUSH1 0xA0 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA85 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x984 DUP2 PUSH2 0xBA2 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xAE6 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD PUSH2 0xB42 DUP3 DUP6 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0xA0 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xB99 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xBB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE 0xA8 PUSH8 0xB307ADF42707F1A1 0xA8 0xBF ADDMOD PUSH14 0xAA1A913D18E5D933FC3C203EC68C 0xD9 0xD3 SELFBALANCE PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "878:1792:64:-:0;;;1690:402;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1877:6;1648:24:19;1877:6:64;1648:9:19;:24::i;:::-;-1:-1:-1;;;;;;;1895:24:64::1;::::0;;;;;::::1;::::0;1929:52;;;;;::::1;::::0;1991:20;;;;::::1;::::0;2026:59:::1;::::0;-1:-1:-1;;;;;1991:20:64;;::::1;::::0;1929:52;;::::1;::::0;1895:24;::::1;::::0;2026:59:::1;::::0;;;::::1;1690:402:::0;;;;878:1792;;3470:174:19;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;;;;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:742:94:-;199:6;207;215;223;276:3;264:9;255:7;251:23;247:33;244:2;;;293:1;290;283:12;244:2;325:9;319:16;344:31;369:5;344:31;:::i;:::-;444:2;429:18;;423:25;394:5;;-1:-1:-1;457:33:94;423:25;457:33;:::i;:::-;561:2;546:18;;540:25;509:7;;-1:-1:-1;574:33:94;540:25;574:33;:::i;:::-;678:2;663:18;;657:25;626:7;;-1:-1:-1;691:33:94;657:25;691:33;:::i;:::-;234:522;;;;-1:-1:-1;234:522:94;;-1:-1:-1;;234:522:94:o;761:131::-;-1:-1:-1;;;;;836:31:94;;826:42;;816:2;;882:1;879;872:12;816:2;806:86;:::o;:::-;878:1792:64;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_3068": {
                  "entryPoint": 2124,
                  "id": 3068,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_3230": {
                  "entryPoint": 2031,
                  "id": 3230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_3210": {
                  "entryPoint": 490,
                  "id": 3210,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@drawBuffer_16072": {
                  "entryPoint": null,
                  "id": 16072,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_3022": {
                  "entryPoint": null,
                  "id": 3022,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_3142": {
                  "entryPoint": null,
                  "id": 3142,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_3151": {
                  "entryPoint": null,
                  "id": 3151,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionFactory_16076": {
                  "entryPoint": null,
                  "id": 16076,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_16163": {
                  "entryPoint": 754,
                  "id": 16163,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_3165": {
                  "entryPoint": 637,
                  "id": 3165,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_3037": {
                  "entryPoint": 1591,
                  "id": 3037,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_16080": {
                  "entryPoint": null,
                  "id": 16080,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_3192": {
                  "entryPoint": 1715,
                  "id": 3192,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2395,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 2443,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_uint256": {
                  "entryPoint": 2477,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32_fromMemory": {
                  "entryPoint": 2675,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_uint32": {
                  "entryPoint": 2360,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_uint64": {
                  "entryPoint": 2371,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_struct_Draw": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16284__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2704,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_uint256__to_t_struct$_Draw_$8176_memory_ptr_t_uint256__fromStack_reversed": {
                  "entryPoint": 2796,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "checked_add_t_uint64": {
                  "entryPoint": 2895,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "validator_revert_uint32": {
                  "entryPoint": 2978,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:7468:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:84:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "134:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "110:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "110:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "110:30:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:132:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "199:123:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "209:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "218:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "218:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "209:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "300:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "309:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "312:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "302:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "302:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "302:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "260:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "271:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "278:18:94",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "267:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "267:30:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "257:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "257:41:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "250:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "250:49:94"
                              },
                              "nodeType": "YulIf",
                              "src": "247:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "178:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "189:5:94",
                            "type": ""
                          }
                        ],
                        "src": "151:171:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "397:239:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "443:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "452:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "455:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "445:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "445:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "418:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "427:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "414:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "414:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "439:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "410:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "410:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "407:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "468:36:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "494:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "481:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "481:23:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "472:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "590:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "599:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "602:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "592:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "592:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "592:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "526:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "537:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "544:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "533:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "533:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "523:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "523:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "513:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "615:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "625:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "615:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "363:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "374:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "386:6:94",
                            "type": ""
                          }
                        ],
                        "src": "327:309:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "719:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "765:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "774:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "777:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "767:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "767:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "767:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "740:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "749:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "736:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "736:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "761:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "732:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "732:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "729:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "790:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "809:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "803:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "803:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "794:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "872:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "881:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "884:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "874:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "874:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "874:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "841:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "862:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "855:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "855:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "848:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "848:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "838:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "838:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "831:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "831:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "828:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "897:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "907:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "685:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "696:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "708:6:94",
                            "type": ""
                          }
                        ],
                        "src": "641:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1032:902:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1042:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1056:7:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1065:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1052:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1052:23:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1046:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1100:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1109:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1112:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1102:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1102:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1102:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1091:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1095:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1087:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1087:12:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1084:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1142:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1151:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1154:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1144:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1144:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1144:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1132:2:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1136:4:94",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1128:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1128:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1125:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1167:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1187:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1181:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1181:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1171:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1199:35:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1221:6:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1229:4:94",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1217:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1217:17:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1203:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1317:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1338:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1341:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1331:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1331:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1331:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1439:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1442:4:94",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1432:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1432:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1432:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1467:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1470:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1460:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1460:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1460:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1252:10:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1264:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1249:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1249:34:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1288:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1300:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1285:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1285:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1246:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1246:62:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1243:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1501:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1505:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1494:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1494:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1494:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1532:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1553:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1540:12:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1540:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1525:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1525:39:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1525:39:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1584:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1592:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1580:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1580:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1619:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1630:2:94",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1615:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1615:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1597:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1597:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1573:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1573:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1573:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1655:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1663:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1651:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1651:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1690:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1701:2:94",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1686:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1686:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1668:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1668:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1644:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1644:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1644:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1726:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1734:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1722:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1722:15:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1761:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1772:2:94",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1757:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1757:18:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1739:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1739:37:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1715:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1715:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1715:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1797:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1805:3:94",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1793:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1793:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1833:9:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1844:3:94",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1829:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1829:19:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1811:17:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1811:38:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1786:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1786:64:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1786:64:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1859:16:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1869:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1859:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1884:44:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1911:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1922:4:94",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1907:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1907:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1894:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1894:34:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1884:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "990:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1001:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1013:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1021:6:94",
                            "type": ""
                          }
                        ],
                        "src": "923:1011:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2019:169:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2065:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2074:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2077:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2067:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2067:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2067:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2040:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2049:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2036:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2036:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2061:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2032:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2032:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2029:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2090:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2109:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2103:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2103:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2094:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2152:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2128:23:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2128:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2128:30:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2167:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2177:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1985:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1996:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2008:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1939:249:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2241:453:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2258:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2269:5:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2263:5:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2263:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2251:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2251:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2251:25:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2285:43:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2322:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2305:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2305:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "2289:12:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2337:20:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2347:10:94",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2341:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2377:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2382:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2373:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2373:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2393:12:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2407:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2389:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2389:21:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2366:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2366:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2366:45:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2420:45:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2452:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2459:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2448:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2448:16:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2442:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2442:23:94"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2424:14:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2474:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2484:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2478:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2522:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2527:4:94",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2518:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2518:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2538:14:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2554:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2534:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2534:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2511:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2511:47:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2511:47:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2578:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2583:4:94",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2574:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2574:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2604:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2611:4:94",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2600:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2600:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2594:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2594:23:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2619:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2590:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2590:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2567:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2567:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2567:56:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2643:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2648:4:94",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2639:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2639:14:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2669:5:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2676:4:94",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2665:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2665:16:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2659:5:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2659:23:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2684:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2655:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2655:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2632:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2632:56:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2632:56:94"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2225:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2232:3:94",
                            "type": ""
                          }
                        ],
                        "src": "2193:501:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2800:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2810:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2822:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2833:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2818:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2818:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2810:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2852:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2867:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2875:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2863:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2863:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2845:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2845:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2845:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2769:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2780:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2791:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2699:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3025:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3035:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3047:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3058:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3043:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3043:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3077:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3102:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3095:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3095:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3088:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3088:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3070:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3070:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3070:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2994:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3005:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3016:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2930:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3243:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3253:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3265:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3276:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3261:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3261:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3253:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3295:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3310:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3318:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3306:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3306:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3288:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3288:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3288:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3212:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3223:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3234:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3122:246:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3507:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3517:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3529:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3540:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3525:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3525:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3517:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3559:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3574:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3582:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3570:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3570:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3552:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3552:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3552:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3476:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3487:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3498:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3373:259:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3773:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3783:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3795:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3806:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3791:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3791:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3783:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3825:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3840:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3848:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3836:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3836:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3818:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3818:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3818:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16284__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3742:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3753:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3764:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3637:261:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4077:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4094:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4105:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4087:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4087:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4087:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4128:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4139:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4124:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4124:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4144:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4117:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4117:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4117:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4167:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4178:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4163:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4163:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4183:34:94",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4156:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4156:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4156:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4238:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4249:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4234:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4234:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4254:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4227:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4227:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4227:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4269:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4281:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4292:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4277:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4277:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4269:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4054:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4068:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3903:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4481:174:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4498:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4509:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4491:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4491:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4491:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4532:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4543:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4528:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4528:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4548:2:94",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4521:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4521:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4521:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4571:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4582:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4567:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4567:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4587:26:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4560:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4560:54:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4560:54:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4623:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4635:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4646:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4631:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4631:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4623:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4458:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4472:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4307:348:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4834:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4851:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4862:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4844:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4844:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4844:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4896:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4901:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4874:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4874:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4874:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4924:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4935:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4920:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4920:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4940:33:94",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4913:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4913:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4913:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4983:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4995:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5006:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4991:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4991:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4983:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4811:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4825:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4660:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5194:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5211:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5222:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5204:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5204:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5204:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5245:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5256:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5241:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5241:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5261:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5234:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5234:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5234:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5284:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5295:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5280:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5280:18:94"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5300:34:94",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5273:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5273:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5273:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5355:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5366:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5351:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5351:18:94"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5371:8:94",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5344:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5344:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5344:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5389:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5401:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5412:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5397:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5397:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5389:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5171:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5185:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5020:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5601:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5618:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5629:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5611:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5611:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5611:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5652:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5663:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5648:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5668:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5641:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5641:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5641:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5691:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5702:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5687:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5687:18:94"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5707:34:94",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5680:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5680:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5680:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5762:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5773:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5758:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5758:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5778:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5751:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5751:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5751:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5795:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5807:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5818:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5803:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5803:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5795:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5578:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5592:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5427:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5978:93:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5988:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6000:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6011:3:94",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5996:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5996:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5988:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6047:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6055:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "6024:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6024:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6024:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5947:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5958:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5969:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5833:238:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6249:137:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6259:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6271:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6282:3:94",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6267:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6267:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6259:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6318:6:94"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6326:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "6295:22:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6295:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6295:41:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6356:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6367:3:94",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6352:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6352:19:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6373:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6345:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6345:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6345:35:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_uint256__to_t_struct$_Draw_$8176_memory_ptr_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6210:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6221:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6229:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6240:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6076:310:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6518:136:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6528:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6540:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6551:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6536:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6536:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6528:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6570:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6585:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6593:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6581:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6581:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6563:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6563:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6563:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6625:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6636:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6621:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6621:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6641:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6614:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6614:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6614:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6479:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6490:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6498:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6509:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6391:263:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6784:161:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6794:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6806:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6817:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6802:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6802:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6794:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6836:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6851:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6859:10:94",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6847:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6847:23:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6829:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6829:42:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6829:42:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6891:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6902:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6887:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6887:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6911:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6919:18:94",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6907:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6907:31:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6880:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6880:59:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6880:59:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6745:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6756:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6764:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6775:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6659:286:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6997:343:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7007:28:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7017:18:94",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7011:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7044:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7059:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7062:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7055:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7055:10:94"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7048:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7074:21:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7089:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7092:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7085:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7085:10:94"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7078:3:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7137:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7158:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7161:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7151:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7151:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7151:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7259:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7262:4:94",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7252:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7252:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7252:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7287:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7290:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7280:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7280:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7280:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7110:3:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7119:2:94"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7123:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7115:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7115:12:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7107:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7107:21:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7104:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7314:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7325:3:94"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7330:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7321:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7321:13:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7314:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6980:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6983:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6989:3:94",
                            "type": ""
                          }
                        ],
                        "src": "6950:390:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7389:77:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7444:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7453:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7456:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7446:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7446:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7446:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "7412:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "7423:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7430:10:94",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "7419:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7419:22:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "7409:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7409:33:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7402:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7402:41:94"
                              },
                              "nodeType": "YulIf",
                              "src": "7399:2:94"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "7378:5:94",
                            "type": ""
                          }
                        ],
                        "src": "7345:121:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_uint32(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint32(value)\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_Draw_$8176_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 192) { revert(0, 0) }\n        if slt(_1, 0xa0) { revert(0, 0) }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        mstore(memPtr, calldataload(headStart))\n        mstore(add(memPtr, 32), abi_decode_uint32(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint64(add(headStart, 64)))\n        mstore(add(memPtr, 96), abi_decode_uint64(add(headStart, 96)))\n        mstore(add(memPtr, 128), abi_decode_uint32(add(headStart, 128)))\n        value0 := memPtr\n        value1 := calldataload(add(headStart, 0xa0))\n    }\n    function abi_decode_tuple_t_uint32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint32(value)\n        value0 := value\n    }\n    function abi_encode_struct_Draw(value, pos)\n    {\n        mstore(pos, mload(value))\n        let memberValue0 := mload(add(value, 0x20))\n        let _1 := 0xffffffff\n        mstore(add(pos, 0x20), and(memberValue0, _1))\n        let memberValue0_1 := mload(add(value, 0x40))\n        let _2 := 0xffffffffffffffff\n        mstore(add(pos, 0x40), and(memberValue0_1, _2))\n        mstore(add(pos, 0x60), and(mload(add(value, 0x60)), _2))\n        mstore(add(pos, 0x80), and(mload(add(value, 0x80)), _1))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_IDrawBuffer_$8409__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$16274__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16284__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"Manageable/existing-manager-addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"Ownable/caller-not-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"Ownable/caller-not-pendingOwner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"Manageable/caller-not-manager-or\")\n        mstore(add(headStart, 96), \"-owner\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"Ownable/pendingOwner-not-zero-ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr__to_t_struct$_Draw_$8176_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        abi_encode_struct_Draw(value0, headStart)\n    }\n    function abi_encode_tuple_t_struct$_Draw_$8176_memory_ptr_t_uint256__to_t_struct$_Draw_$8176_memory_ptr_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        abi_encode_struct_Draw(value0, headStart)\n        mstore(add(headStart, 160), value1)\n    }\n    function abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        let _1 := 0xffffffffffffffff\n        let x_1 := and(x, _1)\n        let y_1 := and(y, _1)\n        if gt(x_1, sub(_1, y_1))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x_1, y_1)\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "16072": [
                  {
                    "length": 32,
                    "start": 346
                  },
                  {
                    "length": 32,
                    "start": 1218
                  }
                ],
                "16076": [
                  {
                    "length": 32,
                    "start": 271
                  },
                  {
                    "length": 32,
                    "start": 1419
                  }
                ],
                "16080": [
                  {
                    "length": 32,
                    "start": 420
                  },
                  {
                    "length": 32,
                    "start": 935
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c8063a913c9da11610081578063d33219b41161005b578063d33219b41461019f578063e30c3978146101c6578063f2fde38b146101d757600080fd5b8063a913c9da14610142578063ce343bb614610155578063d0ebdbe71461017c57600080fd5b8063715018a6116100b2578063715018a61461010257806378e072a91461010a5780638da5cb5b1461013157600080fd5b8063481c6a75146100ce5780634e71e0c8146100f8575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6101006101ea565b005b61010061027d565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100db565b6101006101503660046109ad565b6102f2565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b61018f61018a36600461095b565b610637565b60405190151581526020016100ef565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100db565b6101006101e536600461095b565b6106b3565b6001546001600160a01b031633146102495760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461025e906001600160a01b03166107ef565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102906000546001600160a01b031690565b6001600160a01b0316146102e65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6102f060006107ef565b565b336103056002546001600160a01b031690565b6001600160a01b031614806103335750336103286000546001600160a01b031690565b6001600160a01b0316145b6103a55760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610240565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103f39190610b4f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561045957600080fd5b505af115801561046d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610491919061098b565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104f7908590600401610a90565b602060405180830381600087803b15801561051157600080fd5b505af1158015610525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105499190610a73565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156105d757600080fd5b505af11580156105eb573d6000803e3d6000fd5b50505050816020015163ffffffff167f4f6e50730fff1d693de88b3bd047b65c8fb3f1223d553f8c6f528050e88f1ad6838360405161062b929190610aec565b60405180910390a25050565b60003361064c6000546001600160a01b031690565b6001600160a01b0316146106a25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6106ab8261084c565b90505b919050565b336106c66000546001600160a01b031690565b6001600160a01b03161461071c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6001600160a01b0381166107985760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610240565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108d55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610240565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b80356106ae81610ba2565b803567ffffffffffffffff811681146106ae57600080fd5b60006020828403121561096d57600080fd5b81356001600160a01b038116811461098457600080fd5b9392505050565b60006020828403121561099d57600080fd5b8151801515811461098457600080fd5b60008082840360c08112156109c157600080fd5b60a08112156109cf57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405283358152610a2d60208501610938565b6020820152610a3e60408501610943565b6040820152610a4f60608501610943565b6060820152610a6060808501610938565b60808201529460a0939093013593505050565b600060208284031215610a8557600080fd5b815161098481610ba2565b60a08101610ae6828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b60c08101610b42828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b8260a08301529392505050565b600067ffffffffffffffff808316818516808303821115610b99577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b63ffffffff81168114610bb457600080fd5b5056fea26469706673582212200ea867b307adf42707f1a1a8bf086daa1a913d18e5d933fc3c203ec68cd9d34764736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xA913C9DA GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xD33219B4 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xD33219B4 EQ PUSH2 0x19F JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x1D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA913C9DA EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0xCE343BB6 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x17C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x102 JUMPI DUP1 PUSH4 0x78E072A9 EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x131 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0xF8 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x100 PUSH2 0x1EA JUMP JUMPDEST STOP JUMPDEST PUSH2 0x100 PUSH2 0x27D JUMP JUMPDEST PUSH2 0xDB PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDB JUMP JUMPDEST PUSH2 0x100 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0x9AD JUMP JUMPDEST PUSH2 0x2F2 JUMP JUMPDEST PUSH2 0xDB PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x18F PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x95B JUMP JUMPDEST PUSH2 0x637 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xEF JUMP JUMPDEST PUSH2 0xDB PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xDB JUMP JUMPDEST PUSH2 0x100 PUSH2 0x1E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x95B JUMP JUMPDEST PUSH2 0x6B3 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x249 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D70656E64696E674F776E657200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x25E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x7EF JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x290 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2E6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x240 JUMP JUMPDEST PUSH2 0x2F0 PUSH1 0x0 PUSH2 0x7EF JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH2 0x305 PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x333 JUMPI POP CALLER PUSH2 0x328 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x3A5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E616765722D6F72 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x2D6F776E65720000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x240 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8871189B DUP4 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x80 ADD MLOAD PUSH4 0xFFFFFFFF AND DUP6 PUSH1 0x40 ADD MLOAD PUSH2 0x3F3 SWAP2 SWAP1 PUSH2 0xB4F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x459 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x46D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x491 SWAP2 SWAP1 PUSH2 0x98B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0x89EB92500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x89EB925 SWAP1 PUSH2 0x4F7 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0xA90 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x525 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x549 SWAP2 SWAP1 PUSH2 0xA73 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH32 0x348B07600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x348B076 SWAP1 PUSH1 0x44 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x5EB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP2 PUSH1 0x20 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH32 0x4F6E50730FFF1D693DE88B3BD047B65C8FB3F1223D553F8C6F528050E88F1AD6 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x62B SWAP3 SWAP2 SWAP1 PUSH2 0xAEC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x64C PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6A2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x240 JUMP JUMPDEST PUSH2 0x6AB DUP3 PUSH2 0x84C JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH2 0x6C6 PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x71C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F63616C6C65722D6E6F742D6F776E65720000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x240 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x798 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C652F70656E64696E674F776E65722D6E6F742D7A65726F2D6164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x240 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x239A2DDDED15777FA246AED5F7E1A9BC69A39D4EB4A397034D1D85766CCA7D4C SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x8D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4D616E61676561626C652F6578697374696E672D6D616E616765722D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x240 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE PUSH1 0x40 MLOAD SWAP1 SWAP2 DUP4 AND SWAP1 PUSH32 0x9CB45C728DE594DAB506A1F1A8554E24C8EEAF983618D5EC5DD7BC6F3C49FEEE SWAP1 PUSH1 0x0 SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x6AE DUP2 PUSH2 0xBA2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x6AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x96D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x984 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x99D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x984 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 SUB PUSH1 0xC0 DUP2 SLT ISZERO PUSH2 0x9C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA0 DUP2 SLT ISZERO PUSH2 0x9CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xA1A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MSTORE DUP4 CALLDATALOAD DUP2 MSTORE PUSH2 0xA2D PUSH1 0x20 DUP6 ADD PUSH2 0x938 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xA3E PUSH1 0x40 DUP6 ADD PUSH2 0x943 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0xA4F PUSH1 0x60 DUP6 ADD PUSH2 0x943 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0xA60 PUSH1 0x80 DUP6 ADD PUSH2 0x938 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE SWAP5 PUSH1 0xA0 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA85 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x984 DUP2 PUSH2 0xBA2 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xAE6 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xC0 DUP2 ADD PUSH2 0xB42 DUP3 DUP6 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP1 DUP3 AND PUSH1 0x20 DUP6 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND PUSH1 0x40 DUP7 ADD MSTORE DUP1 PUSH1 0x60 DUP6 ADD MLOAD AND PUSH1 0x60 DUP7 ADD MSTORE POP DUP1 PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP6 ADD MSTORE POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0xA0 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP4 AND DUP2 DUP6 AND DUP1 DUP4 SUB DUP3 GT ISZERO PUSH2 0xB99 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xBB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE 0xA8 PUSH8 0xB307ADF42707F1A1 0xA8 0xBF ADDMOD PUSH14 0xAA1A913D18E5D933FC3C203EC68C 0xD9 0xD3 SELFBALANCE PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "878:1792:64:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1403:89:18;1477:8;;-1:-1:-1;;;;;1477:8:18;1403:89;;;-1:-1:-1;;;;;2863:55:94;;;2845:74;;2833:2;2818:18;1403:89:18;;;;;;;;3147:129:19;;;:::i;:::-;;2508:94;;;:::i;1167:67:64:-;;;;;1814:85:19;1860:7;1886:6;-1:-1:-1;;;;;1886:6:19;1814:85;;2143:525:64;;;;;;:::i;:::-;;:::i;1060:39::-;;;;;1744:123:18;;;;;;:::i;:::-;;:::i;:::-;;;3095:14:94;;3088:22;3070:41;;3058:2;3043:18;1744:123:18;3025:92:94;1284:49:64;;;;;2014:101:19;2095:13;;-1:-1:-1;;;;;2095:13:19;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:19;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:19;;4862:2:94;4028:71:19;;;4844:21:94;4901:2;4881:18;;;4874:30;4940:33;4920:18;;;4913:61;4991:18;;4028:71:19;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:19::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:19::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4509:2:94;3819:58:19;;;4491:21:94;4548:2;4528:18;;;4521:30;4587:26;4567:18;;;4560:54;4631:18;;3819:58:19;4481:174:94;3819:58:19;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2143:525:64:-;2861:10:18;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:18;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:18;;:48;;;-1:-1:-1;2886:10:18;2875:7;1860::19;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;2875:7:18;-1:-1:-1;;;;;2875:21:18;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:18;;5222:2:94;2840:99:18;;;5204:21:94;5261:2;5241:18;;;5234:30;5300:34;5280:18;;;5273:62;5371:8;5351:18;;;5344:36;5397:19;;2840:99:18;5194:228:94;2840:99:18;2298:8:64::1;-1:-1:-1::0;;;;;2298:13:64::1;;2312:5;:12;;;2344:5;:25;;;2326:43;;:5;:15;;;:43;;;;:::i;:::-;2298:72;::::0;;::::1;::::0;;;;;;::::1;6847:23:94::0;;;;2298:72:64::1;::::0;::::1;6829:42:94::0;6919:18;6907:31;6887:18;;;6880:59;6802:18;;2298:72:64::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;2380:26:64::1;::::0;;;;-1:-1:-1;;;;;2380:10:64::1;:19;::::0;::::1;::::0;:26:::1;::::0;2400:5;;2380:26:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;2463:12:64::1;::::0;::::1;::::0;2416:87:::1;::::0;;;;6593:10:94;6581:23;;;2416:87:64::1;::::0;::::1;6563:42:94::0;6621:18;;;6614:34;;;2416:24:64::1;-1:-1:-1::0;;;;;2416:46:64::1;::::0;::::1;::::0;6536:18:94;;2416:87:64::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2581:5;:12;;;2518:143;;;2607:5;2626:25;2518:143;;;;;;;:::i;:::-;;;;;;;;2143:525:::0;;:::o;1744:123:18:-;1813:4;3838:10:19;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4509:2:94;3819:58:19;;;4491:21:94;4548:2;4528:18;;;4521:30;4587:26;4567:18;;;4560:54;4631:18;;3819:58:19;4481:174:94;3819:58:19;1836:24:18::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:19;1744:123:18::0;;;:::o;2751:234:19:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:19;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:19;;3819:58;;;;-1:-1:-1;;;3819:58:19;;4509:2:94;3819:58:19;;;4491:21:94;4548:2;4528:18;;;4521:30;4587:26;4567:18;;;4560:54;4631:18;;3819:58:19;4481:174:94;3819:58:19;-1:-1:-1;;;;;2834:23:19;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:19;;5629:2:94;2826:73:19::1;::::0;::::1;5611:21:94::0;5668:2;5648:18;;;5641:30;5707:34;5687:18;;;5680:62;5778:7;5758:18;;;5751:35;5803:19;;2826:73:19::1;5601:227:94::0;2826:73:19::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:19::1;-1:-1:-1::0;;;;;2910:25:19;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:19::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:19;;;-1:-1:-1;;3562:18:19;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:18:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:18;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:18;;4105:2:94;2230:79:18;;;4087:21:94;4144:2;4124:18;;;4117:30;4183:34;4163:18;;;4156:62;4254:5;4234:18;;;4227:33;4277:19;;2230:79:18;4077:225:94;2230:79:18;2320:8;:22;;-1:-1:-1;;2320:22:18;-1:-1:-1;;;;;2320:22:18;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:18;-1:-1:-1;2424:4:18;;2109:326;-1:-1:-1;;2109:326:18:o;14:132:94:-;81:20;;110:30;81:20;110:30;:::i;151:171::-;218:20;;278:18;267:30;;257:41;;247:2;;312:1;309;302:12;327:309;386:6;439:2;427:9;418:7;414:23;410:32;407:2;;;455:1;452;445:12;407:2;494:9;481:23;-1:-1:-1;;;;;537:5:94;533:54;526:5;523:65;513:2;;602:1;599;592:12;513:2;625:5;397:239;-1:-1:-1;;;397:239:94:o;641:277::-;708:6;761:2;749:9;740:7;736:23;732:32;729:2;;;777:1;774;767:12;729:2;809:9;803:16;862:5;855:13;848:21;841:5;838:32;828:2;;884:1;881;874:12;923:1011;1013:6;1021;1065:9;1056:7;1052:23;1095:3;1091:2;1087:12;1084:2;;;1112:1;1109;1102:12;1084:2;1136:4;1132:2;1128:13;1125:2;;;1154:1;1151;1144:12;1125:2;;1187;1181:9;1229:4;1221:6;1217:17;1300:6;1288:10;1285:22;1264:18;1252:10;1249:34;1246:62;1243:2;;;1341:77;1338:1;1331:88;1442:4;1439:1;1432:15;1470:4;1467:1;1460:15;1243:2;1501;1494:22;1540:23;;1525:39;;1597:37;1630:2;1615:18;;1597:37;:::i;:::-;1592:2;1584:6;1580:15;1573:62;1668:37;1701:2;1690:9;1686:18;1668:37;:::i;:::-;1663:2;1655:6;1651:15;1644:62;1739:37;1772:2;1761:9;1757:18;1739:37;:::i;:::-;1734:2;1726:6;1722:15;1715:62;1811:38;1844:3;1833:9;1829:19;1811:38;:::i;:::-;1805:3;1793:16;;1786:64;1797:6;1922:4;1907:20;;;;1894:34;;-1:-1:-1;;;1032:902:94:o;1939:249::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:2;;;2077:1;2074;2067:12;2029:2;2109:9;2103:16;2128:30;2152:5;2128:30;:::i;5833:238::-;6011:3;5996:19;;6024:41;6000:9;6047:6;2269:5;2263:12;2258:3;2251:25;2322:4;2315:5;2311:16;2305:23;2347:10;2407:2;2393:12;2389:21;2382:4;2377:3;2373:14;2366:45;2459:4;2452:5;2448:16;2442:23;2420:45;;2484:18;2554:2;2538:14;2534:23;2527:4;2522:3;2518:14;2511:47;2619:2;2611:4;2604:5;2600:16;2594:23;2590:32;2583:4;2578:3;2574:14;2567:56;;2684:2;2676:4;2669:5;2665:16;2659:23;2655:32;2648:4;2643:3;2639:14;2632:56;;;2241:453;;;6024:41;5978:93;;;;:::o;6076:310::-;6282:3;6267:19;;6295:41;6271:9;6318:6;2269:5;2263:12;2258:3;2251:25;2322:4;2315:5;2311:16;2305:23;2347:10;2407:2;2393:12;2389:21;2382:4;2377:3;2373:14;2366:45;2459:4;2452:5;2448:16;2442:23;2420:45;;2484:18;2554:2;2538:14;2534:23;2527:4;2522:3;2518:14;2511:47;2619:2;2611:4;2604:5;2600:16;2594:23;2590:32;2583:4;2578:3;2574:14;2567:56;;2684:2;2676:4;2669:5;2665:16;2659:23;2655:32;2648:4;2643:3;2639:14;2632:56;;;2241:453;;;6295:41;6373:6;6367:3;6356:9;6352:19;6345:35;6249:137;;;;;:::o;6950:390::-;6989:3;7017:18;7062:2;7059:1;7055:10;7092:2;7089:1;7085:10;7123:3;7119:2;7115:12;7110:3;7107:21;7104:2;;;7161:77;7158:1;7151:88;7262:4;7259:1;7252:15;7290:4;7287:1;7280:15;7104:2;7321:13;;6997:343;-1:-1:-1;;;;6997:343:94:o;7345:121::-;7430:10;7423:5;7419:22;7412:5;7409:33;7399:2;;7456:1;7453;7446:12;7399:2;7389:77;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "610600",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54487",
                "drawBuffer()": "infinite",
                "manager()": "2333",
                "owner()": "2387",
                "pendingOwner()": "2364",
                "prizeDistributionFactory()": "infinite",
                "push((uint256,uint32,uint64,uint64,uint32),uint256)": "infinite",
                "renounceOwnership()": "28158",
                "setManager(address)": "30581",
                "timelock()": "infinite",
                "transferOwnership(address)": "27937"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "drawBuffer()": "ce343bb6",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "prizeDistributionFactory()": "78e072a9",
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": "a913c9da",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "timelock()": "d33219b4",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract IDrawBuffer\",\"name\":\"_drawBuffer\",\"type\":\"address\"},{\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"_prizeDistributionFactory\",\"type\":\"address\"},{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"_timelock\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"prizeDistributionFactory\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"timelock\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"DrawLockedPushedAndTotalNetworkTicketSupplyPushed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousManager\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newManager\",\"type\":\"address\"}],\"name\":\"ManagerTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"pendingOwner\",\"type\":\"address\"}],\"name\":\"OwnershipOffered\",\"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\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"drawBuffer\",\"outputs\":[{\"internalType\":\"contract IDrawBuffer\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"prizeDistributionFactory\",\"outputs\":[{\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"_draw\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"_totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newManager\",\"type\":\"address\"}],\"name\":\"setManager\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"timelock\",\"outputs\":[{\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_drawBuffer\":\"DrawBuffer address\",\"_owner\":\"The smart contract owner\",\"_prizeDistributionFactory\":\"PrizeDistributionFactory address\",\"_timelock\":\"DrawCalculatorTimelock address\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"details\":\"Restricts new draws for N seconds by forcing timelock on the next target draw id.\",\"params\":{\"draw\":\"Draw\",\"totalNetworkTicketSupply\":\"totalNetworkTicketSupply\"}},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"setManager(address)\":{\"details\":\"Throws if called by any account other than the owner.\",\"params\":{\"_newManager\":\"New _manager address.\"},\"returns\":{\"_0\":\"Boolean to indicate if the operation was successful or not.\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"title\":\"PoolTogether V4 ReceiverTimelockTrigger\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"DrawLockedPushedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Initialize ReceiverTimelockTrigger smart contract.\"},\"drawBuffer()\":{\"notice\":\"The DrawBuffer contract address.\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"prizeDistributionFactory()\":{\"notice\":\"Internal PrizeDistributionFactory reference.\"},\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory.\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"timelock()\":{\"notice\":\"Timelock struct reference.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"The ReceiverTimelockTrigger smart contract is an upgrade of the L2TimelockTimelock smart contract. Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will only pass the total supply of all tickets in a \\\"PrizePool Network\\\" to the prize distribution factory contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol\":\"ReceiverTimelockTrigger\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\nimport \\\"./interfaces/IReceiverTimelockTrigger.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionFactory.sol\\\";\\nimport \\\"./interfaces/IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n\\n  * @title  PoolTogether V4 ReceiverTimelockTrigger\\n  * @author PoolTogether Inc Team\\n  * @notice The ReceiverTimelockTrigger smart contract is an upgrade of the L2TimelockTimelock smart contract.\\n            Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will\\n            only pass the total supply of all tickets in a \\\"PrizePool Network\\\" to the prize distribution factory contract.\\n*/\\ncontract ReceiverTimelockTrigger is IReceiverTimelockTrigger, Manageable {\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice The DrawBuffer contract address.\\n    IDrawBuffer public immutable drawBuffer;\\n\\n    /// @notice Internal PrizeDistributionFactory reference.\\n    IPrizeDistributionFactory public immutable prizeDistributionFactory;\\n\\n    /// @notice Timelock struct reference.\\n    IDrawCalculatorTimelock public immutable timelock;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Initialize ReceiverTimelockTrigger smart contract.\\n     * @param _owner The smart contract owner\\n     * @param _drawBuffer DrawBuffer address\\n     * @param _prizeDistributionFactory PrizeDistributionFactory address\\n     * @param _timelock DrawCalculatorTimelock address\\n     */\\n    constructor(\\n        address _owner,\\n        IDrawBuffer _drawBuffer,\\n        IPrizeDistributionFactory _prizeDistributionFactory,\\n        IDrawCalculatorTimelock _timelock\\n    ) Ownable(_owner) {\\n        drawBuffer = _drawBuffer;\\n        prizeDistributionFactory = _prizeDistributionFactory;\\n        timelock = _timelock;\\n        emit Deployed(_drawBuffer, _prizeDistributionFactory, _timelock);\\n    }\\n\\n    /// @inheritdoc IReceiverTimelockTrigger\\n    function push(IDrawBeacon.Draw memory _draw, uint256 _totalNetworkTicketSupply)\\n        external\\n        override\\n        onlyManagerOrOwner\\n    {\\n        timelock.lock(_draw.drawId, _draw.timestamp + _draw.beaconPeriodSeconds);\\n        drawBuffer.pushDraw(_draw);\\n        prizeDistributionFactory.pushPrizeDistribution(_draw.drawId, _totalNetworkTicketSupply);\\n        emit DrawLockedPushedAndTotalNetworkTicketSupplyPushed(\\n            _draw.drawId,\\n            _draw,\\n            _totalNetworkTicketSupply\\n        );\\n    }\\n}\\n\",\"keccak256\":\"0xb9f45d845019ccff4eb2ce2456c98ecd75cc417fb22809ce54ef95c1d6416b25\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\ninterface IPrizeDistributionFactory {\\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x035644792635f46d3ce9878f2e6e19ce4b9c7eaafde336222ffb45889ff18e5d\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./IPrizeDistributionFactory.sol\\\";\\nimport \\\"./IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IReceiverTimelockTrigger\\n * @author PoolTogether Inc Team\\n * @notice The IReceiverTimelockTrigger smart contract interface...\\n */\\ninterface IReceiverTimelockTrigger {\\n    /// @notice Emitted when the contract is deployed.\\n    event Deployed(\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionFactory indexed prizeDistributionFactory,\\n        IDrawCalculatorTimelock indexed timelock\\n    );\\n\\n    /**\\n     * @notice Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\\n     * @param drawId Draw ID\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    event DrawLockedPushedAndTotalNetworkTicketSupplyPushed(\\n        uint32 indexed drawId,\\n        IDrawBeacon.Draw draw,\\n        uint256 totalNetworkTicketSupply\\n    );\\n\\n    /**\\n     * @notice Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory.\\n     * @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    function push(IDrawBeacon.Draw memory draw, uint256 totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x92b4134c481be0191467899a06075d3dd50ff6a1e9ad9d2f6beada831e11f99e\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 3108,
                "contract": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol:ReceiverTimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 3110,
                "contract": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol:ReceiverTimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 3006,
                "contract": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol:ReceiverTimelockTrigger",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is deployed."
              },
              "DrawLockedPushedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory"
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Initialize ReceiverTimelockTrigger smart contract."
              },
              "drawBuffer()": {
                "notice": "The DrawBuffer contract address."
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "prizeDistributionFactory()": {
                "notice": "Internal PrizeDistributionFactory reference."
              },
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory."
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "timelock()": {
                "notice": "Timelock struct reference."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "The ReceiverTimelockTrigger smart contract is an upgrade of the L2TimelockTimelock smart contract. Reducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will only pass the total supply of all tickets in a \"PrizePool Network\" to the prize distribution factory contract.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol": {
        "IBeaconTimelockTrigger": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "prizeDistributionFactory",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "timelock",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "DrawLockedAndTotalNetworkTicketSupplyPushed",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "DrawLockedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)": {
                "params": {
                  "draw": "Draw",
                  "drawId": "Draw ID",
                  "totalNetworkTicketSupply": "totalNetworkTicketSupply"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "details": "Restricts new draws for N seconds by forcing timelock on the next target draw id.",
                "params": {
                  "draw": "Draw",
                  "totalNetworkTicketSupply": "totalNetworkTicketSupply"
                }
              }
            },
            "title": "PoolTogether V4 IBeaconTimelockTrigger",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": "a913c9da"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"prizeDistributionFactory\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"timelock\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"DrawLockedAndTotalNetworkTicketSupplyPushed\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"DrawLockedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)\":{\"params\":{\"draw\":\"Draw\",\"drawId\":\"Draw ID\",\"totalNetworkTicketSupply\":\"totalNetworkTicketSupply\"}}},\"kind\":\"dev\",\"methods\":{\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"details\":\"Restricts new draws for N seconds by forcing timelock on the next target draw id.\",\"params\":{\"draw\":\"Draw\",\"totalNetworkTicketSupply\":\"totalNetworkTicketSupply\"}}},\"title\":\"PoolTogether V4 IBeaconTimelockTrigger\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"DrawLockedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\"}},\"kind\":\"user\",\"methods\":{\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory\"}},\"notice\":\"The IBeaconTimelockTrigger smart contract interface...\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol\":\"IBeaconTimelockTrigger\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\\\";\\nimport \\\"./IPrizeDistributionFactory.sol\\\";\\nimport \\\"./IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IBeaconTimelockTrigger\\n * @author PoolTogether Inc Team\\n * @notice The IBeaconTimelockTrigger smart contract interface...\\n */\\ninterface IBeaconTimelockTrigger {\\n    /// @notice Emitted when the contract is deployed.\\n    event Deployed(\\n        IPrizeDistributionFactory indexed prizeDistributionFactory,\\n        IDrawCalculatorTimelock indexed timelock\\n    );\\n\\n    /**\\n     * @notice Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\\n     * @param drawId Draw ID\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    event DrawLockedAndTotalNetworkTicketSupplyPushed(\\n        uint32 indexed drawId,\\n        IDrawBeacon.Draw draw,\\n        uint256 totalNetworkTicketSupply\\n    );\\n\\n    /**\\n     * @notice Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory\\n     * @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    function push(IDrawBeacon.Draw memory draw, uint256 totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x729afb3ec0681df30f6f6884fbcf8485df319db514e5f3e5bbacf36b6e4d5c4d\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\ninterface IPrizeDistributionFactory {\\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x035644792635f46d3ce9878f2e6e19ce4b9c7eaafde336222ffb45889ff18e5d\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address)": {
                "notice": "Emitted when the contract is deployed."
              },
              "DrawLockedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory"
              }
            },
            "kind": "user",
            "methods": {
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory"
              }
            },
            "notice": "The IBeaconTimelockTrigger smart contract interface...",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol": {
        "IDrawCalculatorTimelock": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "indexed": false,
                  "internalType": "uint64",
                  "name": "timestamp",
                  "type": "uint64"
                }
              ],
              "name": "LockedDraw",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawCalculatorTimelock.Timelock",
                  "name": "timelock",
                  "type": "tuple"
                }
              ],
              "name": "TimelockSet",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint32[]",
                  "name": "drawIds",
                  "type": "uint32[]"
                },
                {
                  "internalType": "bytes",
                  "name": "data",
                  "type": "bytes"
                }
              ],
              "name": "calculate",
              "outputs": [
                {
                  "internalType": "uint256[]",
                  "name": "",
                  "type": "uint256[]"
                },
                {
                  "internalType": "bytes",
                  "name": "",
                  "type": "bytes"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getDrawCalculator",
              "outputs": [
                {
                  "internalType": "contract IDrawCalculator",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getTimelock",
              "outputs": [
                {
                  "components": [
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawCalculatorTimelock.Timelock",
                  "name": "",
                  "type": "tuple"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "hasElapsed",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint64",
                  "name": "_timestamp",
                  "type": "uint64"
                }
              ],
              "name": "lock",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawCalculatorTimelock.Timelock",
                  "name": "_timelock",
                  "type": "tuple"
                }
              ],
              "name": "setTimelock",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "LockedDraw(uint32,uint64)": {
                "params": {
                  "drawId": "Draw ID",
                  "timestamp": "Block timestamp"
                }
              },
              "TimelockSet((uint64,uint32))": {
                "params": {
                  "timelock": "Timelock struct set"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "details": "Will enforce a \"cooldown\" period between when a Draw is pushed and when users can start to claim prizes.",
                "params": {
                  "data": "Encoded pick indices",
                  "drawIds": "Draw.drawId",
                  "user": "User address"
                },
                "returns": {
                  "_0": "Prizes awardable array"
                }
              },
              "getDrawCalculator()": {
                "returns": {
                  "_0": "IDrawCalculator"
                }
              },
              "getTimelock()": {
                "returns": {
                  "_0": "Timelock"
                }
              },
              "hasElapsed()": {
                "returns": {
                  "_0": "True if timelockDuration, since last timelock has elapsed, false otherwise."
                }
              },
              "lock(uint32,uint64)": {
                "details": "Restricts new draws by forcing a push timelock.",
                "params": {
                  "_drawId": "Draw id to lock.",
                  "_timestamp": "Epoch timestamp to unlock the draw."
                },
                "returns": {
                  "_0": "True if operation was successful."
                }
              },
              "setTimelock((uint64,uint32))": {
                "params": {
                  "_timelock": "Timelock struct to set."
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "calculate(address,uint32[],bytes)": "aaca392e",
              "getDrawCalculator()": "2d680cfa",
              "getTimelock()": "6221a54b",
              "hasElapsed()": "d3a9c612",
              "lock(uint32,uint64)": "8871189b",
              "setTimelock((uint64,uint32))": "bdf28f5e"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"}],\"name\":\"LockedDraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"components\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawCalculatorTimelock.Timelock\",\"name\":\"timelock\",\"type\":\"tuple\"}],\"name\":\"TimelockSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint32[]\",\"name\":\"drawIds\",\"type\":\"uint32[]\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"calculate\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDrawCalculator\",\"outputs\":[{\"internalType\":\"contract IDrawCalculator\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getTimelock\",\"outputs\":[{\"components\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawCalculatorTimelock.Timelock\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"hasElapsed\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"_timestamp\",\"type\":\"uint64\"}],\"name\":\"lock\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawCalculatorTimelock.Timelock\",\"name\":\"_timelock\",\"type\":\"tuple\"}],\"name\":\"setTimelock\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"LockedDraw(uint32,uint64)\":{\"params\":{\"drawId\":\"Draw ID\",\"timestamp\":\"Block timestamp\"}},\"TimelockSet((uint64,uint32))\":{\"params\":{\"timelock\":\"Timelock struct set\"}}},\"kind\":\"dev\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"details\":\"Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\",\"params\":{\"data\":\"Encoded pick indices\",\"drawIds\":\"Draw.drawId\",\"user\":\"User address\"},\"returns\":{\"_0\":\"Prizes awardable array\"}},\"getDrawCalculator()\":{\"returns\":{\"_0\":\"IDrawCalculator\"}},\"getTimelock()\":{\"returns\":{\"_0\":\"Timelock\"}},\"hasElapsed()\":{\"returns\":{\"_0\":\"True if timelockDuration, since last timelock has elapsed, false otherwise.\"}},\"lock(uint32,uint64)\":{\"details\":\"Restricts new draws by forcing a push timelock.\",\"params\":{\"_drawId\":\"Draw id to lock.\",\"_timestamp\":\"Epoch timestamp to unlock the draw.\"},\"returns\":{\"_0\":\"True if operation was successful.\"}},\"setTimelock((uint64,uint32))\":{\"params\":{\"_timelock\":\"Timelock struct to set.\"}}},\"version\":1},\"userdoc\":{\"events\":{\"LockedDraw(uint32,uint64)\":{\"notice\":\"Emitted when target draw id is locked.\"},\"TimelockSet((uint64,uint32))\":{\"notice\":\"Emitted event when the timelock struct is updated\"}},\"kind\":\"user\",\"methods\":{\"calculate(address,uint32[],bytes)\":{\"notice\":\"Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\"},\"getDrawCalculator()\":{\"notice\":\"Read internal DrawCalculator variable.\"},\"getTimelock()\":{\"notice\":\"Read internal Timelock struct.\"},\"hasElapsed()\":{\"notice\":\"Returns bool for timelockDuration elapsing.\"},\"lock(uint32,uint64)\":{\"notice\":\"Lock passed draw id for `timelockDuration` seconds.\"},\"setTimelock((uint64,uint32))\":{\"notice\":\"Set the Timelock struct. Only callable by the contract owner.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":\"IDrawCalculatorTimelock\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "LockedDraw(uint32,uint64)": {
                "notice": "Emitted when target draw id is locked."
              },
              "TimelockSet((uint64,uint32))": {
                "notice": "Emitted event when the timelock struct is updated"
              }
            },
            "kind": "user",
            "methods": {
              "calculate(address,uint32[],bytes)": {
                "notice": "Routes claim/calculate requests between PrizeDistributor and DrawCalculator."
              },
              "getDrawCalculator()": {
                "notice": "Read internal DrawCalculator variable."
              },
              "getTimelock()": {
                "notice": "Read internal Timelock struct."
              },
              "hasElapsed()": {
                "notice": "Returns bool for timelockDuration elapsing."
              },
              "lock(uint32,uint64)": {
                "notice": "Lock passed draw id for `timelockDuration` seconds."
              },
              "setTimelock((uint64,uint32))": {
                "notice": "Set the Timelock struct. Only callable by the contract owner."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol": {
        "IPrizeDistributionFactory": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_drawId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint256",
                  "name": "_totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "pushPrizeDistribution",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "pushPrizeDistribution(uint32,uint256)": "0348b076"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"_totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"pushPrizeDistribution\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol\":\"IPrizeDistributionFactory\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\ninterface IPrizeDistributionFactory {\\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x035644792635f46d3ce9878f2e6e19ce4b9c7eaafde336222ffb45889ff18e5d\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol": {
        "IReceiverTimelockTrigger": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IDrawBuffer",
                  "name": "drawBuffer",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IPrizeDistributionFactory",
                  "name": "prizeDistributionFactory",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "contract IDrawCalculatorTimelock",
                  "name": "timelock",
                  "type": "address"
                }
              ],
              "name": "Deployed",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "uint32",
                  "name": "drawId",
                  "type": "uint32"
                },
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "indexed": false,
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "DrawLockedPushedAndTotalNetworkTicketSupplyPushed",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "uint256",
                      "name": "winningRandomNumber",
                      "type": "uint256"
                    },
                    {
                      "internalType": "uint32",
                      "name": "drawId",
                      "type": "uint32"
                    },
                    {
                      "internalType": "uint64",
                      "name": "timestamp",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint64",
                      "name": "beaconPeriodStartedAt",
                      "type": "uint64"
                    },
                    {
                      "internalType": "uint32",
                      "name": "beaconPeriodSeconds",
                      "type": "uint32"
                    }
                  ],
                  "internalType": "struct IDrawBeacon.Draw",
                  "name": "draw",
                  "type": "tuple"
                },
                {
                  "internalType": "uint256",
                  "name": "totalNetworkTicketSupply",
                  "type": "uint256"
                }
              ],
              "name": "push",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "events": {
              "DrawLockedPushedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)": {
                "params": {
                  "draw": "Draw",
                  "drawId": "Draw ID",
                  "totalNetworkTicketSupply": "totalNetworkTicketSupply"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "details": "Restricts new draws for N seconds by forcing timelock on the next target draw id.",
                "params": {
                  "draw": "Draw",
                  "totalNetworkTicketSupply": "totalNetworkTicketSupply"
                }
              }
            },
            "title": "PoolTogether V4 IReceiverTimelockTrigger",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": "a913c9da"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IDrawBuffer\",\"name\":\"drawBuffer\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IPrizeDistributionFactory\",\"name\":\"prizeDistributionFactory\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IDrawCalculatorTimelock\",\"name\":\"timelock\",\"type\":\"address\"}],\"name\":\"Deployed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"indexed\":false,\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"DrawLockedPushedAndTotalNetworkTicketSupplyPushed\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"winningRandomNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint32\",\"name\":\"drawId\",\"type\":\"uint32\"},{\"internalType\":\"uint64\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"beaconPeriodStartedAt\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"beaconPeriodSeconds\",\"type\":\"uint32\"}],\"internalType\":\"struct IDrawBeacon.Draw\",\"name\":\"draw\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"totalNetworkTicketSupply\",\"type\":\"uint256\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"events\":{\"DrawLockedPushedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)\":{\"params\":{\"draw\":\"Draw\",\"drawId\":\"Draw ID\",\"totalNetworkTicketSupply\":\"totalNetworkTicketSupply\"}}},\"kind\":\"dev\",\"methods\":{\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"details\":\"Restricts new draws for N seconds by forcing timelock on the next target draw id.\",\"params\":{\"draw\":\"Draw\",\"totalNetworkTicketSupply\":\"totalNetworkTicketSupply\"}}},\"title\":\"PoolTogether V4 IReceiverTimelockTrigger\",\"version\":1},\"userdoc\":{\"events\":{\"Deployed(address,address,address)\":{\"notice\":\"Emitted when the contract is deployed.\"},\"DrawLockedPushedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\"}},\"kind\":\"user\",\"methods\":{\"push((uint256,uint32,uint64,uint64,uint32),uint256)\":{\"notice\":\"Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory.\"}},\"notice\":\"The IReceiverTimelockTrigger smart contract interface...\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol\":\"IReceiverTimelockTrigger\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n    /**\\n     * @dev Returns the amount of tokens in existence.\\n     */\\n    function totalSupply() external view returns (uint256);\\n\\n    /**\\n     * @dev Returns the amount of tokens owned by `account`.\\n     */\\n    function balanceOf(address account) external view returns (uint256);\\n\\n    /**\\n     * @dev Moves `amount` tokens from the caller's account to `recipient`.\\n     *\\n     * Returns a boolean value indicating whether the operation succeeded.\\n     *\\n     * Emits a {Transfer} event.\\n     */\\n    function transfer(address recipient, uint256 amount) 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 `amount` as the allowance of `spender` over the 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 amount) external returns (bool);\\n\\n    /**\\n     * @dev Moves `amount` tokens from `sender` to `recipient` using the\\n     * allowance mechanism. `amount` 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(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) external returns (bool);\\n\\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\",\"keccak256\":\"0x61437cb513a887a1bbad006e7b1c8b414478427d33de47c5600af3c748f108da\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../../../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    function safeTransfer(\\n        IERC20 token,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n    }\\n\\n    function safeTransferFrom(\\n        IERC20 token,\\n        address from,\\n        address to,\\n        uint256 value\\n    ) internal {\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n    }\\n\\n    /**\\n     * @dev Deprecated. This function has issues similar to the ones found in\\n     * {IERC20-approve}, and its usage is discouraged.\\n     *\\n     * Whenever possible, use {safeIncreaseAllowance} and\\n     * {safeDecreaseAllowance} instead.\\n     */\\n    function safeApprove(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        // safeApprove should only be called when setting an initial allowance,\\n        // or when resetting it to zero. To increase and decrease it, use\\n        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n        require(\\n            (value == 0) || (token.allowance(address(this), spender) == 0),\\n            \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n        );\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n    }\\n\\n    function safeIncreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        uint256 newAllowance = token.allowance(address(this), spender) + value;\\n        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\n    }\\n\\n    function safeDecreaseAllowance(\\n        IERC20 token,\\n        address spender,\\n        uint256 value\\n    ) internal {\\n        unchecked {\\n            uint256 oldAllowance = token.allowance(address(this), spender);\\n            require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n            uint256 newAllowance = oldAllowance - value;\\n            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));\\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, \\\"SafeERC20: low-level call failed\\\");\\n        if (returndata.length > 0) {\\n            // Return data is optional\\n            require(abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xc3d946432c0ddbb1f846a0d3985be71299df331b91d06732152117f62f0be2b5\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n    /**\\n     * @dev Returns true if `account` is a contract.\\n     *\\n     * [IMPORTANT]\\n     * ====\\n     * It is unsafe to assume that an address for which this function returns\\n     * false is an externally-owned account (EOA) and not a contract.\\n     *\\n     * Among others, `isContract` will return false for the following\\n     * types of addresses:\\n     *\\n     *  - an externally-owned account\\n     *  - a contract in construction\\n     *  - an address where a contract will be created\\n     *  - an address where a contract lived, but was destroyed\\n     * ====\\n     */\\n    function isContract(address account) internal view returns (bool) {\\n        // This method relies on extcodesize, which returns 0 for contracts in\\n        // construction, since the code is only stored at the end of the\\n        // constructor execution.\\n\\n        uint256 size;\\n        assembly {\\n            size := extcodesize(account)\\n        }\\n        return size > 0;\\n    }\\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n     */\\n    function sendValue(address payable recipient, uint256 amount) internal {\\n        require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n        (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n        require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\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, it is bubbled up by this\\n     * function (like regular Solidity function calls).\\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     * _Available since v3.1._\\n     */\\n    function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionCall(target, data, \\\"Address: low-level call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n     * `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, 0, errorMessage);\\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     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value\\n    ) internal returns (bytes memory) {\\n        return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n     * with `errorMessage` as a fallback revert reason when `target` reverts.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function functionCallWithValue(\\n        address target,\\n        bytes memory data,\\n        uint256 value,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n        require(isContract(target), \\\"Address: call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.call{value: value}(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n        return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a static call.\\n     *\\n     * _Available since v3.3._\\n     */\\n    function functionStaticCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal view returns (bytes memory) {\\n        require(isContract(target), \\\"Address: static call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.staticcall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n        return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n    }\\n\\n    /**\\n     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n     * but performing a delegate call.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function functionDelegateCall(\\n        address target,\\n        bytes memory data,\\n        string memory errorMessage\\n    ) internal returns (bytes memory) {\\n        require(isContract(target), \\\"Address: delegate call to non-contract\\\");\\n\\n        (bool success, bytes memory returndata) = target.delegatecall(data);\\n        return verifyCallResult(success, returndata, errorMessage);\\n    }\\n\\n    /**\\n     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\\n     * revert reason using the provided one.\\n     *\\n     * _Available since v4.3._\\n     */\\n    function verifyCallResult(\\n        bool success,\\n        bytes memory returndata,\\n        string memory errorMessage\\n    ) internal pure returns (bytes memory) {\\n        if (success) {\\n            return returndata;\\n        } else {\\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\\n                assembly {\\n                    let returndata_size := mload(returndata)\\n                    revert(add(32, returndata), returndata_size)\\n                }\\n            } else {\\n                revert(errorMessage);\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary SafeCast {\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 value) internal pure returns (uint224) {\\n        require(value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint128 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint128).\\n     *\\n     * Counterpart to Solidity's `uint128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     */\\n    function toUint128(uint256 value) internal pure returns (uint128) {\\n        require(value <= type(uint128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return uint128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint96 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint96).\\n     *\\n     * Counterpart to Solidity's `uint96` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 96 bits\\n     */\\n    function toUint96(uint256 value) internal pure returns (uint96) {\\n        require(value <= type(uint96).max, \\\"SafeCast: value doesn't fit in 96 bits\\\");\\n        return uint96(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint64 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint64).\\n     *\\n     * Counterpart to Solidity's `uint64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     */\\n    function toUint64(uint256 value) internal pure returns (uint64) {\\n        require(value <= type(uint64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return uint64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint32 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint32).\\n     *\\n     * Counterpart to Solidity's `uint32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     */\\n    function toUint32(uint256 value) internal pure returns (uint32) {\\n        require(value <= type(uint32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return uint32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint16 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint16).\\n     *\\n     * Counterpart to Solidity's `uint16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     */\\n    function toUint16(uint256 value) internal pure returns (uint16) {\\n        require(value <= type(uint16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return uint16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint8 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint8).\\n     *\\n     * Counterpart to Solidity's `uint8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     */\\n    function toUint8(uint256 value) internal pure returns (uint8) {\\n        require(value <= type(uint8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return uint8(value);\\n    }\\n\\n    /**\\n     * @dev Converts a signed int256 into an unsigned uint256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be greater than or equal to 0.\\n     */\\n    function toUint256(int256 value) internal pure returns (uint256) {\\n        require(value >= 0, \\\"SafeCast: value must be positive\\\");\\n        return uint256(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int128 from int256, reverting on\\n     * overflow (when the input is less than smallest int128 or\\n     * greater than largest int128).\\n     *\\n     * Counterpart to Solidity's `int128` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 128 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt128(int256 value) internal pure returns (int128) {\\n        require(value >= type(int128).min && value <= type(int128).max, \\\"SafeCast: value doesn't fit in 128 bits\\\");\\n        return int128(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int64 from int256, reverting on\\n     * overflow (when the input is less than smallest int64 or\\n     * greater than largest int64).\\n     *\\n     * Counterpart to Solidity's `int64` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 64 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt64(int256 value) internal pure returns (int64) {\\n        require(value >= type(int64).min && value <= type(int64).max, \\\"SafeCast: value doesn't fit in 64 bits\\\");\\n        return int64(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int32 from int256, reverting on\\n     * overflow (when the input is less than smallest int32 or\\n     * greater than largest int32).\\n     *\\n     * Counterpart to Solidity's `int32` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 32 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt32(int256 value) internal pure returns (int32) {\\n        require(value >= type(int32).min && value <= type(int32).max, \\\"SafeCast: value doesn't fit in 32 bits\\\");\\n        return int32(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int16 from int256, reverting on\\n     * overflow (when the input is less than smallest int16 or\\n     * greater than largest int16).\\n     *\\n     * Counterpart to Solidity's `int16` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 16 bits\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt16(int256 value) internal pure returns (int16) {\\n        require(value >= type(int16).min && value <= type(int16).max, \\\"SafeCast: value doesn't fit in 16 bits\\\");\\n        return int16(value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted int8 from int256, reverting on\\n     * overflow (when the input is less than smallest int8 or\\n     * greater than largest int8).\\n     *\\n     * Counterpart to Solidity's `int8` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 8 bits.\\n     *\\n     * _Available since v3.1._\\n     */\\n    function toInt8(int256 value) internal pure returns (int8) {\\n        require(value >= type(int8).min && value <= type(int8).max, \\\"SafeCast: value doesn't fit in 8 bits\\\");\\n        return int8(value);\\n    }\\n\\n    /**\\n     * @dev Converts an unsigned uint256 into a signed int256.\\n     *\\n     * Requirements:\\n     *\\n     * - input must be less than or equal to maxInt256.\\n     */\\n    function toInt256(uint256 value) internal pure returns (int256) {\\n        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive\\n        require(value <= uint256(type(int256).max), \\\"SafeCast: value doesn't fit in an int256\\\");\\n        return int256(value);\\n    }\\n}\\n\",\"keccak256\":\"0x5c6caab697d302ad7eb59c234a4d2dbc965c1bae87709bd2850060b7695b28c7\",\"license\":\"MIT\"},\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"./Ownable.sol\\\";\\n\\n/**\\n * @title Abstract manageable contract that can be inherited by other contracts\\n * @notice Contract module based on Ownable which provides a basic access control mechanism, where\\n * there is an owner and a manager that can be granted exclusive access to specific functions.\\n *\\n * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyManager`, which can be applied to your functions to restrict their use to\\n * the manager.\\n */\\nabstract contract Manageable is Ownable {\\n    address private _manager;\\n\\n    /**\\n     * @dev Emitted when `_manager` has been changed.\\n     * @param previousManager previous `_manager` address.\\n     * @param newManager new `_manager` address.\\n     */\\n    event ManagerTransferred(address indexed previousManager, address indexed newManager);\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Gets current `_manager`.\\n     * @return Current `_manager` address.\\n     */\\n    function manager() public view virtual returns (address) {\\n        return _manager;\\n    }\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @dev Throws if called by any account other than the owner.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function setManager(address _newManager) external onlyOwner returns (bool) {\\n        return _setManager(_newManager);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Set or change of manager.\\n     * @param _newManager New _manager address.\\n     * @return Boolean to indicate if the operation was successful or not.\\n     */\\n    function _setManager(address _newManager) private returns (bool) {\\n        address _previousManager = _manager;\\n\\n        require(_newManager != _previousManager, \\\"Manageable/existing-manager-address\\\");\\n\\n        _manager = _newManager;\\n\\n        emit ManagerTransferred(_previousManager, _newManager);\\n        return true;\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager.\\n     */\\n    modifier onlyManager() {\\n        require(manager() == msg.sender, \\\"Manageable/caller-not-manager\\\");\\n        _;\\n    }\\n\\n    /**\\n     * @dev Throws if called by any account other than the manager or the owner.\\n     */\\n    modifier onlyManagerOrOwner() {\\n        require(manager() == msg.sender || owner() == msg.sender, \\\"Manageable/caller-not-manager-or-owner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xdd8ac008df192c6aa4df83e7037ab090970fda38e1f9fd712bc0ab5e0485fc04\",\"license\":\"GPL-3.0\"},\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @title Abstract ownable contract that can be inherited by other contracts\\n * @notice 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 * By default, the owner is the deployer of the contract.\\n *\\n * The owner account is set through a two steps process.\\n *      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\\n *      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\\n *\\n * The manager account needs to be set using {setManager}.\\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 {\\n    address private _owner;\\n    address private _pendingOwner;\\n\\n    /**\\n     * @dev Emitted when `_pendingOwner` has been changed.\\n     * @param pendingOwner new `_pendingOwner` address.\\n     */\\n    event OwnershipOffered(address indexed pendingOwner);\\n\\n    /**\\n     * @dev Emitted when `_owner` has been changed.\\n     * @param previousOwner previous `_owner` address.\\n     * @param newOwner new `_owner` address.\\n     */\\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n    /* ============ Deploy ============ */\\n\\n    /**\\n     * @notice Initializes the contract setting `_initialOwner` as the initial owner.\\n     * @param _initialOwner Initial owner of the contract.\\n     */\\n    constructor(address _initialOwner) {\\n        _setOwner(_initialOwner);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /**\\n     * @notice Returns the address of the current owner.\\n     */\\n    function owner() public view virtual returns (address) {\\n        return _owner;\\n    }\\n\\n    /**\\n     * @notice Gets current `_pendingOwner`.\\n     * @return Current `_pendingOwner` address.\\n     */\\n    function pendingOwner() external view virtual returns (address) {\\n        return _pendingOwner;\\n    }\\n\\n    /**\\n     * @notice Renounce ownership of the contract.\\n     * @dev Leaves the contract without owner. It will not be possible to call\\n     * `onlyOwner` functions anymore. Can only be called by the current owner.\\n     *\\n     * NOTE: Renouncing ownership will leave the contract without an owner,\\n     * thereby removing any functionality that is only available to the owner.\\n     */\\n    function renounceOwnership() external virtual onlyOwner {\\n        _setOwner(address(0));\\n    }\\n\\n    /**\\n    * @notice Allows current owner to set the `_pendingOwner` address.\\n    * @param _newOwner Address to transfer ownership to.\\n    */\\n    function transferOwnership(address _newOwner) external onlyOwner {\\n        require(_newOwner != address(0), \\\"Ownable/pendingOwner-not-zero-address\\\");\\n\\n        _pendingOwner = _newOwner;\\n\\n        emit OwnershipOffered(_newOwner);\\n    }\\n\\n    /**\\n    * @notice Allows the `_pendingOwner` address to finalize the transfer.\\n    * @dev This function is only callable by the `_pendingOwner`.\\n    */\\n    function claimOwnership() external onlyPendingOwner {\\n        _setOwner(_pendingOwner);\\n        _pendingOwner = address(0);\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Internal function to set the `_owner` of the contract.\\n     * @param _newOwner New `_owner` address.\\n     */\\n    function _setOwner(address _newOwner) private {\\n        address _oldOwner = _owner;\\n        _owner = _newOwner;\\n        emit OwnershipTransferred(_oldOwner, _newOwner);\\n    }\\n\\n    /* ============ Modifier Functions ============ */\\n\\n    /**\\n     * @dev Throws if called by any account other than the owner.\\n     */\\n    modifier onlyOwner() {\\n        require(owner() == msg.sender, \\\"Ownable/caller-not-owner\\\");\\n        _;\\n    }\\n\\n    /**\\n    * @dev Throws if called by any account other than the `pendingOwner`.\\n    */\\n    modifier onlyPendingOwner() {\\n        require(msg.sender == _pendingOwner, \\\"Ownable/caller-not-pendingOwner\\\");\\n        _;\\n    }\\n}\\n\",\"keccak256\":\"0xfd0fd374812c8af45f2633cc7cc4811ccb7bad0a3902a43aded35939eb4a00d1\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Random Number Generator Interface\\n/// @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)\\ninterface RNGInterface {\\n\\n  /// @notice Emitted when a new request for a random number has been submitted\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param sender The indexed address of the sender of the request\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\n  /// @notice Emitted when an existing request for a random number has been completed\\n  /// @param requestId The indexed ID of the request used to get the results of the RNG service\\n  /// @param randomNumber The random number produced by the 3rd-party service\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\n  /// @notice Gets the last request id used by the RNG service\\n  /// @return requestId The last request id used in the last request\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\n  /// @notice Gets the Fee for making a Request against an RNG service\\n  /// @return feeToken The address of the token that is used to pay fees\\n  /// @return requestFee The fee required to be paid to make a request\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\n  /// @notice Sends a request for a random number to the 3rd-party service\\n  /// @dev Some services will complete the request immediately, others may have a time-delay\\n  /// @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\\n  /// @return requestId The ID of the request used to get the results of the RNG service\\n  /// @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\\n  /// should \\\"lock\\\" all activity until the result is available via the `requestId`\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\n  /// @notice Checks if the request for randomness from the 3rd-party service has completed\\n  /// @dev For time-delayed requests, this function is used to check/confirm completion\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return isCompleted True if the request has completed and a random number is available, false otherwise\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\n  /// @notice Gets the random number produced by the 3rd-party service\\n  /// @param requestId The ID of the request used to get the results of the RNG service\\n  /// @return randomNum The random number\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0xf917c68439d7476cd226f475e8fce940e0cf1d32cb0ff12e8537072a07f2b1da\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./libraries/DrawRingBufferLib.sol\\\";\\nimport \\\"./interfaces/IPrizeDistributionBuffer.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 PrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\\n            circular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\\n            ring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\\n            parameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\\n            validate the incoming parameters.\\n*/\\ncontract PrizeDistributionBuffer is IPrizeDistributionBuffer, Manageable {\\n    using DrawRingBufferLib for DrawRingBufferLib.Buffer;\\n\\n    /// @notice The maximum cardinality of the prize distribution ring buffer.\\n    /// @dev even with daily draws, 256 will give us over 8 months of history.\\n    uint256 internal constant MAX_CARDINALITY = 256;\\n\\n    /// @notice The ceiling for prize distributions.  1e9 = 100%.\\n    /// @dev It's fixed point 9 because 1e9 is the largest \\\"1\\\" that fits into 2**32\\n    uint256 internal constant TIERS_CEILING = 1e9;\\n\\n    /// @notice Emitted when the contract is deployed.\\n    /// @param cardinality The maximum number of records in the buffer before they begin to expire.\\n    event Deployed(uint8 cardinality);\\n\\n    /// @notice PrizeDistribution ring buffer history.\\n    IPrizeDistributionBuffer.PrizeDistribution[MAX_CARDINALITY]\\n        internal prizeDistributionRingBuffer;\\n\\n    /// @notice Ring buffer metadata (nextIndex, lastId, cardinality)\\n    DrawRingBufferLib.Buffer internal bufferMetadata;\\n\\n    /* ============ Constructor ============ */\\n\\n    /**\\n     * @notice Constructor for PrizeDistributionBuffer\\n     * @param _owner Address of the PrizeDistributionBuffer owner\\n     * @param _cardinality Cardinality of the `bufferMetadata`\\n     */\\n    constructor(address _owner, uint8 _cardinality) Ownable(_owner) {\\n        bufferMetadata.cardinality = _cardinality;\\n        emit Deployed(_cardinality);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getBufferCardinality() external view override returns (uint32) {\\n        return bufferMetadata.cardinality;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistribution(uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return _getPrizeDistribution(bufferMetadata, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributions(uint32[] calldata _drawIds)\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory)\\n    {\\n        uint256 drawIdsLength = _drawIds.length;\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        IPrizeDistributionBuffer.PrizeDistribution[]\\n            memory _prizeDistributions = new IPrizeDistributionBuffer.PrizeDistribution[](\\n                drawIdsLength\\n            );\\n\\n        for (uint256 i = 0; i < drawIdsLength; i++) {\\n            _prizeDistributions[i] = _getPrizeDistribution(buffer, _drawIds[i]);\\n        }\\n\\n        return _prizeDistributions;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getPrizeDistributionCount() external view override returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        if (buffer.lastDrawId == 0) {\\n            return 0;\\n        }\\n\\n        uint32 bufferNextIndex = buffer.nextIndex;\\n\\n        // If the buffer is full return the cardinality, else retun the nextIndex\\n        if (prizeDistributionRingBuffer[bufferNextIndex].matchCardinality != 0) {\\n            return buffer.cardinality;\\n        } else {\\n            return bufferNextIndex;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        return (prizeDistributionRingBuffer[buffer.getIndex(buffer.lastDrawId)], buffer.lastDrawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        override\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId)\\n    {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // if the ring buffer is full, the oldest is at the nextIndex\\n        prizeDistribution = prizeDistributionRingBuffer[buffer.nextIndex];\\n\\n        // The PrizeDistribution at index 0 IS by default the oldest prizeDistribution.\\n        if (buffer.lastDrawId == 0) {\\n            drawId = 0; // return 0 to indicate no prizeDistribution ring buffer history\\n        } else if (prizeDistribution.bitRangeSize == 0) {\\n            // IF the next PrizeDistribution.bitRangeSize == 0 the ring buffer HAS NOT looped around so the oldest is the first entry.\\n            prizeDistribution = prizeDistributionRingBuffer[0];\\n            drawId = (buffer.lastDrawId + 1) - buffer.nextIndex;\\n        } else {\\n            // Calculates the drawId using the ring buffer cardinality\\n            // Sequential drawIds are gauranteed by DrawRingBufferLib.push()\\n            drawId = (buffer.lastDrawId + 1) - buffer.cardinality;\\n        }\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyManagerOrOwner returns (bool) {\\n        return _pushPrizeDistribution(_drawId, _prizeDistribution);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributionBuffer\\n    function setPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) external override onlyOwner returns (uint32) {\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n        uint32 index = buffer.getIndex(_drawId);\\n        prizeDistributionRingBuffer[index] = _prizeDistribution;\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return _drawId;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param _buffer DrawRingBufferLib.Buffer\\n     * @param _drawId drawId\\n     */\\n    function _getPrizeDistribution(DrawRingBufferLib.Buffer memory _buffer, uint32 _drawId)\\n        internal\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory)\\n    {\\n        return prizeDistributionRingBuffer[_buffer.getIndex(_drawId)];\\n    }\\n\\n    /**\\n     * @notice Set newest PrizeDistributionBuffer in ring buffer storage.\\n     * @param _drawId       drawId\\n     * @param _prizeDistribution PrizeDistributionBuffer struct\\n     */\\n    function _pushPrizeDistribution(\\n        uint32 _drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata _prizeDistribution\\n    ) internal returns (bool) {\\n        require(_drawId > 0, \\\"DrawCalc/draw-id-gt-0\\\");\\n        require(_prizeDistribution.matchCardinality > 0, \\\"DrawCalc/matchCardinality-gt-0\\\");\\n        require(\\n            _prizeDistribution.bitRangeSize <= 256 / _prizeDistribution.matchCardinality,\\n            \\\"DrawCalc/bitRangeSize-too-large\\\"\\n        );\\n\\n        require(_prizeDistribution.bitRangeSize > 0, \\\"DrawCalc/bitRangeSize-gt-0\\\");\\n        require(_prizeDistribution.maxPicksPerUser > 0, \\\"DrawCalc/maxPicksPerUser-gt-0\\\");\\n        require(_prizeDistribution.expiryDuration > 0, \\\"DrawCalc/expiryDuration-gt-0\\\");\\n\\n        // ensure that the sum of the tiers are not gt 100%\\n        uint256 sumTotalTiers = 0;\\n        uint256 tiersLength = _prizeDistribution.tiers.length;\\n\\n        for (uint256 index = 0; index < tiersLength; index++) {\\n            uint256 tier = _prizeDistribution.tiers[index];\\n            sumTotalTiers += tier;\\n        }\\n\\n        // Each tier amount stored as uint32 - summed can't exceed 1e9\\n        require(sumTotalTiers <= TIERS_CEILING, \\\"DrawCalc/tiers-gt-100%\\\");\\n\\n        DrawRingBufferLib.Buffer memory buffer = bufferMetadata;\\n\\n        // store the PrizeDistribution in the ring buffer\\n        prizeDistributionRingBuffer[buffer.nextIndex] = _prizeDistribution;\\n\\n        // update the ring buffer data\\n        bufferMetadata = buffer.push(_drawId);\\n\\n        emit PrizeDistributionSet(_drawId, _prizeDistribution);\\n\\n        return true;\\n    }\\n}\\n\",\"keccak256\":\"0x8b533d030da432b4cadf34a930f5b445661cc0800c2081b7bffffa88f05cf043\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/PrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Ownable.sol\\\";\\n\\nimport \\\"./interfaces/IPrizeDistributor.sol\\\";\\nimport \\\"./interfaces/IDrawCalculator.sol\\\";\\n\\n/**\\n    * @title  PoolTogether V4 PrizeDistributor\\n    * @author PoolTogether Inc Team\\n    * @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\\n              PrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \\n              from reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\\n              if an \\\"optimal\\\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\\n              the previous prize distributor claim payout.\\n*/\\ncontract PrizeDistributor is IPrizeDistributor, Ownable {\\n    using SafeERC20 for IERC20;\\n\\n    /* ============ Global Variables ============ */\\n\\n    /// @notice DrawCalculator address\\n    IDrawCalculator internal drawCalculator;\\n\\n    /// @notice Token address\\n    IERC20 internal immutable token;\\n\\n    /// @notice Maps users => drawId => paid out balance\\n    mapping(address => mapping(uint256 => uint256)) internal userDrawPayouts;\\n\\n    /* ============ Initialize ============ */\\n\\n    /**\\n     * @notice Initialize PrizeDistributor smart contract.\\n     * @param _owner          Owner address\\n     * @param _token          Token address\\n     * @param _drawCalculator DrawCalculator address\\n     */\\n    constructor(\\n        address _owner,\\n        IERC20 _token,\\n        IDrawCalculator _drawCalculator\\n    ) Ownable(_owner) {\\n        _setDrawCalculator(_drawCalculator);\\n        require(address(_token) != address(0), \\\"PrizeDistributor/token-not-zero-address\\\");\\n        token = _token;\\n        emit TokenSet(_token);\\n    }\\n\\n    /* ============ External Functions ============ */\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function claim(\\n        address _user,\\n        uint32[] calldata _drawIds,\\n        bytes calldata _data\\n    ) external override returns (uint256) {\\n        \\n        uint256 totalPayout;\\n        \\n        (uint256[] memory drawPayouts, ) = drawCalculator.calculate(_user, _drawIds, _data); // neglect the prizeCounts since we are not interested in them here\\n\\n        uint256 drawPayoutsLength = drawPayouts.length;\\n        for (uint256 payoutIndex = 0; payoutIndex < drawPayoutsLength; payoutIndex++) {\\n            uint32 drawId = _drawIds[payoutIndex];\\n            uint256 payout = drawPayouts[payoutIndex];\\n            uint256 oldPayout = _getDrawPayoutBalanceOf(_user, drawId);\\n            uint256 payoutDiff = 0;\\n\\n            // helpfully short-circuit, in case the user screwed something up.\\n            require(payout > oldPayout, \\\"PrizeDistributor/zero-payout\\\");\\n\\n            unchecked {\\n                payoutDiff = payout - oldPayout;\\n            }\\n\\n            _setDrawPayoutBalanceOf(_user, drawId, payout);\\n\\n            totalPayout += payoutDiff;\\n\\n            emit ClaimedDraw(_user, drawId, payoutDiff);\\n        }\\n\\n        _awardPayout(_user, totalPayout);\\n\\n        return totalPayout;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function withdrawERC20(\\n        IERC20 _erc20Token,\\n        address _to,\\n        uint256 _amount\\n    ) external override onlyOwner returns (bool) {\\n        require(_to != address(0), \\\"PrizeDistributor/recipient-not-zero-address\\\");\\n        require(address(_erc20Token) != address(0), \\\"PrizeDistributor/ERC20-not-zero-address\\\");\\n\\n        _erc20Token.safeTransfer(_to, _amount);\\n\\n        emit ERC20Withdrawn(_erc20Token, _to, _amount);\\n\\n        return true;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawCalculator() external view override returns (IDrawCalculator) {\\n        return drawCalculator;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        external\\n        view\\n        override\\n        returns (uint256)\\n    {\\n        return _getDrawPayoutBalanceOf(_user, _drawId);\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function getToken() external view override returns (IERC20) {\\n        return token;\\n    }\\n\\n    /// @inheritdoc IPrizeDistributor\\n    function setDrawCalculator(IDrawCalculator _newCalculator)\\n        external\\n        override\\n        onlyOwner\\n        returns (IDrawCalculator)\\n    {\\n        _setDrawCalculator(_newCalculator);\\n        return _newCalculator;\\n    }\\n\\n    /* ============ Internal Functions ============ */\\n\\n    function _getDrawPayoutBalanceOf(address _user, uint32 _drawId)\\n        internal\\n        view\\n        returns (uint256)\\n    {\\n        return userDrawPayouts[_user][_drawId];\\n    }\\n\\n    function _setDrawPayoutBalanceOf(\\n        address _user,\\n        uint32 _drawId,\\n        uint256 _payout\\n    ) internal {\\n        userDrawPayouts[_user][_drawId] = _payout;\\n    }\\n\\n    /**\\n     * @notice Sets DrawCalculator reference for individual draw id.\\n     * @param _newCalculator  DrawCalculator address\\n     */\\n    function _setDrawCalculator(IDrawCalculator _newCalculator) internal {\\n        require(address(_newCalculator) != address(0), \\\"PrizeDistributor/calc-not-zero\\\");\\n        drawCalculator = _newCalculator;\\n\\n        emit DrawCalculatorSet(_newCalculator);\\n    }\\n\\n    /**\\n     * @notice Transfer claimed draw(s) total payout to user.\\n     * @param _to      User address\\n     * @param _amount  Transfer amount\\n     */\\n    function _awardPayout(address _to, uint256 _amount) internal {\\n        token.safeTransfer(_to, _amount);\\n    }\\n\\n}\\n\",\"keccak256\":\"0x7bd257c0546ac7d12892e37a58c92ad7b18699e14c18c79ab7f455c904a03226\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/** @title IControlledToken\\n  * @author PoolTogether Inc Team\\n  * @notice ERC20 Tokens with a controller for minting & burning.\\n*/\\ninterface IControlledToken is IERC20 {\\n\\n    /** \\n        @notice Interface to the contract responsible for controlling mint/burn\\n    */\\n    function controller() external view returns (address);\\n\\n    /** \\n      * @notice Allows the controller to mint tokens for a user account\\n      * @dev May be overridden to provide more granular control over minting\\n      * @param user Address of the receiver of the minted tokens\\n      * @param amount Amount of tokens to mint\\n    */\\n    function controllerMint(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows the controller to burn tokens from a user account\\n      * @dev May be overridden to provide more granular control over burning\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurn(address user, uint256 amount) external;\\n\\n    /** \\n      * @notice Allows an operator via the controller to burn tokens on behalf of a user account\\n      * @dev May be overridden to provide more granular control over operator-burning\\n      * @param operator Address of the operator performing the burn action via the controller contract\\n      * @param user Address of the holder account to burn tokens from\\n      * @param amount Amount of tokens to burn\\n    */\\n    function controllerBurnFrom(\\n        address operator,\\n        address user,\\n        uint256 amount\\n    ) external;\\n}\\n\",\"keccak256\":\"0x90dceeec1eea6e49021e8db88b084f3f0c503c60b6f7e0bbecd2529ffde87ef3\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\n\\n/** @title  IDrawBeacon\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBeacon interface.\\n*/\\ninterface IDrawBeacon {\\n\\n    /// @notice Draw struct created every draw\\n    /// @param winningRandomNumber The random number returned from the RNG service\\n    /// @param drawId The monotonically increasing drawId for each draw\\n    /// @param timestamp Unix timestamp of the draw. Recorded when the draw is created by the DrawBeacon.\\n    /// @param beaconPeriodStartedAt Unix timestamp of when the draw started\\n    /// @param beaconPeriodSeconds Unix timestamp of the beacon draw period for this draw.\\n    struct Draw {\\n        uint256 winningRandomNumber;\\n        uint32 drawId;\\n        uint64 timestamp;\\n        uint64 beaconPeriodStartedAt;\\n        uint32 beaconPeriodSeconds;\\n    }\\n\\n    /**\\n     * @notice Emit when a new DrawBuffer has been set.\\n     * @param newDrawBuffer       The new DrawBuffer address\\n     */\\n    event DrawBufferUpdated(IDrawBuffer indexed newDrawBuffer);\\n\\n    /**\\n     * @notice Emit when a draw has opened.\\n     * @param startedAt Start timestamp\\n     */\\n    event BeaconPeriodStarted(uint64 indexed startedAt);\\n\\n    /**\\n     * @notice Emit when a draw has started.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawStarted(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been cancelled.\\n     * @param rngRequestId  draw id\\n     * @param rngLockBlock  Block when draw becomes invalid\\n     */\\n    event DrawCancelled(uint32 indexed rngRequestId, uint32 rngLockBlock);\\n\\n    /**\\n     * @notice Emit when a draw has been completed.\\n     * @param randomNumber  Random number generated from draw\\n     */\\n    event DrawCompleted(uint256 randomNumber);\\n\\n    /**\\n     * @notice Emit when a RNG service address is set.\\n     * @param rngService  RNG service address\\n     */\\n    event RngServiceUpdated(RNGInterface indexed rngService);\\n\\n    /**\\n     * @notice Emit when a draw timeout param is set.\\n     * @param rngTimeout  draw timeout param in seconds\\n     */\\n    event RngTimeoutSet(uint32 rngTimeout);\\n\\n    /**\\n     * @notice Emit when the drawPeriodSeconds is set.\\n     * @param drawPeriodSeconds Time between draw\\n     */\\n    event BeaconPeriodSecondsUpdated(uint32 drawPeriodSeconds);\\n\\n    /**\\n     * @notice Returns the number of seconds remaining until the beacon period can be complete.\\n     * @return The number of seconds remaining until the beacon period can be complete.\\n     */\\n    function beaconPeriodRemainingSeconds() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns the timestamp at which the beacon period ends\\n     * @return The timestamp at which the beacon period ends.\\n     */\\n    function beaconPeriodEndAt() external view returns (uint64);\\n\\n    /**\\n     * @notice Returns whether a Draw can be started.\\n     * @return True if a Draw can be started, false otherwise.\\n     */\\n    function canStartDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a Draw can be completed.\\n     * @return True if a Draw can be completed, false otherwise.\\n     */\\n    function canCompleteDraw() external view returns (bool);\\n\\n    /**\\n     * @notice Calculates when the next beacon period will start.\\n     * @param time The timestamp to use as the current time\\n     * @return The timestamp at which the next beacon period would start\\n     */\\n    function calculateNextBeaconPeriodStartTime(uint64 time) external view returns (uint64);\\n\\n    /**\\n     * @notice Can be called by anyone to cancel the draw request if the RNG has timed out.\\n     */\\n    function cancelDraw() external;\\n\\n    /**\\n     * @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer.\\n     */\\n    function completeDraw() external;\\n\\n    /**\\n     * @notice Returns the block number that the current RNG request has been locked to.\\n     * @return The block number that the RNG request is locked to\\n     */\\n    function getLastRngLockBlock() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns the current RNG Request ID.\\n     * @return The current Request ID\\n     */\\n    function getLastRngRequestId() external view returns (uint32);\\n\\n    /**\\n     * @notice Returns whether the beacon period is over\\n     * @return True if the beacon period is over, false otherwise\\n     */\\n    function isBeaconPeriodOver() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has completed.\\n     * @return True if a random number request has completed, false otherwise.\\n     */\\n    function isRngCompleted() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether a random number has been requested\\n     * @return True if a random number has been requested, false otherwise.\\n     */\\n    function isRngRequested() external view returns (bool);\\n\\n    /**\\n     * @notice Returns whether the random number request has timed out.\\n     * @return True if a random number request has timed out, false otherwise.\\n     */\\n    function isRngTimedOut() external view returns (bool);\\n\\n    /**\\n     * @notice Allows the owner to set the beacon period in seconds.\\n     * @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero.\\n     */\\n    function setBeaconPeriodSeconds(uint32 beaconPeriodSeconds) external;\\n\\n    /**\\n     * @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\\n     * @param rngTimeout The RNG request timeout in seconds.\\n     */\\n    function setRngTimeout(uint32 rngTimeout) external;\\n\\n    /**\\n     * @notice Sets the RNG service that the Prize Strategy is connected to\\n     * @param rngService The address of the new RNG service interface\\n     */\\n    function setRngService(RNGInterface rngService) external;\\n\\n    /**\\n     * @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\\n     * @dev The RNG-Request-Fee is expected to be held within this contract before calling this function\\n     */\\n    function startDraw() external;\\n\\n    /**\\n     * @notice Set global DrawBuffer variable.\\n     * @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\\n     * @param newDrawBuffer DrawBuffer address\\n     * @return DrawBuffer\\n     */\\n    function setDrawBuffer(IDrawBuffer newDrawBuffer) external returns (IDrawBuffer);\\n}\\n\",\"keccak256\":\"0x43213073a191399978af2c7464c5e39af09efeeb503005d4e2a79705c40baa32\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../interfaces/IDrawBeacon.sol\\\";\\n\\n/** @title  IDrawBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The DrawBuffer interface.\\n*/\\ninterface IDrawBuffer {\\n    /**\\n     * @notice Emit when a new draw has been created.\\n     * @param drawId Draw id\\n     * @param draw The Draw struct\\n     */\\n    event DrawSet(uint32 indexed drawId, IDrawBeacon.Draw draw);\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read a Draw from the draws ring buffer.\\n     * @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\\n     * @param drawId Draw.drawId\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getDraw(uint32 drawId) external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read multiple Draws from the draws ring buffer.\\n     * @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\\n     * @param drawIds Array of drawIds\\n     * @return IDrawBeacon.Draw[]\\n     */\\n    function getDraws(uint32[] calldata drawIds) external view returns (IDrawBeacon.Draw[] memory);\\n\\n    /**\\n     * @notice Gets the number of Draws held in the draw ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestDraw index + 1.\\n     * @return Number of Draws held in the draw ring buffer.\\n     */\\n    function getDrawCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest Draw from draws ring buffer.\\n     * @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getNewestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Read oldest Draw from draws ring buffer.\\n     * @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\\n     * @return IDrawBeacon.Draw\\n     */\\n    function getOldestDraw() external view returns (IDrawBeacon.Draw memory);\\n\\n    /**\\n     * @notice Push Draw onto draws ring buffer history.\\n     * @dev    Push new draw onto draws history via authorized manager or owner.\\n     * @param draw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function pushDraw(IDrawBeacon.Draw calldata draw) external returns (uint32);\\n\\n    /**\\n     * @notice Set existing Draw in draws ring buffer with new parameters.\\n     * @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\\n     * @param newDraw IDrawBeacon.Draw\\n     * @return Draw.drawId\\n     */\\n    function setDraw(IDrawBeacon.Draw calldata newDraw) external returns (uint32);\\n}\\n\",\"keccak256\":\"0x209ff20406b6b45ff5eff40af05c41a5d697441fc84e2e015e6828d874ccaa83\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ITicket.sol\\\";\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"../PrizeDistributionBuffer.sol\\\";\\nimport \\\"../PrizeDistributor.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IDrawCalculator\\n * @author PoolTogether Inc Team\\n * @notice The DrawCalculator interface.\\n */\\ninterface IDrawCalculator {\\n    struct PickPrize {\\n        bool won;\\n        uint8 tierIndex;\\n    }\\n\\n    ///@notice Emitted when the contract is initialized\\n    event Deployed(\\n        ITicket indexed ticket,\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionBuffer indexed prizeDistributionBuffer\\n    );\\n\\n    ///@notice Emitted when the prizeDistributor is set/updated\\n    event PrizeDistributorSet(PrizeDistributor indexed prizeDistributor);\\n\\n    /**\\n     * @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\\n     * @param user User for which to calculate prize amount.\\n     * @param drawIds drawId array for which to calculate prize amounts for.\\n     * @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\\n     * @return List of awardable prize amounts ordered by drawId.\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getDrawBuffer() external view returns (IDrawBuffer);\\n\\n    /**\\n     * @notice Read global DrawBuffer variable.\\n     * @return IDrawBuffer\\n     */\\n    function getPrizeDistributionBuffer() external view returns (IPrizeDistributionBuffer);\\n\\n    /**\\n     * @notice Returns a users balances expressed as a fraction of the total supply over time.\\n     * @param user The users address\\n     * @param drawIds The drawsId to consider\\n     * @return Array of balances\\n     */\\n    function getNormalizedBalancesForDrawIds(address user, uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n}\\n\",\"keccak256\":\"0x1897ded29f0c26ea17cbb8b80b0859c3afe0dc01e3c45a916e2e210fca9cd801\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title  IPrizeDistributionBuffer\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributionBuffer interface.\\n*/\\ninterface IPrizeDistributionBuffer {\\n\\n    ///@notice PrizeDistribution struct created every draw\\n    ///@param bitRangeSize Decimal representation of bitRangeSize\\n    ///@param matchCardinality The number of numbers to consider in the 256 bit random number. Must be > 1 and < 256/bitRangeSize.\\n    ///@param startTimestampOffset The starting time offset in seconds from which Ticket balances are calculated.\\n    ///@param endTimestampOffset The end time offset in seconds from which Ticket balances are calculated.\\n    ///@param maxPicksPerUser Maximum number of picks a user can make in this draw\\n    ///@param expiryDuration Length of time in seconds the PrizeDistribution is valid for. Relative to the Draw.timestamp.\\n    ///@param numberOfPicks Number of picks this draw has (may vary across networks according to how much the network has contributed to the Reserve)\\n    ///@param tiers Array of prize tiers percentages, expressed in fraction form with base 1e9. Ordering: index0: grandPrize, index1: runnerUp, etc.\\n    ///@param prize Total prize amount available in this draw calculator for this draw (may vary from across networks)\\n    struct PrizeDistribution {\\n        uint8 bitRangeSize;\\n        uint8 matchCardinality;\\n        uint32 startTimestampOffset;\\n        uint32 endTimestampOffset;\\n        uint32 maxPicksPerUser;\\n        uint32 expiryDuration;\\n        uint104 numberOfPicks;\\n        uint32[16] tiers;\\n        uint256 prize;\\n    }\\n\\n    /**\\n     * @notice Emit when PrizeDistribution is set.\\n     * @param drawId       Draw id\\n     * @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution\\n     */\\n    event PrizeDistributionSet(\\n        uint32 indexed drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution prizeDistribution\\n    );\\n\\n    /**\\n     * @notice Read a ring buffer cardinality\\n     * @return Ring buffer cardinality\\n     */\\n    function getBufferCardinality() external view returns (uint32);\\n\\n    /**\\n     * @notice Read newest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getNewestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Read oldest PrizeDistribution from prize distributions ring buffer.\\n     * @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\\n     * @return prizeDistribution\\n     * @return drawId\\n     */\\n    function getOldestPrizeDistribution()\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution, uint32 drawId);\\n\\n    /**\\n     * @notice Gets PrizeDistribution list from array of drawIds\\n     * @param drawIds drawIds to get PrizeDistribution for\\n     * @return prizeDistributionList\\n     */\\n    function getPrizeDistributions(uint32[] calldata drawIds)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution[] memory);\\n\\n    /**\\n     * @notice Gets the PrizeDistributionBuffer for a drawId\\n     * @param drawId drawId\\n     * @return prizeDistribution\\n     */\\n    function getPrizeDistribution(uint32 drawId)\\n        external\\n        view\\n        returns (IPrizeDistributionBuffer.PrizeDistribution memory);\\n\\n    /**\\n     * @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\\n     * @dev If no Draws have been pushed, it will return 0.\\n     * @dev If the ring buffer is full, it will return the cardinality.\\n     * @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\\n     * @return Number of PrizeDistributions stored in the prize distributions ring buffer.\\n     */\\n    function getPrizeDistributionCount() external view returns (uint32);\\n\\n    /**\\n     * @notice Adds new PrizeDistribution record to ring buffer storage.\\n     * @dev    Only callable by the owner or manager\\n     * @param drawId            Draw ID linked to PrizeDistribution parameters\\n     * @param prizeDistribution PrizeDistribution parameters struct\\n     */\\n    function pushPrizeDistribution(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata prizeDistribution\\n    ) external returns (bool);\\n\\n    /**\\n     * @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\\n     * @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \\\"safety\\\"\\n               fallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\\n               the invalid parameters with correct parameters.\\n     * @return drawId\\n     */\\n    function setPrizeDistribution(uint32 drawId, IPrizeDistributionBuffer.PrizeDistribution calldata draw)\\n        external\\n        returns (uint32);\\n}\\n\",\"keccak256\":\"0xf663c4749b6f02485e10a76369a0dc775f18014ba7755b9f0bca0ae5cb1afe77\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\nimport \\\"./IDrawBuffer.sol\\\";\\nimport \\\"./IDrawCalculator.sol\\\";\\n\\n/** @title  IPrizeDistributor\\n  * @author PoolTogether Inc Team\\n  * @notice The PrizeDistributor interface.\\n*/\\ninterface IPrizeDistributor {\\n\\n    /**\\n     * @notice Emit when user has claimed token from the PrizeDistributor.\\n     * @param user   User address receiving draw claim payouts\\n     * @param drawId Draw id that was paid out\\n     * @param payout Payout for draw\\n     */\\n    event ClaimedDraw(address indexed user, uint32 indexed drawId, uint256 payout);\\n\\n    /**\\n     * @notice Emit when DrawCalculator is set.\\n     * @param calculator DrawCalculator address\\n     */\\n    event DrawCalculatorSet(IDrawCalculator indexed calculator);\\n\\n    /**\\n     * @notice Emit when Token is set.\\n     * @param token Token address\\n     */\\n    event TokenSet(IERC20 indexed token);\\n\\n    /**\\n     * @notice Emit when ERC20 tokens are withdrawn.\\n     * @param token  ERC20 token transferred.\\n     * @param to     Address that received funds.\\n     * @param amount Amount of tokens transferred.\\n     */\\n    event ERC20Withdrawn(IERC20 indexed token, address indexed to, uint256 amount);\\n\\n    /**\\n     * @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\\n               is used as the \\\"seed\\\" phrase to generate random numbers.\\n     * @dev    The claim function is public and any wallet may execute claim on behalf of another user.\\n               Prizes are always paid out to the designated user account and not the caller (msg.sender).\\n               Claiming prizes is not limited to a single transaction. Reclaiming can be executed\\n               subsequentially if an \\\"optimal\\\" prize was not included in previous claim pick indices. The\\n               payout difference for the new claim is calculated during the award process and transfered to user.\\n     * @param user    Address of user to claim awards for. Does NOT need to be msg.sender\\n     * @param drawIds Draw IDs from global DrawBuffer reference\\n     * @param data    The data to pass to the draw calculator\\n     * @return Total claim payout. May include calcuations from multiple draws.\\n     */\\n    function claim(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external returns (uint256);\\n\\n    /**\\n        * @notice Read global DrawCalculator address.\\n        * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Get the amount that a user has already been paid out for a draw\\n        * @param user   User address\\n        * @param drawId Draw ID\\n     */\\n    function getDrawPayoutBalanceOf(address user, uint32 drawId) external view returns (uint256);\\n\\n    /**\\n        * @notice Read global Ticket address.\\n        * @return IERC20\\n     */\\n    function getToken() external view returns (IERC20);\\n\\n    /**\\n        * @notice Sets DrawCalculator reference contract.\\n        * @param newCalculator DrawCalculator address\\n        * @return New DrawCalculator address\\n     */\\n    function setDrawCalculator(IDrawCalculator newCalculator) external returns (IDrawCalculator);\\n\\n    /**\\n        * @notice Transfer ERC20 tokens out of contract to recipient address.\\n        * @dev    Only callable by contract owner.\\n        * @param token  ERC20 token to transfer.\\n        * @param to     Recipient of the tokens.\\n        * @param amount Amount of tokens to transfer.\\n        * @return true if operation is successful.\\n    */\\n    function withdrawERC20(\\n        IERC20 token,\\n        address to,\\n        uint256 amount\\n    ) external returns (bool);\\n}\\n\",\"keccak256\":\"0x98f9ff8388e7fd867e89b19469e02fc381fd87ef534cf71eef4e2fb3e4d32fa1\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"../libraries/TwabLib.sol\\\";\\nimport \\\"./IControlledToken.sol\\\";\\n\\ninterface ITicket is IControlledToken {\\n    /**\\n     * @notice A struct containing details for an Account.\\n     * @param balance The current balance for an Account.\\n     * @param nextTwabIndex The next available index to store a new twab.\\n     * @param cardinality The number of recorded twabs (plus one!).\\n     */\\n    struct AccountDetails {\\n        uint224 balance;\\n        uint16 nextTwabIndex;\\n        uint16 cardinality;\\n    }\\n\\n    /**\\n     * @notice Combines account details with their twab history.\\n     * @param details The account details.\\n     * @param twabs The history of twabs for this account.\\n     */\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[65535] twabs;\\n    }\\n\\n    /**\\n     * @notice Emitted when TWAB balance has been delegated to another user.\\n     * @param delegator Address of the delegator.\\n     * @param delegate Address of the delegate.\\n     */\\n    event Delegated(address indexed delegator, address indexed delegate);\\n\\n    /**\\n     * @notice Emitted when ticket is initialized.\\n     * @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\\n     * @param symbol Ticket symbol (eg: PcDAI).\\n     * @param decimals Ticket decimals.\\n     * @param controller Token controller address.\\n     */\\n    event TicketInitialized(string name, string symbol, uint8 decimals, address indexed controller);\\n\\n    /**\\n     * @notice Emitted when a new TWAB has been recorded.\\n     * @param delegate The recipient of the ticket power (may be the same as the user).\\n     * @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording.\\n     */\\n    event NewUserTwab(\\n        address indexed delegate,\\n        ObservationLib.Observation newTwab\\n    );\\n\\n    /**\\n     * @notice Emitted when a new total supply TWAB has been recorded.\\n     * @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording.\\n     */\\n    event NewTotalSupplyTwab(ObservationLib.Observation newTotalSupplyTwab);\\n\\n    /**\\n     * @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\\n     * @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\\n     * @param user Address of the delegator.\\n     * @return Address of the delegate.\\n     */\\n    function delegateOf(address user) external view returns (address);\\n\\n    /**\\n    * @notice Delegate time-weighted average balances to an alternative address.\\n    * @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\\n              targetted sender and/or recipient address(s).\\n    * @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\\n    * @dev Current delegate address should be different from the new delegate address `to`.\\n    * @param  to Recipient of delegated TWAB.\\n    */\\n    function delegate(address to) external;\\n\\n    /**\\n     * @notice Allows the controller to delegate on a users behalf.\\n     * @param user The user for whom to delegate\\n     * @param delegate The new delegate\\n     */\\n    function controllerDelegateFor(address user, address delegate) external;\\n\\n    /**\\n     * @notice Allows a user to delegate via signature\\n     * @param user The user who is delegating\\n     * @param delegate The new delegate\\n     * @param deadline The timestamp by which this must be submitted\\n     * @param v The v portion of the ECDSA sig\\n     * @param r The r portion of the ECDSA sig\\n     * @param s The s portion of the ECDSA sig\\n     */\\n    function delegateWithSignature(\\n        address user,\\n        address delegate,\\n        uint256 deadline,\\n        uint8 v,\\n        bytes32 r,\\n        bytes32 s\\n    ) external;\\n\\n    /**\\n     * @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\\n     * @param user The user for whom to fetch the TWAB context.\\n     * @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }\\n     */\\n    function getAccountDetails(address user) external view returns (TwabLib.AccountDetails memory);\\n\\n    /**\\n     * @notice Gets the TWAB at a specific index for a user.\\n     * @param user The user for whom to fetch the TWAB.\\n     * @param index The index of the TWAB to fetch.\\n     * @return The TWAB, which includes the twab amount and the timestamp.\\n     */\\n    function getTwab(address user, uint16 index)\\n        external\\n        view\\n        returns (ObservationLib.Observation memory);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balance.\\n     * @param user Address of the user whose TWAB is being fetched.\\n     * @param timestamp Timestamp at which we want to retrieve the TWAB balance.\\n     * @return The TWAB balance at the given timestamp.\\n     */\\n    function getBalanceAt(address user, uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves `user` TWAB balances.\\n     * @param user Address of the user whose TWABs are being fetched.\\n     * @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\\n     * @return `user` TWAB balances.\\n     */\\n    function getBalancesAt(address user, uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average balance held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTime The start time of the time frame.\\n     * @param endTime The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalanceBetween(\\n        address user,\\n        uint64 startTime,\\n        uint64 endTime\\n    ) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the average balances held by a user for a given time frame.\\n     * @param user The user whose balance is checked.\\n     * @param startTimes The start time of the time frame.\\n     * @param endTimes The end time of the time frame.\\n     * @return The average balance that the user held during the time frame.\\n     */\\n    function getAverageBalancesBetween(\\n        address user,\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance at the given timestamp.\\n     * @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\\n     * @return The total supply TWAB balance at the given timestamp.\\n     */\\n    function getTotalSupplyAt(uint64 timestamp) external view returns (uint256);\\n\\n    /**\\n     * @notice Retrieves the total supply TWAB balance between the given timestamps range.\\n     * @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\\n     * @return Total supply TWAB balances.\\n     */\\n    function getTotalSuppliesAt(uint64[] calldata timestamps)\\n        external\\n        view\\n        returns (uint256[] memory);\\n\\n    /**\\n     * @notice Retrieves the average total supply balance for a set of given time frames.\\n     * @param startTimes Array of start times.\\n     * @param endTimes Array of end times.\\n     * @return The average total supplies held during the time frame.\\n     */\\n    function getAverageTotalSuppliesBetween(\\n        uint64[] calldata startTimes,\\n        uint64[] calldata endTimes\\n    ) external view returns (uint256[] memory);\\n}\\n\",\"keccak256\":\"0xb9f6423a8a9c7394941cb84723b82cc66c5f815d689dc0562e612ae4d9f1cc27\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/// @title Library for creating and managing a draw ring buffer.\\nlibrary DrawRingBufferLib {\\n    /// @notice Draw buffer struct.\\n    struct Buffer {\\n        uint32 lastDrawId;\\n        uint32 nextIndex;\\n        uint32 cardinality;\\n    }\\n\\n    /// @notice Helper function to know if the draw ring buffer has been initialized.\\n    /// @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\\n    /// @param _buffer The buffer to check.\\n    function isInitialized(Buffer memory _buffer) internal pure returns (bool) {\\n        return !(_buffer.nextIndex == 0 && _buffer.lastDrawId == 0);\\n    }\\n\\n    /// @notice Push a draw to the buffer.\\n    /// @param _buffer The buffer to push to.\\n    /// @param _drawId The drawID to push.\\n    /// @return The new buffer.\\n    function push(Buffer memory _buffer, uint32 _drawId) internal pure returns (Buffer memory) {\\n        require(!isInitialized(_buffer) || _drawId == _buffer.lastDrawId + 1, \\\"DRB/must-be-contig\\\");\\n\\n        return\\n            Buffer({\\n                lastDrawId: _drawId,\\n                nextIndex: uint32(RingBufferLib.nextIndex(_buffer.nextIndex, _buffer.cardinality)),\\n                cardinality: _buffer.cardinality\\n            });\\n    }\\n\\n    /// @notice Get draw ring buffer index pointer.\\n    /// @param _buffer The buffer to get the `nextIndex` from.\\n    /// @param _drawId The draw id to get the index for.\\n    /// @return The draw ring buffer index pointer.\\n    function getIndex(Buffer memory _buffer, uint32 _drawId) internal pure returns (uint32) {\\n        require(isInitialized(_buffer) && _drawId <= _buffer.lastDrawId, \\\"DRB/future-draw\\\");\\n\\n        uint32 indexOffset = _buffer.lastDrawId - _drawId;\\n        require(indexOffset < _buffer.cardinality, \\\"DRB/expired-draw\\\");\\n\\n        uint256 mostRecent = RingBufferLib.newestIndex(_buffer.nextIndex, _buffer.cardinality);\\n\\n        return uint32(RingBufferLib.offset(uint32(mostRecent), indexOffset, _buffer.cardinality));\\n    }\\n}\\n\",\"keccak256\":\"0xdcf6f0b0a5c176e505dcd284d1f160fcd5b4c6ba5868047935de3cd1a41fe675\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\\n * checks.\\n *\\n * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\\n * easily result in undesired exploitation or bugs, since developers usually\\n * assume that overflows raise errors. `SafeCast` restores this intuition by\\n * reverting the transaction when such an operation overflows.\\n *\\n * Using this library instead of the unchecked operations eliminates an entire\\n * class of bugs, so it's recommended to use it always.\\n *\\n * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\\n * all math on `uint256` and `int256` and then downcasting.\\n */\\nlibrary ExtendedSafeCastLib {\\n\\n    /**\\n     * @dev Returns the downcasted uint104 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint104).\\n     *\\n     * Counterpart to Solidity's `uint104` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 104 bits\\n     */\\n    function toUint104(uint256 _value) internal pure returns (uint104) {\\n        require(_value <= type(uint104).max, \\\"SafeCast: value doesn't fit in 104 bits\\\");\\n        return uint104(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint208 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint208).\\n     *\\n     * Counterpart to Solidity's `uint208` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 208 bits\\n     */\\n    function toUint208(uint256 _value) internal pure returns (uint208) {\\n        require(_value <= type(uint208).max, \\\"SafeCast: value doesn't fit in 208 bits\\\");\\n        return uint208(_value);\\n    }\\n\\n    /**\\n     * @dev Returns the downcasted uint224 from uint256, reverting on\\n     * overflow (when the input is greater than largest uint224).\\n     *\\n     * Counterpart to Solidity's `uint224` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - input must fit into 224 bits\\n     */\\n    function toUint224(uint256 _value) internal pure returns (uint224) {\\n        require(_value <= type(uint224).max, \\\"SafeCast: value doesn't fit in 224 bits\\\");\\n        return uint224(_value);\\n    }\\n}\\n\",\"keccak256\":\"0x1e8add7802f19dbf5957b4d921b2d7b5277f39c9e44505c0375e52f02134e434\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/ObservationLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeCast.sol\\\";\\n\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\n\\n/**\\n* @title Observation Library\\n* @notice This library allows one to store an array of timestamped values and efficiently binary search them.\\n* @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\\n* @author PoolTogether Inc.\\n*/\\nlibrary ObservationLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using SafeCast for uint256;\\n\\n    /// @notice The maximum number of observations\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /**\\n    * @notice Observation, which includes an amount and timestamp.\\n    * @param amount `amount` at `timestamp`.\\n    * @param timestamp Recorded `timestamp`.\\n    */\\n    struct Observation {\\n        uint224 amount;\\n        uint32 timestamp;\\n    }\\n\\n    /**\\n    * @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\\n    * The result may be the same Observation, or adjacent Observations.\\n    * @dev The answer must be contained in the array used when the target is located within the stored Observation.\\n    * boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\\n    * @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\\n    *       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\\n    * @param _observations List of Observations to search through.\\n    * @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\\n    * @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\\n    * @param _target Timestamp at which we are searching the Observation.\\n    * @param _cardinality Cardinality of the circular buffer we are searching through.\\n    * @param _time Timestamp at which we perform the binary search.\\n    * @return beforeOrAt Observation recorded before, or at, the target.\\n    * @return atOrAfter Observation recorded at, or after, the target.\\n    */\\n    function binarySearch(\\n        Observation[MAX_CARDINALITY] storage _observations,\\n        uint24 _newestObservationIndex,\\n        uint24 _oldestObservationIndex,\\n        uint32 _target,\\n        uint24 _cardinality,\\n        uint32 _time\\n    ) internal view returns (Observation memory beforeOrAt, Observation memory atOrAfter) {\\n        uint256 leftSide = _oldestObservationIndex;\\n        uint256 rightSide = _newestObservationIndex < leftSide\\n            ? leftSide + _cardinality - 1\\n            : _newestObservationIndex;\\n        uint256 currentIndex;\\n\\n        while (true) {\\n            // We start our search in the middle of the `leftSide` and `rightSide`.\\n            // After each iteration, we narrow down the search to the left or the right side while still starting our search in the middle.\\n            currentIndex = (leftSide + rightSide) / 2;\\n\\n            beforeOrAt = _observations[uint24(RingBufferLib.wrap(currentIndex, _cardinality))];\\n            uint32 beforeOrAtTimestamp = beforeOrAt.timestamp;\\n\\n            // We've landed on an uninitialized timestamp, keep searching higher (more recently).\\n            if (beforeOrAtTimestamp == 0) {\\n                leftSide = currentIndex + 1;\\n                continue;\\n            }\\n\\n            atOrAfter = _observations[uint24(RingBufferLib.nextIndex(currentIndex, _cardinality))];\\n\\n            bool targetAtOrAfter = beforeOrAtTimestamp.lte(_target, _time);\\n\\n            // Check if we've found the corresponding Observation.\\n            if (targetAtOrAfter && _target.lte(atOrAfter.timestamp, _time)) {\\n                break;\\n            }\\n\\n            // If `beforeOrAtTimestamp` is greater than `_target`, then we keep searching lower. To the left of the current index.\\n            if (!targetAtOrAfter) {\\n                rightSide = currentIndex - 1;\\n            } else {\\n                // Otherwise, we keep searching higher. To the left of the current index.\\n                leftSide = currentIndex + 1;\\n            }\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0x225592b42013fc0af60822e75bc047d53b42a5fcf15f2173cdc3b50bea334b0a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/// @title OverflowSafeComparatorLib library to share comparator functions between contracts\\n/// @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\\n/// @author PoolTogether Inc.\\nlibrary OverflowSafeComparatorLib {\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically < `_b`.\\n    function lt(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a < _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted < bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamps comparator.\\n    /// @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\\n    /// @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\\n    /// @param _b Timestamp to compare against `_a`.\\n    /// @param _timestamp A timestamp truncated to 32 bits.\\n    /// @return bool Whether `_a` is chronologically <= `_b`.\\n    function lte(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (bool) {\\n\\n        // No need to adjust if there hasn't been an overflow\\n        if (_a <= _timestamp && _b <= _timestamp) return _a <= _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return aAdjusted <= bAdjusted;\\n    }\\n\\n    /// @notice 32-bit timestamp subtractor\\n    /// @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\\n    /// @param _a The subtraction left operand\\n    /// @param _b The subtraction right operand\\n    /// @param _timestamp The current time.  Expected to be chronologically after both.\\n    /// @return The difference between a and b, adjusted for overflow\\n    function checkedSub(\\n        uint32 _a,\\n        uint32 _b,\\n        uint32 _timestamp\\n    ) internal pure returns (uint32) {\\n        // No need to adjust if there hasn't been an overflow\\n\\n        if (_a <= _timestamp && _b <= _timestamp) return _a - _b;\\n\\n        uint256 aAdjusted = _a > _timestamp ? _a : _a + 2**32;\\n        uint256 bAdjusted = _b > _timestamp ? _b : _b + 2**32;\\n\\n        return uint32(aAdjusted - bAdjusted);\\n    }\\n}\\n\",\"keccak256\":\"0x20630cf89e7b92462946defe979fd0e69fa119841d55886121948ad810778c74\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nlibrary RingBufferLib {\\n    /**\\n    * @notice Returns wrapped TWAB index.\\n    * @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\\n    * @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\\n    *       it will return 0 and will point to the first element of the array.\\n    * @param _index Index used to navigate through the TWAB circular buffer.\\n    * @param _cardinality TWAB buffer cardinality.\\n    * @return TWAB index.\\n    */\\n    function wrap(uint256 _index, uint256 _cardinality) internal pure returns (uint256) {\\n        return _index % _cardinality;\\n    }\\n\\n    /**\\n    * @notice Computes the negative offset from the given index, wrapped by the cardinality.\\n    * @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\\n    * @param _index The index from which to offset\\n    * @param _amount The number of indices to offset.  This is subtracted from the given index.\\n    * @param _cardinality The number of elements in the ring buffer\\n    * @return Offsetted index.\\n     */\\n    function offset(\\n        uint256 _index,\\n        uint256 _amount,\\n        uint256 _cardinality\\n    ) internal pure returns (uint256) {\\n        return wrap(_index + _cardinality - _amount, _cardinality);\\n    }\\n\\n    /// @notice Returns the index of the last recorded TWAB\\n    /// @param _nextIndex The next available twab index.  This will be recorded to next.\\n    /// @param _cardinality The cardinality of the TWAB history.\\n    /// @return The index of the last recorded TWAB\\n    function newestIndex(uint256 _nextIndex, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        if (_cardinality == 0) {\\n            return 0;\\n        }\\n\\n        return wrap(_nextIndex + _cardinality - 1, _cardinality);\\n    }\\n\\n    /// @notice Computes the ring buffer index that follows the given one, wrapped by cardinality\\n    /// @param _index The index to increment\\n    /// @param _cardinality The number of elements in the Ring Buffer\\n    /// @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality\\n    function nextIndex(uint256 _index, uint256 _cardinality)\\n        internal\\n        pure\\n        returns (uint256)\\n    {\\n        return wrap(_index + 1, _cardinality);\\n    }\\n}\\n\",\"keccak256\":\"0x052e3bf6bfb30f32950e322c853589a8d153cf34f4b1ee292b17eb46f2ae656c\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/libraries/TwabLib.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./ExtendedSafeCastLib.sol\\\";\\nimport \\\"./OverflowSafeComparatorLib.sol\\\";\\nimport \\\"./RingBufferLib.sol\\\";\\nimport \\\"./ObservationLib.sol\\\";\\n\\n/**\\n  * @title  PoolTogether V4 TwabLib (Library)\\n  * @author PoolTogether Inc Team\\n  * @dev    Time-Weighted Average Balance Library for ERC20 tokens.\\n  * @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\\n            Each user is mapped to an Account struct containing the TWAB history (ring bufffer) and\\n            ring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\\n            checkpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\\n            a previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\\n            guarantees minimum 7.4 years of search history.\\n */\\nlibrary TwabLib {\\n    using OverflowSafeComparatorLib for uint32;\\n    using ExtendedSafeCastLib for uint256;\\n\\n    /**\\n      * @notice Sets max ring buffer length in the Account.twabs Observation list.\\n                As users transfer/mint/burn tickets new Observation checkpoints are\\n                recorded. The current max cardinality guarantees a six month minimum,\\n                of historical accurate lookups with current estimates of 1 new block\\n                every 15 seconds - the of course contain a transfer to trigger an\\n                observation write to storage.\\n      * @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\\n                the max cardinality variable. Preventing \\\"corrupted\\\" ring buffer lookup\\n                pointers and new observation checkpoints.\\n\\n                The MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\\n                If 14 = block time in seconds\\n                (2**24) * 14 = 234881024 seconds of history\\n                234881024 / (365 * 24 * 60 * 60) ~= 7.44 years\\n    */\\n    uint24 public constant MAX_CARDINALITY = 16777215; // 2**24\\n\\n    /** @notice Struct ring buffer parameters for single user Account\\n      * @param balance       Current balance for an Account\\n      * @param nextTwabIndex Next uninitialized or updatable ring buffer checkpoint storage slot\\n      * @param cardinality   Current total \\\"initialized\\\" ring buffer checkpoints for single user AccountDetails.\\n                             Used to set initial boundary conditions for an efficient binary search.\\n    */\\n    struct AccountDetails {\\n        uint208 balance;\\n        uint24 nextTwabIndex;\\n        uint24 cardinality;\\n    }\\n\\n    /// @notice Combines account details with their twab history\\n    /// @param details The account details\\n    /// @param twabs The history of twabs for this account\\n    struct Account {\\n        AccountDetails details;\\n        ObservationLib.Observation[MAX_CARDINALITY] twabs;\\n    }\\n\\n    /// @notice Increases an account's balance and records a new twab.\\n    /// @param _account The account whose balance will be increased\\n    /// @param _amount The amount to increase the balance by\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new AccountDetails\\n    /// @return twab The user's latest TWAB\\n    /// @return isNew Whether the TWAB is new\\n    function increaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        accountDetails.balance = _accountDetails.balance + _amount;\\n    }\\n\\n    /** @notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\\n     * @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\\n     * @param _account        Account whose balance will be decreased\\n     * @param _amount         Amount to decrease the balance by\\n     * @param _revertMessage  Revert message for insufficient balance\\n     * @return accountDetails Updated Account.details struct\\n     * @return twab           TWAB observation (with decreasing average)\\n     * @return isNew          Whether TWAB is new or calling twice in the same block\\n     */\\n    function decreaseBalance(\\n        Account storage _account,\\n        uint208 _amount,\\n        string memory _revertMessage,\\n        uint32 _currentTime\\n    )\\n        internal\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        AccountDetails memory _accountDetails = _account.details;\\n\\n        require(_accountDetails.balance >= _amount, _revertMessage);\\n\\n        (accountDetails, twab, isNew) = _nextTwab(_account.twabs, _accountDetails, _currentTime);\\n        unchecked {\\n            accountDetails.balance -= _amount;\\n        }\\n    }\\n\\n    /** @notice Calculates the average balance held by a user for a given time frame.\\n      * @dev    Finds the average balance between start and end timestamp epochs.\\n                Validates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _startTime      Start of timestamp range as an epoch\\n      * @param _endTime        End of timestamp range as an epoch\\n      * @param _currentTime    Block.timestamp\\n      * @return Average balance of user held between epoch timestamps start and end\\n    */\\n    function getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 endTime = _endTime > _currentTime ? _currentTime : _endTime;\\n\\n        return\\n            _getAverageBalanceBetween(_twabs, _accountDetails, _startTime, endTime, _currentTime);\\n    }\\n\\n    /// @notice Retrieves the oldest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the oldest TWAB in the twabs array\\n    /// @return twab The oldest TWAB\\n    function oldestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = _accountDetails.nextTwabIndex;\\n        twab = _twabs[index];\\n\\n        // If the TWAB is not initialized we go to the beginning of the TWAB circular buffer at index 0\\n        if (twab.timestamp == 0) {\\n            index = 0;\\n            twab = _twabs[0];\\n        }\\n    }\\n\\n    /// @notice Retrieves the newest TWAB\\n    /// @param _twabs The storage array of twabs\\n    /// @param _accountDetails The TWAB account details\\n    /// @return index The index of the newest TWAB in the twabs array\\n    /// @return twab The newest TWAB\\n    function newestTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails\\n    ) internal view returns (uint24 index, ObservationLib.Observation memory twab) {\\n        index = uint24(RingBufferLib.newestIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY));\\n        twab = _twabs[index];\\n    }\\n\\n    /// @notice Retrieves amount at `_targetTime` timestamp\\n    /// @param _twabs List of TWABs to search through.\\n    /// @param _accountDetails Accounts details\\n    /// @param _targetTime Timestamp at which the reserved TWAB should be for.\\n    /// @return uint256 TWAB amount at `_targetTime`.\\n    function getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) internal view returns (uint256) {\\n        uint32 timeToTarget = _targetTime > _currentTime ? _currentTime : _targetTime;\\n        return _getBalanceAt(_twabs, _accountDetails, timeToTarget, _currentTime);\\n    }\\n\\n    /// @notice Calculates the average balance held by a user for a given time frame.\\n    /// @param _startTime The start time of the time frame.\\n    /// @param _endTime The end time of the time frame.\\n    /// @return The average balance that the user held during the time frame.\\n    function _getAverageBalanceBetween(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _startTime,\\n        uint32 _endTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        (uint24 oldestTwabIndex, ObservationLib.Observation memory oldTwab) = oldestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        (uint24 newestTwabIndex, ObservationLib.Observation memory newTwab) = newestTwab(\\n            _twabs,\\n            _accountDetails\\n        );\\n\\n        ObservationLib.Observation memory startTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _startTime,\\n            _currentTime\\n        );\\n\\n        ObservationLib.Observation memory endTwab = _calculateTwab(\\n            _twabs,\\n            _accountDetails,\\n            newTwab,\\n            oldTwab,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _endTime,\\n            _currentTime\\n        );\\n\\n        // Difference in amount / time\\n        return (endTwab.amount - startTwab.amount) / OverflowSafeComparatorLib.checkedSub(endTwab.timestamp, startTwab.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\\n                between the Observations closes to the supplied targetTime.\\n      * @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails User AccountDetails struct loaded in memory\\n      * @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\\n      * @param _currentTime    Block.timestamp\\n      * @return uint256 Time-weighted average amount between two closest observations.\\n    */\\n    function _getBalanceAt(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _targetTime,\\n        uint32 _currentTime\\n    ) private view returns (uint256) {\\n        uint24 newestTwabIndex;\\n        ObservationLib.Observation memory afterOrAt;\\n        ObservationLib.Observation memory beforeOrAt;\\n        (newestTwabIndex, beforeOrAt) = newestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically after the newest TWAB, we can simply return the current balance\\n        if (beforeOrAt.timestamp.lte(_targetTime, _currentTime)) {\\n            return _accountDetails.balance;\\n        }\\n\\n        uint24 oldestTwabIndex;\\n        // Now, set before to the oldest TWAB\\n        (oldestTwabIndex, beforeOrAt) = oldestTwab(_twabs, _accountDetails);\\n\\n        // If `_targetTime` is chronologically before the oldest TWAB, we can early return\\n        if (_targetTime.lt(beforeOrAt.timestamp, _currentTime)) {\\n            return 0;\\n        }\\n\\n        // Otherwise, we perform the `binarySearch`\\n        (beforeOrAt, afterOrAt) = ObservationLib.binarySearch(\\n            _twabs,\\n            newestTwabIndex,\\n            oldestTwabIndex,\\n            _targetTime,\\n            _accountDetails.cardinality,\\n            _currentTime\\n        );\\n\\n        // Sum the difference in amounts and divide by the difference in timestamps.\\n        // The time-weighted average balance uses time measured between two epoch timestamps as\\n        // a constaint on the measurement when calculating the time weighted average balance.\\n        return\\n            (afterOrAt.amount - beforeOrAt.amount) / OverflowSafeComparatorLib.checkedSub(afterOrAt.timestamp, beforeOrAt.timestamp, _currentTime);\\n    }\\n\\n    /** @notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\\n                The balance is linearly interpolated: amount differences / timestamp differences\\n                using the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\\n    /** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\\n                searching we exclude target timestamps out of range of newest/oldest TWAB(s).\\n                IF a search is before or after the range we \\\"extrapolate\\\" a Observation from the expected state.\\n      * @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\\n      * @param _accountDetails  User AccountDetails struct loaded in memory\\n      * @param _newestTwab      Newest TWAB in history (end of ring buffer)\\n      * @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\\n      * @param _newestTwabIndex Pointer in ring buffer to newest TWAB\\n      * @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\\n      * @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\\n      * @param _time            Block.timestamp\\n      * @return accountDetails Updated Account.details struct\\n    */\\n    function _calculateTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        ObservationLib.Observation memory _newestTwab,\\n        ObservationLib.Observation memory _oldestTwab,\\n        uint24 _newestTwabIndex,\\n        uint24 _oldestTwabIndex,\\n        uint32 _targetTimestamp,\\n        uint32 _time\\n    ) private view returns (ObservationLib.Observation memory) {\\n        // If `_targetTimestamp` is chronologically after the newest TWAB, we extrapolate a new one\\n        if (_newestTwab.timestamp.lt(_targetTimestamp, _time)) {\\n            return _computeNextTwab(_newestTwab, _accountDetails.balance, _targetTimestamp);\\n        }\\n\\n        if (_newestTwab.timestamp == _targetTimestamp) {\\n            return _newestTwab;\\n        }\\n\\n        if (_oldestTwab.timestamp == _targetTimestamp) {\\n            return _oldestTwab;\\n        }\\n\\n        // If `_targetTimestamp` is chronologically before the oldest TWAB, we create a zero twab\\n        if (_targetTimestamp.lt(_oldestTwab.timestamp, _time)) {\\n            return ObservationLib.Observation({ amount: 0, timestamp: _targetTimestamp });\\n        }\\n\\n        // Otherwise, both timestamps must be surrounded by twabs.\\n        (\\n            ObservationLib.Observation memory beforeOrAtStart,\\n            ObservationLib.Observation memory afterOrAtStart\\n        ) = ObservationLib.binarySearch(\\n                _twabs,\\n                _newestTwabIndex,\\n                _oldestTwabIndex,\\n                _targetTimestamp,\\n                _accountDetails.cardinality,\\n                _time\\n            );\\n\\n        uint224 heldBalance = (afterOrAtStart.amount - beforeOrAtStart.amount) /\\n            OverflowSafeComparatorLib.checkedSub(afterOrAtStart.timestamp, beforeOrAtStart.timestamp, _time);\\n\\n        return _computeNextTwab(beforeOrAtStart, heldBalance, _targetTimestamp);\\n    }\\n\\n    /**\\n     * @notice Calculates the next TWAB using the newestTwab and updated balance.\\n     * @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\\n     * @param _currentTwab    Newest Observation in the Account.twabs list\\n     * @param _currentBalance User balance at time of most recent (newest) checkpoint write\\n     * @param _time           Current block.timestamp\\n     * @return TWAB Observation\\n     */\\n    function _computeNextTwab(\\n        ObservationLib.Observation memory _currentTwab,\\n        uint224 _currentBalance,\\n        uint32 _time\\n    ) private pure returns (ObservationLib.Observation memory) {\\n        // New twab amount = last twab amount (or zero) + (current amount * elapsed seconds)\\n        return\\n            ObservationLib.Observation({\\n                amount: _currentTwab.amount +\\n                    _currentBalance *\\n                    (_time.checkedSub(_currentTwab.timestamp, _time)),\\n                timestamp: _time\\n            });\\n    }\\n\\n    /// @notice Sets a new TWAB Observation at the next available index and returns the new account details.\\n    /// @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\\n    /// @param _twabs The twabs array to insert into\\n    /// @param _accountDetails The current account details\\n    /// @param _currentTime The current time\\n    /// @return accountDetails The new account details\\n    /// @return twab The newest twab (may or may not be brand-new)\\n    /// @return isNew Whether the newest twab was created by this call\\n    function _nextTwab(\\n        ObservationLib.Observation[MAX_CARDINALITY] storage _twabs,\\n        AccountDetails memory _accountDetails,\\n        uint32 _currentTime\\n    )\\n        private\\n        returns (\\n            AccountDetails memory accountDetails,\\n            ObservationLib.Observation memory twab,\\n            bool isNew\\n        )\\n    {\\n        (, ObservationLib.Observation memory _newestTwab) = newestTwab(_twabs, _accountDetails);\\n\\n        // if we're in the same block, return\\n        if (_newestTwab.timestamp == _currentTime) {\\n            return (_accountDetails, _newestTwab, false);\\n        }\\n\\n        ObservationLib.Observation memory newTwab = _computeNextTwab(\\n            _newestTwab,\\n            _accountDetails.balance,\\n            _currentTime\\n        );\\n\\n        _twabs[_accountDetails.nextTwabIndex] = newTwab;\\n\\n        AccountDetails memory nextAccountDetails = push(_accountDetails);\\n\\n        return (nextAccountDetails, newTwab, true);\\n    }\\n\\n    /// @notice \\\"Pushes\\\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\\n    /// @param _accountDetails The account details from which to pull the cardinality and next index\\n    /// @return The new AccountDetails\\n    function push(AccountDetails memory _accountDetails)\\n        internal\\n        pure\\n        returns (AccountDetails memory)\\n    {\\n        _accountDetails.nextTwabIndex = uint24(\\n            RingBufferLib.nextIndex(_accountDetails.nextTwabIndex, MAX_CARDINALITY)\\n        );\\n\\n        // Prevent the Account specific cardinality from exceeding the MAX_CARDINALITY.\\n        // The ring buffer length is limited by MAX_CARDINALITY. IF the account.cardinality\\n        // exceeds the max cardinality, new observations would be incorrectly set or the\\n        // observation would be out of \\\"bounds\\\" of the ring buffer. Once reached the\\n        // AccountDetails.cardinality will continue to be equal to max cardinality.\\n        if (_accountDetails.cardinality < MAX_CARDINALITY) {\\n            _accountDetails.cardinality += 1;\\n        }\\n\\n        return _accountDetails;\\n    }\\n}\\n\",\"keccak256\":\"0xa9cd1103707325d2eaba038d7c0f2b271d934448b8782b82f922653eccb8c90a\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol\\\";\\n\\ninterface IDrawCalculatorTimelock {\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param timestamp The epoch timestamp to unlock the current locked Draw\\n     * @param drawId    The Draw to unlock\\n     */\\n    struct Timelock {\\n        uint64 timestamp;\\n        uint32 drawId;\\n    }\\n\\n    /**\\n     * @notice Emitted when target draw id is locked.\\n     * @param drawId    Draw ID\\n     * @param timestamp Block timestamp\\n     */\\n    event LockedDraw(uint32 indexed drawId, uint64 timestamp);\\n\\n    /**\\n     * @notice Emitted event when the timelock struct is updated\\n     * @param timelock Timelock struct set\\n     */\\n    event TimelockSet(Timelock timelock);\\n\\n    /**\\n     * @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\\n     * @dev    Will enforce a \\\"cooldown\\\" period between when a Draw is pushed and when users can start to claim prizes.\\n     * @param user    User address\\n     * @param drawIds Draw.drawId\\n     * @param data    Encoded pick indices\\n     * @return Prizes awardable array\\n     */\\n    function calculate(\\n        address user,\\n        uint32[] calldata drawIds,\\n        bytes calldata data\\n    ) external view returns (uint256[] memory, bytes memory);\\n\\n    /**\\n     * @notice Lock passed draw id for `timelockDuration` seconds.\\n     * @dev    Restricts new draws by forcing a push timelock.\\n     * @param _drawId Draw id to lock.\\n     * @param _timestamp Epoch timestamp to unlock the draw.\\n     * @return True if operation was successful.\\n     */\\n    function lock(uint32 _drawId, uint64 _timestamp) external returns (bool);\\n\\n    /**\\n     * @notice Read internal DrawCalculator variable.\\n     * @return IDrawCalculator\\n     */\\n    function getDrawCalculator() external view returns (IDrawCalculator);\\n\\n    /**\\n     * @notice Read internal Timelock struct.\\n     * @return Timelock\\n     */\\n    function getTimelock() external view returns (Timelock memory);\\n\\n    /**\\n     * @notice Set the Timelock struct. Only callable by the contract owner.\\n     * @param _timelock Timelock struct to set.\\n     */\\n    function setTimelock(Timelock memory _timelock) external;\\n\\n    /**\\n     * @notice Returns bool for timelockDuration elapsing.\\n     * @return True if timelockDuration, since last timelock has elapsed, false otherwise.\\n     */\\n    function hasElapsed() external view returns (bool);\\n}\\n\",\"keccak256\":\"0x86cb0ce3c4d14456968c78c7ee3ac667ee5acc208d5d66e5b93f426ae5e241e7\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\n\\ninterface IPrizeDistributionFactory {\\n    function pushPrizeDistribution(uint32 _drawId, uint256 _totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x035644792635f46d3ce9878f2e6e19ce4b9c7eaafde336222ffb45889ff18e5d\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\npragma solidity 0.8.6;\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol\\\";\\nimport \\\"./IPrizeDistributionFactory.sol\\\";\\nimport \\\"./IDrawCalculatorTimelock.sol\\\";\\n\\n/**\\n * @title  PoolTogether V4 IReceiverTimelockTrigger\\n * @author PoolTogether Inc Team\\n * @notice The IReceiverTimelockTrigger smart contract interface...\\n */\\ninterface IReceiverTimelockTrigger {\\n    /// @notice Emitted when the contract is deployed.\\n    event Deployed(\\n        IDrawBuffer indexed drawBuffer,\\n        IPrizeDistributionFactory indexed prizeDistributionFactory,\\n        IDrawCalculatorTimelock indexed timelock\\n    );\\n\\n    /**\\n     * @notice Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\\n     * @param drawId Draw ID\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    event DrawLockedPushedAndTotalNetworkTicketSupplyPushed(\\n        uint32 indexed drawId,\\n        IDrawBeacon.Draw draw,\\n        uint256 totalNetworkTicketSupply\\n    );\\n\\n    /**\\n     * @notice Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory.\\n     * @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\\n     * @param draw Draw\\n     * @param totalNetworkTicketSupply totalNetworkTicketSupply\\n     */\\n    function push(IDrawBeacon.Draw memory draw, uint256 totalNetworkTicketSupply) external;\\n}\\n\",\"keccak256\":\"0x92b4134c481be0191467899a06075d3dd50ff6a1e9ad9d2f6beada831e11f99e\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "events": {
              "Deployed(address,address,address)": {
                "notice": "Emitted when the contract is deployed."
              },
              "DrawLockedPushedAndTotalNetworkTicketSupplyPushed(uint32,(uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory"
              }
            },
            "kind": "user",
            "methods": {
              "push((uint256,uint32,uint64,uint64,uint32),uint256)": {
                "notice": "Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory."
              }
            },
            "notice": "The IReceiverTimelockTrigger smart contract interface...",
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/IYieldSource.sol": {
        "IYieldSource": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "addr",
                  "type": "address"
                }
              ],
              "name": "balanceOfToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "depositToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "redeemToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "supplyTokenTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "balanceOfToken(address)": {
                "returns": {
                  "_0": "The underlying balance of asset tokens."
                }
              },
              "depositToken()": {
                "returns": {
                  "_0": "The ERC20 asset token address."
                }
              },
              "redeemToken(uint256)": {
                "params": {
                  "amount": "The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above."
                },
                "returns": {
                  "_0": "The actual amount of interst bearing tokens that were redeemed."
                }
              },
              "supplyTokenTo(uint256,address)": {
                "params": {
                  "amount": "The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.",
                  "to": "The user whose balance will receive the tokens"
                }
              }
            },
            "title": "Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "balanceOfToken(address)": "b99152d0",
              "depositToken()": "c89039c5",
              "redeemToken(uint256)": "013054c2",
              "supplyTokenTo(uint256,address)": "87a6eeef"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"addr\",\"type\":\"address\"}],\"name\":\"balanceOfToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"depositToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"supplyTokenTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"balanceOfToken(address)\":{\"returns\":{\"_0\":\"The underlying balance of asset tokens.\"}},\"depositToken()\":{\"returns\":{\"_0\":\"The ERC20 asset token address.\"}},\"redeemToken(uint256)\":{\"params\":{\"amount\":\"The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\"},\"returns\":{\"_0\":\"The actual amount of interst bearing tokens that were redeemed.\"}},\"supplyTokenTo(uint256,address)\":{\"params\":{\"amount\":\"The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\",\"to\":\"The user whose balance will receive the tokens\"}}},\"title\":\"Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"balanceOfToken(address)\":{\"notice\":\"Returns the total balance (in asset tokens).  This includes the deposits and interest.\"},\"depositToken()\":{\"notice\":\"Returns the ERC20 asset token used for deposits.\"},\"redeemToken(uint256)\":{\"notice\":\"Redeems tokens from the yield source.\"},\"supplyTokenTo(uint256,address)\":{\"notice\":\"Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\"}},\"notice\":\"Prize Pools subclasses need to implement this interface so that yield can be generated.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":\"IYieldSource\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "balanceOfToken(address)": {
                "notice": "Returns the total balance (in asset tokens).  This includes the deposits and interest."
              },
              "depositToken()": {
                "notice": "Returns the ERC20 asset token used for deposits."
              },
              "redeemToken(uint256)": {
                "notice": "Redeems tokens from the yield source."
              },
              "supplyTokenTo(uint256,address)": {
                "notice": "Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param."
              }
            },
            "notice": "Prize Pools subclasses need to implement this interface so that yield can be generated.",
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20.sol": {
        "ERC20": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "name_",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "symbol_",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "decimals_",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin guidelines: functions revert instead of returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
            "events": {
              "Approval(address,address,uint256)": {
                "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
              },
              "Transfer(address,address,uint256)": {
                "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
              }
            },
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "constructor": {
                "details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
              },
              "decimals()": {
                "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16419": {
                  "entryPoint": null,
                  "id": 16419,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 291,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory": {
                  "entryPoint": 474,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "extract_byte_array_length": {
                  "entryPoint": 607,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 668,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2135:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:94"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:94",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:94"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:94"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:94"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:94",
                                "statements": []
                              },
                              "src": "647:133:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:885:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1037:579:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1083:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1092:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1095:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1085:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1085:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1085:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1058:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1067:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1054:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1054:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1079:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1047:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1108:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1128:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1122:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1122:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1112:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1147:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1165:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1169:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1161:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1161:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1173:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1157:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1157:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1151:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1190:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1198:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1227:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1270:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1281:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1266:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1266:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1290:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1237:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1237:61:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1227:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1307:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1333:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1344:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1329:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1329:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1323:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1323:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1311:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1377:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1386:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1389:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1379:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1379:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1379:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1363:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1373:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1360:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1360:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1357:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:73:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1445:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1456:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1441:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1441:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1467:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:63:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1484:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1507:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1518:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1503:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1503:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1497:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1497:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1488:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1570:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1579:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1582:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1572:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1572:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1572:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1544:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1555:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1562:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1551:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1551:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1541:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1541:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1531:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1595:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1605:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1595:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "987:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "998:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1010:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1018:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1026:6:94",
                            "type": ""
                          }
                        ],
                        "src": "904:712:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1676:325:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1686:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1700:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1703:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1696:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1696:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1686:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1717:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1747:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1753:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1721:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1794:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1796:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1810:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1818:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1806:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1806:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1796:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1774:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1767:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1767:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1764:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1884:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1905:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1912:3:94",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1917:10:94",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1908:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1908:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1898:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1898:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1898:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1949:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1952:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1942:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1942:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1942:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1977:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1980:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1970:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1970:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1970:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1840:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1863:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1871:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1860:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1860:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1837:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1837:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1834:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1656:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1665:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1621:380:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2038:95:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2055:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2062:3:94",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2067:10:94",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2058:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2058:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2048:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2048:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2048:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2095:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2098:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2088:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2088:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2088:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2119:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2122:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2112:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2112:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2112:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2006:127:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000ca638038062000ca68339810160408190526200003491620001da565b8251620000499060039060208601906200007d565b5081516200005f9060049060208501906200007d565b506005805460ff191660ff9290921691909117905550620002b29050565b8280546200008b906200025f565b90600052602060002090601f016020900481019282620000af5760008555620000fa565b82601f10620000ca57805160ff1916838001178555620000fa565b82800160010185558215620000fa579182015b82811115620000fa578251825591602001919060010190620000dd565b50620001089291506200010c565b5090565b5b808211156200010857600081556001016200010d565b600082601f8301126200013557600080fd5b81516001600160401b03808211156200015257620001526200029c565b604051601f8301601f19908116603f011681019082821181831017156200017d576200017d6200029c565b816040528381526020925086838588010111156200019a57600080fd5b600091505b83821015620001be57858201830151818301840152908201906200019f565b83821115620001d05760008385830101525b9695505050505050565b600080600060608486031215620001f057600080fd5b83516001600160401b03808211156200020857600080fd5b620002168783880162000123565b945060208601519150808211156200022d57600080fd5b506200023c8682870162000123565b925050604084015160ff811681146200025457600080fd5b809150509250925092565b600181811c908216806200027457607f821691505b602082108114156200029657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6109e480620002c26000396000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d71461018d578063a9059cbb146101a0578063dd62ed3e146101b357600080fd5b8063395093511461014957806370a082311461015c57806395d89b411461018557600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101ec565b6040516100e391906108a8565b60405180910390f35b6100ff6100fa36600461087e565b61027e565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f366004610842565b610294565b60055460405160ff90911681526020016100e3565b6100ff61015736600461087e565b610358565b61011361016a3660046107ed565b6001600160a01b031660009081526020819052604090205490565b6100d6610394565b6100ff61019b36600461087e565b6103a3565b6100ff6101ae36600461087e565b610454565b6101136101c136600461080f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101fb9061095a565b80601f01602080910402602001604051908101604052809291908181526020018280546102279061095a565b80156102745780601f1061024957610100808354040283529160200191610274565b820191906000526020600020905b81548152906001019060200180831161025757829003601f168201915b5050505050905090565b600061028b338484610461565b50600192915050565b60006102a18484846105b9565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103405760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61034d8533858403610461565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b91859061038f90869061091b565b610461565b6060600480546101fb9061095a565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610337565b61044a3385858403610461565b5060019392505050565b600061028b3384846105b9565b6001600160a01b0383166104dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166105585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b038316600090815260208190526040902054818110156107405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061077790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107c391815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e857600080fd5b919050565b6000602082840312156107ff57600080fd5b610808826107d1565b9392505050565b6000806040838503121561082257600080fd5b61082b836107d1565b9150610839602084016107d1565b90509250929050565b60008060006060848603121561085757600080fd5b610860846107d1565b925061086e602085016107d1565b9150604084013590509250925092565b6000806040838503121561089157600080fd5b61089a836107d1565b946020939093013593505050565b600060208083528351808285015260005b818110156108d5578581018301518582016040015282016108b9565b818111156108e7576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610955577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096e57607f821691505b602082108114156109a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220f004a9ff3d70f1e3ac49fe2e0186190205b3c7378490807b84e5fa9b2f0ea2f864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xCA6 CODESIZE SUB DUP1 PUSH3 0xCA6 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1DA JUMP JUMPDEST DUP3 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP7 ADD SWAP1 PUSH3 0x7D JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x7D JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x2B2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x8B SWAP1 PUSH3 0x25F JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xAF JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xFA JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xCA JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xFA JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xFA JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xFA JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xDD JUMP JUMPDEST POP PUSH3 0x108 SWAP3 SWAP2 POP PUSH3 0x10C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x108 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x10D JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x135 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x152 JUMPI PUSH3 0x152 PUSH3 0x29C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x17D JUMPI PUSH3 0x17D PUSH3 0x29C JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x19A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1BE JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x19F JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D0 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x216 DUP8 DUP4 DUP9 ADD PUSH3 0x123 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x22D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x23C DUP7 DUP3 DUP8 ADD PUSH3 0x123 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x254 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x274 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x296 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x9E4 DUP1 PUSH3 0x2C2 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x27E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x842 JUMP JUMPDEST PUSH2 0x294 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0x7ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x394 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1AE CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x454 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x80F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x227 SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x274 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x249 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x274 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x257 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A1 DUP5 DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x340 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x34D DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x28B SWAP2 DUP6 SWAP1 PUSH2 0x38F SWAP1 DUP7 SWAP1 PUSH2 0x91B JUMP JUMPDEST PUSH2 0x461 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x43D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH2 0x44A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x635 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x740 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x777 SWAP1 DUP5 SWAP1 PUSH2 0x91B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7C3 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x808 DUP3 PUSH2 0x7D1 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x82B DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x839 PUSH1 0x20 DUP5 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x857 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x860 DUP5 PUSH2 0x7D1 JUMP JUMPDEST SWAP3 POP PUSH2 0x86E PUSH1 0x20 DUP6 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x89A DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8D5 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B9 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x955 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x96E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE DIV 0xA9 SELFDESTRUCT RETURNDATASIZE PUSH17 0xF1E3AC49FE2E0186190205B3C737849080 PUSH28 0x84E5FA9B2F0EA2F864736F6C63430008060033000000000000000000 ",
              "sourceMap": "1259:10936:70:-:0;;;2306:191;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2419:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2442:17:70;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;2469:9:70;:21;;-1:-1:-1;;2469:21:70;;;;;;;;;;;;-1:-1:-1;1259:10936:70;;-1:-1:-1;1259:10936:70;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1259:10936:70;;;-1:-1:-1;1259:10936:70;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:94;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:94;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:94;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:94:o;904:712::-;1010:6;1018;1026;1079:2;1067:9;1058:7;1054:23;1050:32;1047:2;;;1095:1;1092;1085:12;1047:2;1122:16;;-1:-1:-1;;;;;1187:14:94;;;1184:2;;;1214:1;1211;1204:12;1184:2;1237:61;1290:7;1281:6;1270:9;1266:22;1237:61;:::i;:::-;1227:71;;1344:2;1333:9;1329:18;1323:25;1307:41;;1373:2;1363:8;1360:16;1357:2;;;1389:1;1386;1379:12;1357:2;;1412:63;1467:7;1456:8;1445:9;1441:24;1412:63;:::i;:::-;1402:73;;;1518:2;1507:9;1503:18;1497:25;1562:4;1555:5;1551:16;1544:5;1541:27;1531:2;;1582:1;1579;1572:12;1531:2;1605:5;1595:15;;;1037:579;;;;;:::o;1621:380::-;1700:1;1696:12;;;;1743;;;1764:2;;1818:4;1810:6;1806:17;1796:27;;1764:2;1871;1863:6;1860:14;1840:18;1837:38;1834:2;;;1917:10;1912:3;1908:20;1905:1;1898:31;1952:4;1949:1;1942:15;1980:4;1977:1;1970:15;1834:2;;1676:325;;;:::o;2006:127::-;2067:10;2062:3;2058:20;2055:1;2048:31;2098:4;2095:1;2088:15;2122:4;2119:1;2112:15;2038:95;1259:10936:70;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_16910": {
                  "entryPoint": null,
                  "id": 16910,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_16888": {
                  "entryPoint": 1121,
                  "id": 16888,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_16899": {
                  "entryPoint": null,
                  "id": 16899,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_16715": {
                  "entryPoint": 1465,
                  "id": 16715,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_16505": {
                  "entryPoint": null,
                  "id": 16505,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_16525": {
                  "entryPoint": 638,
                  "id": 16525,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_16468": {
                  "entryPoint": null,
                  "id": 16468,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_16446": {
                  "entryPoint": null,
                  "id": 16446,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_16638": {
                  "entryPoint": 931,
                  "id": 16638,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_16599": {
                  "entryPoint": 856,
                  "id": 16599,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_16428": {
                  "entryPoint": 492,
                  "id": 16428,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_16437": {
                  "entryPoint": 916,
                  "id": 16437,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_16455": {
                  "entryPoint": null,
                  "id": 16455,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_16572": {
                  "entryPoint": 660,
                  "id": 16572,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_16488": {
                  "entryPoint": 1108,
                  "id": 16488,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 2001,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2029,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2063,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2114,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2174,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2216,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 2331,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 2394,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:6053:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:94",
                            "type": ""
                          }
                        ],
                        "src": "406:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:94",
                            "type": ""
                          }
                        ],
                        "src": "671:328:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:94",
                                "statements": []
                              },
                              "src": "1735:140:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:94",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:94"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:8:94",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3292:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3304:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3315:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3300:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3300:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3292:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2923:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3504:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3521:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3532:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3571:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3594:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3605:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3590:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3590:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3610:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3583:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3583:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3583:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3665:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3676:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3661:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3661:18:94"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3681:10:94",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3654:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3654:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3654:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3701:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3713:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3724:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3709:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3709:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3701:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3481:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3495:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3330:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3913:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3930:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3941:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3923:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3923:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3923:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3964:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3975:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3960:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3960:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3980:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3953:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3953:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3953:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4003:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4014:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3999:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3999:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4019:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3992:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4074:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4085:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4070:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4070:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4090:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4063:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4063:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4063:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4107:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4119:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4130:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4115:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4115:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4107:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3890:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3904:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3739:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4319:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4336:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4347:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4329:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4329:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4329:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4370:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4381:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4366:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4366:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4386:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4359:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4359:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4409:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4420:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4405:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4405:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4425:34:94",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4398:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4398:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4398:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4480:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4491:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4476:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4476:18:94"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4496:6:94",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4469:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4469:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4469:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4512:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4524:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4535:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4520:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4520:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4512:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4296:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4310:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4145:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4724:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4741:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4752:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4734:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4734:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4775:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4786:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4771:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4771:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4791:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4764:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4764:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4764:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4814:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4825:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4810:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4810:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4830:34:94",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4803:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4803:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4803:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4896:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:18:94"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4901:7:94",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4874:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4874:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4874:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4918:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4930:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4941:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4926:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4926:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4918:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4701:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4715:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4550:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5057:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5067:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5079:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5090:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5075:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5075:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5067:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5109:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5120:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5102:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5102:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5102:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5026:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5037:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5048:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4956:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5235:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5245:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5253:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5253:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5245:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5287:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5302:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5310:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5298:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5298:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5204:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5226:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5138:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5375:234:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5410:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5431:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5434:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5424:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5424:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5424:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5532:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5535:4:94",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5525:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5525:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5525:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5560:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5563:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5553:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5553:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5553:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5391:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "5398:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "5394:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5394:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5388:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5388:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5385:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5587:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5598:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "5601:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5594:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5594:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "5587:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "5358:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "5361:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "5367:3:94",
                            "type": ""
                          }
                        ],
                        "src": "5327:282:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5669:382:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5679:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5693:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5696:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "5689:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5689:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5710:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5740:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "5736:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5736:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "5714:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5787:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5789:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "5803:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5811:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "5799:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5799:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5789:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5767:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5760:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5760:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5757:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5877:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5898:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5901:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5891:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5891:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5891:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5999:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6002:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5992:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5992:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5992:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6027:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6030:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6020:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6020:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5833:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5856:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5864:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5853:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5853:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "5830:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5830:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "5827:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "5649:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "5658:6:94",
                            "type": ""
                          }
                        ],
                        "src": "5614:437:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        sum := add(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d71461018d578063a9059cbb146101a0578063dd62ed3e146101b357600080fd5b8063395093511461014957806370a082311461015c57806395d89b411461018557600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101ec565b6040516100e391906108a8565b60405180910390f35b6100ff6100fa36600461087e565b61027e565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f366004610842565b610294565b60055460405160ff90911681526020016100e3565b6100ff61015736600461087e565b610358565b61011361016a3660046107ed565b6001600160a01b031660009081526020819052604090205490565b6100d6610394565b6100ff61019b36600461087e565b6103a3565b6100ff6101ae36600461087e565b610454565b6101136101c136600461080f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101fb9061095a565b80601f01602080910402602001604051908101604052809291908181526020018280546102279061095a565b80156102745780601f1061024957610100808354040283529160200191610274565b820191906000526020600020905b81548152906001019060200180831161025757829003601f168201915b5050505050905090565b600061028b338484610461565b50600192915050565b60006102a18484846105b9565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103405760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61034d8533858403610461565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161028b91859061038f90869061091b565b610461565b6060600480546101fb9061095a565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610337565b61044a3385858403610461565b5060019392505050565b600061028b3384846105b9565b6001600160a01b0383166104dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166105585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b038316600090815260208190526040902054818110156107405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610337565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061077790849061091b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107c391815260200190565b60405180910390a350505050565b80356001600160a01b03811681146107e857600080fd5b919050565b6000602082840312156107ff57600080fd5b610808826107d1565b9392505050565b6000806040838503121561082257600080fd5b61082b836107d1565b9150610839602084016107d1565b90509250929050565b60008060006060848603121561085757600080fd5b610860846107d1565b925061086e602085016107d1565b9150604084013590509250925092565b6000806040838503121561089157600080fd5b61089a836107d1565b946020939093013593505050565b600060208083528351808285015260005b818110156108d5578581018301518582016040015282016108b9565b818111156108e7576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610955577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c9082168061096e57607f821691505b602082108114156109a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220f004a9ff3d70f1e3ac49fe2e0186190205b3c7378490807b84e5fa9b2f0ea2f864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1A0 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x39509351 EQ PUSH2 0x149 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x15C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x185 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x10F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x121 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x134 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xCE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD6 PUSH2 0x1EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0x8A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFF PUSH2 0xFA CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x27E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x12F CALLDATASIZE PUSH1 0x4 PUSH2 0x842 JUMP JUMPDEST PUSH2 0x294 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xE3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x16A CALLDATASIZE PUSH1 0x4 PUSH2 0x7ED JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xD6 PUSH2 0x394 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0xFF PUSH2 0x1AE CALLDATASIZE PUSH1 0x4 PUSH2 0x87E JUMP JUMPDEST PUSH2 0x454 JUMP JUMPDEST PUSH2 0x113 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x80F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x227 SWAP1 PUSH2 0x95A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x274 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x249 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x274 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x257 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A1 DUP5 DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x340 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x34D DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x28B SWAP2 DUP6 SWAP1 PUSH2 0x38F SWAP1 DUP7 SWAP1 PUSH2 0x91B JUMP JUMPDEST PUSH2 0x461 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1FB SWAP1 PUSH2 0x95A JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x43D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH2 0x44A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x461 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28B CALLER DUP5 DUP5 PUSH2 0x5B9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x558 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x635 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x740 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x337 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x777 SWAP1 DUP5 SWAP1 PUSH2 0x91B JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x7C3 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x808 DUP3 PUSH2 0x7D1 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x822 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x82B DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x839 PUSH1 0x20 DUP5 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x857 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x860 DUP5 PUSH2 0x7D1 JUMP JUMPDEST SWAP3 POP PUSH2 0x86E PUSH1 0x20 DUP6 ADD PUSH2 0x7D1 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x89A DUP4 PUSH2 0x7D1 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x8D5 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x8B9 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x955 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x96E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x9A8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE DIV 0xA9 SELFDESTRUCT RETURNDATASIZE PUSH17 0xF1E3AC49FE2E0186190205B3C737849080 PUSH28 0x84E5FA9B2F0EA2F864736F6C63430008060033000000000000000000 ",
              "sourceMap": "1259:10936:70:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4601:155;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:94;;1421:22;1403:41;;1391:2;1376:18;4601:155:70;1358:92:94;3630:97:70;3708:12;;3630:97;;;5102:25:94;;;5090:2;5075:18;3630:97:70;5057:76:94;5223:465:70;;;;;;:::i;:::-;;:::i;3481:89::-;3554:9;;3481:89;;3554:9;;;;5280:36:94;;5268:2;5253:18;3481:89:70;5235:87:94;6083:208:70;;;;;;:::i;:::-;;:::i;3785:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3876:18:70;3850:7;3876:18;;;;;;;;;;;;3785:116;2764:93;;;:::i;6778:429::-;;;;;;:::i;:::-;;:::i;4104:161::-;;;;;;:::i;:::-;;:::i;4323:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4429:18:70;;;4403:7;4429:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4323:140;2562:89;2607:13;2639:5;2632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;:::o;4601:155::-;4675:4;4691:37;4700:10;4712:7;4721:6;4691:8;:37::i;:::-;-1:-1:-1;4745:4:70;4601:155;;;;:::o;5223:465::-;5350:4;5366:36;5376:6;5384:9;5395:6;5366:9;:36::i;:::-;-1:-1:-1;;;;;5440:19:70;;5413:24;5440:19;;;:11;:19;;;;;;;;5460:10;5440:31;;;;;;;;5489:26;;;;5481:79;;;;-1:-1:-1;;;5481:79:70;;3532:2:94;5481:79:70;;;3514:21:94;3571:2;3551:18;;;3544:30;3610:34;3590:18;;;3583:62;3681:10;3661:18;;;3654:38;3709:19;;5481:79:70;;;;;;;;;5594:55;5603:6;5611:10;5642:6;5623:16;:25;5594:8;:55::i;:::-;-1:-1:-1;5677:4:70;;5223:465;-1:-1:-1;;;;5223:465:70:o;6083:208::-;6196:10;6171:4;6217:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6217:32:70;;;;;;;;;;6171:4;;6187:76;;6208:7;;6217:45;;6252:10;;6217:45;:::i;:::-;6187:8;:76::i;2764:93::-;2811:13;2843:7;2836:14;;;;;:::i;6778:429::-;6954:10;6895:4;6942:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6942:32:70;;;;;;;;;;6992:35;;;;6984:85;;;;-1:-1:-1;;;6984:85:70;;4752:2:94;6984:85:70;;;4734:21:94;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;4901:7;4881:18;;;4874:35;4926:19;;6984:85:70;4724:227:94;6984:85:70;7103:65;7112:10;7124:7;7152:15;7133:16;:34;7103:8;:65::i;:::-;-1:-1:-1;7196:4:70;;6778:429;-1:-1:-1;;;6778:429:70:o;4104:161::-;4181:4;4197:40;4207:10;4219:9;4230:6;4197:9;:40::i;10378:370::-;-1:-1:-1;;;;;10509:19:70;;10501:68;;;;-1:-1:-1;;;10501:68:70;;4347:2:94;10501:68:70;;;4329:21:94;4386:2;4366:18;;;4359:30;4425:34;4405:18;;;4398:62;4496:6;4476:18;;;4469:34;4520:19;;10501:68:70;4319:226:94;10501:68:70;-1:-1:-1;;;;;10587:21:70;;10579:68;;;;-1:-1:-1;;;10579:68:70;;2722:2:94;10579:68:70;;;2704:21:94;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;10579:68:70;2694:224:94;10579:68:70;-1:-1:-1;;;;;10658:18:70;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10709:32;;5102:25:94;;;10709:32:70;;5075:18:94;10709:32:70;;;;;;;10378:370;;;:::o;7681:713::-;-1:-1:-1;;;;;7816:20:70;;7808:70;;;;-1:-1:-1;;;7808:70:70;;3941:2:94;7808:70:70;;;3923:21:94;3980:2;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4090:7;4070:18;;;4063:35;4115:19;;7808:70:70;3913:227:94;7808:70:70;-1:-1:-1;;;;;7896:23:70;;7888:71;;;;-1:-1:-1;;;7888:71:70;;2318:2:94;7888:71:70;;;2300:21:94;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7888:71:70;2290:225:94;7888:71:70;-1:-1:-1;;;;;8052:17:70;;8028:21;8052:17;;;;;;;;;;;8087:23;;;;8079:74;;;;-1:-1:-1;;;8079:74:70;;3125:2:94;8079:74:70;;;3107:21:94;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:8;3254:18;;;3247:36;3300:19;;8079:74:70;3097:228:94;8079:74:70;-1:-1:-1;;;;;8187:17:70;;;:9;:17;;;;;;;;;;;8207:22;;;8187:42;;8249:20;;;;;;;;:30;;8223:6;;8187:9;8249:30;;8223:6;;8249:30;:::i;:::-;;;;;;;;8312:9;-1:-1:-1;;;;;8295:35:70;8304:6;-1:-1:-1;;;;;8295:35:70;;8323:6;8295:35;;;;5102:25:94;;5090:2;5075:18;;5057:76;8295:35:70;;;;;;;;7798:596;7681:713;;;:::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:94:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:94:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:94;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:94:o;5327:282::-;5367:3;5398:1;5394:6;5391:1;5388:13;5385:2;;;5434:77;5431:1;5424:88;5535:4;5532:1;5525:15;5563:4;5560:1;5553:15;5385:2;-1:-1:-1;5594:9:94;;5375:234::o;5614:437::-;5693:1;5689:12;;;;5736;;;5757:2;;5811:4;5803:6;5799:17;5789:27;;5757:2;5864;5856:6;5853:14;5833:18;5830:38;5827:2;;;5901:77;5898:1;5891:88;6002:4;5999:1;5992:15;6030:4;6027:1;6020:15;5827:2;;5669:382;;;:::o"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "506400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24642",
                "balanceOf(address)": "2585",
                "decimals()": "2356",
                "decreaseAllowance(address,uint256)": "26910",
                "increaseAllowance(address,uint256)": "26957",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2304",
                "transfer(address,uint256)": "51209",
                "transferFrom(address,address,uint256)": "infinite"
              },
              "internal": {
                "_afterTokenTransfer(address,address,uint256)": "infinite",
                "_approve(address,address,uint256)": "infinite",
                "_beforeTokenTransfer(address,address,uint256)": "infinite",
                "_burn(address,uint256)": "infinite",
                "_mint(address,uint256)": "infinite",
                "_transfer(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin guidelines: functions revert instead of returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"NOTE: Copied from OpenZeppelin\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity >=0.6.0;\\n\\n/**\\n * NOTE: Copied from OpenZeppelin\\n *\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin guidelines: functions revert instead\\n * of returning `false` on failure. This behavior is nonetheless conventional\\n * and does not conflict with the expectations of ERC20 applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n    uint8 private _decimals;\\n\\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 Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(\\n        string memory name_,\\n        string memory symbol_,\\n        uint8 decimals_\\n    ) {\\n        _name = name_;\\n        _symbol = symbol_;\\n        _decimals = decimals_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual returns (uint8) {\\n        return _decimals;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\\n        _transfer(msg.sender, recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\\n        _approve(msg.sender, spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][msg.sender];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, msg.sender, currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue)\\n        public\\n        virtual\\n        returns (bool)\\n    {\\n        uint256 currentAllowance = _allowances[msg.sender][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    uint256[45] private __gap;\\n}\\n\",\"keccak256\":\"0xdd443b9630201b27f09fdacb9ed000005c769e320718534f9147ebb2863570b8\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16364,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 16370,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 16372,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 16374,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 16376,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 16378,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "_decimals",
                "offset": 0,
                "slot": "5",
                "type": "t_uint8"
              },
              {
                "astId": 16914,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol:ERC20",
                "label": "__gap",
                "offset": 0,
                "slot": "6",
                "type": "t_array(t_uint256)45_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_uint256)45_storage": {
                "base": "t_uint256",
                "encoding": "inplace",
                "label": "uint256[45]",
                "numberOfBytes": "1440"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "notice": "NOTE: Copied from OpenZeppelin",
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol": {
        "ERC20Mintable": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "_decimals",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "masterTransfer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "decimals()": {
                "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "mint(address,uint256)": {
                "details": "See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16419": {
                  "entryPoint": null,
                  "id": 16419,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_16936": {
                  "entryPoint": null,
                  "id": 16936,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 300,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory": {
                  "entryPoint": 483,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "extract_byte_array_length": {
                  "entryPoint": 616,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 677,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2135:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:94"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:94",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:94"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:94"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:94",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:94"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:94"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:94"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:94"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:94",
                                "statements": []
                              },
                              "src": "647:133:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:94"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:885:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1037:579:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1083:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1092:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1095:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1085:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1085:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1085:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1058:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1067:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1054:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1054:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1079:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1047:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1108:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1128:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1122:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1122:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1112:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1147:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1165:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1169:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1161:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1161:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1173:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1157:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1157:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1151:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1190:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1198:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1227:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1270:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1281:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1266:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1266:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1290:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1237:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1237:61:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1227:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1307:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1333:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1344:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1329:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1329:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1323:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1323:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1311:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1377:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1386:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1389:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1379:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1379:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1379:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1363:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1373:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1360:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1360:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1357:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:73:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1445:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1456:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1441:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1441:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1467:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:63:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1484:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1507:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1518:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1503:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1503:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1497:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1497:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1488:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1570:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1579:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1582:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1572:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1572:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1572:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1544:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1555:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1562:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1551:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1551:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1541:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1541:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1531:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1595:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1605:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1595:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "987:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "998:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1010:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1018:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1026:6:94",
                            "type": ""
                          }
                        ],
                        "src": "904:712:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1676:325:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1686:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1700:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1703:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1696:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1696:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1686:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1717:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1747:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1753:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1721:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1794:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1796:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1810:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1818:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1806:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1806:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1796:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1774:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1767:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1767:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1764:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1884:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1905:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1912:3:94",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1917:10:94",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1908:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1908:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1898:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1898:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1898:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1949:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1952:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1942:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1942:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1942:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1977:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1980:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1970:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1970:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1970:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1840:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1863:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1871:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1860:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1860:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1837:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1837:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1834:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1656:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1665:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1621:380:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2038:95:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2055:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2062:3:94",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2067:10:94",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2058:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2058:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2048:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2048:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2048:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2095:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2098:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2088:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2088:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2088:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2119:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2122:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2112:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2112:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2112:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2006:127:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        let _4 := 0x20\n        if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _1) { i := add(i, _4) }\n        {\n            mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n        }\n        if gt(i, _1)\n        {\n            mstore(add(add(memPtr, _1), _4), 0)\n        }\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b5060405162000fb638038062000fb68339810160408190526200003491620001e3565b82828282600390805190602001906200004f92919062000086565b5081516200006590600490602085019062000086565b506005805460ff191660ff9290921691909117905550620002bb9350505050565b828054620000949062000268565b90600052602060002090601f016020900481019282620000b8576000855562000103565b82601f10620000d357805160ff191683800117855562000103565b8280016001018555821562000103579182015b8281111562000103578251825591602001919060010190620000e6565b506200011192915062000115565b5090565b5b8082111562000111576000815560010162000116565b600082601f8301126200013e57600080fd5b81516001600160401b03808211156200015b576200015b620002a5565b604051601f8301601f19908116603f01168101908282118183101715620001865762000186620002a5565b81604052838152602092508683858801011115620001a357600080fd5b600091505b83821015620001c75785820183015181830184015290820190620001a8565b83821115620001d95760008385830101525b9695505050505050565b600080600060608486031215620001f957600080fd5b83516001600160401b03808211156200021157600080fd5b6200021f878388016200012c565b945060208601519150808211156200023657600080fd5b5062000245868287016200012c565b925050604084015160ff811681146200025d57600080fd5b809150509250925092565b600181811c908216806200027d57607f821691505b602082108114156200029f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ceb80620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d6578063a457c2d7146101e9578063a9059cbb146101fc578063dd62ed3e1461020f57600080fd5b806340c10f191461019257806370a08231146101a557806395d89b41146101ce57600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610248565b6040516101049190610b90565b60405180910390f35b61012061011b366004610b66565b6102da565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b2a565b6102f0565b005b610120610165366004610b2a565b610300565b60055460405160ff9091168152602001610104565b61012061018d366004610b66565b6103c4565b6101206101a0366004610b66565b610400565b6101346101b3366004610ad5565b6001600160a01b031660009081526020819052604090205490565b6100f761040c565b6101206101e4366004610b66565b61041b565b6101206101f7366004610b66565b610427565b61012061020a366004610b66565b6104d8565b61013461021d366004610af7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025790610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461028390610c32565b80156102d05780601f106102a5576101008083540402835291602001916102d0565b820191906000526020600020905b8154815290600101906020018083116102b357829003601f168201915b5050505050905090565b60006102e73384846104e5565b50600192915050565b6102fb83838361063d565b505050565b600061030d84848461063d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ac5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b985338584036104e5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e79185906103fb908690610c03565b6104e5565b60006102e78383610855565b60606004805461025790610c32565b60006102e78383610934565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103a3565b6104ce33858584036104e5565b5060019392505050565b60006102e733848461063d565b6001600160a01b0383166105605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038316600090815260208190526040902054818110156107c45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107fb908490610c03565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084791815260200190565b60405180910390a350505050565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a3565b80600260008282546108bd9190610c03565b90915550506001600160a01b038216600090815260208190526040812080548392906108ea908490610c03565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b03821660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6e908490610c1b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610ad057600080fd5b919050565b600060208284031215610ae757600080fd5b610af082610ab9565b9392505050565b60008060408385031215610b0a57600080fd5b610b1383610ab9565b9150610b2160208401610ab9565b90509250929050565b600080600060608486031215610b3f57600080fd5b610b4884610ab9565b9250610b5660208501610ab9565b9150604084013590509250925092565b60008060408385031215610b7957600080fd5b610b8283610ab9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bbd57858101830151858201604001528201610ba1565b81811115610bcf576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1657610c16610c86565b500190565b600082821015610c2d57610c2d610c86565b500390565b600181811c90821680610c4657607f821691505b60208210811415610c80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212200d8946b5eb130740744d8a31937c9971ac977e9fddfc4c96a792b9ef1e4e0a5c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xFB6 CODESIZE SUB DUP1 PUSH3 0xFB6 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1E3 JUMP JUMPDEST DUP3 DUP3 DUP3 DUP3 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x86 JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x65 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x86 JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x2BB SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x94 SWAP1 PUSH3 0x268 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xB8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xD3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x103 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x103 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xE6 JUMP JUMPDEST POP PUSH3 0x111 SWAP3 SWAP2 POP PUSH3 0x115 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x111 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x116 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x13E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x15B JUMPI PUSH3 0x15B PUSH3 0x2A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x186 JUMPI PUSH3 0x186 PUSH3 0x2A5 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x1A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1C7 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1A8 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x211 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x21F DUP8 DUP4 DUP9 ADD PUSH3 0x12C JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x236 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x245 DUP7 DUP3 DUP8 ADD PUSH3 0x12C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x25D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x27D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x29F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xCEB DUP1 PUSH3 0x2CB PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x2DA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x2F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x18D CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x400 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0xAD5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x40C JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x283 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2A5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D0 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2B3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2FB DUP4 DUP4 DUP4 PUSH2 0x63D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP5 DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B9 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E7 SWAP2 DUP6 SWAP1 PUSH2 0x3FB SWAP1 DUP7 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x855 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x934 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x4CE CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x560 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x735 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7FB SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x847 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8BD SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8EA SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6E SWAP1 DUP5 SWAP1 PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAF0 DUP3 PUSH2 0xAB9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB13 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH2 0xB21 PUSH1 0x20 DUP5 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB48 DUP5 PUSH2 0xAB9 JUMP JUMPDEST SWAP3 POP PUSH2 0xB56 PUSH1 0x20 DUP6 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB82 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBBD JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xBA1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCF JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC16 JUMPI PUSH2 0xC16 PUSH2 0xC86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC2D JUMPI PUSH2 0xC2D PUSH2 0xC86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC46 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC80 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD DUP10 CHAINID 0xB5 0xEB SGT SMOD BLOCKHASH PUSH21 0x4D8A31937C9971AC977E9FDDFC4C96A792B9EF1E4E EXP 0x5C PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "316:731:71:-:0;;;354:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;463:5;470:7;479:9;2427:5:70;2419;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2442:17:70;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;2469:9:70;:21;;-1:-1:-1;;2469:21:70;;;;;;;;;;;;-1:-1:-1;316:731:71;;-1:-1:-1;;;;316:731:71;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;316:731:71;;;-1:-1:-1;316:731:71;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:94;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;224:10:94;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:94;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;553:4;543:14;;598:3;593:2;588;580:6;576:15;572:24;569:33;566:2;;;615:1;612;605:12;566:2;637:1;628:10;;647:133;661:2;658:1;655:9;647:133;;;749:14;;;745:23;;739:30;718:14;;;714:23;;707:63;672:10;;;;647:133;;;798:2;795:1;792:9;789:2;;;857:1;852:2;847;839:6;835:15;831:24;824:35;789:2;887:6;78:821;-1:-1:-1;;;;;;78:821:94:o;904:712::-;1010:6;1018;1026;1079:2;1067:9;1058:7;1054:23;1050:32;1047:2;;;1095:1;1092;1085:12;1047:2;1122:16;;-1:-1:-1;1187:14:94;;;1184:2;;;1214:1;1211;1204:12;1184:2;1237:61;1290:7;1281:6;1270:9;1266:22;1237:61;:::i;:::-;1227:71;;1344:2;1333:9;1329:18;1323:25;1307:41;;1373:2;1363:8;1360:16;1357:2;;;1389:1;1386;1379:12;1357:2;;1412:63;1467:7;1456:8;1445:9;1441:24;1412:63;:::i;:::-;1402:73;;;1518:2;1507:9;1503:18;1497:25;1562:4;1555:5;1551:16;1544:5;1541:27;1531:2;;1582:1;1579;1572:12;1531:2;1605:5;1595:15;;;1037:579;;;;;:::o;1621:380::-;1700:1;1696:12;;;;1743;;;1764:2;;1818:4;1810:6;1806:17;1796:27;;1764:2;1871;1863:6;1860:14;1840:18;1837:38;1834:2;;;1917:10;1912:3;1908:20;1905:1;1898:31;1952:4;1949:1;1942:15;1980:4;1977:1;1970:15;1834:2;;1676:325;;;:::o;2006:127::-;2067:10;2062:3;2058:20;2055:1;2048:31;2098:4;2095:1;2088:15;2122:4;2119:1;2112:15;2038:95;316:731:71;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_16910": {
                  "entryPoint": null,
                  "id": 16910,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_16888": {
                  "entryPoint": 1253,
                  "id": 16888,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_16899": {
                  "entryPoint": null,
                  "id": 16899,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_16843": {
                  "entryPoint": 2356,
                  "id": 16843,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_16771": {
                  "entryPoint": 2133,
                  "id": 16771,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_transfer_16715": {
                  "entryPoint": 1597,
                  "id": 16715,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_16505": {
                  "entryPoint": null,
                  "id": 16505,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_16525": {
                  "entryPoint": 730,
                  "id": 16525,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_16468": {
                  "entryPoint": null,
                  "id": 16468,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@burn_16971": {
                  "entryPoint": 1051,
                  "id": 16971,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decimals_16446": {
                  "entryPoint": null,
                  "id": 16446,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_16638": {
                  "entryPoint": 1063,
                  "id": 16638,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_16599": {
                  "entryPoint": 964,
                  "id": 16599,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@masterTransfer_16987": {
                  "entryPoint": 752,
                  "id": 16987,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@mint_16954": {
                  "entryPoint": 1024,
                  "id": 16954,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_16428": {
                  "entryPoint": 584,
                  "id": 16428,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_16437": {
                  "entryPoint": 1036,
                  "id": 16437,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_16455": {
                  "entryPoint": null,
                  "id": 16455,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_16572": {
                  "entryPoint": 768,
                  "id": 16572,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_16488": {
                  "entryPoint": 1240,
                  "id": 16488,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_address": {
                  "entryPoint": 2745,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 2773,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 2807,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 2858,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 2918,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2960,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 3075,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 3099,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 3122,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 3206,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:7383:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:94",
                            "type": ""
                          }
                        ],
                        "src": "406:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:94",
                            "type": ""
                          }
                        ],
                        "src": "671:328:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:94",
                                "statements": []
                              },
                              "src": "1735:140:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1545:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:94",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:94"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:94",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:94",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3288:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3300:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3311:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3296:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3296:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3288:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2923:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3500:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3517:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3528:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3510:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3510:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3510:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3551:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3562:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3547:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3547:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3567:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3540:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3540:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3540:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3590:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3601:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3586:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3586:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3606:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3579:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3579:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3579:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3661:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3672:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3657:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3657:18:94"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3677:8:94",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3650:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3650:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3650:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3695:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3707:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3718:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3703:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3703:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3695:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3477:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3491:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3326:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3907:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3924:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3935:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3917:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3917:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3917:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3958:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3969:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3954:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3954:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3974:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3947:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3947:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3947:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3997:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4008:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3993:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3993:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4013:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3986:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3986:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3986:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4068:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4079:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:18:94"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4084:10:94",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4057:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4057:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4057:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4104:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4116:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4127:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4112:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4112:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4104:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3884:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3898:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3733:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4316:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4333:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4344:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4326:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4326:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4326:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4367:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4378:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4363:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4363:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4383:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4356:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4356:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4356:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4406:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4417:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4402:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4402:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4422:34:94",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4395:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4395:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4395:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4477:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4488:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4473:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4473:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4493:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4466:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4506:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4518:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4529:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4514:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4514:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4506:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4293:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4307:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4142:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4718:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4735:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4746:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4728:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4728:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4728:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4769:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4780:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4765:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4765:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4785:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4758:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4758:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4758:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4808:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4819:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4804:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4804:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4824:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4797:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4797:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4797:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4879:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4890:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4875:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4875:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4895:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4868:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4868:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4868:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4912:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4924:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4935:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4920:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4920:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4912:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4695:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4709:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4544:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5124:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5141:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5152:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5134:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5134:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5134:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5175:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5186:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5171:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5171:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5191:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5164:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5164:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5164:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5214:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5225:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5210:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5210:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5230:34:94",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5203:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5203:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5203:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5285:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5296:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5281:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5281:18:94"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5301:6:94",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5274:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5274:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5274:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5317:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5329:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5340:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5325:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5325:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5317:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5101:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5115:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4950:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5529:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5546:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5557:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5539:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5539:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5539:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5580:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5591:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5576:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5576:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5596:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5569:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5569:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5569:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5619:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5630:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5615:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5615:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5635:34:94",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5608:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5608:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5608:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5690:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5701:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5686:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5686:18:94"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5706:7:94",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5679:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5679:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5723:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5735:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5731:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5731:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5723:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5506:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5520:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5355:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5935:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5952:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5963:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5945:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5945:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5945:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5986:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5997:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5982:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5982:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6002:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5975:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5975:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5975:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6025:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6036:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6021:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6021:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6041:33:94",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6014:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6014:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6014:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6084:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6096:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6107:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6092:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6092:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6084:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5912:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5926:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5761:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6222:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6232:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6244:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6255:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6240:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6240:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6232:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6274:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6285:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6267:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6267:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6267:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6191:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6202:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6213:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6121:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6400:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6410:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6422:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6433:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6418:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6418:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6410:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6452:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6467:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6475:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6463:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6463:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6445:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6445:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6445:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6369:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6380:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6391:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6303:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6540:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6567:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6569:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6569:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6569:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6556:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "6563:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "6559:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6559:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6553:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6553:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6550:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6598:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6609:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6612:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6605:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6605:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "6598:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6523:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6526:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6532:3:94",
                            "type": ""
                          }
                        ],
                        "src": "6492:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6674:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6696:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "6698:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6698:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6698:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6690:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6693:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6687:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6687:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6684:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6727:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6739:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6742:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "6735:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6735:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "6727:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6656:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6659:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "6665:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6625:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6810:382:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6820:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6834:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6837:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "6830:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6830:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "6820:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6851:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "6881:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6887:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6877:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6877:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "6855:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6928:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6930:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "6944:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6952:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "6940:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6940:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6930:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6908:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "6901:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6901:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6898:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7018:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7039:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7042:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7032:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7032:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7032:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7140:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7143:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7133:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7133:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7133:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7168:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7171:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7161:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7161:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7161:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "6974:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "6997:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7005:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "6994:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6994:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "6971:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6971:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "6968:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "6790:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "6799:6:94",
                            "type": ""
                          }
                        ],
                        "src": "6755:437:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7229:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7246:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7249:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7239:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7239:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7239:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7343:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7346:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7336:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7336:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7336:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7367:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7370:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "7360:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7360:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7360:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "7197:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d6578063a457c2d7146101e9578063a9059cbb146101fc578063dd62ed3e1461020f57600080fd5b806340c10f191461019257806370a08231146101a557806395d89b41146101ce57600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610248565b6040516101049190610b90565b60405180910390f35b61012061011b366004610b66565b6102da565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b2a565b6102f0565b005b610120610165366004610b2a565b610300565b60055460405160ff9091168152602001610104565b61012061018d366004610b66565b6103c4565b6101206101a0366004610b66565b610400565b6101346101b3366004610ad5565b6001600160a01b031660009081526020819052604090205490565b6100f761040c565b6101206101e4366004610b66565b61041b565b6101206101f7366004610b66565b610427565b61012061020a366004610b66565b6104d8565b61013461021d366004610af7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025790610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461028390610c32565b80156102d05780601f106102a5576101008083540402835291602001916102d0565b820191906000526020600020905b8154815290600101906020018083116102b357829003601f168201915b5050505050905090565b60006102e73384846104e5565b50600192915050565b6102fb83838361063d565b505050565b600061030d84848461063d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ac5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b985338584036104e5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e79185906103fb908690610c03565b6104e5565b60006102e78383610855565b60606004805461025790610c32565b60006102e78383610934565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103a3565b6104ce33858584036104e5565b5060019392505050565b60006102e733848461063d565b6001600160a01b0383166105605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038316600090815260208190526040902054818110156107c45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107fb908490610c03565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084791815260200190565b60405180910390a350505050565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a3565b80600260008282546108bd9190610c03565b90915550506001600160a01b038216600090815260208190526040812080548392906108ea908490610c03565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b03821660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6e908490610c1b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610ad057600080fd5b919050565b600060208284031215610ae757600080fd5b610af082610ab9565b9392505050565b60008060408385031215610b0a57600080fd5b610b1383610ab9565b9150610b2160208401610ab9565b90509250929050565b600080600060608486031215610b3f57600080fd5b610b4884610ab9565b9250610b5660208501610ab9565b9150604084013590509250925092565b60008060408385031215610b7957600080fd5b610b8283610ab9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bbd57858101830151858201604001528201610ba1565b81811115610bcf576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1657610c16610c86565b500190565b600082821015610c2d57610c2d610c86565b500390565b600181811c90821680610c4657607f821691505b60208210811415610c80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212200d8946b5eb130740744d8a31937c9971ac977e9fddfc4c96a792b9ef1e4e0a5c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x2DA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x2F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x18D CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x400 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0xAD5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x40C JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x283 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2A5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D0 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2B3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2FB DUP4 DUP4 DUP4 PUSH2 0x63D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP5 DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B9 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E7 SWAP2 DUP6 SWAP1 PUSH2 0x3FB SWAP1 DUP7 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x855 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x934 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x4CE CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x560 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x735 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7FB SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x847 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8BD SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8EA SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6E SWAP1 DUP5 SWAP1 PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAF0 DUP3 PUSH2 0xAB9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB13 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH2 0xB21 PUSH1 0x20 DUP5 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB48 DUP5 PUSH2 0xAB9 JUMP JUMPDEST SWAP3 POP PUSH2 0xB56 PUSH1 0x20 DUP6 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB82 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBBD JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xBA1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCF JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC16 JUMPI PUSH2 0xC16 PUSH2 0xC86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC2D JUMPI PUSH2 0xC2D PUSH2 0xC86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC46 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC80 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD DUP10 CHAINID 0xB5 0xEB SGT SMOD BLOCKHASH PUSH21 0x4D8A31937C9971AC977E9FDDFC4C96A792B9EF1E4E EXP 0x5C PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "316:731:71:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89:70;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4601:155;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:94;;1421:22;1403:41;;1391:2;1376:18;4601:155:70;1358:92:94;3630:97:70;3708:12;;3630:97;;;6267:25:94;;;6255:2;6240:18;3630:97:70;6222:76:94;898:147:71;;;;;;:::i;:::-;;:::i;:::-;;5223:465:70;;;;;;:::i;:::-;;:::i;3481:89::-;3554:9;;3481:89;;3554:9;;;;6445:36:94;;6433:2;6418:18;3481:89:70;6400:87:94;6083:208:70;;;;;;:::i;:::-;;:::i;628:129:71:-;;;;;;:::i;:::-;;:::i;3785:116:70:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3876:18:70;3850:7;3876:18;;;;;;;;;;;;3785:116;2764:93;;;:::i;763:129:71:-;;;;;;:::i;:::-;;:::i;6778:429:70:-;;;;;;:::i;:::-;;:::i;4104:161::-;;;;;;:::i;:::-;;:::i;4323:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4429:18:70;;;4403:7;4429:18;;;-1:-1:-1;4429:18:70;;;;;;;;:27;;;;;;;;;;;;;4323:140;2562:89;2607:13;2639:5;2632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;:::o;4601:155::-;4675:4;4691:37;4700:10;4712:7;4721:6;4691:8;:37::i;:::-;-1:-1:-1;4745:4:70;4601:155;;;;:::o;898:147:71:-;1011:27;1021:4;1027:2;1031:6;1011:9;:27::i;:::-;898:147;;;:::o;5223:465:70:-;5350:4;5366:36;5376:6;5384:9;5395:6;5366:9;:36::i;:::-;-1:-1:-1;;;;;5440:19:70;;5413:24;5440:19;;;-1:-1:-1;5440:19:70;;;;;;;;5460:10;5440:31;;;;;;;;5489:26;;;;5481:79;;;;-1:-1:-1;;;5481:79:70;;3935:2:94;5481:79:70;;;3917:21:94;3974:2;3954:18;;;3947:30;4013:34;3993:18;;;3986:62;4084:10;4064:18;;;4057:38;4112:19;;5481:79:70;;;;;;;;;5594:55;5603:6;5611:10;5642:6;5623:16;:25;5594:8;:55::i;:::-;-1:-1:-1;5677:4:70;;5223:465;-1:-1:-1;;;;5223:465:70:o;6083:208::-;6196:10;6171:4;6217:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6217:32:70;;;;;;;;;;6171:4;;6187:76;;6217:32;;:45;;6252:10;;6217:45;:::i;:::-;6187:8;:76::i;628:129:71:-;691:4;707:22;713:7;722:6;707:5;:22::i;2764:93:70:-;2811:13;2843:7;2836:14;;;;;:::i;763:129:71:-;826:4;842:22;848:7;857:6;842:5;:22::i;6778:429:70:-;6954:10;6895:4;6942:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6942:32:70;;;;;;;;;;6992:35;;;;6984:85;;;;-1:-1:-1;;;6984:85:70;;5557:2:94;6984:85:70;;;5539:21:94;5596:2;5576:18;;;5569:30;5635:34;5615:18;;;5608:62;5706:7;5686:18;;;5679:35;5731:19;;6984:85:70;5529:227:94;6984:85:70;7103:65;7112:10;7124:7;7152:15;7133:16;:34;7103:8;:65::i;:::-;-1:-1:-1;7196:4:70;;6778:429;-1:-1:-1;;;6778:429:70:o;4104:161::-;4181:4;4197:40;4207:10;4219:9;4230:6;4197:9;:40::i;10378:370::-;-1:-1:-1;;;;;10509:19:70;;10501:68;;;;-1:-1:-1;;;10501:68:70;;5152:2:94;10501:68:70;;;5134:21:94;5191:2;5171:18;;;5164:30;5230:34;5210:18;;;5203:62;5301:6;5281:18;;;5274:34;5325:19;;10501:68:70;5124:226:94;10501:68:70;-1:-1:-1;;;;;10587:21:70;;10579:68;;;;-1:-1:-1;;;10579:68:70;;3125:2:94;10579:68:70;;;3107:21:94;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:4;3254:18;;;3247:32;3296:19;;10579:68:70;3097:224:94;10579:68:70;-1:-1:-1;;;;;10658:18:70;;;;;;;-1:-1:-1;10658:18:70;;;;;;;;:27;;;;;;;;;;;;;:36;;;10709:32;;6267:25:94;;;10709:32:70;;;;;;;;;;;;10378:370;;;:::o;7681:713::-;-1:-1:-1;;;;;7816:20:70;;7808:70;;;;-1:-1:-1;;;7808:70:70;;4746:2:94;7808:70:70;;;4728:21:94;4785:2;4765:18;;;4758:30;4824:34;4804:18;;;4797:62;4895:7;4875:18;;;4868:35;4920:19;;7808:70:70;4718:227:94;7808:70:70;-1:-1:-1;;;;;7896:23:70;;7888:71;;;;-1:-1:-1;;;7888:71:70;;2318:2:94;7888:71:70;;;2300:21:94;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7888:71:70;2290:225:94;7888:71:70;-1:-1:-1;;;;;8052:17:70;;8028:21;8052:17;;;;;;;;;;;8087:23;;;;8079:74;;;;-1:-1:-1;;;8079:74:70;;3528:2:94;8079:74:70;;;3510:21:94;3567:2;3547:18;;;3540:30;3606:34;3586:18;;;3579:62;3677:8;3657:18;;;3650:36;3703:19;;8079:74:70;3500:228:94;8079:74:70;-1:-1:-1;;;;;8187:17:70;;;:9;:17;;;;;;;;;;;8207:22;;;8187:42;;8249:20;;;;;;;;:30;;8207:22;;8187:9;8249:30;;8207:22;;8249:30;:::i;:::-;;;;-1:-1:-1;;8295:35:70;;6267:25:94;;;-1:-1:-1;;;;;8295:35:70;;;;;;;;;;6255:2:94;6240:18;8295:35:70;;;;;;;7798:596;7681:713;;;:::o;8670:389::-;-1:-1:-1;;;;;8753:21:70;;8745:65;;;;-1:-1:-1;;;8745:65:70;;5963:2:94;8745:65:70;;;5945:21:94;6002:2;5982:18;;;5975:30;6041:33;6021:18;;;6014:61;6092:18;;8745:65:70;5935:181:94;8745:65:70;8897:6;8881:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8913:18:70;;:9;:18;;;;;;;;;;:28;;8935:6;;8913:9;:28;;8935:6;;8913:28;:::i;:::-;;;;-1:-1:-1;;8956:37:70;;;6267:25:94;;;8956:37:70;;-1:-1:-1;;;;;8956:37:70;;;8973:1;;8956:37;;;;;6255:2:94;8956:37:70;;;8670:389;;:::o;9379:576::-;-1:-1:-1;;;;;9462:21:70;;9454:67;;;;-1:-1:-1;;;9454:67:70;;4344:2:94;9454:67:70;;;4326:21:94;4383:2;4363:18;;;4356:30;4422:34;4402:18;;;4395:62;4493:3;4473:18;;;4466:31;4514:19;;9454:67:70;4316:223:94;9454:67:70;-1:-1:-1;;;;;9617:18:70;;9592:22;9617:18;;;;;;;;;;;9653:24;;;;9645:71;;;;-1:-1:-1;;;9645:71:70;;2722:2:94;9645:71:70;;;2704:21:94;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;9645:71:70;2694:224:94;9645:71:70;-1:-1:-1;;;;;9750:18:70;;:9;:18;;;;;;;;;;9771:23;;;9750:44;;9814:12;:22;;9771:23;;9750:9;9814:22;;9771:23;;9814:22;:::i;:::-;;;;-1:-1:-1;;9852:37:70;;;6267:25:94;;;9852:37:70;;9878:1;;-1:-1:-1;;;;;9852:37:70;;;;;;;;6255:2:94;9852:37:70;;;898:147:71;;;:::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:94:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:94:o;1455:656::-;1567:4;1596:2;1625;1614:9;1607:21;1657:6;1651:13;1700:6;1695:2;1684:9;1680:18;1673:34;1725:1;1735:140;1749:6;1746:1;1743:13;1735:140;;;1844:14;;;1840:23;;1834:30;1810:17;;;1829:2;1806:26;1799:66;1764:10;;1735:140;;;1893:6;1890:1;1887:13;1884:2;;;1963:1;1958:2;1949:6;1938:9;1934:22;1930:31;1923:42;1884:2;-1:-1:-1;2027:2:94;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:94:o;6492:128::-;6532:3;6563:1;6559:6;6556:1;6553:13;6550:2;;;6569:18;;:::i;:::-;-1:-1:-1;6605:9:94;;6540:80::o;6625:125::-;6665:4;6693:1;6690;6687:8;6684:2;;;6698:18;;:::i;:::-;-1:-1:-1;6735:9:94;;6674:76::o;6755:437::-;6834:1;6830:12;;;;6877;;;6898:2;;6952:4;6944:6;6940:17;6930:27;;6898:2;7005;6997:6;6994:14;6974:18;6971:38;6968:2;;;7042:77;7039:1;7032:88;7143:4;7140:1;7133:15;7171:4;7168:1;7161:15;6968:2;;6810:382;;;:::o;7197:184::-;7249:77;7246:1;7239:88;7346:4;7343:1;7336:15;7370:4;7367:1;7360:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "661400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24648",
                "balanceOf(address)": "2585",
                "burn(address,uint256)": "51050",
                "decimals()": "2356",
                "decreaseAllowance(address,uint256)": "26938",
                "increaseAllowance(address,uint256)": "27029",
                "masterTransfer(address,address,uint256)": "infinite",
                "mint(address,uint256)": "infinite",
                "name()": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2349",
                "transfer(address,uint256)": "51208",
                "transferFrom(address,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(address,uint256)": "9dc29fac",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "increaseAllowance(address,uint256)": "39509351",
              "masterTransfer(address,address,uint256)": "1c9c7903",
              "mint(address,uint256)": "40c10f19",
              "name()": "06fdde03",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"masterTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"mint(address,uint256)\":{\"details\":\"See {ERC20-_mint}. Requirements: - the caller must have the {MinterRole}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol\":\"ERC20Mintable\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity >=0.6.0;\\n\\n/**\\n * NOTE: Copied from OpenZeppelin\\n *\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin guidelines: functions revert instead\\n * of returning `false` on failure. This behavior is nonetheless conventional\\n * and does not conflict with the expectations of ERC20 applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n    uint8 private _decimals;\\n\\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 Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(\\n        string memory name_,\\n        string memory symbol_,\\n        uint8 decimals_\\n    ) {\\n        _name = name_;\\n        _symbol = symbol_;\\n        _decimals = decimals_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual returns (uint8) {\\n        return _decimals;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\\n        _transfer(msg.sender, recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\\n        _approve(msg.sender, spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][msg.sender];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, msg.sender, currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue)\\n        public\\n        virtual\\n        returns (bool)\\n    {\\n        uint256 currentAllowance = _allowances[msg.sender][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    uint256[45] private __gap;\\n}\\n\",\"keccak256\":\"0xdd443b9630201b27f09fdacb9ed000005c769e320718534f9147ebb2863570b8\",\"license\":\"MIT\"},\"@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\nimport \\\"./ERC20.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract ERC20Mintable is ERC20 {\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 _decimals\\n    ) ERC20(_name, _symbol, _decimals) {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public returns (bool) {\\n        _mint(account, amount);\\n        return true;\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0x875d7981f3050f693d95b7660bd8d460757f1a523801e70d3add7fc7fa8ae338\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16364,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 16370,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 16372,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 16374,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 16376,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 16378,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "_decimals",
                "offset": 0,
                "slot": "5",
                "type": "t_uint8"
              },
              {
                "astId": 16914,
                "contract": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol:ERC20Mintable",
                "label": "__gap",
                "offset": 0,
                "slot": "6",
                "type": "t_array(t_uint256)45_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_uint256)45_storage": {
                "base": "t_uint256",
                "encoding": "inplace",
                "label": "uint256[45]",
                "numberOfBytes": "1440"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "MockYieldSource": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "uint8",
                  "name": "_decimals",
                  "type": "uint8"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Approval",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "Transfer",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                }
              ],
              "name": "allowance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "approve",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "account",
                  "type": "address"
                }
              ],
              "name": "balanceOf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "addr",
                  "type": "address"
                }
              ],
              "name": "balanceOfToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "decimals",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "subtractedValue",
                  "type": "uint256"
                }
              ],
              "name": "decreaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "depositToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "spender",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "addedValue",
                  "type": "uint256"
                }
              ],
              "name": "increaseAllowance",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "redeemToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "shares",
                  "type": "uint256"
                }
              ],
              "name": "sharesToTokens",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "supplyTokenTo",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "token",
              "outputs": [
                {
                  "internalType": "contract ERC20Mintable",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "tokens",
                  "type": "uint256"
                }
              ],
              "name": "tokensToShares",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "totalSupply",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transfer",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "sender",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferFrom",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "yield",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "balanceOfToken(address)": {
                "returns": {
                  "_0": "The underlying balance of asset tokens."
                }
              },
              "decimals()": {
                "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
              },
              "decreaseAllowance(address,uint256)": {
                "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
              },
              "depositToken()": {
                "returns": {
                  "_0": "The ERC20 asset token address."
                }
              },
              "increaseAllowance(address,uint256)": {
                "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "redeemToken(uint256)": {
                "params": {
                  "amount": "The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above."
                },
                "returns": {
                  "_0": "The actual amount of interst bearing tokens that were redeemed."
                }
              },
              "supplyTokenTo(uint256,address)": {
                "params": {
                  "amount": "The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.",
                  "to": "The user whose balance will receive the tokens"
                }
              },
              "symbol()": {
                "details": "Returns the symbol of the token, usually a shorter version of the name."
              },
              "totalSupply()": {
                "details": "See {IERC20-totalSupply}."
              },
              "transfer(address,uint256)": {
                "details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
              },
              "transferFrom(address,address,uint256)": {
                "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16419": {
                  "entryPoint": null,
                  "id": 16419,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_17025": {
                  "entryPoint": null,
                  "id": 17025,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 467,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory": {
                  "entryPoint": 612,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_string": {
                  "entryPoint": 745,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed": {
                  "entryPoint": 791,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 852,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 903,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 964,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2928:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:94",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:94"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:94"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:94"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:94"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:94"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:94"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:94",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:94"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:94"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:94",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:94"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:94"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:94"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:94"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:94"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:94",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:94"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:94"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:94",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:94"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:94",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:686:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "838:579:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "884:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "893:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "896:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "886:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "886:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "886:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "859:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "868:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "855:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "855:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "880:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "851:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "851:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "848:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "909:30:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "929:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "923:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "923:16:94"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "913:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "948:28:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "966:2:94",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "970:1:94",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "962:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "962:10:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "974:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "958:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "958:18:94"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "952:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1003:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1012:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1015:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1005:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1005:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1005:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "991:6:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "999:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "988:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "988:14:94"
                              },
                              "nodeType": "YulIf",
                              "src": "985:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1028:71:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1071:9:94"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1082:6:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1067:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1067:22:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1091:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1038:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1038:61:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1028:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1108:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1134:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1145:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1130:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1130:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1124:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1124:25:94"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1112:8:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1178:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1187:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1190:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1180:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1180:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1180:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1164:8:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1174:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1161:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1161:16:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1158:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1203:73:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1246:9:94"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1257:8:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1242:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1242:24:94"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1268:7:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1213:28:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1213:63:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1203:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1285:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1308:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1319:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1304:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1304:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1298:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1298:25:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1289:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1371:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1380:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1383:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1373:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1373:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1373:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1345:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1356:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1363:4:94",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1352:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1352:16:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1342:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1342:27:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1335:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1335:35:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1332:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1396:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1406:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1396:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "788:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "799:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "811:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "819:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "827:6:94",
                            "type": ""
                          }
                        ],
                        "src": "705:712:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1472:208:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1482:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1502:5:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1496:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1496:12:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1486:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1524:3:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1529:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1517:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1517:19:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1517:19:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1571:5:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1578:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1567:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1567:16:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1589:3:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1594:4:94",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1585:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1585:14:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1601:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1545:21:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1545:63:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1545:63:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1617:57:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1632:3:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1645:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1653:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1641:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1641:15:94"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1662:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1658:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1658:7:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1637:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1637:29:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1628:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1628:39:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1669:4:94",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1624:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1624:50:94"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1449:5:94",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1456:3:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1464:3:94",
                            "type": ""
                          }
                        ],
                        "src": "1422:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1878:268:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1895:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1906:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1888:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1888:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1888:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1918:59:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1950:6:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1962:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1973:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1958:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1958:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "1932:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1932:45:94"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1922:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1997:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2008:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1993:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1993:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2017:6:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2025:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2013:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2013:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1986:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1986:50:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1986:50:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2045:41:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2071:6:94"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2079:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2053:17:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2053:33:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2045:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2106:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2117:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2102:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2102:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2126:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2134:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2122:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2122:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2095:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2095:45:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2095:45:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1831:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1842:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1850:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1858:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1869:4:94",
                            "type": ""
                          }
                        ],
                        "src": "1685:461:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2204:205:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2214:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2223:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2218:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2283:63:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "2308:3:94"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "2313:1:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2304:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2304:11:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2327:3:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2332:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "2323:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2323:11:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2317:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2317:18:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2297:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2297:39:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2297:39:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2244:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2247:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2241:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2241:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2255:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2257:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2266:1:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2269:2:94",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2262:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2262:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2257:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2237:3:94",
                                "statements": []
                              },
                              "src": "2233:113:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2372:31:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "2385:3:94"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "2390:6:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2381:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2381:16:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2399:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2374:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2374:27:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2374:27:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2361:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2364:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2358:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2358:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2355:2:94"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "2182:3:94",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "2187:3:94",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "2192:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2151:258:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2469:325:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2479:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2493:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2496:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "2489:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2489:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "2479:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2510:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2540:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2546:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "2536:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2536:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "2514:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2587:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2589:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "2603:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2611:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "2599:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2599:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2589:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2567:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2560:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2560:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2557:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2677:111:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2698:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2705:3:94",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2710:10:94",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "2701:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2701:20:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2691:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2691:31:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2691:31:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2742:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2745:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2735:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2735:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2735:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2770:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2773:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2763:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2763:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2763:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2633:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2656:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2664:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2653:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2653:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "2630:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2630:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2627:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "2449:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "2458:6:94",
                            "type": ""
                          }
                        ],
                        "src": "2414:380:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2831:95:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2848:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2855:3:94",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2860:10:94",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:20:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2841:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2841:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2841:31:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2888:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2891:4:94",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2881:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2881:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2881:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2912:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2915:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2905:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2905:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2905:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2799:127:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_string_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let _1 := mload(offset)\n        let _2 := sub(shl(64, 1), 1)\n        if gt(_1, _2) { panic_error_0x41() }\n        let _3 := not(31)\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n        if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, _1)\n        if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n        copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := mload(headStart)\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 32))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n        value2 := value\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_uint8__to_t_string_memory_ptr_t_string_memory_ptr_t_uint8__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        let tail_1 := abi_encode_string(value0, add(headStart, 96))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_string(value1, tail_1)\n        mstore(add(headStart, 64), and(value2, 0xff))\n    }\n    function copy_memory_to_memory(src, dst, length)\n    {\n        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(dst, i), mload(add(src, i)))\n        }\n        if gt(i, length) { mstore(add(dst, length), 0) }\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b506040516200259738038062002597833981016040819052620000349162000264565b60405180604001604052806005815260200164165251531160da1b8152506040518060400160405280600381526020016216531160ea1b81525060128260039080519060200190620000889291906200011f565b5081516200009e9060049060208501906200011f565b506005805460ff191660ff929092169190911790555050604051839083908390620000c990620001ae565b620000d79392919062000317565b604051809103906000f080158015620000f4573d6000803e3d6000fd5b50603380546001600160a01b0319166001600160a01b039290921691909117905550620003da915050565b8280546200012d9062000387565b90600052602060002090601f0160209004810192826200015157600085556200019c565b82601f106200016c57805160ff19168380011785556200019c565b828001600101855582156200019c579182015b828111156200019c5782518255916020019190600101906200017f565b50620001aa929150620001bc565b5090565b610fb680620015e183390190565b5b80821115620001aa5760008155600101620001bd565b600082601f830112620001e557600080fd5b81516001600160401b0380821115620002025762000202620003c4565b604051601f8301601f19908116603f011681019082821181831017156200022d576200022d620003c4565b816040528381528660208588010111156200024757600080fd5b6200025a84602083016020890162000354565b9695505050505050565b6000806000606084860312156200027a57600080fd5b83516001600160401b03808211156200029257600080fd5b620002a087838801620001d3565b94506020860151915080821115620002b757600080fd5b50620002c686828701620001d3565b925050604084015160ff81168114620002de57600080fd5b809150509250925092565b600081518084526200030381602086016020860162000354565b601f01601f19169290920160200192915050565b6060815260006200032c6060830186620002e9565b8281036020840152620003408186620002e9565b91505060ff83166040830152949350505050565b60005b838110156200037157818101518382015260200162000357565b8381111562000381576000848401525b50505050565b600181811c908216806200039c57607f821691505b60208210811415620003be57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6111f780620003ea6000396000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c8063765287ef116100cd578063b99152d011610081578063dd62ed3e11610066578063dd62ed3e146102c1578063f3044ac7146102fa578063fc0c546a1461030d57600080fd5b8063b99152d014610289578063c89039c51461029c57600080fd5b806395d89b41116100b257806395d89b411461025b578063a457c2d714610263578063a9059cbb1461027657600080fd5b8063765287ef1461023357806387a6eeef1461024857600080fd5b806323b872dd11610124578063313ce56711610109578063313ce567146101e257806339509351146101f757806370a082311461020a57600080fd5b806323b872dd146101bc57806327def4fd146101cf57600080fd5b8063013054c21461015657806306fdde031461017c578063095ea7b31461019157806318160ddd146101b4575b600080fd5b610169610164366004611020565b610320565b6040519081526020015b60405180910390f35b6101846103dd565b6040516101739190611075565b6101a461019f366004610fd4565b61046f565b6040519015158152602001610173565b600254610169565b6101a46101ca366004610f98565b610485565b6101696101dd366004611020565b610549565b60055460405160ff9091168152602001610173565b6101a4610205366004610fd4565b610618565b610169610218366004610f4a565b6001600160a01b031660009081526020819052604090205490565b610246610241366004611020565b610654565b005b610246610256366004611052565b6106f5565b6101846107b4565b6101a4610271366004610fd4565b6107c3565b6101a4610284366004610fd4565b610874565b610169610297366004610f4a565b610881565b6033546001600160a01b03165b6040516001600160a01b039091168152602001610173565b6101696102cf366004610f65565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610169610308366004611020565b6108a9565b6033546102a9906001600160a01b031681565b60008061032c836108a9565b9050610338338261095a565b6033546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018590526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561039d57600080fd5b505af11580156103b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d59190610ffe565b509192915050565b6060600380546103ec90611176565b80601f016020809104026020016040519081016040528092919081815260200182805461041890611176565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b600061047c338484610adf565b50600192915050565b6000610492848484610c37565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61053e8533858403610adf565b506001949350505050565b60008061055560025490565b905080610563575090919050565b6033546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015282916001600160a01b0316906370a082319060240160206040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f79190611039565b6106019085611122565b61060b9190611100565b9392505050565b50919050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161047c91859061064f9086906110e8565b610adf565b6033546040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390526001600160a01b03909116906340c10f1990604401602060405180830381600087803b1580156106b957600080fd5b505af11580156106cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f19190610ffe565b5050565b6000610700836108a9565b6033546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018690529192506001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561076c57600080fd5b505af1158015610780573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a49190610ffe565b506107af8282610e4f565b505050565b6060600480546103ec90611176565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561085d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610528565b61086a3385858403610adf565b5060019392505050565b600061047c338484610c37565b6001600160a01b0381166000908152602081905260408120546108a390610549565b92915050565b6033546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009182916001600160a01b03909116906370a082319060240160206040518083038186803b15801561090a57600080fd5b505afa15801561091e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109429190611039565b905080610950575090919050565b806105f760025490565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b03821660009081526020819052604090205481811015610a655760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a9490849061115f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610b5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b038216610bd65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b038216610d2f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b03831660009081526020819052604090205481811015610dbe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610df59084906110e8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e4191815260200190565b60405180910390a350505050565b6001600160a01b038216610ea55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610528565b8060026000828254610eb791906110e8565b90915550506001600160a01b03821660009081526020819052604081208054839290610ee49084906110e8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610f4557600080fd5b919050565b600060208284031215610f5c57600080fd5b61060b82610f2e565b60008060408385031215610f7857600080fd5b610f8183610f2e565b9150610f8f60208401610f2e565b90509250929050565b600080600060608486031215610fad57600080fd5b610fb684610f2e565b9250610fc460208501610f2e565b9150604084013590509250925092565b60008060408385031215610fe757600080fd5b610ff083610f2e565b946020939093013593505050565b60006020828403121561101057600080fd5b8151801515811461060b57600080fd5b60006020828403121561103257600080fd5b5035919050565b60006020828403121561104b57600080fd5b5051919050565b6000806040838503121561106557600080fd5b82359150610f8f60208401610f2e565b600060208083528351808285015260005b818110156110a257858101830151858201604001528201611086565b818111156110b4576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156110fb576110fb6111ab565b500190565b60008261111d57634e487b7160e01b600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561115a5761115a6111ab565b500290565b600082821015611171576111716111ab565b500390565b600181811c9082168061118a57607f821691505b6020821081141561061257634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b0d0be68a96eb65dff25f8029835bce2abb1d1a48ef76bf55bb9abf97a1df9ac64736f6c6343000806003360806040523480156200001157600080fd5b5060405162000fb638038062000fb68339810160408190526200003491620001e3565b82828282600390805190602001906200004f92919062000086565b5081516200006590600490602085019062000086565b506005805460ff191660ff9290921691909117905550620002bb9350505050565b828054620000949062000268565b90600052602060002090601f016020900481019282620000b8576000855562000103565b82601f10620000d357805160ff191683800117855562000103565b8280016001018555821562000103579182015b8281111562000103578251825591602001919060010190620000e6565b506200011192915062000115565b5090565b5b8082111562000111576000815560010162000116565b600082601f8301126200013e57600080fd5b81516001600160401b03808211156200015b576200015b620002a5565b604051601f8301601f19908116603f01168101908282118183101715620001865762000186620002a5565b81604052838152602092508683858801011115620001a357600080fd5b600091505b83821015620001c75785820183015181830184015290820190620001a8565b83821115620001d95760008385830101525b9695505050505050565b600080600060608486031215620001f957600080fd5b83516001600160401b03808211156200021157600080fd5b6200021f878388016200012c565b945060208601519150808211156200023657600080fd5b5062000245868287016200012c565b925050604084015160ff811681146200025d57600080fd5b809150509250925092565b600181811c908216806200027d57607f821691505b602082108114156200029f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610ceb80620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806340c10f191161008c5780639dc29fac116100665780639dc29fac146101d6578063a457c2d7146101e9578063a9059cbb146101fc578063dd62ed3e1461020f57600080fd5b806340c10f191461019257806370a08231146101a557806395d89b41146101ce57600080fd5b80631c9c7903116100c85780631c9c79031461014257806323b872dd14610157578063313ce5671461016a578063395093511461017f57600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610248565b6040516101049190610b90565b60405180910390f35b61012061011b366004610b66565b6102da565b6040519015158152602001610104565b6002545b604051908152602001610104565b610155610150366004610b2a565b6102f0565b005b610120610165366004610b2a565b610300565b60055460405160ff9091168152602001610104565b61012061018d366004610b66565b6103c4565b6101206101a0366004610b66565b610400565b6101346101b3366004610ad5565b6001600160a01b031660009081526020819052604090205490565b6100f761040c565b6101206101e4366004610b66565b61041b565b6101206101f7366004610b66565b610427565b61012061020a366004610b66565b6104d8565b61013461021d366004610af7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025790610c32565b80601f016020809104026020016040519081016040528092919081815260200182805461028390610c32565b80156102d05780601f106102a5576101008083540402835291602001916102d0565b820191906000526020600020905b8154815290600101906020018083116102b357829003601f168201915b5050505050905090565b60006102e73384846104e5565b50600192915050565b6102fb83838361063d565b505050565b600061030d84848461063d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103ac5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103b985338584036104e5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102e79185906103fb908690610c03565b6104e5565b60006102e78383610855565b60606004805461025790610c32565b60006102e78383610934565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103a3565b6104ce33858584036104e5565b5060019392505050565b60006102e733848461063d565b6001600160a01b0383166105605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166105dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166106b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0382166107355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038316600090815260208190526040902054818110156107c45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107fb908490610c03565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084791815260200190565b60405180910390a350505050565b6001600160a01b0382166108ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103a3565b80600260008282546108bd9190610c03565b90915550506001600160a01b038216600090815260208190526040812080548392906108ea908490610c03565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166109b05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b03821660009081526020819052604090205481811015610a3f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103a3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a6e908490610c1b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b80356001600160a01b0381168114610ad057600080fd5b919050565b600060208284031215610ae757600080fd5b610af082610ab9565b9392505050565b60008060408385031215610b0a57600080fd5b610b1383610ab9565b9150610b2160208401610ab9565b90509250929050565b600080600060608486031215610b3f57600080fd5b610b4884610ab9565b9250610b5660208501610ab9565b9150604084013590509250925092565b60008060408385031215610b7957600080fd5b610b8283610ab9565b946020939093013593505050565b600060208083528351808285015260005b81811015610bbd57858101830151858201604001528201610ba1565b81811115610bcf576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610c1657610c16610c86565b500190565b600082821015610c2d57610c2d610c86565b500390565b600181811c90821680610c4657607f821691505b60208210811415610c80577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212200d8946b5eb130740744d8a31937c9971ac977e9fddfc4c96a792b9ef1e4e0a5c64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2597 CODESIZE SUB DUP1 PUSH3 0x2597 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x264 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x1652515311 PUSH1 0xDA SHL DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x165311 PUSH1 0xEA SHL DUP2 MSTORE POP PUSH1 0x12 DUP3 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x88 SWAP3 SWAP2 SWAP1 PUSH3 0x11F JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x9E SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x11F JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP POP PUSH1 0x40 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP4 SWAP1 PUSH3 0xC9 SWAP1 PUSH3 0x1AE JUMP JUMPDEST PUSH3 0xD7 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x317 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH3 0xF4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x3DA SWAP2 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x12D SWAP1 PUSH3 0x387 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x151 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x19C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x16C JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x19C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x19C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x19C JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x17F JUMP JUMPDEST POP PUSH3 0x1AA SWAP3 SWAP2 POP PUSH3 0x1BC JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0xFB6 DUP1 PUSH3 0x15E1 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x1AA JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1BD JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x202 JUMPI PUSH3 0x202 PUSH3 0x3C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x22D JUMPI PUSH3 0x22D PUSH3 0x3C4 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x247 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x25A DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0x354 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x27A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x292 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x2A0 DUP8 DUP4 DUP9 ADD PUSH3 0x1D3 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x2B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x2C6 DUP7 DUP3 DUP8 ADD PUSH3 0x1D3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x2DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0x303 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0x354 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH3 0x32C PUSH1 0x60 DUP4 ADD DUP7 PUSH3 0x2E9 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x340 DUP2 DUP7 PUSH3 0x2E9 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xFF DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x371 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x357 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x381 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x39C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x3BE JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x11F7 DUP1 PUSH3 0x3EA PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x151 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x765287EF GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xB99152D0 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0xF3044AC7 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x30D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB99152D0 EQ PUSH2 0x289 JUMPI DUP1 PUSH4 0xC89039C5 EQ PUSH2 0x29C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x276 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x765287EF EQ PUSH2 0x233 JUMPI DUP1 PUSH4 0x87A6EEEF EQ PUSH2 0x248 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x124 JUMPI DUP1 PUSH4 0x313CE567 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1BC JUMPI DUP1 PUSH4 0x27DEF4FD EQ PUSH2 0x1CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13054C2 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x191 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1B4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x169 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x320 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x184 PUSH2 0x3DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x19F CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x46F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x173 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x169 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0xF98 JUMP JUMPDEST PUSH2 0x485 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x1DD CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x549 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x173 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x618 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x218 CALLDATASIZE PUSH1 0x4 PUSH2 0xF4A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x246 PUSH2 0x241 CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x654 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x246 PUSH2 0x256 CALLDATASIZE PUSH1 0x4 PUSH2 0x1052 JUMP JUMPDEST PUSH2 0x6F5 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x7B4 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x7C3 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x284 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x874 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x297 CALLDATASIZE PUSH1 0x4 PUSH2 0xF4A JUMP JUMPDEST PUSH2 0x881 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x173 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x2CF CALLDATASIZE PUSH1 0x4 PUSH2 0xF65 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x308 CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x8A9 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH2 0x2A9 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x32C DUP4 PUSH2 0x8A9 JUMP JUMPDEST SWAP1 POP PUSH2 0x338 CALLER DUP3 PUSH2 0x95A JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x39D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3B1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3D5 SWAP2 SWAP1 PUSH2 0xFFE JUMP JUMPDEST POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3EC SWAP1 PUSH2 0x1176 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x418 SWAP1 PUSH2 0x1176 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x465 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x43A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x465 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x448 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47C CALLER DUP5 DUP5 PUSH2 0xADF JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x492 DUP5 DUP5 DUP5 PUSH2 0xC37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x53E DUP6 CALLER DUP6 DUP5 SUB PUSH2 0xADF JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x555 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x563 JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5D3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5F7 SWAP2 SWAP1 PUSH2 0x1039 JUMP JUMPDEST PUSH2 0x601 SWAP1 DUP6 PUSH2 0x1122 JUMP JUMPDEST PUSH2 0x60B SWAP2 SWAP1 PUSH2 0x1100 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x47C SWAP2 DUP6 SWAP1 PUSH2 0x64F SWAP1 DUP7 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST PUSH2 0xADF JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6CD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x6F1 SWAP2 SWAP1 PUSH2 0xFFE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x700 DUP4 PUSH2 0x8A9 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x76C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x780 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7A4 SWAP2 SWAP1 PUSH2 0xFFE JUMP JUMPDEST POP PUSH2 0x7AF DUP3 DUP3 PUSH2 0xE4F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3EC SWAP1 PUSH2 0x1176 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x85D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH2 0x86A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0xADF JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47C CALLER DUP5 DUP5 PUSH2 0xC37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x8A3 SWAP1 PUSH2 0x549 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x90A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x91E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x942 SWAP2 SWAP1 PUSH2 0x1039 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x950 JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH2 0x5F7 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA65 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA94 SWAP1 DUP5 SWAP1 PUSH2 0x115F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xB5A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xBD6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xCB3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD2F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xDBE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xDF5 SWAP1 DUP5 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE41 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEA5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x528 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xEB7 SWAP2 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xEE4 SWAP1 DUP5 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF45 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60B DUP3 PUSH2 0xF2E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF81 DUP4 PUSH2 0xF2E JUMP JUMPDEST SWAP2 POP PUSH2 0xF8F PUSH1 0x20 DUP5 ADD PUSH2 0xF2E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xFAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFB6 DUP5 PUSH2 0xF2E JUMP JUMPDEST SWAP3 POP PUSH2 0xFC4 PUSH1 0x20 DUP6 ADD PUSH2 0xF2E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFF0 DUP4 PUSH2 0xF2E JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1010 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x60B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1032 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x104B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1065 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0xF8F PUSH1 0x20 DUP5 ADD PUSH2 0xF2E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x10A2 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x1086 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x10B4 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x10FB JUMPI PUSH2 0x10FB PUSH2 0x11AB JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x111D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x115A JUMPI PUSH2 0x115A PUSH2 0x11AB JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1171 JUMPI PUSH2 0x1171 PUSH2 0x11AB JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x118A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x612 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB0 0xD0 0xBE PUSH9 0xA96EB65DFF25F80298 CALLDATALOAD 0xBC 0xE2 0xAB 0xB1 0xD1 LOG4 DUP15 0xF7 PUSH12 0xF55BB9ABF97A1DF9AC64736F PUSH13 0x63430008060033608060405234 DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xFB6 CODESIZE SUB DUP1 PUSH3 0xFB6 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1E3 JUMP JUMPDEST DUP3 DUP3 DUP3 DUP3 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x86 JUMP JUMPDEST POP DUP2 MLOAD PUSH3 0x65 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x86 JUMP JUMPDEST POP PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP PUSH3 0x2BB SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x94 SWAP1 PUSH3 0x268 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xB8 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xD3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x103 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x103 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x103 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xE6 JUMP JUMPDEST POP PUSH3 0x111 SWAP3 SWAP2 POP PUSH3 0x115 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x111 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x116 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x13E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x15B JUMPI PUSH3 0x15B PUSH3 0x2A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x186 JUMPI PUSH3 0x186 PUSH3 0x2A5 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x1A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1C7 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1A8 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D9 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x211 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x21F DUP8 DUP4 DUP9 ADD PUSH3 0x12C JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x236 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x245 DUP7 DUP3 DUP8 ADD PUSH3 0x12C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0x25D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x27D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x29F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xCEB DUP1 PUSH3 0x2CB PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0x9DC29FAC GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x1FC JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x20F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x192 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1C9C7903 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x1C9C7903 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x157 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x17F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x130 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xB90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x120 PUSH2 0x11B CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x2DA JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x155 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x2F0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH2 0x165 CALLDATASIZE PUSH1 0x4 PUSH2 0xB2A JUMP JUMPDEST PUSH2 0x300 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x104 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x18D CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x3C4 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1A0 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x400 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x1B3 CALLDATASIZE PUSH1 0x4 PUSH2 0xAD5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF7 PUSH2 0x40C JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x41B JUMP JUMPDEST PUSH2 0x120 PUSH2 0x1F7 CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x427 JUMP JUMPDEST PUSH2 0x120 PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0xB66 JUMP JUMPDEST PUSH2 0x4D8 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0xAF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x283 SWAP1 PUSH2 0xC32 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2A5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D0 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2B3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2FB DUP4 DUP4 DUP4 PUSH2 0x63D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP5 DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3AC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B9 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x2E7 SWAP2 DUP6 SWAP1 PUSH2 0x3FB SWAP1 DUP7 SWAP1 PUSH2 0xC03 JUMP JUMPDEST PUSH2 0x4E5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x855 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x257 SWAP1 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 DUP4 DUP4 PUSH2 0x934 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4C1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH2 0x4CE CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x4E5 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7 CALLER DUP5 DUP5 PUSH2 0x63D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x560 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x735 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0x7FB SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x847 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x8AB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8BD SWAP2 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x8EA SWAP1 DUP5 SWAP1 PUSH2 0xC03 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA3F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA6E SWAP1 DUP5 SWAP1 PUSH2 0xC1B JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAF0 DUP3 PUSH2 0xAB9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB13 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH2 0xB21 PUSH1 0x20 DUP5 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB3F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB48 DUP5 PUSH2 0xAB9 JUMP JUMPDEST SWAP3 POP PUSH2 0xB56 PUSH1 0x20 DUP6 ADD PUSH2 0xAB9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB82 DUP4 PUSH2 0xAB9 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xBBD JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0xBA1 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0xBCF JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0xC16 JUMPI PUSH2 0xC16 PUSH2 0xC86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0xC2D JUMPI PUSH2 0xC2D PUSH2 0xC86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xC46 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xC80 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD DUP10 CHAINID 0xB5 0xEB SGT SMOD BLOCKHASH PUSH21 0x4D8A31937C9971AC977E9FDDFC4C96A792B9EF1E4E EXP 0x5C PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "354:2472:72:-:0;;;441:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2306:191:70;;;;;;;;;;;;;-1:-1:-1;;;2306:191:70;;;;;;;;;;;;;;;;-1:-1:-1;;;2306:191:70;;;566:2:72;2427:5:70;2419;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2442:17:70;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;2469:9:70;:21;;-1:-1:-1;;2469:21:70;;;;;;;;;;;;-1:-1:-1;;588:44:72::1;::::0;606:5;;613:7;;622:9;;588:44:::1;::::0;::::1;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;580:5:72::1;:52:::0;;-1:-1:-1;;;;;;580:52:72::1;-1:-1:-1::0;;;;;580:52:72;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;354:2472:72;;-1:-1:-1;;354:2472:72;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;354:2472:72;;;-1:-1:-1;354:2472:72;:::i;:::-;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:686:94;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;139:1;136;129:12;88:2;162:13;;-1:-1:-1;;;;;224:10:94;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:94;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:2;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:2;;;594:1;591;584:12;543:2;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;78:622;-1:-1:-1;;;;;;78:622:94:o;705:712::-;811:6;819;827;880:2;868:9;859:7;855:23;851:32;848:2;;;896:1;893;886:12;848:2;923:16;;-1:-1:-1;;;;;988:14:94;;;985:2;;;1015:1;1012;1005:12;985:2;1038:61;1091:7;1082:6;1071:9;1067:22;1038:61;:::i;:::-;1028:71;;1145:2;1134:9;1130:18;1124:25;1108:41;;1174:2;1164:8;1161:16;1158:2;;;1190:1;1187;1180:12;1158:2;;1213:63;1268:7;1257:8;1246:9;1242:24;1213:63;:::i;:::-;1203:73;;;1319:2;1308:9;1304:18;1298:25;1363:4;1356:5;1352:16;1345:5;1342:27;1332:2;;1383:1;1380;1373:12;1332:2;1406:5;1396:15;;;838:579;;;;;:::o;1422:258::-;1464:3;1502:5;1496:12;1529:6;1524:3;1517:19;1545:63;1601:6;1594:4;1589:3;1585:14;1578:4;1571:5;1567:16;1545:63;:::i;:::-;1662:2;1641:15;-1:-1:-1;;1637:29:94;1628:39;;;;1669:4;1624:50;;1472:208;-1:-1:-1;;1472:208:94:o;1685:461::-;1906:2;1895:9;1888:21;1869:4;1932:45;1973:2;1962:9;1958:18;1950:6;1932:45;:::i;:::-;2025:9;2017:6;2013:22;2008:2;1997:9;1993:18;1986:50;2053:33;2079:6;2071;2053:33;:::i;:::-;2045:41;;;2134:4;2126:6;2122:17;2117:2;2106:9;2102:18;2095:45;1878:268;;;;;;:::o;2151:258::-;2223:1;2233:113;2247:6;2244:1;2241:13;2233:113;;;2323:11;;;2317:18;2304:11;;;2297:39;2269:2;2262:10;2233:113;;;2364:6;2361:1;2358:13;2355:2;;;2399:1;2390:6;2385:3;2381:16;2374:27;2355:2;;2204:205;;;:::o;2414:380::-;2493:1;2489:12;;;;2536;;;2557:2;;2611:4;2603:6;2599:17;2589:27;;2557:2;2664;2656:6;2653:14;2633:18;2630:38;2627:2;;;2710:10;2705:3;2701:20;2698:1;2691:31;2745:4;2742:1;2735:15;2773:4;2770:1;2763:15;2627:2;;2469:325;;;:::o;2799:127::-;2860:10;2855:3;2851:20;2848:1;2841:31;2891:4;2888:1;2881:15;2915:4;2912:1;2905:15;2831:95;354:2472:72;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_16910": {
                  "entryPoint": null,
                  "id": 16910,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_16888": {
                  "entryPoint": 2783,
                  "id": 16888,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_16899": {
                  "entryPoint": null,
                  "id": 16899,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_16843": {
                  "entryPoint": 2394,
                  "id": 16843,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_16771": {
                  "entryPoint": 3663,
                  "id": 16771,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_transfer_16715": {
                  "entryPoint": 3127,
                  "id": 16715,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_16505": {
                  "entryPoint": null,
                  "id": 16505,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_16525": {
                  "entryPoint": 1135,
                  "id": 16525,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOfToken_17070": {
                  "entryPoint": 2177,
                  "id": 17070,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@balanceOf_16468": {
                  "entryPoint": null,
                  "id": 16468,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_16446": {
                  "entryPoint": null,
                  "id": 16446,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_16638": {
                  "entryPoint": 1987,
                  "id": 16638,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@depositToken_17054": {
                  "entryPoint": null,
                  "id": 17054,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@increaseAllowance_16599": {
                  "entryPoint": 1560,
                  "id": 16599,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_16428": {
                  "entryPoint": 989,
                  "id": 16428,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@redeemToken_17135": {
                  "entryPoint": 800,
                  "id": 17135,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@sharesToTokens_17203": {
                  "entryPoint": 1353,
                  "id": 17203,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@supplyTokenTo_17103": {
                  "entryPoint": 1781,
                  "id": 17103,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@symbol_16437": {
                  "entryPoint": 1972,
                  "id": 16437,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@token_17000": {
                  "entryPoint": null,
                  "id": 17000,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@tokensToShares_17169": {
                  "entryPoint": 2217,
                  "id": 17169,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@totalSupply_16455": {
                  "entryPoint": null,
                  "id": 16455,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_16572": {
                  "entryPoint": 1157,
                  "id": 16572,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_16488": {
                  "entryPoint": 2164,
                  "id": 16488,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@yield_17041": {
                  "entryPoint": 1620,
                  "id": 17041,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_address": {
                  "entryPoint": 3886,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 3914,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 3941,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 3992,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 4052,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 4094,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 4128,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 4153,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_address": {
                  "entryPoint": 4178,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ERC20Mintable_$16988__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4213,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 4328,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 4352,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 4386,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 4447,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 4470,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 4523,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:10000:94",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:94",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:94"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:94"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:94"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:94",
                            "type": ""
                          }
                        ],
                        "src": "14:196:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:94",
                            "type": ""
                          }
                        ],
                        "src": "215:186:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:94",
                            "type": ""
                          }
                        ],
                        "src": "406:260:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:94",
                            "type": ""
                          }
                        ],
                        "src": "671:328:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1341:199:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1387:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1396:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1399:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1389:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1389:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1389:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1362:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1371:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1358:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1358:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1383:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1354:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1354:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1351:2:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1412:29:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1431:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1425:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1425:16:94"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1416:5:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1494:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1503:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1506:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1496:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1496:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1496:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:5:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1484:5:94"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1477:6:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1477:13:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1470:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1470:21:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1460:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1460:32:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:40:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1450:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1519:15:94",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1529:5:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1519:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1307:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1318:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1330:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1263:277:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1615:110:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1661:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1670:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1673:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1663:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1663:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1663:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1636:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1645:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1632:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1632:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1657:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1628:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1628:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1625:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1686:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1709:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1696:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1696:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1686:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1581:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1592:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1604:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1545:180:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1811:103:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1857:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1866:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1869:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1859:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1859:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1859:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1832:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1841:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1828:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1828:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1853:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1824:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1824:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "1821:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1882:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1898:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1892:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1892:16:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1882:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1777:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1788:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1800:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1730:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2006:167:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2052:16:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2061:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2064:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2054:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2054:12:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2054:12:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2027:7:94"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2036:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2023:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2023:23:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2048:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2019:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2019:32:94"
                              },
                              "nodeType": "YulIf",
                              "src": "2016:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2077:33:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2100:9:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2087:12:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2087:23:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2077:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2119:48:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2152:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2163:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2148:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2148:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2129:18:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2129:38:94"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2119:6:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1964:9:94",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1975:7:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1987:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1995:6:94",
                            "type": ""
                          }
                        ],
                        "src": "1919:254:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2279:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2289:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2301:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2312:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2297:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2297:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2289:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2331:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2346:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2354:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2342:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2342:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2324:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2324:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2248:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2259:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2270:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2178:226:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2566:241:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2576:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2588:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2599:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2584:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2584:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2576:4:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2611:52:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2621:42:94",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2615:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2679:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2694:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2702:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2690:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2690:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2672:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2672:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2672:34:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2726:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2737:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2722:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2722:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2746:6:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2754:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2742:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2742:15:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2715:43:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2715:43:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2778:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2789:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2774:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2774:18:94"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2794:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2767:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2767:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2767:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2519:9:94",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2530:6:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2538:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2546:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2557:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2409:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2941:168:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2951:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2963:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2974:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2959:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2959:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2951:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2993:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3008:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3016:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3004:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3004:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2986:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2986:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2986:74:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3080:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3091:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3076:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3076:18:94"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3096:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3069:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3069:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3069:34:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2902:9:94",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2913:6:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2921:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2932:4:94",
                            "type": ""
                          }
                        ],
                        "src": "2812:297:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3209:92:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3219:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3231:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3242:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3227:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3227:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3219:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3261:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3286:6:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3279:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3279:14:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3272:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3272:22:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3254:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3254:41:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3254:41:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3178:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3189:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3200:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3114:187:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3430:125:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3440:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3452:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3463:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3448:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3448:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3440:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3482:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3497:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3505:42:94",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3493:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3493:55:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3475:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3475:74:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3475:74:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ERC20Mintable_$16988__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3399:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3410:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3421:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3306:249:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3681:535:94",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3691:12:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3701:2:94",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3695:2:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3719:9:94"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3730:2:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3712:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3712:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3712:21:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3742:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3762:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3756:5:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3756:13:94"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3746:6:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3789:9:94"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3800:2:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3785:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3785:18:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3805:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3778:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3778:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3778:34:94"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3821:10:94",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3830:1:94",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3825:1:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3890:90:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3919:9:94"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3930:1:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3915:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3915:17:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "3934:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3911:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3911:26:94"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "3953:6:94"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "3961:1:94"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "3949:3:94"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "3949:14:94"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3965:2:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3945:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3945:23:94"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3939:5:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3939:30:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3904:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3904:66:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3904:66:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3851:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3854:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3848:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3848:13:94"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3862:19:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3864:15:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3873:1:94"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3876:2:94"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3869:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3869:10:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3864:1:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3844:3:94",
                                "statements": []
                              },
                              "src": "3840:140:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4014:66:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4043:9:94"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4054:6:94"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4039:3:94"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4039:22:94"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4063:2:94",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4035:3:94"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4035:31:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4068:1:94",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4028:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4028:42:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4028:42:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3995:1:94"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3998:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "3989:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4089:121:94",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4105:9:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4124:6:94"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4132:2:94",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4120:3:94"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4120:15:94"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4137:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4116:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4116:88:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4101:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4101:104:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4207:2:94",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4097:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4097:113:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4089:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3650:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3661:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3672:4:94",
                            "type": ""
                          }
                        ],
                        "src": "3560:656:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4395:225:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4412:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4423:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4405:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4405:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4405:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4446:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4457:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4442:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4442:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4462:2:94",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4435:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4435:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4435:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4485:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4496:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4481:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4481:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4501:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4474:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4474:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4474:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4556:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4567:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4552:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4552:18:94"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4572:5:94",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4545:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4545:33:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4545:33:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4587:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4599:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4610:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4595:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4595:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4587:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4372:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4386:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4221:399:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4799:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4816:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4827:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4809:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4809:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4809:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4850:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4861:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4846:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4846:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4866:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4839:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4839:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4839:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4889:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4900:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4885:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4885:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4905:34:94",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4878:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4878:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4878:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4960:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4971:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4956:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4956:18:94"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4976:4:94",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4949:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4949:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4949:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4990:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5002:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5013:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4998:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4998:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4990:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4776:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4790:4:94",
                            "type": ""
                          }
                        ],
                        "src": "4625:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5202:224:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5219:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5230:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5212:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5212:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5212:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5253:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5264:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5249:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5249:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5269:2:94",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5242:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5242:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5242:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5292:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5303:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5288:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5288:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5308:34:94",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5281:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5281:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5281:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5363:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5374:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5359:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5359:18:94"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5379:4:94",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5352:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5352:32:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5352:32:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5393:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5405:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5416:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5401:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5401:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5393:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5179:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5193:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5028:398:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5605:228:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5622:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5633:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5615:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5615:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5615:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5656:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5667:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5652:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5652:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5672:2:94",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5645:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5645:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5645:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5695:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5706:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5691:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5691:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5711:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5684:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5684:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5684:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5766:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5777:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5762:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5762:18:94"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5782:8:94",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5755:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5755:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5755:36:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5800:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5812:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5823:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5808:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5808:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5800:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5582:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5596:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5431:402:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6012:230:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6029:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6040:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6022:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6022:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6022:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6063:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6074:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6059:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6059:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6079:2:94",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6052:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6052:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6052:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6102:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6113:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6098:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6098:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6118:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6091:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6091:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6091:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6173:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6184:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6169:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6169:18:94"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6189:10:94",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6162:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6162:38:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6162:38:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6209:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6221:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6232:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6217:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6217:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6209:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5989:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6003:4:94",
                            "type": ""
                          }
                        ],
                        "src": "5838:404:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6421:223:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6438:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6449:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6431:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6431:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6431:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6472:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6483:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6468:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6468:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6488:2:94",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6461:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6461:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6461:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6511:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6522:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6507:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6507:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6527:34:94",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6500:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6500:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6500:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6582:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6593:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6578:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6578:18:94"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6598:3:94",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6571:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6571:31:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6571:31:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6611:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6623:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6634:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6619:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6619:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6611:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6398:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6412:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6247:397:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6823:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6840:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6851:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6833:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6833:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6833:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6874:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6885:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6870:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6870:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6890:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6863:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6863:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6863:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6913:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6924:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6909:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6909:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6929:34:94",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6902:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6902:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6902:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6984:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6995:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6980:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6980:18:94"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7000:7:94",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6973:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6973:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6973:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7017:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7029:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7040:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7025:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7025:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7017:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6800:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6814:4:94",
                            "type": ""
                          }
                        ],
                        "src": "6649:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7229:226:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7246:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7257:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7239:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7239:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7239:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7280:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7291:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7276:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7276:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7296:2:94",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7269:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7269:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7269:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7319:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7330:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7315:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7315:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7335:34:94",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7308:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7308:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7308:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7390:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7401:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7386:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7386:18:94"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7406:6:94",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7379:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7379:34:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7379:34:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7422:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7434:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7445:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7430:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7430:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7422:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7206:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7220:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7055:400:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7634:227:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7651:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7662:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7644:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7644:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7644:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7685:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7696:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7681:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7681:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7701:2:94",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7674:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7674:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7674:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7724:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7735:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7720:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7720:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7740:34:94",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7713:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7713:62:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7713:62:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7795:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7806:2:94",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7791:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7791:18:94"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7811:7:94",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7784:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7784:35:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7784:35:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7828:27:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7840:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7851:3:94",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7836:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7836:19:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7828:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7611:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7625:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7460:401:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8040:181:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8057:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8068:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8050:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8050:21:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8050:21:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8091:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8102:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8087:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8087:18:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8107:2:94",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8080:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8080:30:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8080:30:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8130:9:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8141:2:94",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8126:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8126:18:94"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8146:33:94",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8119:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8119:61:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8119:61:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8189:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8201:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8212:2:94",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8197:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8197:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8189:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8017:9:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8031:4:94",
                            "type": ""
                          }
                        ],
                        "src": "7866:355:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8327:76:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8337:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8349:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8360:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8345:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8345:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8337:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8379:9:94"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8390:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8372:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8372:25:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8372:25:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8296:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8307:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8318:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8226:177:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8505:87:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8515:26:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8527:9:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8538:2:94",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8523:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8523:18:94"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8515:4:94"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8557:9:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8572:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8580:4:94",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8568:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8568:17:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8550:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8550:36:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8550:36:94"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8474:9:94",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8485:6:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8496:4:94",
                            "type": ""
                          }
                        ],
                        "src": "8408:184:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8645:80:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8672:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8674:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8674:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8674:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8661:1:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8668:1:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8664:3:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8664:6:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8658:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8658:13:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8655:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8703:16:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8714:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8717:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8710:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8710:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8703:3:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8628:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8631:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8637:3:94",
                            "type": ""
                          }
                        ],
                        "src": "8597:128:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8776:228:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8807:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8828:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8831:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8821:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8821:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8821:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8929:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8932:4:94",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8922:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8922:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8922:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8957:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8960:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8950:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8950:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8950:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8796:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8789:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8789:9:94"
                              },
                              "nodeType": "YulIf",
                              "src": "8786:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8984:14:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8993:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8996:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "8989:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8989:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8984:1:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8761:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8764:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8770:1:94",
                            "type": ""
                          }
                        ],
                        "src": "8730:274:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9061:176:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9180:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9182:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9182:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9182:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9092:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "9085:6:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9085:9:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "9078:6:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9078:17:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "9100:1:94"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9107:66:94",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9175:1:94"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "9103:3:94"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9103:74:94"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9097:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9097:81:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9074:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9074:105:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9071:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9211:20:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9226:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9229:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "9222:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9222:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "9211:7:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9040:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9043:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "9049:7:94",
                            "type": ""
                          }
                        ],
                        "src": "9009:228:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9291:76:94",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9313:22:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9315:16:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9315:18:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9315:18:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9307:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9310:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9304:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9304:8:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9301:2:94"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9344:17:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9356:1:94"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9359:1:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9352:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9352:9:94"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9344:4:94"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9273:1:94",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9276:1:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9282:4:94",
                            "type": ""
                          }
                        ],
                        "src": "9242:125:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9427:382:94",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9437:22:94",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9451:1:94",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "9454:4:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "9447:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9447:12:94"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "9437:6:94"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9468:38:94",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "9498:4:94"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9504:1:94",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9494:3:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9494:12:94"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "9472:18:94",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9545:31:94",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9547:27:94",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "9561:6:94"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9569:4:94",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "9557:3:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9557:17:94"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "9547:6:94"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "9525:18:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9518:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9518:26:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9515:2:94"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9635:168:94",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9656:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9659:77:94",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9649:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9649:88:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9649:88:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9757:1:94",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9760:4:94",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9750:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9750:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9750:15:94"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9785:1:94",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9788:4:94",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9778:6:94"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9778:15:94"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9778:15:94"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "9591:18:94"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "9614:6:94"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9622:2:94",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9611:2:94"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9611:14:94"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "9588:2:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9588:38:94"
                              },
                              "nodeType": "YulIf",
                              "src": "9585:2:94"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "9407:4:94",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "9416:6:94",
                            "type": ""
                          }
                        ],
                        "src": "9372:437:94"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9846:152:94",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9863:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9866:77:94",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9856:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9856:88:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9856:88:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9960:1:94",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9963:4:94",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9953:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9953:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9953:15:94"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9984:1:94",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9987:4:94",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9977:6:94"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9977:15:94"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9977:15:94"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9814:184:94"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := calldataload(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, iszero(iszero(value0)))\n    }\n    function abi_encode_tuple_t_contract$_ERC20Mintable_$16988__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let _1 := 32\n        mstore(headStart, _1)\n        let length := mload(value0)\n        mstore(add(headStart, _1), length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, _1) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n        }\n        if gt(i, length)\n        {\n            mstore(add(add(headStart, length), 64), 0)\n        }\n        tail := add(add(headStart, and(add(length, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0)), 64)\n    }\n    function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 35)\n        mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n        mstore(add(headStart, 96), \"ess\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: burn amount exceeds balan\")\n        mstore(add(headStart, 96), \"ce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 34)\n        mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n        mstore(add(headStart, 96), \"ss\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 38)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n        mstore(add(headStart, 96), \"alance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 40)\n        mstore(add(headStart, 64), \"ERC20: transfer amount exceeds a\")\n        mstore(add(headStart, 96), \"llowance\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"ERC20: burn from the zero addres\")\n        mstore(add(headStart, 96), \"s\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: transfer from the zero ad\")\n        mstore(add(headStart, 96), \"dress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 36)\n        mstore(add(headStart, 64), \"ERC20: approve from the zero add\")\n        mstore(add(headStart, 96), \"ress\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 37)\n        mstore(add(headStart, 64), \"ERC20: decreased allowance below\")\n        mstore(add(headStart, 96), \" zero\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"ERC20: mint to the zero address\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        if gt(x, not(y)) { panic_error_0x11() }\n        sum := add(x, y)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n        product := mul(x, y)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        if lt(x, y) { panic_error_0x11() }\n        diff := sub(x, y)\n    }\n    function extract_byte_array_length(data) -> length\n    {\n        length := shr(1, data)\n        let outOfPlaceEncoding := and(data, 1)\n        if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n        if eq(outOfPlaceEncoding, lt(length, 32))\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x22)\n            revert(0, 0x24)\n        }\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n}",
                  "id": 94,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101515760003560e01c8063765287ef116100cd578063b99152d011610081578063dd62ed3e11610066578063dd62ed3e146102c1578063f3044ac7146102fa578063fc0c546a1461030d57600080fd5b8063b99152d014610289578063c89039c51461029c57600080fd5b806395d89b41116100b257806395d89b411461025b578063a457c2d714610263578063a9059cbb1461027657600080fd5b8063765287ef1461023357806387a6eeef1461024857600080fd5b806323b872dd11610124578063313ce56711610109578063313ce567146101e257806339509351146101f757806370a082311461020a57600080fd5b806323b872dd146101bc57806327def4fd146101cf57600080fd5b8063013054c21461015657806306fdde031461017c578063095ea7b31461019157806318160ddd146101b4575b600080fd5b610169610164366004611020565b610320565b6040519081526020015b60405180910390f35b6101846103dd565b6040516101739190611075565b6101a461019f366004610fd4565b61046f565b6040519015158152602001610173565b600254610169565b6101a46101ca366004610f98565b610485565b6101696101dd366004611020565b610549565b60055460405160ff9091168152602001610173565b6101a4610205366004610fd4565b610618565b610169610218366004610f4a565b6001600160a01b031660009081526020819052604090205490565b610246610241366004611020565b610654565b005b610246610256366004611052565b6106f5565b6101846107b4565b6101a4610271366004610fd4565b6107c3565b6101a4610284366004610fd4565b610874565b610169610297366004610f4a565b610881565b6033546001600160a01b03165b6040516001600160a01b039091168152602001610173565b6101696102cf366004610f65565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610169610308366004611020565b6108a9565b6033546102a9906001600160a01b031681565b60008061032c836108a9565b9050610338338261095a565b6033546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018590526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561039d57600080fd5b505af11580156103b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d59190610ffe565b509192915050565b6060600380546103ec90611176565b80601f016020809104026020016040519081016040528092919081815260200182805461041890611176565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b600061047c338484610adf565b50600192915050565b6000610492848484610c37565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105315760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61053e8533858403610adf565b506001949350505050565b60008061055560025490565b905080610563575090919050565b6033546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015282916001600160a01b0316906370a082319060240160206040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f79190611039565b6106019085611122565b61060b9190611100565b9392505050565b50919050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161047c91859061064f9086906110e8565b610adf565b6033546040517f40c10f19000000000000000000000000000000000000000000000000000000008152306004820152602481018390526001600160a01b03909116906340c10f1990604401602060405180830381600087803b1580156106b957600080fd5b505af11580156106cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f19190610ffe565b5050565b6000610700836108a9565b6033546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018690529192506001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561076c57600080fd5b505af1158015610780573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a49190610ffe565b506107af8282610e4f565b505050565b6060600480546103ec90611176565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561085d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610528565b61086a3385858403610adf565b5060019392505050565b600061047c338484610c37565b6001600160a01b0381166000908152602081905260408120546108a390610549565b92915050565b6033546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009182916001600160a01b03909116906370a082319060240160206040518083038186803b15801561090a57600080fd5b505afa15801561091e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109429190611039565b905080610950575090919050565b806105f760025490565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b03821660009081526020819052604090205481811015610a655760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a9490849061115f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b038316610b5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b038216610bd65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b038216610d2f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b03831660009081526020819052604090205481811015610dbe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610528565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610df59084906110e8565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e4191815260200190565b60405180910390a350505050565b6001600160a01b038216610ea55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610528565b8060026000828254610eb791906110e8565b90915550506001600160a01b03821660009081526020819052604081208054839290610ee49084906110e8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610f4557600080fd5b919050565b600060208284031215610f5c57600080fd5b61060b82610f2e565b60008060408385031215610f7857600080fd5b610f8183610f2e565b9150610f8f60208401610f2e565b90509250929050565b600080600060608486031215610fad57600080fd5b610fb684610f2e565b9250610fc460208501610f2e565b9150604084013590509250925092565b60008060408385031215610fe757600080fd5b610ff083610f2e565b946020939093013593505050565b60006020828403121561101057600080fd5b8151801515811461060b57600080fd5b60006020828403121561103257600080fd5b5035919050565b60006020828403121561104b57600080fd5b5051919050565b6000806040838503121561106557600080fd5b82359150610f8f60208401610f2e565b600060208083528351808285015260005b818110156110a257858101830151858201604001528201611086565b818111156110b4576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600082198211156110fb576110fb6111ab565b500190565b60008261111d57634e487b7160e01b600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561115a5761115a6111ab565b500290565b600082821015611171576111716111ab565b500390565b600181811c9082168061118a57607f821691505b6020821081141561061257634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fdfea2646970667358221220b0d0be68a96eb65dff25f8029835bce2abb1d1a48ef76bf55bb9abf97a1df9ac64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x151 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x765287EF GT PUSH2 0xCD JUMPI DUP1 PUSH4 0xB99152D0 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0xF3044AC7 EQ PUSH2 0x2FA JUMPI DUP1 PUSH4 0xFC0C546A EQ PUSH2 0x30D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB99152D0 EQ PUSH2 0x289 JUMPI DUP1 PUSH4 0xC89039C5 EQ PUSH2 0x29C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x25B JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x276 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x765287EF EQ PUSH2 0x233 JUMPI DUP1 PUSH4 0x87A6EEEF EQ PUSH2 0x248 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x124 JUMPI DUP1 PUSH4 0x313CE567 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1BC JUMPI DUP1 PUSH4 0x27DEF4FD EQ PUSH2 0x1CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13054C2 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x191 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1B4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x169 PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x320 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x184 PUSH2 0x3DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x19F CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x46F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x173 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x169 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x1CA CALLDATASIZE PUSH1 0x4 PUSH2 0xF98 JUMP JUMPDEST PUSH2 0x485 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x1DD CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x549 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x173 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x618 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x218 CALLDATASIZE PUSH1 0x4 PUSH2 0xF4A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x246 PUSH2 0x241 CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x654 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x246 PUSH2 0x256 CALLDATASIZE PUSH1 0x4 PUSH2 0x1052 JUMP JUMPDEST PUSH2 0x6F5 JUMP JUMPDEST PUSH2 0x184 PUSH2 0x7B4 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x7C3 JUMP JUMPDEST PUSH2 0x1A4 PUSH2 0x284 CALLDATASIZE PUSH1 0x4 PUSH2 0xFD4 JUMP JUMPDEST PUSH2 0x874 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x297 CALLDATASIZE PUSH1 0x4 PUSH2 0xF4A JUMP JUMPDEST PUSH2 0x881 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x173 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x2CF CALLDATASIZE PUSH1 0x4 PUSH2 0xF65 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x169 PUSH2 0x308 CALLDATASIZE PUSH1 0x4 PUSH2 0x1020 JUMP JUMPDEST PUSH2 0x8A9 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH2 0x2A9 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x32C DUP4 PUSH2 0x8A9 JUMP JUMPDEST SWAP1 POP PUSH2 0x338 CALLER DUP3 PUSH2 0x95A JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x39D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3B1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x3D5 SWAP2 SWAP1 PUSH2 0xFFE JUMP JUMPDEST POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3EC SWAP1 PUSH2 0x1176 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x418 SWAP1 PUSH2 0x1176 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x465 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x43A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x465 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x448 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47C CALLER DUP5 DUP5 PUSH2 0xADF JUMP JUMPDEST POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x492 DUP5 DUP5 DUP5 PUSH2 0xC37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x28 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x53E DUP6 CALLER DUP6 DUP5 SUB PUSH2 0xADF JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x555 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x563 JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x5BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5D3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5F7 SWAP2 SWAP1 PUSH2 0x1039 JUMP JUMPDEST PUSH2 0x601 SWAP1 DUP6 PUSH2 0x1122 JUMP JUMPDEST PUSH2 0x60B SWAP2 SWAP1 PUSH2 0x1100 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 PUSH2 0x47C SWAP2 DUP6 SWAP1 PUSH2 0x64F SWAP1 DUP7 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST PUSH2 0xADF JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x40C10F1900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x6CD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x6F1 SWAP2 SWAP1 PUSH2 0xFFE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x700 DUP4 PUSH2 0x8A9 JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x76C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x780 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x7A4 SWAP2 SWAP1 PUSH2 0xFFE JUMP JUMPDEST POP PUSH2 0x7AF DUP3 DUP3 PUSH2 0xE4F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3EC SWAP1 PUSH2 0x1176 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x85D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH2 0x86A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0xADF JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x47C CALLER DUP5 DUP5 PUSH2 0xC37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x8A3 SWAP1 PUSH2 0x549 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x33 SLOAD PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x90A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x91E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x942 SWAP2 SWAP1 PUSH2 0x1039 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x950 JUMPI POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 PUSH2 0x5F7 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x9D6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E2066726F6D20746865207A65726F20616464726573 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7300000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA65 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206275726E20616D6F756E7420657863656564732062616C616E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP4 DUP4 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xA94 SWAP1 DUP5 SWAP1 PUSH2 0x115F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xB5A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xBD6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xCB3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xD2F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xDBE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x528 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 SUB SWAP1 SSTORE SWAP2 DUP6 AND DUP2 MSTORE SWAP1 DUP2 KECCAK256 DUP1 SLOAD DUP5 SWAP3 SWAP1 PUSH2 0xDF5 SWAP1 DUP5 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE41 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEA5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x528 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xEB7 SWAP2 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xEE4 SWAP1 DUP5 SWAP1 PUSH2 0x10E8 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF45 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60B DUP3 PUSH2 0xF2E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF81 DUP4 PUSH2 0xF2E JUMP JUMPDEST SWAP2 POP PUSH2 0xF8F PUSH1 0x20 DUP5 ADD PUSH2 0xF2E JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xFAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFB6 DUP5 PUSH2 0xF2E JUMP JUMPDEST SWAP3 POP PUSH2 0xFC4 PUSH1 0x20 DUP6 ADD PUSH2 0xF2E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFF0 DUP4 PUSH2 0xF2E JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1010 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x60B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1032 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x104B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1065 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0xF8F PUSH1 0x20 DUP5 ADD PUSH2 0xF2E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x10A2 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x1086 JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x10B4 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x10FB JUMPI PUSH2 0x10FB PUSH2 0x11AB JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x111D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x115A JUMPI PUSH2 0x115A PUSH2 0x11AB JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x1171 JUMPI PUSH2 0x1171 PUSH2 0x11AB JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x118A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x612 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB0 0xD0 0xBE PUSH9 0xA96EB65DFF25F80298 CALLDATALOAD 0xBC 0xE2 0xAB 0xB1 0xD1 LOG4 DUP15 0xF7 PUSH12 0xF55BB9ABF97A1DF9AC64736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "354:2472:72:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2022:232;;;;;;:::i;:::-;;:::i;:::-;;;8372:25:94;;;8360:2;8345:18;2022:232:72;;;;;;;;2562:89:70;;;:::i;:::-;;;;;;;:::i;4601:155::-;;;;;;:::i;:::-;;:::i;:::-;;;3279:14:94;;3272:22;3254:41;;3242:2;3227:18;4601:155:70;3209:92:94;3630:97:70;3708:12;;3630:97;;5223:465;;;;;;:::i;:::-;;:::i;2554:270:72:-;;;;;;:::i;:::-;;:::i;3481:89:70:-;3554:9;;3481:89;;3554:9;;;;8550:36:94;;8538:2;8523:18;3481:89:70;8505:87:94;6083:208:70;;;;;;:::i;:::-;;:::i;3785:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3876:18:70;3850:7;3876:18;;;;;;;;;;;;3785:116;645:90:72;;;;;;:::i;:::-;;:::i;:::-;;1562:215;;;;;;:::i;:::-;;:::i;2764:93:70:-;;;:::i;6778:429::-;;;;;;:::i;:::-;;:::i;4104:161::-;;;;;;:::i;:::-;;:::i;1121:134:72:-;;;;;;:::i;:::-;;:::i;853:103::-;943:5;;-1:-1:-1;;;;;943:5:72;853:103;;;-1:-1:-1;;;;;2342:55:94;;;2324:74;;2312:2;2297:18;853:103:72;2279:125:94;4323:140:70;;;;;;:::i;:::-;-1:-1:-1;;;;;4429:18:70;;;4403:7;4429:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4323:140;2260:288:72;;;;;;:::i;:::-;;:::i;408:26::-;;;;;-1:-1:-1;;;;;408:26:72;;;2022:232;2086:7;2105:14;2122:22;2137:6;2122:14;:22::i;:::-;2105:39;;2154:25;2160:10;2172:6;2154:5;:25::i;:::-;2189:5;;:34;;;;;2204:10;2189:34;;;2986:74:94;3076:18;;;3069:34;;;-1:-1:-1;;;;;2189:5:72;;;;:14;;2959:18:94;;2189:34:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2241:6:72;;2022:232;-1:-1:-1;;2022:232:72:o;2562:89:70:-;2607:13;2639:5;2632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2562:89;:::o;4601:155::-;4675:4;4691:37;4700:10;4712:7;4721:6;4691:8;:37::i;:::-;-1:-1:-1;4745:4:70;4601:155;;;;:::o;5223:465::-;5350:4;5366:36;5376:6;5384:9;5395:6;5366:9;:36::i;:::-;-1:-1:-1;;;;;5440:19:70;;5413:24;5440:19;;;:11;:19;;;;;;;;5460:10;5440:31;;;;;;;;5489:26;;;;5481:79;;;;-1:-1:-1;;;5481:79:70;;6040:2:94;5481:79:70;;;6022:21:94;6079:2;6059:18;;;6052:30;6118:34;6098:18;;;6091:62;6189:10;6169:18;;;6162:38;6217:19;;5481:79:70;;;;;;;;;5594:55;5603:6;5611:10;5642:6;5623:16;:25;5594:8;:55::i;:::-;-1:-1:-1;5677:4:70;;5223:465;-1:-1:-1;;;;5223:465:70:o;2554:270:72:-;2615:7;2634:14;2651:13;3708:12:70;;;3630:97;2651:13:72;2634:30;-1:-1:-1;2679:11:72;2675:143;;-1:-1:-1;2713:6:72;;2554:270;-1:-1:-1;2554:270:72:o;2675:143::-;2767:5;;:30;;;;;2791:4;2767:30;;;2324:74:94;2801:6:72;;-1:-1:-1;;;;;2767:5:72;;:15;;2297:18:94;;2767:30:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2758:39;;:6;:39;:::i;:::-;2757:50;;;;:::i;:::-;2750:57;2554:270;-1:-1:-1;;;2554:270:72:o;2675:143::-;2624:200;2554:270;;;:::o;6083:208:70:-;6196:10;6171:4;6217:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6217:32:70;;;;;;;;;;6171:4;;6187:76;;6208:7;;6217:45;;6252:10;;6217:45;:::i;:::-;6187:8;:76::i;645:90:72:-;695:5;;:33;;;;;714:4;695:33;;;2986:74:94;3076:18;;;3069:34;;;-1:-1:-1;;;;;695:5:72;;;;:10;;2959:18:94;;695:33:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;645:90;:::o;1562:215::-;1641:14;1658:22;1673:6;1658:14;:22::i;:::-;1690:5;;:53;;;;;1709:10;1690:53;;;2672:34:94;1729:4:72;2722:18:94;;;2715:43;2774:18;;;2767:34;;;1641:39:72;;-1:-1:-1;;;;;;1690:5:72;;:18;;2584::94;;1690:53:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1753:17;1759:2;1763:6;1753:5;:17::i;:::-;1631:146;1562:215;;:::o;2764:93:70:-;2811:13;2843:7;2836:14;;;;;:::i;6778:429::-;6954:10;6895:4;6942:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6942:32:70;;;;;;;;;;6992:35;;;;6984:85;;;;-1:-1:-1;;;6984:85:70;;7662:2:94;6984:85:70;;;7644:21:94;7701:2;7681:18;;;7674:30;7740:34;7720:18;;;7713:62;7811:7;7791:18;;;7784:35;7836:19;;6984:85:70;7634:227:94;6984:85:70;7103:65;7112:10;7124:7;7152:15;7133:16;:34;7103:8;:65::i;:::-;-1:-1:-1;7196:4:70;;6778:429;-1:-1:-1;;;6778:429:70:o;4104:161::-;4181:4;4197:40;4207:10;4219:9;4230:6;4197:9;:40::i;1121:134:72:-;-1:-1:-1;;;;;3876:18:70;;1191:7:72;3876:18:70;;;;;;;;;;;1217:31:72;;2554:270;:::i;1217:31::-;1210:38;1121:134;-1:-1:-1;;1121:134:72:o;2260:288::-;2363:5;;:30;;;;;2387:4;2363:30;;;2324:74:94;2321:7:72;;;;-1:-1:-1;;;;;2363:5:72;;;;:15;;2297:18:94;;2363:30:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2340:53;-1:-1:-1;2408:17:72;2404:138;;-1:-1:-1;2448:6:72;;2260:288;-1:-1:-1;2260:288:72:o;2404:138::-;2519:12;2502:13;3708:12:70;;;3630:97;9379:576;-1:-1:-1;;;;;9462:21:70;;9454:67;;;;-1:-1:-1;;;9454:67:70;;6449:2:94;9454:67:70;;;6431:21:94;6488:2;6468:18;;;6461:30;6527:34;6507:18;;;6500:62;6598:3;6578:18;;;6571:31;6619:19;;9454:67:70;6421:223:94;9454:67:70;-1:-1:-1;;;;;9617:18:70;;9592:22;9617:18;;;;;;;;;;;9653:24;;;;9645:71;;;;-1:-1:-1;;;9645:71:70;;4827:2:94;9645:71:70;;;4809:21:94;4866:2;4846:18;;;4839:30;4905:34;4885:18;;;4878:62;4976:4;4956:18;;;4949:32;4998:19;;9645:71:70;4799:224:94;9645:71:70;-1:-1:-1;;;;;9750:18:70;;:9;:18;;;;;;;;;;9771:23;;;9750:44;;9814:12;:22;;9788:6;;9750:9;9814:22;;9788:6;;9814:22;:::i;:::-;;;;-1:-1:-1;;9852:37:70;;8372:25:94;;;9878:1:70;;-1:-1:-1;;;;;9852:37:70;;;;;8360:2:94;8345:18;9852:37:70;;;;;;;1631:146:72;1562:215;;:::o;10378:370:70:-;-1:-1:-1;;;;;10509:19:70;;10501:68;;;;-1:-1:-1;;;10501:68:70;;7257:2:94;10501:68:70;;;7239:21:94;7296:2;7276:18;;;7269:30;7335:34;7315:18;;;7308:62;7406:6;7386:18;;;7379:34;7430:19;;10501:68:70;7229:226:94;10501:68:70;-1:-1:-1;;;;;10587:21:70;;10579:68;;;;-1:-1:-1;;;10579:68:70;;5230:2:94;10579:68:70;;;5212:21:94;5269:2;5249:18;;;5242:30;5308:34;5288:18;;;5281:62;5379:4;5359:18;;;5352:32;5401:19;;10579:68:70;5202:224:94;10579:68:70;-1:-1:-1;;;;;10658:18:70;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10709:32;;8372:25:94;;;10709:32:70;;8345:18:94;10709:32:70;;;;;;;10378:370;;;:::o;7681:713::-;-1:-1:-1;;;;;7816:20:70;;7808:70;;;;-1:-1:-1;;;7808:70:70;;6851:2:94;7808:70:70;;;6833:21:94;6890:2;6870:18;;;6863:30;6929:34;6909:18;;;6902:62;7000:7;6980:18;;;6973:35;7025:19;;7808:70:70;6823:227:94;7808:70:70;-1:-1:-1;;;;;7896:23:70;;7888:71;;;;-1:-1:-1;;;7888:71:70;;4423:2:94;7888:71:70;;;4405:21:94;4462:2;4442:18;;;4435:30;4501:34;4481:18;;;4474:62;4572:5;4552:18;;;4545:33;4595:19;;7888:71:70;4395:225:94;7888:71:70;-1:-1:-1;;;;;8052:17:70;;8028:21;8052:17;;;;;;;;;;;8087:23;;;;8079:74;;;;-1:-1:-1;;;8079:74:70;;5633:2:94;8079:74:70;;;5615:21:94;5672:2;5652:18;;;5645:30;5711:34;5691:18;;;5684:62;5782:8;5762:18;;;5755:36;5808:19;;8079:74:70;5605:228:94;8079:74:70;-1:-1:-1;;;;;8187:17:70;;;:9;:17;;;;;;;;;;;8207:22;;;8187:42;;8249:20;;;;;;;;:30;;8223:6;;8187:9;8249:30;;8223:6;;8249:30;:::i;:::-;;;;;;;;8312:9;-1:-1:-1;;;;;8295:35:70;8304:6;-1:-1:-1;;;;;8295:35:70;;8323:6;8295:35;;;;8372:25:94;;8360:2;8345:18;;8327:76;8295:35:70;;;;;;;;7798:596;7681:713;;;:::o;8670:389::-;-1:-1:-1;;;;;8753:21:70;;8745:65;;;;-1:-1:-1;;;8745:65:70;;8068:2:94;8745:65:70;;;8050:21:94;8107:2;8087:18;;;8080:30;8146:33;8126:18;;;8119:61;8197:18;;8745:65:70;8040:181:94;8745:65:70;8897:6;8881:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8913:18:70;;:9;:18;;;;;;;;;;:28;;8935:6;;8913:9;:28;;8935:6;;8913:28;:::i;:::-;;;;-1:-1:-1;;8956:37:70;;8372:25:94;;;-1:-1:-1;;;;;8956:37:70;;;8973:1;;8956:37;;8360:2:94;8345:18;8956:37:70;;;;;;;695:33:72;645:90;:::o;14:196:94:-;82:20;;-1:-1:-1;;;;;131:54:94;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:94:o;1263:277::-;1330:6;1383:2;1371:9;1362:7;1358:23;1354:32;1351:2;;;1399:1;1396;1389:12;1351:2;1431:9;1425:16;1484:5;1477:13;1470:21;1463:5;1460:32;1450:2;;1506:1;1503;1496:12;1545:180;1604:6;1657:2;1645:9;1636:7;1632:23;1628:32;1625:2;;;1673:1;1670;1663:12;1625:2;-1:-1:-1;1696:23:94;;1615:110;-1:-1:-1;1615:110:94:o;1730:184::-;1800:6;1853:2;1841:9;1832:7;1828:23;1824:32;1821:2;;;1869:1;1866;1859:12;1821:2;-1:-1:-1;1892:16:94;;1811:103;-1:-1:-1;1811:103:94:o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:2;;;2064:1;2061;2054:12;2016:2;2100:9;2087:23;2077:33;;2129:38;2163:2;2152:9;2148:18;2129:38;:::i;3560:656::-;3672:4;3701:2;3730;3719:9;3712:21;3762:6;3756:13;3805:6;3800:2;3789:9;3785:18;3778:34;3830:1;3840:140;3854:6;3851:1;3848:13;3840:140;;;3949:14;;;3945:23;;3939:30;3915:17;;;3934:2;3911:26;3904:66;3869:10;;3840:140;;;3998:6;3995:1;3992:13;3989:2;;;4068:1;4063:2;4054:6;4043:9;4039:22;4035:31;4028:42;3989:2;-1:-1:-1;4132:2:94;4120:15;4137:66;4116:88;4101:104;;;;4207:2;4097:113;;3681:535;-1:-1:-1;;;3681:535:94:o;8597:128::-;8637:3;8668:1;8664:6;8661:1;8658:13;8655:2;;;8674:18;;:::i;:::-;-1:-1:-1;8710:9:94;;8645:80::o;8730:274::-;8770:1;8796;8786:2;;-1:-1:-1;;;8828:1:94;8821:88;8932:4;8929:1;8922:15;8960:4;8957:1;8950:15;8786:2;-1:-1:-1;8989:9:94;;8776:228::o;9009:::-;9049:7;9175:1;9107:66;9103:74;9100:1;9097:81;9092:1;9085:9;9078:17;9074:105;9071:2;;;9182:18;;:::i;:::-;-1:-1:-1;9222:9:94;;9061:176::o;9242:125::-;9282:4;9310:1;9307;9304:8;9301:2;;;9315:18;;:::i;:::-;-1:-1:-1;9352:9:94;;9291:76::o;9372:437::-;9451:1;9447:12;;;;9494;;;9515:2;;9569:4;9561:6;9557:17;9547:27;;9515:2;9622;9614:6;9611:14;9591:18;9588:38;9585:2;;;-1:-1:-1;;;9656:1:94;9649:88;9760:4;9757:1;9750:15;9788:4;9785:1;9778:15;9814:184;-1:-1:-1;;;9863:1:94;9856:88;9963:4;9960:1;9953:15;9987:4;9984:1;9977:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "919800",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24664",
                "balanceOf(address)": "2618",
                "balanceOfToken(address)": "infinite",
                "decimals()": "2334",
                "decreaseAllowance(address,uint256)": "26955",
                "depositToken()": "2387",
                "increaseAllowance(address,uint256)": "27001",
                "name()": "infinite",
                "redeemToken(uint256)": "infinite",
                "sharesToTokens(uint256)": "infinite",
                "supplyTokenTo(uint256,address)": "infinite",
                "symbol()": "infinite",
                "token()": "2425",
                "tokensToShares(uint256)": "infinite",
                "totalSupply()": "2371",
                "transfer(address,uint256)": "51254",
                "transferFrom(address,address,uint256)": "infinite",
                "yield(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "balanceOfToken(address)": "b99152d0",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "depositToken()": "c89039c5",
              "increaseAllowance(address,uint256)": "39509351",
              "name()": "06fdde03",
              "redeemToken(uint256)": "013054c2",
              "sharesToTokens(uint256)": "27def4fd",
              "supplyTokenTo(uint256,address)": "87a6eeef",
              "symbol()": "95d89b41",
              "token()": "fc0c546a",
              "tokensToShares(uint256)": "f3044ac7",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd",
              "yield(uint256)": "765287ef"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"addr\",\"type\":\"address\"}],\"name\":\"balanceOfToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"depositToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"sharesToTokens\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"supplyTokenTo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"token\",\"outputs\":[{\"internalType\":\"contract ERC20Mintable\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokens\",\"type\":\"uint256\"}],\"name\":\"tokensToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"yield\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Extension of {ERC20} that adds a set of accounts with the {MinterRole}, which have permission to mint (create) new tokens as they see fit. At construction, the deployer of the contract is the only minter.\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"balanceOfToken(address)\":{\"returns\":{\"_0\":\"The underlying balance of asset tokens.\"}},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"depositToken()\":{\"returns\":{\"_0\":\"The ERC20 asset token address.\"}},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"redeemToken(uint256)\":{\"params\":{\"amount\":\"The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\"},\"returns\":{\"_0\":\"The actual amount of interst bearing tokens that were redeemed.\"}},\"supplyTokenTo(uint256,address)\":{\"params\":{\"amount\":\"The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\",\"to\":\"The user whose balance will receive the tokens\"}},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"balanceOfToken(address)\":{\"notice\":\"Returns the total balance (in asset tokens).  This includes the deposits and interest.\"},\"depositToken()\":{\"notice\":\"Returns the ERC20 asset token used for deposits.\"},\"redeemToken(uint256)\":{\"notice\":\"Redeems tokens from the yield source.\"},\"supplyTokenTo(uint256,address)\":{\"notice\":\"Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol\":\"MockYieldSource\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\n/// @title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\\n/// @notice Prize Pools subclasses need to implement this interface so that yield can be generated.\\ninterface IYieldSource {\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view returns (address);\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external returns (uint256);\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external;\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x659c59f7b0a4cac6ce4c46a8ccec1d8d7ab14aa08451c0d521804fec9ccc95f1\",\"license\":\"GPL-3.0\"},\"@pooltogether/yield-source-interface/contracts/test/ERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\npragma solidity >=0.6.0;\\n\\n/**\\n * NOTE: Copied from OpenZeppelin\\n *\\n * @dev Implementation of the {IERC20} interface.\\n *\\n * This implementation is agnostic to the way tokens are created. This means\\n * that a supply mechanism has to be added in a derived contract using {_mint}.\\n * For a generic mechanism see {ERC20PresetMinterPauser}.\\n *\\n * TIP: For a detailed writeup see our guide\\n * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\\n * to implement supply mechanisms].\\n *\\n * We have followed general OpenZeppelin guidelines: functions revert instead\\n * of returning `false` on failure. This behavior is nonetheless conventional\\n * and does not conflict with the expectations of ERC20 applications.\\n *\\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\\n * This allows applications to reconstruct the allowance for all accounts just\\n * by listening to said events. Other implementations of the EIP may not emit\\n * these events, as it isn't required by the specification.\\n *\\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\\n * functions have been added to mitigate the well-known issues around setting\\n * allowances. See {IERC20-approve}.\\n */\\ncontract ERC20 {\\n    mapping(address => uint256) private _balances;\\n\\n    mapping(address => mapping(address => uint256)) private _allowances;\\n\\n    uint256 private _totalSupply;\\n\\n    string private _name;\\n    string private _symbol;\\n    uint8 private _decimals;\\n\\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 Sets the values for {name} and {symbol}.\\n     *\\n     * The default value of {decimals} is 18. To select a different value for\\n     * {decimals} you should overload it.\\n     *\\n     * All two of these values are immutable: they can only be set once during\\n     * construction.\\n     */\\n    constructor(\\n        string memory name_,\\n        string memory symbol_,\\n        uint8 decimals_\\n    ) {\\n        _name = name_;\\n        _symbol = symbol_;\\n        _decimals = decimals_;\\n    }\\n\\n    /**\\n     * @dev Returns the name of the token.\\n     */\\n    function name() public view virtual returns (string memory) {\\n        return _name;\\n    }\\n\\n    /**\\n     * @dev Returns the symbol of the token, usually a shorter version of the\\n     * name.\\n     */\\n    function symbol() public view virtual returns (string memory) {\\n        return _symbol;\\n    }\\n\\n    /**\\n     * @dev Returns the number of decimals used to get its user representation.\\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\\n     * be displayed to a user as `5,05` (`505 / 10 ** 2`).\\n     *\\n     * Tokens usually opt for a value of 18, imitating the relationship between\\n     * Ether and Wei. This is the value {ERC20} uses, unless this function is\\n     * overridden;\\n     *\\n     * NOTE: This information is only used for _display_ purposes: it in\\n     * no way affects any of the arithmetic of the contract, including\\n     * {IERC20-balanceOf} and {IERC20-transfer}.\\n     */\\n    function decimals() public view virtual returns (uint8) {\\n        return _decimals;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-totalSupply}.\\n     */\\n    function totalSupply() public view virtual returns (uint256) {\\n        return _totalSupply;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-balanceOf}.\\n     */\\n    function balanceOf(address account) public view virtual returns (uint256) {\\n        return _balances[account];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transfer}.\\n     *\\n     * Requirements:\\n     *\\n     * - `recipient` cannot be the zero address.\\n     * - the caller must have a balance of at least `amount`.\\n     */\\n    function transfer(address recipient, uint256 amount) public virtual returns (bool) {\\n        _transfer(msg.sender, recipient, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-allowance}.\\n     */\\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\\n        return _allowances[owner][spender];\\n    }\\n\\n    /**\\n     * @dev See {IERC20-approve}.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function approve(address spender, uint256 amount) public virtual returns (bool) {\\n        _approve(msg.sender, spender, amount);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev See {IERC20-transferFrom}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance. This is not\\n     * required by the EIP. See the note at the beginning of {ERC20}.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` and `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     * - the caller must have allowance for ``sender``'s tokens of at least\\n     * `amount`.\\n     */\\n    function transferFrom(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) public virtual returns (bool) {\\n        _transfer(sender, recipient, amount);\\n\\n        uint256 currentAllowance = _allowances[sender][msg.sender];\\n        require(currentAllowance >= amount, \\\"ERC20: transfer amount exceeds allowance\\\");\\n        unchecked {\\n            _approve(sender, msg.sender, currentAllowance - amount);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically increases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     */\\n    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\\n        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Atomically decreases the allowance granted to `spender` by the caller.\\n     *\\n     * This is an alternative to {approve} that can be used as a mitigation for\\n     * problems described in {IERC20-approve}.\\n     *\\n     * Emits an {Approval} event indicating the updated allowance.\\n     *\\n     * Requirements:\\n     *\\n     * - `spender` cannot be the zero address.\\n     * - `spender` must have allowance for the caller of at least\\n     * `subtractedValue`.\\n     */\\n    function decreaseAllowance(address spender, uint256 subtractedValue)\\n        public\\n        virtual\\n        returns (bool)\\n    {\\n        uint256 currentAllowance = _allowances[msg.sender][spender];\\n        require(currentAllowance >= subtractedValue, \\\"ERC20: decreased allowance below zero\\\");\\n        unchecked {\\n            _approve(msg.sender, spender, currentAllowance - subtractedValue);\\n        }\\n\\n        return true;\\n    }\\n\\n    /**\\n     * @dev Moves `amount` of tokens from `sender` to `recipient`.\\n     *\\n     * This internal function is equivalent to {transfer}, and can be used to\\n     * e.g. implement automatic token fees, slashing mechanisms, etc.\\n     *\\n     * Emits a {Transfer} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `sender` cannot be the zero address.\\n     * - `recipient` cannot be the zero address.\\n     * - `sender` must have a balance of at least `amount`.\\n     */\\n    function _transfer(\\n        address sender,\\n        address recipient,\\n        uint256 amount\\n    ) internal virtual {\\n        require(sender != address(0), \\\"ERC20: transfer from the zero address\\\");\\n        require(recipient != address(0), \\\"ERC20: transfer to the zero address\\\");\\n\\n        _beforeTokenTransfer(sender, recipient, amount);\\n\\n        uint256 senderBalance = _balances[sender];\\n        require(senderBalance >= amount, \\\"ERC20: transfer amount exceeds balance\\\");\\n        unchecked {\\n            _balances[sender] = senderBalance - amount;\\n        }\\n        _balances[recipient] += amount;\\n\\n        emit Transfer(sender, recipient, amount);\\n\\n        _afterTokenTransfer(sender, recipient, amount);\\n    }\\n\\n    /** @dev Creates `amount` tokens and assigns them to `account`, increasing\\n     * the total supply.\\n     *\\n     * Emits a {Transfer} event with `from` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     */\\n    function _mint(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: mint to the zero address\\\");\\n\\n        _beforeTokenTransfer(address(0), account, amount);\\n\\n        _totalSupply += amount;\\n        _balances[account] += amount;\\n        emit Transfer(address(0), account, amount);\\n\\n        _afterTokenTransfer(address(0), account, amount);\\n    }\\n\\n    /**\\n     * @dev Destroys `amount` tokens from `account`, reducing the\\n     * total supply.\\n     *\\n     * Emits a {Transfer} event with `to` set to the zero address.\\n     *\\n     * Requirements:\\n     *\\n     * - `account` cannot be the zero address.\\n     * - `account` must have at least `amount` tokens.\\n     */\\n    function _burn(address account, uint256 amount) internal virtual {\\n        require(account != address(0), \\\"ERC20: burn from the zero address\\\");\\n\\n        _beforeTokenTransfer(account, address(0), amount);\\n\\n        uint256 accountBalance = _balances[account];\\n        require(accountBalance >= amount, \\\"ERC20: burn amount exceeds balance\\\");\\n        unchecked {\\n            _balances[account] = accountBalance - amount;\\n        }\\n        _totalSupply -= amount;\\n\\n        emit Transfer(account, address(0), amount);\\n\\n        _afterTokenTransfer(account, address(0), amount);\\n    }\\n\\n    /**\\n     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\\n     *\\n     * This internal function is equivalent to `approve`, and can be used to\\n     * e.g. set automatic allowances for certain subsystems, etc.\\n     *\\n     * Emits an {Approval} event.\\n     *\\n     * Requirements:\\n     *\\n     * - `owner` cannot be the zero address.\\n     * - `spender` cannot be the zero address.\\n     */\\n    function _approve(\\n        address owner,\\n        address spender,\\n        uint256 amount\\n    ) internal virtual {\\n        require(owner != address(0), \\\"ERC20: approve from the zero address\\\");\\n        require(spender != address(0), \\\"ERC20: approve to the zero address\\\");\\n\\n        _allowances[owner][spender] = amount;\\n        emit Approval(owner, spender, amount);\\n    }\\n\\n    /**\\n     * @dev Hook that is called before any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * will be transferred to `to`.\\n     * - when `from` is zero, `amount` tokens will be minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _beforeTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    /**\\n     * @dev Hook that is called after any transfer of tokens. This includes\\n     * minting and burning.\\n     *\\n     * Calling conditions:\\n     *\\n     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\\n     * has been transferred to `to`.\\n     * - when `from` is zero, `amount` tokens have been minted for `to`.\\n     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\\n     * - `from` and `to` are never both zero.\\n     *\\n     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\\n     */\\n    function _afterTokenTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) internal virtual {}\\n\\n    uint256[45] private __gap;\\n}\\n\",\"keccak256\":\"0xdd443b9630201b27f09fdacb9ed000005c769e320718534f9147ebb2863570b8\",\"license\":\"MIT\"},\"@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\nimport \\\"./ERC20.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract ERC20Mintable is ERC20 {\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 _decimals\\n    ) ERC20(_name, _symbol, _decimals) {}\\n\\n    /**\\n     * @dev See {ERC20-_mint}.\\n     *\\n     * Requirements:\\n     *\\n     * - the caller must have the {MinterRole}.\\n     */\\n    function mint(address account, uint256 amount) public returns (bool) {\\n        _mint(account, amount);\\n        return true;\\n    }\\n\\n    function burn(address account, uint256 amount) public returns (bool) {\\n        _burn(account, amount);\\n        return true;\\n    }\\n\\n    function masterTransfer(\\n        address from,\\n        address to,\\n        uint256 amount\\n    ) public {\\n        _transfer(from, to, amount);\\n    }\\n}\\n\",\"keccak256\":\"0x875d7981f3050f693d95b7660bd8d460757f1a523801e70d3add7fc7fa8ae338\",\"license\":\"GPL-3.0\"},\"@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity >=0.6.0;\\n\\nimport \\\"../IYieldSource.sol\\\";\\nimport \\\"./ERC20Mintable.sol\\\";\\n\\n/**\\n * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\\n * which have permission to mint (create) new tokens as they see fit.\\n *\\n * At construction, the deployer of the contract is the only minter.\\n */\\ncontract MockYieldSource is ERC20, IYieldSource {\\n    ERC20Mintable public token;\\n\\n    constructor(\\n        string memory _name,\\n        string memory _symbol,\\n        uint8 _decimals\\n    ) ERC20(\\\"YIELD\\\", \\\"YLD\\\", 18) {\\n        token = new ERC20Mintable(_name, _symbol, _decimals);\\n    }\\n\\n    function yield(uint256 amount) external {\\n        token.mint(address(this), amount);\\n    }\\n\\n    /// @notice Returns the ERC20 asset token used for deposits.\\n    /// @return The ERC20 asset token address.\\n    function depositToken() external view override returns (address) {\\n        return address(token);\\n    }\\n\\n    /// @notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\\n    /// @return The underlying balance of asset tokens.\\n    function balanceOfToken(address addr) external view override returns (uint256) {\\n        return sharesToTokens(balanceOf(addr));\\n    }\\n\\n    /// @notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\\n    /// @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\\n    /// @param to The user whose balance will receive the tokens\\n    function supplyTokenTo(uint256 amount, address to) external override {\\n        uint256 shares = tokensToShares(amount);\\n        token.transferFrom(msg.sender, address(this), amount);\\n        _mint(to, shares);\\n    }\\n\\n    /// @notice Redeems tokens from the yield source.\\n    /// @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\\n    /// @return The actual amount of interst bearing tokens that were redeemed.\\n    function redeemToken(uint256 amount) external override returns (uint256) {\\n        uint256 shares = tokensToShares(amount);\\n        _burn(msg.sender, shares);\\n        token.transfer(msg.sender, amount);\\n\\n        return amount;\\n    }\\n\\n    function tokensToShares(uint256 tokens) public view returns (uint256) {\\n        uint256 tokenBalance = token.balanceOf(address(this));\\n\\n        if (tokenBalance == 0) {\\n            return tokens;\\n        } else {\\n            return (tokens * totalSupply()) / tokenBalance;\\n        }\\n    }\\n\\n    function sharesToTokens(uint256 shares) public view returns (uint256) {\\n        uint256 supply = totalSupply();\\n\\n        if (supply == 0) {\\n            return shares;\\n        } else {\\n            return (shares * token.balanceOf(address(this))) / supply;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xd8bc48b506ff8423b382d4f23b1aae3c2746046b0c37d38e3ee4aebbffd62dfe\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16364,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 16370,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 16372,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 16374,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 16376,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 16378,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "_decimals",
                "offset": 0,
                "slot": "5",
                "type": "t_uint8"
              },
              {
                "astId": 16914,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "__gap",
                "offset": 0,
                "slot": "6",
                "type": "t_array(t_uint256)45_storage"
              },
              {
                "astId": 17000,
                "contract": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol:MockYieldSource",
                "label": "token",
                "offset": 0,
                "slot": "51",
                "type": "t_contract(ERC20Mintable)16988"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_uint256)45_storage": {
                "base": "t_uint256",
                "encoding": "inplace",
                "label": "uint256[45]",
                "numberOfBytes": "1440"
              },
              "t_contract(ERC20Mintable)16988": {
                "encoding": "inplace",
                "label": "contract ERC20Mintable",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => uint256))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_uint256)"
              },
              "t_mapping(t_address,t_uint256)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_string_storage": {
                "encoding": "bytes",
                "label": "string",
                "numberOfBytes": "32"
              },
              "t_uint256": {
                "encoding": "inplace",
                "label": "uint256",
                "numberOfBytes": "32"
              },
              "t_uint8": {
                "encoding": "inplace",
                "label": "uint8",
                "numberOfBytes": "1"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "balanceOfToken(address)": {
                "notice": "Returns the total balance (in asset tokens).  This includes the deposits and interest."
              },
              "depositToken()": {
                "notice": "Returns the ERC20 asset token used for deposits."
              },
              "redeemToken(uint256)": {
                "notice": "Redeems tokens from the yield source."
              },
              "supplyTokenTo(uint256,address)": {
                "notice": "Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param."
              }
            },
            "version": 1
          }
        }
      }
    },
    "sources": {
      "@openzeppelin/contracts/security/ReentrancyGuard.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
          "exportedSymbols": {
            "ReentrancyGuard": [
              39
            ]
          },
          "id": 40,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "97:23:0"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 2,
                "nodeType": "StructuredDocumentation",
                "src": "122:750:0",
                "text": " @dev Contract module that helps prevent reentrant calls to a function.\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 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 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]."
              },
              "fullyImplemented": true,
              "id": 39,
              "linearizedBaseContracts": [
                39
              ],
              "name": "ReentrancyGuard",
              "nameLocation": "891:15:0",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 5,
                  "mutability": "constant",
                  "name": "_NOT_ENTERED",
                  "nameLocation": "1686:12:0",
                  "nodeType": "VariableDeclaration",
                  "scope": 39,
                  "src": "1661:41:0",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 3,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1661:7:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "31",
                    "id": 4,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1701:1:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1_by_1",
                      "typeString": "int_const 1"
                    },
                    "value": "1"
                  },
                  "visibility": "private"
                },
                {
                  "constant": true,
                  "id": 8,
                  "mutability": "constant",
                  "name": "_ENTERED",
                  "nameLocation": "1733:8:0",
                  "nodeType": "VariableDeclaration",
                  "scope": 39,
                  "src": "1708:37:0",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 6,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1708:7:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "32",
                    "id": 7,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1744:1:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_2_by_1",
                      "typeString": "int_const 2"
                    },
                    "value": "2"
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 10,
                  "mutability": "mutable",
                  "name": "_status",
                  "nameLocation": "1768:7:0",
                  "nodeType": "VariableDeclaration",
                  "scope": 39,
                  "src": "1752:23:0",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 9,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1752:7:0",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 17,
                    "nodeType": "Block",
                    "src": "1796:39:0",
                    "statements": [
                      {
                        "expression": {
                          "id": 15,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "1806:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14,
                            "name": "_NOT_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5,
                            "src": "1816:12:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1806:22:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16,
                        "nodeType": "ExpressionStatement",
                        "src": "1806:22:0"
                      }
                    ]
                  },
                  "id": 18,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1793:2:0"
                  },
                  "returnParameters": {
                    "id": 12,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1796:0:0"
                  },
                  "scope": 39,
                  "src": "1782:53:0",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 37,
                    "nodeType": "Block",
                    "src": "2236:421:0",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 24,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 22,
                                "name": "_status",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10,
                                "src": "2325:7:0",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 23,
                                "name": "_ENTERED",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8,
                                "src": "2336:8:0",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2325:19:0",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                              "id": 25,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2346:33:0",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
                                "typeString": "literal_string \"ReentrancyGuard: reentrant call\""
                              },
                              "value": "ReentrancyGuard: reentrant call"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
                                "typeString": "literal_string \"ReentrancyGuard: reentrant call\""
                              }
                            ],
                            "id": 21,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2317:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 26,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2317:63:0",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 27,
                        "nodeType": "ExpressionStatement",
                        "src": "2317:63:0"
                      },
                      {
                        "expression": {
                          "id": 30,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 28,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "2455:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 29,
                            "name": "_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8,
                            "src": "2465:8:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2455:18:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 31,
                        "nodeType": "ExpressionStatement",
                        "src": "2455:18:0"
                      },
                      {
                        "id": 32,
                        "nodeType": "PlaceholderStatement",
                        "src": "2484:1:0"
                      },
                      {
                        "expression": {
                          "id": 35,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 33,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "2628:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 34,
                            "name": "_NOT_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5,
                            "src": "2638:12:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2628:22:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 36,
                        "nodeType": "ExpressionStatement",
                        "src": "2628:22:0"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 19,
                    "nodeType": "StructuredDocumentation",
                    "src": "1841:366:0",
                    "text": " @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."
                  },
                  "id": 38,
                  "name": "nonReentrant",
                  "nameLocation": "2221:12:0",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 20,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2233:2:0"
                  },
                  "src": "2212:445:0",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 40,
              "src": "873:1786:0",
              "usedErrors": []
            }
          ],
          "src": "97:2563:0"
        },
        "id": 0
      },
      "@openzeppelin/contracts/token/ERC20/ERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
          "exportedSymbols": {
            "Context": [
              1570
            ],
            "ERC20": [
              585
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ]
          },
          "id": 586,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 41,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "90:23:1"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "./IERC20.sol",
              "id": 42,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 586,
              "sourceUnit": 664,
              "src": "115:22:1",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
              "file": "./extensions/IERC20Metadata.sol",
              "id": 43,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 586,
              "sourceUnit": 689,
              "src": "138:41:1",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Context.sol",
              "file": "../../utils/Context.sol",
              "id": 44,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 586,
              "sourceUnit": 1571,
              "src": "180:33:1",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 46,
                    "name": "Context",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1570,
                    "src": "1406:7:1"
                  },
                  "id": 47,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1406:7:1"
                },
                {
                  "baseName": {
                    "id": 48,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "1415:6:1"
                  },
                  "id": 49,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1415:6:1"
                },
                {
                  "baseName": {
                    "id": 50,
                    "name": "IERC20Metadata",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 688,
                    "src": "1423:14:1"
                  },
                  "id": 51,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1423:14:1"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 45,
                "nodeType": "StructuredDocumentation",
                "src": "215:1172:1",
                "text": " @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC20\n applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}."
              },
              "fullyImplemented": true,
              "id": 585,
              "linearizedBaseContracts": [
                585,
                688,
                663,
                1570
              ],
              "name": "ERC20",
              "nameLocation": "1397:5:1",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 55,
                  "mutability": "mutable",
                  "name": "_balances",
                  "nameLocation": "1480:9:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1444:45:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                    "typeString": "mapping(address => uint256)"
                  },
                  "typeName": {
                    "id": 54,
                    "keyType": {
                      "id": 52,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1452:7:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1444:27:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                      "typeString": "mapping(address => uint256)"
                    },
                    "valueType": {
                      "id": 53,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1463:7:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 61,
                  "mutability": "mutable",
                  "name": "_allowances",
                  "nameLocation": "1552:11:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1496:67:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(address => uint256))"
                  },
                  "typeName": {
                    "id": 60,
                    "keyType": {
                      "id": 56,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1504:7:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1496:47:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(address => uint256))"
                    },
                    "valueType": {
                      "id": 59,
                      "keyType": {
                        "id": 57,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1523:7:1",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1515:27:1",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                        "typeString": "mapping(address => uint256)"
                      },
                      "valueType": {
                        "id": 58,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1534:7:1",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 63,
                  "mutability": "mutable",
                  "name": "_totalSupply",
                  "nameLocation": "1586:12:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1570:28:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 62,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1570:7:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 65,
                  "mutability": "mutable",
                  "name": "_name",
                  "nameLocation": "1620:5:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1605:20:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 64,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1605:6:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 67,
                  "mutability": "mutable",
                  "name": "_symbol",
                  "nameLocation": "1646:7:1",
                  "nodeType": "VariableDeclaration",
                  "scope": 585,
                  "src": "1631:22:1",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 66,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1631:6:1",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 83,
                    "nodeType": "Block",
                    "src": "2019:57:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 77,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 75,
                            "name": "_name",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 65,
                            "src": "2029:5:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 76,
                            "name": "name_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 70,
                            "src": "2037:5:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2029:13:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 78,
                        "nodeType": "ExpressionStatement",
                        "src": "2029:13:1"
                      },
                      {
                        "expression": {
                          "id": 81,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 79,
                            "name": "_symbol",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 67,
                            "src": "2052:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 80,
                            "name": "symbol_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 72,
                            "src": "2062:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2052:17:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 82,
                        "nodeType": "ExpressionStatement",
                        "src": "2052:17:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 68,
                    "nodeType": "StructuredDocumentation",
                    "src": "1660:298:1",
                    "text": " @dev Sets the values for {name} and {symbol}.\n The default value of {decimals} is 18. To select a different value for\n {decimals} you should overload it.\n All two of these values are immutable: they can only be set once during\n construction."
                  },
                  "id": 84,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 73,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 70,
                        "mutability": "mutable",
                        "name": "name_",
                        "nameLocation": "1989:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 84,
                        "src": "1975:19:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 69,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1975:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 72,
                        "mutability": "mutable",
                        "name": "symbol_",
                        "nameLocation": "2010:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 84,
                        "src": "1996:21:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 71,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1996:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1974:44:1"
                  },
                  "returnParameters": {
                    "id": 74,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2019:0:1"
                  },
                  "scope": 585,
                  "src": "1963:113:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    675
                  ],
                  "body": {
                    "id": 93,
                    "nodeType": "Block",
                    "src": "2210:29:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 91,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 65,
                          "src": "2227:5:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 90,
                        "id": 92,
                        "nodeType": "Return",
                        "src": "2220:12:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 85,
                    "nodeType": "StructuredDocumentation",
                    "src": "2082:54:1",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 94,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "2150:4:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 87,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2177:8:1"
                  },
                  "parameters": {
                    "id": 86,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2154:2:1"
                  },
                  "returnParameters": {
                    "id": 90,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 89,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 94,
                        "src": "2195:13:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 88,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2195:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2194:15:1"
                  },
                  "scope": 585,
                  "src": "2141:98:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    681
                  ],
                  "body": {
                    "id": 103,
                    "nodeType": "Block",
                    "src": "2423:31:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 101,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 67,
                          "src": "2440:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 100,
                        "id": 102,
                        "nodeType": "Return",
                        "src": "2433:14:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 95,
                    "nodeType": "StructuredDocumentation",
                    "src": "2245:102:1",
                    "text": " @dev Returns the symbol of the token, usually a shorter version of the\n name."
                  },
                  "functionSelector": "95d89b41",
                  "id": 104,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "2361:6:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 97,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2390:8:1"
                  },
                  "parameters": {
                    "id": 96,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2367:2:1"
                  },
                  "returnParameters": {
                    "id": 100,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 99,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 104,
                        "src": "2408:13:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 98,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2408:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2407:15:1"
                  },
                  "scope": 585,
                  "src": "2352:102:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    687
                  ],
                  "body": {
                    "id": 113,
                    "nodeType": "Block",
                    "src": "3143:26:1",
                    "statements": [
                      {
                        "expression": {
                          "hexValue": "3138",
                          "id": 111,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3160:2:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_18_by_1",
                            "typeString": "int_const 18"
                          },
                          "value": "18"
                        },
                        "functionReturnParameters": 110,
                        "id": 112,
                        "nodeType": "Return",
                        "src": "3153:9:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 105,
                    "nodeType": "StructuredDocumentation",
                    "src": "2460:613:1",
                    "text": " @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the value {ERC20} uses, unless this function is\n overridden;\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."
                  },
                  "functionSelector": "313ce567",
                  "id": 114,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3087:8:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 107,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3118:8:1"
                  },
                  "parameters": {
                    "id": 106,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3095:2:1"
                  },
                  "returnParameters": {
                    "id": 110,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 109,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 114,
                        "src": "3136:5:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 108,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3136:5:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3135:7:1"
                  },
                  "scope": 585,
                  "src": "3078:91:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    594
                  ],
                  "body": {
                    "id": 123,
                    "nodeType": "Block",
                    "src": "3299:36:1",
                    "statements": [
                      {
                        "expression": {
                          "id": 121,
                          "name": "_totalSupply",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 63,
                          "src": "3316:12:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 120,
                        "id": 122,
                        "nodeType": "Return",
                        "src": "3309:19:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 115,
                    "nodeType": "StructuredDocumentation",
                    "src": "3175:49:1",
                    "text": " @dev See {IERC20-totalSupply}."
                  },
                  "functionSelector": "18160ddd",
                  "id": 124,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "3238:11:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 117,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3272:8:1"
                  },
                  "parameters": {
                    "id": 116,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3249:2:1"
                  },
                  "returnParameters": {
                    "id": 120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 119,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 124,
                        "src": "3290:7:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 118,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3290:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3289:9:1"
                  },
                  "scope": 585,
                  "src": "3229:106:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    602
                  ],
                  "body": {
                    "id": 137,
                    "nodeType": "Block",
                    "src": "3476:42:1",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 133,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 55,
                            "src": "3493:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 135,
                          "indexExpression": {
                            "id": 134,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 127,
                            "src": "3503:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3493:18:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 132,
                        "id": 136,
                        "nodeType": "Return",
                        "src": "3486:25:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 125,
                    "nodeType": "StructuredDocumentation",
                    "src": "3341:47:1",
                    "text": " @dev See {IERC20-balanceOf}."
                  },
                  "functionSelector": "70a08231",
                  "id": 138,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "3402:9:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 129,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3449:8:1"
                  },
                  "parameters": {
                    "id": 128,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 127,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "3420:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 138,
                        "src": "3412:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 126,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3412:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3411:17:1"
                  },
                  "returnParameters": {
                    "id": 132,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 131,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 138,
                        "src": "3467:7:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 130,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3467:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3466:9:1"
                  },
                  "scope": 585,
                  "src": "3393:125:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    612
                  ],
                  "body": {
                    "id": 158,
                    "nodeType": "Block",
                    "src": "3813:80:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 150,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1560,
                                "src": "3833:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 151,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3833:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 152,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 141,
                              "src": "3847:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 153,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 143,
                              "src": "3858:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 149,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "3823:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 154,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3823:42:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 155,
                        "nodeType": "ExpressionStatement",
                        "src": "3823:42:1"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 156,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3882:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 148,
                        "id": 157,
                        "nodeType": "Return",
                        "src": "3875:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 139,
                    "nodeType": "StructuredDocumentation",
                    "src": "3524:192:1",
                    "text": " @dev See {IERC20-transfer}.\n Requirements:\n - `recipient` cannot be the zero address.\n - the caller must have a balance of at least `amount`."
                  },
                  "functionSelector": "a9059cbb",
                  "id": 159,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "3730:8:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 145,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3789:8:1"
                  },
                  "parameters": {
                    "id": 144,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 141,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "3747:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 159,
                        "src": "3739:17:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 140,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3739:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 143,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3766:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 159,
                        "src": "3758:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 142,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3758:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3738:35:1"
                  },
                  "returnParameters": {
                    "id": 148,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 147,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 159,
                        "src": "3807:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 146,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3807:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3806:6:1"
                  },
                  "scope": 585,
                  "src": "3721:172:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    622
                  ],
                  "body": {
                    "id": 176,
                    "nodeType": "Block",
                    "src": "4049:51:1",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 170,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 61,
                              "src": "4066:11:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 172,
                            "indexExpression": {
                              "id": 171,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 162,
                              "src": "4078:5:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4066:18:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 174,
                          "indexExpression": {
                            "id": 173,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 164,
                            "src": "4085:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4066:27:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 169,
                        "id": 175,
                        "nodeType": "Return",
                        "src": "4059:34:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 160,
                    "nodeType": "StructuredDocumentation",
                    "src": "3899:47:1",
                    "text": " @dev See {IERC20-allowance}."
                  },
                  "functionSelector": "dd62ed3e",
                  "id": 177,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "3960:9:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 166,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4022:8:1"
                  },
                  "parameters": {
                    "id": 165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 162,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "3978:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 177,
                        "src": "3970:13:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 161,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3970:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 164,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "3993:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 177,
                        "src": "3985:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 163,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3985:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3969:32:1"
                  },
                  "returnParameters": {
                    "id": 169,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 168,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 177,
                        "src": "4040:7:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 167,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4040:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4039:9:1"
                  },
                  "scope": 585,
                  "src": "3951:149:1",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    632
                  ],
                  "body": {
                    "id": 197,
                    "nodeType": "Block",
                    "src": "4327:77:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 189,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1560,
                                "src": "4346:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 190,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4346:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 191,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 180,
                              "src": "4360:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 192,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 182,
                              "src": "4369:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 188,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 562,
                            "src": "4337:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 193,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4337:39:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 194,
                        "nodeType": "ExpressionStatement",
                        "src": "4337:39:1"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 195,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4393:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 187,
                        "id": 196,
                        "nodeType": "Return",
                        "src": "4386:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 178,
                    "nodeType": "StructuredDocumentation",
                    "src": "4106:127:1",
                    "text": " @dev See {IERC20-approve}.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 198,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "4247:7:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 184,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4303:8:1"
                  },
                  "parameters": {
                    "id": 183,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 180,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "4263:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 198,
                        "src": "4255:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 179,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4255:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 182,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4280:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 198,
                        "src": "4272:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 181,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4272:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4254:33:1"
                  },
                  "returnParameters": {
                    "id": 187,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 186,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 198,
                        "src": "4321:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 185,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4321:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4320:6:1"
                  },
                  "scope": 585,
                  "src": "4238:166:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    644
                  ],
                  "body": {
                    "id": 245,
                    "nodeType": "Block",
                    "src": "5013:336:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 212,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 201,
                              "src": "5033:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 213,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 203,
                              "src": "5041:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 214,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 205,
                              "src": "5052:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 211,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "5023:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 215,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5023:36:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 216,
                        "nodeType": "ExpressionStatement",
                        "src": "5023:36:1"
                      },
                      {
                        "assignments": [
                          218
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 218,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "5078:16:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 245,
                            "src": "5070:24:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 217,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5070:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 225,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 219,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 61,
                              "src": "5097:11:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 221,
                            "indexExpression": {
                              "id": 220,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 201,
                              "src": "5109:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5097:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 224,
                          "indexExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 222,
                              "name": "_msgSender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1560,
                              "src": "5117:10:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                "typeString": "function () view returns (address)"
                              }
                            },
                            "id": 223,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5117:12:1",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5097:33:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5070:60:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 229,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 227,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 218,
                                "src": "5148:16:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 228,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 205,
                                "src": "5168:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5148:26:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365",
                              "id": 230,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5176:42:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              },
                              "value": "ERC20: transfer amount exceeds allowance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              }
                            ],
                            "id": 226,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5140:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 231,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5140:79:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 232,
                        "nodeType": "ExpressionStatement",
                        "src": "5140:79:1"
                      },
                      {
                        "id": 242,
                        "nodeType": "UncheckedBlock",
                        "src": "5229:92:1",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 234,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 201,
                                  "src": "5262:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 235,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1560,
                                    "src": "5270:10:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 236,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5270:12:1",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 239,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 237,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 218,
                                    "src": "5284:16:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 238,
                                    "name": "amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 205,
                                    "src": "5303:6:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "5284:25:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 233,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 562,
                                "src": "5253:8:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 240,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5253:57:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 241,
                            "nodeType": "ExpressionStatement",
                            "src": "5253:57:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 243,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5338:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 210,
                        "id": 244,
                        "nodeType": "Return",
                        "src": "5331:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 199,
                    "nodeType": "StructuredDocumentation",
                    "src": "4410:456:1",
                    "text": " @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n Requirements:\n - `sender` and `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`.\n - the caller must have allowance for ``sender``'s tokens of at least\n `amount`."
                  },
                  "functionSelector": "23b872dd",
                  "id": 246,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "4880:12:1",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 207,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4989:8:1"
                  },
                  "parameters": {
                    "id": 206,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 201,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "4910:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "4902:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 200,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4902:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 203,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "4934:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "4926:17:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 202,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4926:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 205,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4961:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "4953:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 204,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4953:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4892:81:1"
                  },
                  "returnParameters": {
                    "id": 210,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 209,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 246,
                        "src": "5007:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 208,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5007:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5006:6:1"
                  },
                  "scope": 585,
                  "src": "4871:478:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 272,
                    "nodeType": "Block",
                    "src": "5838:118:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 257,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1560,
                                "src": "5857:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 258,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5857:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 259,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 249,
                              "src": "5871:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 267,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "baseExpression": {
                                  "baseExpression": {
                                    "id": 260,
                                    "name": "_allowances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 61,
                                    "src": "5880:11:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                      "typeString": "mapping(address => mapping(address => uint256))"
                                    }
                                  },
                                  "id": 263,
                                  "indexExpression": {
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "id": 261,
                                      "name": "_msgSender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1560,
                                      "src": "5892:10:1",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                        "typeString": "function () view returns (address)"
                                      }
                                    },
                                    "id": 262,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5892:12:1",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "5880:25:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 265,
                                "indexExpression": {
                                  "id": 264,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 249,
                                  "src": "5906:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "5880:34:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 266,
                                "name": "addedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 251,
                                "src": "5917:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5880:47:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 256,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 562,
                            "src": "5848:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 268,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5848:80:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 269,
                        "nodeType": "ExpressionStatement",
                        "src": "5848:80:1"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 270,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5945:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 255,
                        "id": 271,
                        "nodeType": "Return",
                        "src": "5938:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 247,
                    "nodeType": "StructuredDocumentation",
                    "src": "5355:384:1",
                    "text": " @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "39509351",
                  "id": 273,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseAllowance",
                  "nameLocation": "5753:17:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 249,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "5779:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 273,
                        "src": "5771:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 248,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5771:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 251,
                        "mutability": "mutable",
                        "name": "addedValue",
                        "nameLocation": "5796:10:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 273,
                        "src": "5788:18:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 250,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5788:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5770:37:1"
                  },
                  "returnParameters": {
                    "id": 255,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 254,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 273,
                        "src": "5832:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 253,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5832:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5831:6:1"
                  },
                  "scope": 585,
                  "src": "5744:212:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 311,
                    "nodeType": "Block",
                    "src": "6542:306:1",
                    "statements": [
                      {
                        "assignments": [
                          284
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 284,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "6560:16:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 311,
                            "src": "6552:24:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 283,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6552:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 291,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 285,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 61,
                              "src": "6579:11:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 288,
                            "indexExpression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 286,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1560,
                                "src": "6591:10:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 287,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6591:12:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6579:25:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 290,
                          "indexExpression": {
                            "id": 289,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 276,
                            "src": "6605:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6579:34:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6552:61:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 295,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 293,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 284,
                                "src": "6631:16:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 294,
                                "name": "subtractedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 278,
                                "src": "6651:15:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6631:35:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                              "id": 296,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6668:39:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              },
                              "value": "ERC20: decreased allowance below zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              }
                            ],
                            "id": 292,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6623:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 297,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6623:85:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 298,
                        "nodeType": "ExpressionStatement",
                        "src": "6623:85:1"
                      },
                      {
                        "id": 308,
                        "nodeType": "UncheckedBlock",
                        "src": "6718:102:1",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 300,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1560,
                                    "src": "6751:10:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 301,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6751:12:1",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 302,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 276,
                                  "src": "6765:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 305,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 303,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 284,
                                    "src": "6774:16:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 304,
                                    "name": "subtractedValue",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 278,
                                    "src": "6793:15:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "6774:34:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 299,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 562,
                                "src": "6742:8:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 306,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6742:67:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 307,
                            "nodeType": "ExpressionStatement",
                            "src": "6742:67:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 309,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "6837:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 282,
                        "id": 310,
                        "nodeType": "Return",
                        "src": "6830:11:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 274,
                    "nodeType": "StructuredDocumentation",
                    "src": "5962:476:1",
                    "text": " @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`."
                  },
                  "functionSelector": "a457c2d7",
                  "id": 312,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseAllowance",
                  "nameLocation": "6452:17:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 279,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 276,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "6478:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 312,
                        "src": "6470:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 275,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6470:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 278,
                        "mutability": "mutable",
                        "name": "subtractedValue",
                        "nameLocation": "6495:15:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 312,
                        "src": "6487:23:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 277,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6487:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6469:42:1"
                  },
                  "returnParameters": {
                    "id": 282,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 281,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 312,
                        "src": "6536:4:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 280,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6536:4:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6535:6:1"
                  },
                  "scope": 585,
                  "src": "6443:405:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 388,
                    "nodeType": "Block",
                    "src": "7439:596:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 328,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 323,
                                "name": "sender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 315,
                                "src": "7457:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 326,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7475:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 325,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7467:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 324,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7467:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 327,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7467:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7457:20:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373",
                              "id": 329,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7479:39:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              },
                              "value": "ERC20: transfer from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              }
                            ],
                            "id": 322,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7449:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 330,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7449:70:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 331,
                        "nodeType": "ExpressionStatement",
                        "src": "7449:70:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 338,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 333,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 317,
                                "src": "7537:9:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 336,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7558:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 335,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7550:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 334,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7550:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 337,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7550:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7537:23:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472657373",
                              "id": 339,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7562:37:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              },
                              "value": "ERC20: transfer to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              }
                            ],
                            "id": 332,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7529:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 340,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7529:71:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 341,
                        "nodeType": "ExpressionStatement",
                        "src": "7529:71:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 343,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 315,
                              "src": "7632:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 344,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "7640:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 345,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 319,
                              "src": "7651:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 342,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 573,
                            "src": "7611:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 346,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7611:47:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 347,
                        "nodeType": "ExpressionStatement",
                        "src": "7611:47:1"
                      },
                      {
                        "assignments": [
                          349
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 349,
                            "mutability": "mutable",
                            "name": "senderBalance",
                            "nameLocation": "7677:13:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 388,
                            "src": "7669:21:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 348,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7669:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 353,
                        "initialValue": {
                          "baseExpression": {
                            "id": 350,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 55,
                            "src": "7693:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 352,
                          "indexExpression": {
                            "id": 351,
                            "name": "sender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 315,
                            "src": "7703:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7693:17:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7669:41:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 357,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 355,
                                "name": "senderBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 349,
                                "src": "7728:13:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 356,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 319,
                                "src": "7745:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7728:23:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365",
                              "id": 358,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7753:40:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              },
                              "value": "ERC20: transfer amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              }
                            ],
                            "id": 354,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7720:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 359,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7720:74:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 360,
                        "nodeType": "ExpressionStatement",
                        "src": "7720:74:1"
                      },
                      {
                        "id": 369,
                        "nodeType": "UncheckedBlock",
                        "src": "7804:77:1",
                        "statements": [
                          {
                            "expression": {
                              "id": 367,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 361,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 55,
                                  "src": "7828:9:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 363,
                                "indexExpression": {
                                  "id": 362,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 315,
                                  "src": "7838:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "7828:17:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 366,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 364,
                                  "name": "senderBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 349,
                                  "src": "7848:13:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 365,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 319,
                                  "src": "7864:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7848:22:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7828:42:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 368,
                            "nodeType": "ExpressionStatement",
                            "src": "7828:42:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 374,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 370,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 55,
                              "src": "7890:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 372,
                            "indexExpression": {
                              "id": 371,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "7900:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7890:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 373,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 319,
                            "src": "7914:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "7890:30:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 375,
                        "nodeType": "ExpressionStatement",
                        "src": "7890:30:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 377,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 315,
                              "src": "7945:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 378,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "7953:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 379,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 319,
                              "src": "7964:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 376,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 653,
                            "src": "7936:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 380,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7936:35:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 381,
                        "nodeType": "EmitStatement",
                        "src": "7931:40:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 383,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 315,
                              "src": "8002:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 384,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 317,
                              "src": "8010:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 385,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 319,
                              "src": "8021:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 382,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 584,
                            "src": "7982:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 386,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7982:46:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 387,
                        "nodeType": "ExpressionStatement",
                        "src": "7982:46:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 313,
                    "nodeType": "StructuredDocumentation",
                    "src": "6854:463:1",
                    "text": " @dev Moves `amount` of tokens from `sender` to `recipient`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n Requirements:\n - `sender` cannot be the zero address.\n - `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`."
                  },
                  "id": 389,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transfer",
                  "nameLocation": "7331:9:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 320,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 315,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "7358:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 389,
                        "src": "7350:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 314,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7350:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 317,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "7382:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 389,
                        "src": "7374:17:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 316,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7374:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 319,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "7409:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 389,
                        "src": "7401:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 318,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7401:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7340:81:1"
                  },
                  "returnParameters": {
                    "id": 321,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7439:0:1"
                  },
                  "scope": 585,
                  "src": "7322:713:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 444,
                    "nodeType": "Block",
                    "src": "8376:324:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 403,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 398,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 392,
                                "src": "8394:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 401,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "8413:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 400,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "8405:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 399,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8405:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 402,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8405:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "8394:21:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                              "id": 404,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8417:33:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              },
                              "value": "ERC20: mint to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              }
                            ],
                            "id": 397,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8386:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 405,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8386:65:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 406,
                        "nodeType": "ExpressionStatement",
                        "src": "8386:65:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 410,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8491:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 409,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8483:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 408,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8483:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 411,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8483:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 412,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8495:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 413,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 394,
                              "src": "8504:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 407,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 573,
                            "src": "8462:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 414,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8462:49:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 415,
                        "nodeType": "ExpressionStatement",
                        "src": "8462:49:1"
                      },
                      {
                        "expression": {
                          "id": 418,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 416,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 63,
                            "src": "8522:12:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 417,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 394,
                            "src": "8538:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8522:22:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 419,
                        "nodeType": "ExpressionStatement",
                        "src": "8522:22:1"
                      },
                      {
                        "expression": {
                          "id": 424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 420,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 55,
                              "src": "8554:9:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 422,
                            "indexExpression": {
                              "id": 421,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8564:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8554:18:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 423,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 394,
                            "src": "8576:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8554:28:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 425,
                        "nodeType": "ExpressionStatement",
                        "src": "8554:28:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 429,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8614:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 428,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8606:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 427,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8606:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 430,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8606:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 431,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8618:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 432,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 394,
                              "src": "8627:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 426,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 653,
                            "src": "8597:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 433,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8597:37:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 434,
                        "nodeType": "EmitStatement",
                        "src": "8592:42:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 438,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8673:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 437,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8665:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 436,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8665:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 439,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8665:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 440,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 392,
                              "src": "8677:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 441,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 394,
                              "src": "8686:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 435,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 584,
                            "src": "8645:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 442,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8645:48:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 443,
                        "nodeType": "ExpressionStatement",
                        "src": "8645:48:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 390,
                    "nodeType": "StructuredDocumentation",
                    "src": "8041:265:1",
                    "text": "@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address."
                  },
                  "id": 445,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "8320:5:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 395,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 392,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "8334:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 445,
                        "src": "8326:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 391,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8326:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 394,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "8351:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 445,
                        "src": "8343:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 393,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8343:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8325:33:1"
                  },
                  "returnParameters": {
                    "id": 396,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8376:0:1"
                  },
                  "scope": 585,
                  "src": "8311:389:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 516,
                    "nodeType": "Block",
                    "src": "9085:511:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 459,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 454,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 448,
                                "src": "9103:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 457,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9122:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 456,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9114:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 455,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9114:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 458,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9114:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9103:21:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f2061646472657373",
                              "id": 460,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9126:35:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              },
                              "value": "ERC20: burn from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              }
                            ],
                            "id": 453,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9095:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 461,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9095:67:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 462,
                        "nodeType": "ExpressionStatement",
                        "src": "9095:67:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 464,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 448,
                              "src": "9194:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 467,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9211:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 466,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9203:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 465,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9203:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 468,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9203:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 469,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 450,
                              "src": "9215:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 463,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 573,
                            "src": "9173:20:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 470,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9173:49:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 471,
                        "nodeType": "ExpressionStatement",
                        "src": "9173:49:1"
                      },
                      {
                        "assignments": [
                          473
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 473,
                            "mutability": "mutable",
                            "name": "accountBalance",
                            "nameLocation": "9241:14:1",
                            "nodeType": "VariableDeclaration",
                            "scope": 516,
                            "src": "9233:22:1",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 472,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9233:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 477,
                        "initialValue": {
                          "baseExpression": {
                            "id": 474,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 55,
                            "src": "9258:9:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 476,
                          "indexExpression": {
                            "id": 475,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 448,
                            "src": "9268:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "9258:18:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9233:43:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 481,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 479,
                                "name": "accountBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 473,
                                "src": "9294:14:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 480,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 450,
                                "src": "9312:6:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9294:24:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365",
                              "id": 482,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9320:36:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              },
                              "value": "ERC20: burn amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              }
                            ],
                            "id": 478,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9286:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9286:71:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 484,
                        "nodeType": "ExpressionStatement",
                        "src": "9286:71:1"
                      },
                      {
                        "id": 493,
                        "nodeType": "UncheckedBlock",
                        "src": "9367:79:1",
                        "statements": [
                          {
                            "expression": {
                              "id": 491,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 485,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 55,
                                  "src": "9391:9:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 487,
                                "indexExpression": {
                                  "id": 486,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 448,
                                  "src": "9401:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "9391:18:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 490,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 488,
                                  "name": "accountBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 473,
                                  "src": "9412:14:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 489,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 450,
                                  "src": "9429:6:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "9412:23:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9391:44:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 492,
                            "nodeType": "ExpressionStatement",
                            "src": "9391:44:1"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 496,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 494,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 63,
                            "src": "9455:12:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "id": 495,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 450,
                            "src": "9471:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9455:22:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 497,
                        "nodeType": "ExpressionStatement",
                        "src": "9455:22:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 499,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 448,
                              "src": "9502:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 502,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9519:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 501,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9511:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 500,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9511:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 503,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9511:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 504,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 450,
                              "src": "9523:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 498,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 653,
                            "src": "9493:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 505,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9493:37:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 506,
                        "nodeType": "EmitStatement",
                        "src": "9488:42:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 508,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 448,
                              "src": "9561:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 511,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9578:1:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 510,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9570:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 509,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9570:7:1",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 512,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9570:10:1",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 513,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 450,
                              "src": "9582:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 507,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 584,
                            "src": "9541:19:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 514,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9541:48:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 515,
                        "nodeType": "ExpressionStatement",
                        "src": "9541:48:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 446,
                    "nodeType": "StructuredDocumentation",
                    "src": "8706:309:1",
                    "text": " @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens."
                  },
                  "id": 517,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_burn",
                  "nameLocation": "9029:5:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 451,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 448,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "9043:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 517,
                        "src": "9035:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 447,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9035:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 450,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "9060:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 517,
                        "src": "9052:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 449,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9052:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9034:33:1"
                  },
                  "returnParameters": {
                    "id": 452,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9085:0:1"
                  },
                  "scope": 585,
                  "src": "9020:576:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 561,
                    "nodeType": "Block",
                    "src": "10132:257:1",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 533,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 528,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 520,
                                "src": "10150:5:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 531,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10167:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 530,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10159:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 529,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10159:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 532,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10159:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10150:19:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373",
                              "id": 534,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10171:38:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              },
                              "value": "ERC20: approve from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              }
                            ],
                            "id": 527,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10142:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 535,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10142:68:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 536,
                        "nodeType": "ExpressionStatement",
                        "src": "10142:68:1"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 543,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 538,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 522,
                                "src": "10228:7:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 541,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10247:1:1",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 540,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10239:7:1",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 539,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10239:7:1",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 542,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10239:10:1",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10228:21:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f766520746f20746865207a65726f2061646472657373",
                              "id": 544,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10251:36:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              },
                              "value": "ERC20: approve to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              }
                            ],
                            "id": 537,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10220:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 545,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10220:68:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 546,
                        "nodeType": "ExpressionStatement",
                        "src": "10220:68:1"
                      },
                      {
                        "expression": {
                          "id": 553,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 547,
                                "name": "_allowances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 61,
                                "src": "10299:11:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(address => uint256))"
                                }
                              },
                              "id": 550,
                              "indexExpression": {
                                "id": 548,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 520,
                                "src": "10311:5:1",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "10299:18:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 551,
                            "indexExpression": {
                              "id": 549,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 522,
                              "src": "10318:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10299:27:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 552,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 524,
                            "src": "10329:6:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "10299:36:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 554,
                        "nodeType": "ExpressionStatement",
                        "src": "10299:36:1"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 556,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 520,
                              "src": "10359:5:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 557,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 522,
                              "src": "10366:7:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 558,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 524,
                              "src": "10375:6:1",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 555,
                            "name": "Approval",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 662,
                            "src": "10350:8:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 559,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10350:32:1",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 560,
                        "nodeType": "EmitStatement",
                        "src": "10345:37:1"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 518,
                    "nodeType": "StructuredDocumentation",
                    "src": "9602:412:1",
                    "text": " @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address."
                  },
                  "id": 562,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_approve",
                  "nameLocation": "10028:8:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 525,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 520,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "10054:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 562,
                        "src": "10046:13:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 519,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10046:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 522,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "10077:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 562,
                        "src": "10069:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 521,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10069:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 524,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "10102:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 562,
                        "src": "10094:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 523,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10094:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10036:78:1"
                  },
                  "returnParameters": {
                    "id": 526,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10132:0:1"
                  },
                  "scope": 585,
                  "src": "10019:370:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 572,
                    "nodeType": "Block",
                    "src": "11092:2:1",
                    "statements": []
                  },
                  "documentation": {
                    "id": 563,
                    "nodeType": "StructuredDocumentation",
                    "src": "10395:573:1",
                    "text": " @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 573,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "10982:20:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 570,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 565,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11020:4:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 573,
                        "src": "11012:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 564,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11012:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 567,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11042:2:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 573,
                        "src": "11034:10:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 566,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11034:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 569,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11062:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 573,
                        "src": "11054:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 568,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11054:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11002:72:1"
                  },
                  "returnParameters": {
                    "id": 571,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11092:0:1"
                  },
                  "scope": 585,
                  "src": "10973:121:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 583,
                    "nodeType": "Block",
                    "src": "11800:2:1",
                    "statements": []
                  },
                  "documentation": {
                    "id": 574,
                    "nodeType": "StructuredDocumentation",
                    "src": "11100:577:1",
                    "text": " @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 584,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_afterTokenTransfer",
                  "nameLocation": "11691:19:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 581,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 576,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11728:4:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 584,
                        "src": "11720:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 575,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11720:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 578,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11750:2:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 584,
                        "src": "11742:10:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 577,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11742:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 580,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11770:6:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 584,
                        "src": "11762:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 579,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11762:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11710:72:1"
                  },
                  "returnParameters": {
                    "id": 582,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11800:0:1"
                  },
                  "scope": 585,
                  "src": "11682:120:1",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 586,
              "src": "1388:10416:1",
              "usedErrors": []
            }
          ],
          "src": "90:11715:1"
        },
        "id": 1
      },
      "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ]
          },
          "id": 664,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 587,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "91:23:2"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 588,
                "nodeType": "StructuredDocumentation",
                "src": "116:70:2",
                "text": " @dev Interface of the ERC20 standard as defined in the EIP."
              },
              "fullyImplemented": false,
              "id": 663,
              "linearizedBaseContracts": [
                663
              ],
              "name": "IERC20",
              "nameLocation": "197:6:2",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 589,
                    "nodeType": "StructuredDocumentation",
                    "src": "210:66:2",
                    "text": " @dev Returns the amount of tokens in existence."
                  },
                  "functionSelector": "18160ddd",
                  "id": 594,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "290:11:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 590,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "301:2:2"
                  },
                  "returnParameters": {
                    "id": 593,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 592,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 594,
                        "src": "327:7:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 591,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "327:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "326:9:2"
                  },
                  "scope": 663,
                  "src": "281:55:2",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 595,
                    "nodeType": "StructuredDocumentation",
                    "src": "342:72:2",
                    "text": " @dev Returns the amount of tokens owned by `account`."
                  },
                  "functionSelector": "70a08231",
                  "id": 602,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "428:9:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 598,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 597,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "446:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 602,
                        "src": "438:15:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 596,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "438:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "437:17:2"
                  },
                  "returnParameters": {
                    "id": 601,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 600,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 602,
                        "src": "478:7:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 599,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "478:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "477:9:2"
                  },
                  "scope": 663,
                  "src": "419:68:2",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 603,
                    "nodeType": "StructuredDocumentation",
                    "src": "493:209:2",
                    "text": " @dev Moves `amount` tokens from the caller's account to `recipient`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "a9059cbb",
                  "id": 612,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "716:8:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 608,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 605,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "733:9:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 612,
                        "src": "725:17:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 604,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "725:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 607,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "752:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 612,
                        "src": "744:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 606,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "744:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "724:35:2"
                  },
                  "returnParameters": {
                    "id": 611,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 610,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 612,
                        "src": "778:4:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 609,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "778:4:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "777:6:2"
                  },
                  "scope": 663,
                  "src": "707:77:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 613,
                    "nodeType": "StructuredDocumentation",
                    "src": "790:264:2",
                    "text": " @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 This value changes when {approve} or {transferFrom} are called."
                  },
                  "functionSelector": "dd62ed3e",
                  "id": 622,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "1068:9:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 618,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 615,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1086:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 622,
                        "src": "1078:13:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 614,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1078:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 617,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1101:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 622,
                        "src": "1093:15:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 616,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1093:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1077:32:2"
                  },
                  "returnParameters": {
                    "id": 621,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 620,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 622,
                        "src": "1133:7:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 619,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1133:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1132:9:2"
                  },
                  "scope": 663,
                  "src": "1059:83:2",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 623,
                    "nodeType": "StructuredDocumentation",
                    "src": "1148:642:2",
                    "text": " @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\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 Emits an {Approval} event."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 632,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "1804:7:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 628,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 625,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1820:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 632,
                        "src": "1812:15:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 624,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1812:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 627,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1837:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 632,
                        "src": "1829:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 626,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1829:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1811:33:2"
                  },
                  "returnParameters": {
                    "id": 631,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 630,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 632,
                        "src": "1863:4:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 629,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1863:4:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1862:6:2"
                  },
                  "scope": 663,
                  "src": "1795:74:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 633,
                    "nodeType": "StructuredDocumentation",
                    "src": "1875:296:2",
                    "text": " @dev Moves `amount` tokens from `sender` to `recipient` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "23b872dd",
                  "id": 644,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "2185:12:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 640,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 635,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "2215:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2207:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 634,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2207:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 637,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "2239:9:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2231:17:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 636,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2231:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 639,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2266:6:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2258:14:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 638,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2258:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2197:81:2"
                  },
                  "returnParameters": {
                    "id": 643,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 642,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 644,
                        "src": "2297:4:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 641,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2297:4:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2296:6:2"
                  },
                  "scope": 663,
                  "src": "2176:127:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 645,
                    "nodeType": "StructuredDocumentation",
                    "src": "2309:158:2",
                    "text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."
                  },
                  "id": 653,
                  "name": "Transfer",
                  "nameLocation": "2478:8:2",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 652,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 647,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2503:4:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 653,
                        "src": "2487:20:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 646,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2487:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 649,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2525:2:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 653,
                        "src": "2509:18:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 648,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2509:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 651,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2537:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 653,
                        "src": "2529:13:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 650,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2529:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2486:57:2"
                  },
                  "src": "2472:72:2"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 654,
                    "nodeType": "StructuredDocumentation",
                    "src": "2550:148:2",
                    "text": " @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."
                  },
                  "id": 662,
                  "name": "Approval",
                  "nameLocation": "2709:8:2",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 661,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 656,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2734:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 662,
                        "src": "2718:21:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 655,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2718:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 658,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2757:7:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 662,
                        "src": "2741:23:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 657,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2741:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 660,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2774:5:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 662,
                        "src": "2766:13:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 659,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2766:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2717:63:2"
                  },
                  "src": "2703:78:2"
                }
              ],
              "scope": 664,
              "src": "187:2596:2",
              "usedErrors": []
            }
          ],
          "src": "91:2693:2"
        },
        "id": 2
      },
      "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ]
          },
          "id": 689,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 665,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "110:23:3"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "../IERC20.sol",
              "id": 666,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 689,
              "sourceUnit": 664,
              "src": "135:23:3",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 668,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "305:6:3"
                  },
                  "id": 669,
                  "nodeType": "InheritanceSpecifier",
                  "src": "305:6:3"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 667,
                "nodeType": "StructuredDocumentation",
                "src": "160:116:3",
                "text": " @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._"
              },
              "fullyImplemented": false,
              "id": 688,
              "linearizedBaseContracts": [
                688,
                663
              ],
              "name": "IERC20Metadata",
              "nameLocation": "287:14:3",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 670,
                    "nodeType": "StructuredDocumentation",
                    "src": "318:54:3",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 675,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "386:4:3",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 671,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "390:2:3"
                  },
                  "returnParameters": {
                    "id": 674,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 673,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 675,
                        "src": "416:13:3",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 672,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "416:6:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "415:15:3"
                  },
                  "scope": 688,
                  "src": "377:54:3",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 676,
                    "nodeType": "StructuredDocumentation",
                    "src": "437:56:3",
                    "text": " @dev Returns the symbol of the token."
                  },
                  "functionSelector": "95d89b41",
                  "id": 681,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "507:6:3",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 677,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "513:2:3"
                  },
                  "returnParameters": {
                    "id": 680,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 679,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 681,
                        "src": "539:13:3",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 678,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "539:6:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "538:15:3"
                  },
                  "scope": 688,
                  "src": "498:56:3",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 682,
                    "nodeType": "StructuredDocumentation",
                    "src": "560:65:3",
                    "text": " @dev Returns the decimals places of the token."
                  },
                  "functionSelector": "313ce567",
                  "id": 687,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "639:8:3",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 683,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "647:2:3"
                  },
                  "returnParameters": {
                    "id": 686,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 685,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 687,
                        "src": "673:5:3",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 684,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "673:5:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "672:7:3"
                  },
                  "scope": 688,
                  "src": "630:50:3",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 689,
              "src": "277:405:3",
              "usedErrors": []
            }
          ],
          "src": "110:573:3"
        },
        "id": 3
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
          "exportedSymbols": {
            "Context": [
              1570
            ],
            "Counters": [
              1644
            ],
            "ECDSA": [
              2237
            ],
            "EIP712": [
              2391
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ],
            "Strings": [
              1847
            ]
          },
          "id": 858,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 690,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "113:23:4"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "file": "./draft-IERC20Permit.sol",
              "id": 691,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 894,
              "src": "138:34:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "file": "../ERC20.sol",
              "id": 692,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 586,
              "src": "173:22:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol",
              "file": "../../../utils/cryptography/draft-EIP712.sol",
              "id": 693,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 2392,
              "src": "196:54:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
              "file": "../../../utils/cryptography/ECDSA.sol",
              "id": 694,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 2238,
              "src": "251:47:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Counters.sol",
              "file": "../../../utils/Counters.sol",
              "id": 695,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 858,
              "sourceUnit": 1645,
              "src": "299:37:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 697,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 585,
                    "src": "889:5:4"
                  },
                  "id": 698,
                  "nodeType": "InheritanceSpecifier",
                  "src": "889:5:4"
                },
                {
                  "baseName": {
                    "id": 699,
                    "name": "IERC20Permit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 893,
                    "src": "896:12:4"
                  },
                  "id": 700,
                  "nodeType": "InheritanceSpecifier",
                  "src": "896:12:4"
                },
                {
                  "baseName": {
                    "id": 701,
                    "name": "EIP712",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2391,
                    "src": "910:6:4"
                  },
                  "id": 702,
                  "nodeType": "InheritanceSpecifier",
                  "src": "910:6:4"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 696,
                "nodeType": "StructuredDocumentation",
                "src": "338:517:4",
                "text": " @dev Implementation 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 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 _Available since v3.4._"
              },
              "fullyImplemented": false,
              "id": 857,
              "linearizedBaseContracts": [
                857,
                2391,
                893,
                585,
                688,
                663,
                1570
              ],
              "name": "ERC20Permit",
              "nameLocation": "874:11:4",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 706,
                  "libraryName": {
                    "id": 703,
                    "name": "Counters",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1644,
                    "src": "929:8:4"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "923:36:4",
                  "typeName": {
                    "id": 705,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 704,
                      "name": "Counters.Counter",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 1576,
                      "src": "942:16:4"
                    },
                    "referencedDeclaration": 1576,
                    "src": "942:16:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                      "typeString": "struct Counters.Counter"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 711,
                  "mutability": "mutable",
                  "name": "_nonces",
                  "nameLocation": "1010:7:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 857,
                  "src": "965:52:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1576_storage_$",
                    "typeString": "mapping(address => struct Counters.Counter)"
                  },
                  "typeName": {
                    "id": 710,
                    "keyType": {
                      "id": 707,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "973:7:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "965:36:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1576_storage_$",
                      "typeString": "mapping(address => struct Counters.Counter)"
                    },
                    "valueType": {
                      "id": 709,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 708,
                        "name": "Counters.Counter",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 1576,
                        "src": "984:16:4"
                      },
                      "referencedDeclaration": 1576,
                      "src": "984:16:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                        "typeString": "struct Counters.Counter"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 716,
                  "mutability": "immutable",
                  "name": "_PERMIT_TYPEHASH",
                  "nameLocation": "1102:16:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 857,
                  "src": "1076:148:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 712,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1076:7:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529",
                        "id": 714,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "1139:84:4",
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9",
                          "typeString": "literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""
                        },
                        "value": "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9",
                          "typeString": "literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""
                        }
                      ],
                      "id": 713,
                      "name": "keccak256",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": -8,
                      "src": "1129:9:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                        "typeString": "function (bytes memory) pure returns (bytes32)"
                      }
                    },
                    "id": 715,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1129:95:4",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 726,
                    "nodeType": "Block",
                    "src": "1506:2:4",
                    "statements": []
                  },
                  "documentation": {
                    "id": 717,
                    "nodeType": "StructuredDocumentation",
                    "src": "1231:220:4",
                    "text": " @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n It's a good idea to use the same `name` that is defined as the ERC20 token name."
                  },
                  "id": 727,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 722,
                          "name": "name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 719,
                          "src": "1495:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "hexValue": "31",
                          "id": 723,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1501:3:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6",
                            "typeString": "literal_string \"1\""
                          },
                          "value": "1"
                        }
                      ],
                      "id": 724,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 721,
                        "name": "EIP712",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 2391,
                        "src": "1488:6:4"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1488:17:4"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 720,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 719,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "1482:4:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 727,
                        "src": "1468:18:4",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 718,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1468:6:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1467:20:4"
                  },
                  "returnParameters": {
                    "id": 725,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1506:0:4"
                  },
                  "scope": 857,
                  "src": "1456:52:4",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    878
                  ],
                  "body": {
                    "id": 799,
                    "nodeType": "Block",
                    "src": "1767:428:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 750,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 747,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "1785:5:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 748,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "1785:15:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 749,
                                "name": "deadline",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 736,
                                "src": "1804:8:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1785:27:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                              "id": 751,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1814:31:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd",
                                "typeString": "literal_string \"ERC20Permit: expired deadline\""
                              },
                              "value": "ERC20Permit: expired deadline"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd",
                                "typeString": "literal_string \"ERC20Permit: expired deadline\""
                              }
                            ],
                            "id": 746,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1777:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 752,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1777:69:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 753,
                        "nodeType": "ExpressionStatement",
                        "src": "1777:69:4"
                      },
                      {
                        "assignments": [
                          755
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 755,
                            "mutability": "mutable",
                            "name": "structHash",
                            "nameLocation": "1865:10:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 799,
                            "src": "1857:18:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 754,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1857:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 769,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 759,
                                  "name": "_PERMIT_TYPEHASH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 716,
                                  "src": "1899:16:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 760,
                                  "name": "owner",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 730,
                                  "src": "1917:5:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 761,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 732,
                                  "src": "1924:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 762,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 734,
                                  "src": "1933:5:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 764,
                                      "name": "owner",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 730,
                                      "src": "1950:5:4",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "id": 763,
                                    "name": "_useNonce",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 856,
                                    "src": "1940:9:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) returns (uint256)"
                                    }
                                  },
                                  "id": 765,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1940:16:4",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 766,
                                  "name": "deadline",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 736,
                                  "src": "1958:8:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 757,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1888:3:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 758,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "1888:10:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 767,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1888:79:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 756,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "1878:9:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 768,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1878:90:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1857:111:4"
                      },
                      {
                        "assignments": [
                          771
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 771,
                            "mutability": "mutable",
                            "name": "hash",
                            "nameLocation": "1987:4:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 799,
                            "src": "1979:12:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 770,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1979:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 775,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 773,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 755,
                              "src": "2011:10:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 772,
                            "name": "_hashTypedDataV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2390,
                            "src": "1994:16:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32) view returns (bytes32)"
                            }
                          },
                          "id": 774,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1994:28:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1979:43:4"
                      },
                      {
                        "assignments": [
                          777
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 777,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "2041:6:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 799,
                            "src": "2033:14:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 776,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "2033:7:4",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 785,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 780,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 771,
                              "src": "2064:4:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 781,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 738,
                              "src": "2070:1:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 782,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 740,
                              "src": "2073:1:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 783,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 742,
                              "src": "2076:1:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 778,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2237,
                              "src": "2050:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$2237_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 779,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "recover",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2177,
                            "src": "2050:13:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address)"
                            }
                          },
                          "id": 784,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2050:28:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2033:45:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 789,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 787,
                                "name": "signer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 777,
                                "src": "2096:6:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 788,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 730,
                                "src": "2106:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2096:15:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                              "id": 790,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2113:32:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124",
                                "typeString": "literal_string \"ERC20Permit: invalid signature\""
                              },
                              "value": "ERC20Permit: invalid signature"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124",
                                "typeString": "literal_string \"ERC20Permit: invalid signature\""
                              }
                            ],
                            "id": 786,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2088:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 791,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2088:58:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 792,
                        "nodeType": "ExpressionStatement",
                        "src": "2088:58:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 794,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 730,
                              "src": "2166:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 795,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 732,
                              "src": "2173:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 796,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 734,
                              "src": "2182:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 793,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 562,
                            "src": "2157:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 797,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2157:31:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 798,
                        "nodeType": "ExpressionStatement",
                        "src": "2157:31:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 728,
                    "nodeType": "StructuredDocumentation",
                    "src": "1514:50:4",
                    "text": " @dev See {IERC20Permit-permit}."
                  },
                  "functionSelector": "d505accf",
                  "id": 800,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permit",
                  "nameLocation": "1578:6:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 744,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1758:8:4"
                  },
                  "parameters": {
                    "id": 743,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 730,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1602:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1594:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 729,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1594:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 732,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1625:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1617:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 731,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1617:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 734,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1650:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1642:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 733,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1642:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 736,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "1673:8:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1665:16:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 735,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1665:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 738,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "1697:1:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1691:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 737,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1691:5:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 740,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "1716:1:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1708:9:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 739,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1708:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 742,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "1735:1:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "1727:9:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 741,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1727:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1584:158:4"
                  },
                  "returnParameters": {
                    "id": 745,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1767:0:4"
                  },
                  "scope": 857,
                  "src": "1569:626:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    886
                  ],
                  "body": {
                    "id": 815,
                    "nodeType": "Block",
                    "src": "2334:48:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "baseExpression": {
                                "id": 809,
                                "name": "_nonces",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 711,
                                "src": "2351:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1576_storage_$",
                                  "typeString": "mapping(address => struct Counters.Counter storage ref)"
                                }
                              },
                              "id": 811,
                              "indexExpression": {
                                "id": 810,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 803,
                                "src": "2359:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "2351:14:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1576_storage",
                                "typeString": "struct Counters.Counter storage ref"
                              }
                            },
                            "id": 812,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "current",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1588,
                            "src": "2351:22:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Counter_$1576_storage_ptr_$returns$_t_uint256_$bound_to$_t_struct$_Counter_$1576_storage_ptr_$",
                              "typeString": "function (struct Counters.Counter storage pointer) view returns (uint256)"
                            }
                          },
                          "id": 813,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2351:24:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 808,
                        "id": 814,
                        "nodeType": "Return",
                        "src": "2344:31:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 801,
                    "nodeType": "StructuredDocumentation",
                    "src": "2201:50:4",
                    "text": " @dev See {IERC20Permit-nonces}."
                  },
                  "functionSelector": "7ecebe00",
                  "id": 816,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nonces",
                  "nameLocation": "2265:6:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 805,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2307:8:4"
                  },
                  "parameters": {
                    "id": 804,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 803,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2280:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 816,
                        "src": "2272:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 802,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2272:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2271:15:4"
                  },
                  "returnParameters": {
                    "id": 808,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 807,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 816,
                        "src": "2325:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 806,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2325:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2324:9:4"
                  },
                  "scope": 857,
                  "src": "2256:126:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    892
                  ],
                  "body": {
                    "id": 826,
                    "nodeType": "Block",
                    "src": "2575:44:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 823,
                            "name": "_domainSeparatorV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2347,
                            "src": "2592:18:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_bytes32_$",
                              "typeString": "function () view returns (bytes32)"
                            }
                          },
                          "id": 824,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2592:20:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 822,
                        "id": 825,
                        "nodeType": "Return",
                        "src": "2585:27:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 817,
                    "nodeType": "StructuredDocumentation",
                    "src": "2388:60:4",
                    "text": " @dev See {IERC20Permit-DOMAIN_SEPARATOR}."
                  },
                  "functionSelector": "3644e515",
                  "id": 827,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "DOMAIN_SEPARATOR",
                  "nameLocation": "2515:16:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 819,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2548:8:4"
                  },
                  "parameters": {
                    "id": 818,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2531:2:4"
                  },
                  "returnParameters": {
                    "id": 822,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 821,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 827,
                        "src": "2566:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 820,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2566:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2565:9:4"
                  },
                  "scope": 857,
                  "src": "2506:113:4",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 855,
                    "nodeType": "Block",
                    "src": "2827:126:4",
                    "statements": [
                      {
                        "assignments": [
                          839
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 839,
                            "mutability": "mutable",
                            "name": "nonce",
                            "nameLocation": "2862:5:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 855,
                            "src": "2837:30:4",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                              "typeString": "struct Counters.Counter"
                            },
                            "typeName": {
                              "id": 838,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 837,
                                "name": "Counters.Counter",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 1576,
                                "src": "2837:16:4"
                              },
                              "referencedDeclaration": 1576,
                              "src": "2837:16:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                                "typeString": "struct Counters.Counter"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 843,
                        "initialValue": {
                          "baseExpression": {
                            "id": 840,
                            "name": "_nonces",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 711,
                            "src": "2870:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1576_storage_$",
                              "typeString": "mapping(address => struct Counters.Counter storage ref)"
                            }
                          },
                          "id": 842,
                          "indexExpression": {
                            "id": 841,
                            "name": "owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 830,
                            "src": "2878:5:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2870:14:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1576_storage",
                            "typeString": "struct Counters.Counter storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2837:47:4"
                      },
                      {
                        "expression": {
                          "id": 848,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 844,
                            "name": "current",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 833,
                            "src": "2894:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "expression": {
                                "id": 845,
                                "name": "nonce",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 839,
                                "src": "2904:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                                  "typeString": "struct Counters.Counter storage pointer"
                                }
                              },
                              "id": 846,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "current",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 1588,
                              "src": "2904:13:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_struct$_Counter_$1576_storage_ptr_$returns$_t_uint256_$bound_to$_t_struct$_Counter_$1576_storage_ptr_$",
                                "typeString": "function (struct Counters.Counter storage pointer) view returns (uint256)"
                              }
                            },
                            "id": 847,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2904:15:4",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2894:25:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 849,
                        "nodeType": "ExpressionStatement",
                        "src": "2894:25:4"
                      },
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 850,
                              "name": "nonce",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 839,
                              "src": "2929:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                                "typeString": "struct Counters.Counter storage pointer"
                              }
                            },
                            "id": 852,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increment",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1602,
                            "src": "2929:15:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Counter_$1576_storage_ptr_$returns$__$bound_to$_t_struct$_Counter_$1576_storage_ptr_$",
                              "typeString": "function (struct Counters.Counter storage pointer)"
                            }
                          },
                          "id": 853,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2929:17:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 854,
                        "nodeType": "ExpressionStatement",
                        "src": "2929:17:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 828,
                    "nodeType": "StructuredDocumentation",
                    "src": "2625:120:4",
                    "text": " @dev \"Consume a nonce\": return the current value and increment.\n _Available since v4.1._"
                  },
                  "id": 856,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_useNonce",
                  "nameLocation": "2759:9:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 831,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 830,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2777:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 856,
                        "src": "2769:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 829,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2769:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2768:15:4"
                  },
                  "returnParameters": {
                    "id": 834,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 833,
                        "mutability": "mutable",
                        "name": "current",
                        "nameLocation": "2818:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 856,
                        "src": "2810:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 832,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2810:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2809:17:4"
                  },
                  "scope": 857,
                  "src": "2750:203:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 858,
              "src": "856:2099:4",
              "usedErrors": []
            }
          ],
          "src": "113:2843:4"
        },
        "id": 4
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
          "exportedSymbols": {
            "IERC20Permit": [
              893
            ]
          },
          "id": 894,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 859,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "114:23:5"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 860,
                "nodeType": "StructuredDocumentation",
                "src": "139:480:5",
                "text": " @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 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."
              },
              "fullyImplemented": false,
              "id": 893,
              "linearizedBaseContracts": [
                893
              ],
              "name": "IERC20Permit",
              "nameLocation": "630:12:5",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 861,
                    "nodeType": "StructuredDocumentation",
                    "src": "649:792:5",
                    "text": " @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n given ``owner``'s signed approval.\n IMPORTANT: The same issues {IERC20-approve} has related to transaction\n ordering also apply here.\n Emits an {Approval} event.\n Requirements:\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 For more information on the signature format, see the\n https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n section]."
                  },
                  "functionSelector": "d505accf",
                  "id": 878,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permit",
                  "nameLocation": "1455:6:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 876,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 863,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1479:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1471:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 862,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1471:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 865,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1502:7:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1494:15:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 864,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1494:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 867,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1527:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1519:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 866,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1519:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 869,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "1550:8:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1542:16:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 868,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1542:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 871,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "1574:1:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1568:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 870,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1568:5:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 873,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "1593:1:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1585:9:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 872,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1585:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 875,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "1612:1:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 878,
                        "src": "1604:9:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 874,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1604:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1461:158:5"
                  },
                  "returnParameters": {
                    "id": 877,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1628:0:5"
                  },
                  "scope": 893,
                  "src": "1446:183:5",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 879,
                    "nodeType": "StructuredDocumentation",
                    "src": "1635:294:5",
                    "text": " @dev Returns the current nonce for `owner`. This value must be\n included whenever a signature is generated for {permit}.\n Every successful call to {permit} increases ``owner``'s nonce by one. This\n prevents a signature from being used multiple times."
                  },
                  "functionSelector": "7ecebe00",
                  "id": 886,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nonces",
                  "nameLocation": "1943:6:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 882,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 881,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1958:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 886,
                        "src": "1950:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 880,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1950:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1949:15:5"
                  },
                  "returnParameters": {
                    "id": 885,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 884,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 886,
                        "src": "1988:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 883,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1988:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1987:9:5"
                  },
                  "scope": 893,
                  "src": "1934:63:5",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 887,
                    "nodeType": "StructuredDocumentation",
                    "src": "2003:128:5",
                    "text": " @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."
                  },
                  "functionSelector": "3644e515",
                  "id": 892,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "DOMAIN_SEPARATOR",
                  "nameLocation": "2198:16:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 888,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2214:2:5"
                  },
                  "returnParameters": {
                    "id": 891,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 890,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 892,
                        "src": "2240:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 889,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2240:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2239:9:5"
                  },
                  "scope": 893,
                  "src": "2189:60:5",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 894,
              "src": "620:1631:5",
              "usedErrors": []
            }
          ],
          "src": "114:2138:5"
        },
        "id": 5
      },
      "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "IERC20": [
              663
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 1118,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 895,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "100:23:6"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "../IERC20.sol",
              "id": 896,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1118,
              "sourceUnit": 664,
              "src": "125:23:6",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "../../../utils/Address.sol",
              "id": 897,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1118,
              "sourceUnit": 1549,
              "src": "149:36:6",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 898,
                "nodeType": "StructuredDocumentation",
                "src": "187:457:6",
                "text": " @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."
              },
              "fullyImplemented": true,
              "id": 1117,
              "linearizedBaseContracts": [
                1117
              ],
              "name": "SafeERC20",
              "nameLocation": "653:9:6",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 901,
                  "libraryName": {
                    "id": 899,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1548,
                    "src": "675:7:6"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "669:26:6",
                  "typeName": {
                    "id": 900,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "687:7:6",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "body": {
                    "id": 923,
                    "nodeType": "Block",
                    "src": "803:103:6",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 912,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 904,
                              "src": "833:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 915,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 904,
                                      "src": "863:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 916,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "transfer",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 612,
                                    "src": "863:14:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 917,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "863:23:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 918,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 906,
                                  "src": "888:2:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 919,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 908,
                                  "src": "892:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 913,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "840:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 914,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "840:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 920,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "840:58:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 911,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "813:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 921,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "813:86:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 922,
                        "nodeType": "ExpressionStatement",
                        "src": "813:86:6"
                      }
                    ]
                  },
                  "id": 924,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransfer",
                  "nameLocation": "710:12:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 909,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 904,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "739:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 924,
                        "src": "732:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 903,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 902,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "732:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "732:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 906,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "762:2:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 924,
                        "src": "754:10:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 905,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "754:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 908,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "782:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 924,
                        "src": "774:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 907,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "774:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "722:71:6"
                  },
                  "returnParameters": {
                    "id": 910,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "803:0:6"
                  },
                  "scope": 1117,
                  "src": "701:205:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 949,
                    "nodeType": "Block",
                    "src": "1040:113:6",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 937,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 927,
                              "src": "1070:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 940,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 927,
                                      "src": "1100:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 941,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "transferFrom",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 644,
                                    "src": "1100:18:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 942,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1100:27:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 943,
                                  "name": "from",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 929,
                                  "src": "1129:4:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 944,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 931,
                                  "src": "1135:2:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 945,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 933,
                                  "src": "1139:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 938,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1077:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 939,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "1077:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 946,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1077:68:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 936,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "1050:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 947,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1050:96:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 948,
                        "nodeType": "ExpressionStatement",
                        "src": "1050:96:6"
                      }
                    ]
                  },
                  "id": 950,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "921:16:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 934,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 927,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "954:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "947:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 926,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 925,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "947:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "947:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 929,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "977:4:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "969:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 928,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "969:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 931,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "999:2:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "991:10:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 930,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "991:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 933,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1019:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 950,
                        "src": "1011:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 932,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1011:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "937:93:6"
                  },
                  "returnParameters": {
                    "id": 935,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1040:0:6"
                  },
                  "scope": 1117,
                  "src": "912:241:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 993,
                    "nodeType": "Block",
                    "src": "1519:497:6",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 977,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 964,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 962,
                                      "name": "value",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 958,
                                      "src": "1768:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "==",
                                    "rightExpression": {
                                      "hexValue": "30",
                                      "id": 963,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1777:1:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "src": "1768:10:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  }
                                ],
                                "id": 965,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1767:12:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 975,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "id": 970,
                                              "name": "this",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": -28,
                                              "src": "1808:4:6",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                                "typeString": "library SafeERC20"
                                              }
                                            }
                                          ],
                                          "expression": {
                                            "argumentTypes": [
                                              {
                                                "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                                "typeString": "library SafeERC20"
                                              }
                                            ],
                                            "id": 969,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "nodeType": "ElementaryTypeNameExpression",
                                            "src": "1800:7:6",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_address_$",
                                              "typeString": "type(address)"
                                            },
                                            "typeName": {
                                              "id": 968,
                                              "name": "address",
                                              "nodeType": "ElementaryTypeName",
                                              "src": "1800:7:6",
                                              "typeDescriptions": {}
                                            }
                                          },
                                          "id": 971,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "kind": "typeConversion",
                                          "lValueRequested": false,
                                          "names": [],
                                          "nodeType": "FunctionCall",
                                          "src": "1800:13:6",
                                          "tryCall": false,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        {
                                          "id": 972,
                                          "name": "spender",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 956,
                                          "src": "1815:7:6",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          },
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        ],
                                        "expression": {
                                          "id": 966,
                                          "name": "token",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 954,
                                          "src": "1784:5:6",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_IERC20_$663",
                                            "typeString": "contract IERC20"
                                          }
                                        },
                                        "id": 967,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "allowance",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 622,
                                        "src": "1784:15:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                          "typeString": "function (address,address) view external returns (uint256)"
                                        }
                                      },
                                      "id": 973,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1784:39:6",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "==",
                                    "rightExpression": {
                                      "hexValue": "30",
                                      "id": 974,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1827:1:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "src": "1784:44:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  }
                                ],
                                "id": 976,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1783:46:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1767:62:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365",
                              "id": 978,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1843:56:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25",
                                "typeString": "literal_string \"SafeERC20: approve from non-zero to non-zero allowance\""
                              },
                              "value": "SafeERC20: approve from non-zero to non-zero allowance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25",
                                "typeString": "literal_string \"SafeERC20: approve from non-zero to non-zero allowance\""
                              }
                            ],
                            "id": 961,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1746:7:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 979,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1746:163:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 980,
                        "nodeType": "ExpressionStatement",
                        "src": "1746:163:6"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 982,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 954,
                              "src": "1939:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 985,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 954,
                                      "src": "1969:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 986,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "approve",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 632,
                                    "src": "1969:13:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 987,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1969:22:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 988,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 956,
                                  "src": "1993:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 989,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 958,
                                  "src": "2002:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 983,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1946:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 984,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "1946:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 990,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1946:62:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 981,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "1919:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 991,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1919:90:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 992,
                        "nodeType": "ExpressionStatement",
                        "src": "1919:90:6"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 951,
                    "nodeType": "StructuredDocumentation",
                    "src": "1159:249:6",
                    "text": " @dev Deprecated. This function has issues similar to the ones found in\n {IERC20-approve}, and its usage is discouraged.\n Whenever possible, use {safeIncreaseAllowance} and\n {safeDecreaseAllowance} instead."
                  },
                  "id": 994,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeApprove",
                  "nameLocation": "1422:11:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 959,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 954,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1450:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 994,
                        "src": "1443:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 953,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 952,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1443:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "1443:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 956,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1473:7:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 994,
                        "src": "1465:15:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 955,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1465:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 958,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1498:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 994,
                        "src": "1490:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 957,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1490:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1433:76:6"
                  },
                  "returnParameters": {
                    "id": 960,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1519:0:6"
                  },
                  "scope": 1117,
                  "src": "1413:603:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1029,
                    "nodeType": "Block",
                    "src": "2138:194:6",
                    "statements": [
                      {
                        "assignments": [
                          1005
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1005,
                            "mutability": "mutable",
                            "name": "newAllowance",
                            "nameLocation": "2156:12:6",
                            "nodeType": "VariableDeclaration",
                            "scope": 1029,
                            "src": "2148:20:6",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1004,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2148:7:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1016,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1015,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 1010,
                                    "name": "this",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -28,
                                    "src": "2195:4:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                      "typeString": "library SafeERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                      "typeString": "library SafeERC20"
                                    }
                                  ],
                                  "id": 1009,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2187:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 1008,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2187:7:6",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1011,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2187:13:6",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 1012,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 999,
                                "src": "2202:7:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 1006,
                                "name": "token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 997,
                                "src": "2171:5:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_IERC20_$663",
                                  "typeString": "contract IERC20"
                                }
                              },
                              "id": 1007,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "allowance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 622,
                              "src": "2171:15:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                "typeString": "function (address,address) view external returns (uint256)"
                              }
                            },
                            "id": 1013,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2171:39:6",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 1014,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1001,
                            "src": "2213:5:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2171:47:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2148:70:6"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1018,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 997,
                              "src": "2248:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 1021,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 997,
                                      "src": "2278:5:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$663",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 1022,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "approve",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 632,
                                    "src": "2278:13:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 1023,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "2278:22:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 1024,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 999,
                                  "src": "2302:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1025,
                                  "name": "newAllowance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1005,
                                  "src": "2311:12:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 1019,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "2255:3:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 1020,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "2255:22:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 1026,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2255:69:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1017,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1116,
                            "src": "2228:19:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 1027,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2228:97:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1028,
                        "nodeType": "ExpressionStatement",
                        "src": "2228:97:6"
                      }
                    ]
                  },
                  "id": 1030,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeIncreaseAllowance",
                  "nameLocation": "2031:21:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1002,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 997,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "2069:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1030,
                        "src": "2062:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 996,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 995,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2062:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "2062:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 999,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2092:7:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1030,
                        "src": "2084:15:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 998,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2084:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1001,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2117:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1030,
                        "src": "2109:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1000,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2109:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2052:76:6"
                  },
                  "returnParameters": {
                    "id": 1003,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2138:0:6"
                  },
                  "scope": 1117,
                  "src": "2022:310:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1077,
                    "nodeType": "Block",
                    "src": "2454:370:6",
                    "statements": [
                      {
                        "id": 1076,
                        "nodeType": "UncheckedBlock",
                        "src": "2464:354:6",
                        "statements": [
                          {
                            "assignments": [
                              1041
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 1041,
                                "mutability": "mutable",
                                "name": "oldAllowance",
                                "nameLocation": "2496:12:6",
                                "nodeType": "VariableDeclaration",
                                "scope": 1076,
                                "src": "2488:20:6",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 1040,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2488:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 1050,
                            "initialValue": {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 1046,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "2535:4:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                        "typeString": "library SafeERC20"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_SafeERC20_$1117",
                                        "typeString": "library SafeERC20"
                                      }
                                    ],
                                    "id": 1045,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2527:7:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1044,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2527:7:6",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1047,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2527:13:6",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1048,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1035,
                                  "src": "2542:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 1042,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1033,
                                  "src": "2511:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                },
                                "id": 1043,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "allowance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 622,
                                "src": "2511:15:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                  "typeString": "function (address,address) view external returns (uint256)"
                                }
                              },
                              "id": 1049,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2511:39:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "2488:62:6"
                          },
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 1054,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 1052,
                                    "name": "oldAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1041,
                                    "src": "2572:12:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">=",
                                  "rightExpression": {
                                    "id": 1053,
                                    "name": "value",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1037,
                                    "src": "2588:5:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "2572:21:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                {
                                  "hexValue": "5361666545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                                  "id": 1055,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2595:43:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_2c3af60974a758b7e72e108c9bf0943ecc9e4f2e8af4695da5f52fbf57a63d3a",
                                    "typeString": "literal_string \"SafeERC20: decreased allowance below zero\""
                                  },
                                  "value": "SafeERC20: decreased allowance below zero"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  {
                                    "typeIdentifier": "t_stringliteral_2c3af60974a758b7e72e108c9bf0943ecc9e4f2e8af4695da5f52fbf57a63d3a",
                                    "typeString": "literal_string \"SafeERC20: decreased allowance below zero\""
                                  }
                                ],
                                "id": 1051,
                                "name": "require",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  -18,
                                  -18
                                ],
                                "referencedDeclaration": -18,
                                "src": "2564:7:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                  "typeString": "function (bool,string memory) pure"
                                }
                              },
                              "id": 1056,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2564:75:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 1057,
                            "nodeType": "ExpressionStatement",
                            "src": "2564:75:6"
                          },
                          {
                            "assignments": [
                              1059
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 1059,
                                "mutability": "mutable",
                                "name": "newAllowance",
                                "nameLocation": "2661:12:6",
                                "nodeType": "VariableDeclaration",
                                "scope": 1076,
                                "src": "2653:20:6",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 1058,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2653:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 1063,
                            "initialValue": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1062,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1060,
                                "name": "oldAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1041,
                                "src": "2676:12:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 1061,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1037,
                                "src": "2691:5:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2676:20:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "2653:43:6"
                          },
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 1065,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1033,
                                  "src": "2730:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "expression": {
                                          "id": 1068,
                                          "name": "token",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 1033,
                                          "src": "2760:5:6",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_IERC20_$663",
                                            "typeString": "contract IERC20"
                                          }
                                        },
                                        "id": 1069,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "approve",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 632,
                                        "src": "2760:13:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                          "typeString": "function (address,uint256) external returns (bool)"
                                        }
                                      },
                                      "id": 1070,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "selector",
                                      "nodeType": "MemberAccess",
                                      "src": "2760:22:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    },
                                    {
                                      "id": 1071,
                                      "name": "spender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1035,
                                      "src": "2784:7:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "id": 1072,
                                      "name": "newAllowance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1059,
                                      "src": "2793:12:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      },
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "expression": {
                                      "id": 1066,
                                      "name": "abi",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -1,
                                      "src": "2737:3:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_abi",
                                        "typeString": "abi"
                                      }
                                    },
                                    "id": 1067,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "encodeWithSelector",
                                    "nodeType": "MemberAccess",
                                    "src": "2737:22:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                      "typeString": "function (bytes4) pure returns (bytes memory)"
                                    }
                                  },
                                  "id": 1073,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2737:69:6",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                ],
                                "id": 1064,
                                "name": "_callOptionalReturn",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1116,
                                "src": "2710:19:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_bytes_memory_ptr_$returns$__$",
                                  "typeString": "function (contract IERC20,bytes memory)"
                                }
                              },
                              "id": 1074,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2710:97:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 1075,
                            "nodeType": "ExpressionStatement",
                            "src": "2710:97:6"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 1078,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeDecreaseAllowance",
                  "nameLocation": "2347:21:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1038,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1033,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "2385:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1078,
                        "src": "2378:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1032,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1031,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2378:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "2378:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1035,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2408:7:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1078,
                        "src": "2400:15:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1034,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2400:7:6",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1037,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2433:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1078,
                        "src": "2425:13:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1036,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2425:7:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2368:76:6"
                  },
                  "returnParameters": {
                    "id": 1039,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2454:0:6"
                  },
                  "scope": 1117,
                  "src": "2338:486:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1115,
                    "nodeType": "Block",
                    "src": "3277:636:6",
                    "statements": [
                      {
                        "assignments": [
                          1088
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1088,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "3639:10:6",
                            "nodeType": "VariableDeclaration",
                            "scope": 1115,
                            "src": "3626:23:6",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1087,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "3626:5:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1097,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1094,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1084,
                              "src": "3680:4:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564",
                              "id": 1095,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3686:34:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_47fb62c2c272651d2f0f342bac006756b8ba07f21cc5cb87e0fbb9d50c0c585b",
                                "typeString": "literal_string \"SafeERC20: low-level call failed\""
                              },
                              "value": "SafeERC20: low-level call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_47fb62c2c272651d2f0f342bac006756b8ba07f21cc5cb87e0fbb9d50c0c585b",
                                "typeString": "literal_string \"SafeERC20: low-level call failed\""
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 1091,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1082,
                                  "src": "3660:5:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IERC20_$663",
                                    "typeString": "contract IERC20"
                                  }
                                ],
                                "id": 1090,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3652:7:6",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1089,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3652:7:6",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1092,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3652:14:6",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1093,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "functionCall",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1342,
                            "src": "3652:27:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$bound_to$_t_address_$",
                              "typeString": "function (address,bytes memory,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 1096,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3652:69:6",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3626:95:6"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1101,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 1098,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1088,
                              "src": "3735:10:6",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 1099,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "3735:17:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1100,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3755:1:6",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3735:21:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1114,
                        "nodeType": "IfStatement",
                        "src": "3731:176:6",
                        "trueBody": {
                          "id": 1113,
                          "nodeType": "Block",
                          "src": "3758:149:6",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 1105,
                                        "name": "returndata",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 1088,
                                        "src": "3830:10:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      },
                                      {
                                        "components": [
                                          {
                                            "id": 1107,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "nodeType": "ElementaryTypeNameExpression",
                                            "src": "3843:4:6",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_bool_$",
                                              "typeString": "type(bool)"
                                            },
                                            "typeName": {
                                              "id": 1106,
                                              "name": "bool",
                                              "nodeType": "ElementaryTypeName",
                                              "src": "3843:4:6",
                                              "typeDescriptions": {}
                                            }
                                          }
                                        ],
                                        "id": 1108,
                                        "isConstant": false,
                                        "isInlineArray": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "TupleExpression",
                                        "src": "3842:6:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_bool_$",
                                          "typeString": "type(bool)"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        },
                                        {
                                          "typeIdentifier": "t_type$_t_bool_$",
                                          "typeString": "type(bool)"
                                        }
                                      ],
                                      "expression": {
                                        "id": 1103,
                                        "name": "abi",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -1,
                                        "src": "3819:3:6",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_magic_abi",
                                          "typeString": "abi"
                                        }
                                      },
                                      "id": 1104,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "memberName": "decode",
                                      "nodeType": "MemberAccess",
                                      "src": "3819:10:6",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 1109,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3819:30:6",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564",
                                    "id": 1110,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3851:44:6",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd",
                                      "typeString": "literal_string \"SafeERC20: ERC20 operation did not succeed\""
                                    },
                                    "value": "SafeERC20: ERC20 operation did not succeed"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd",
                                      "typeString": "literal_string \"SafeERC20: ERC20 operation did not succeed\""
                                    }
                                  ],
                                  "id": 1102,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "3811:7:6",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 1111,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3811:85:6",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 1112,
                              "nodeType": "ExpressionStatement",
                              "src": "3811:85:6"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1079,
                    "nodeType": "StructuredDocumentation",
                    "src": "2830:372:6",
                    "text": " @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)."
                  },
                  "id": 1116,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_callOptionalReturn",
                  "nameLocation": "3216:19:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1085,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1082,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "3243:5:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1116,
                        "src": "3236:12:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1081,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1080,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3236:6:6"
                          },
                          "referencedDeclaration": 663,
                          "src": "3236:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1084,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3263:4:6",
                        "nodeType": "VariableDeclaration",
                        "scope": 1116,
                        "src": "3250:17:6",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1083,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3250:5:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3235:33:6"
                  },
                  "returnParameters": {
                    "id": 1086,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3277:0:6"
                  },
                  "scope": 1117,
                  "src": "3207:706:6",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                }
              ],
              "scope": 1118,
              "src": "645:3270:6",
              "usedErrors": []
            }
          ],
          "src": "100:3816:6"
        },
        "id": 6
      },
      "@openzeppelin/contracts/token/ERC721/IERC721.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
          "exportedSymbols": {
            "IERC165": [
              2605
            ],
            "IERC721": [
              1233
            ]
          },
          "id": 1234,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1119,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "93:23:7"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
              "file": "../../utils/introspection/IERC165.sol",
              "id": 1120,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1234,
              "sourceUnit": 2606,
              "src": "118:47:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 1122,
                    "name": "IERC165",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2605,
                    "src": "256:7:7"
                  },
                  "id": 1123,
                  "nodeType": "InheritanceSpecifier",
                  "src": "256:7:7"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 1121,
                "nodeType": "StructuredDocumentation",
                "src": "167:67:7",
                "text": " @dev Required interface of an ERC721 compliant contract."
              },
              "fullyImplemented": false,
              "id": 1233,
              "linearizedBaseContracts": [
                1233,
                2605
              ],
              "name": "IERC721",
              "nameLocation": "245:7:7",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1124,
                    "nodeType": "StructuredDocumentation",
                    "src": "270:88:7",
                    "text": " @dev Emitted when `tokenId` token is transferred from `from` to `to`."
                  },
                  "id": 1132,
                  "name": "Transfer",
                  "nameLocation": "369:8:7",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1131,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1126,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "394:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1132,
                        "src": "378:20:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1125,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "378:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1128,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "416:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1132,
                        "src": "400:18:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1127,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "400:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1130,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "436:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1132,
                        "src": "420:23:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1129,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "420:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "377:67:7"
                  },
                  "src": "363:82:7"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1133,
                    "nodeType": "StructuredDocumentation",
                    "src": "451:94:7",
                    "text": " @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."
                  },
                  "id": 1141,
                  "name": "Approval",
                  "nameLocation": "556:8:7",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1140,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1135,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "581:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1141,
                        "src": "565:21:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1134,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "565:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1137,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "approved",
                        "nameLocation": "604:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1141,
                        "src": "588:24:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1136,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "588:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1139,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "630:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1141,
                        "src": "614:23:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1138,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "614:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "564:74:7"
                  },
                  "src": "550:89:7"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1142,
                    "nodeType": "StructuredDocumentation",
                    "src": "645:117:7",
                    "text": " @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
                  },
                  "id": 1150,
                  "name": "ApprovalForAll",
                  "nameLocation": "773:14:7",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1149,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1144,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "804:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1150,
                        "src": "788:21:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1143,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "788:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1146,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "827:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1150,
                        "src": "811:24:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1145,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "811:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1148,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "approved",
                        "nameLocation": "842:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1150,
                        "src": "837:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1147,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "837:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "787:64:7"
                  },
                  "src": "767:85:7"
                },
                {
                  "documentation": {
                    "id": 1151,
                    "nodeType": "StructuredDocumentation",
                    "src": "858:76:7",
                    "text": " @dev Returns the number of tokens in ``owner``'s account."
                  },
                  "functionSelector": "70a08231",
                  "id": 1158,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "948:9:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1153,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "966:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1158,
                        "src": "958:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1152,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "958:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "957:15:7"
                  },
                  "returnParameters": {
                    "id": 1157,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1156,
                        "mutability": "mutable",
                        "name": "balance",
                        "nameLocation": "1004:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1158,
                        "src": "996:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1155,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "996:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "995:17:7"
                  },
                  "scope": 1233,
                  "src": "939:74:7",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1159,
                    "nodeType": "StructuredDocumentation",
                    "src": "1019:131:7",
                    "text": " @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."
                  },
                  "functionSelector": "6352211e",
                  "id": 1166,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "ownerOf",
                  "nameLocation": "1164:7:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1162,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1161,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "1180:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1166,
                        "src": "1172:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1160,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1172:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1171:17:7"
                  },
                  "returnParameters": {
                    "id": 1165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1164,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1220:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1166,
                        "src": "1212:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1163,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1212:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1211:15:7"
                  },
                  "scope": 1233,
                  "src": "1155:72:7",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1167,
                    "nodeType": "StructuredDocumentation",
                    "src": "1233:690:7",
                    "text": " @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC721 protocol to prevent tokens from being forever locked.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "42842e0e",
                  "id": 1176,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "1937:16:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1174,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1169,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1971:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1176,
                        "src": "1963:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1168,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1963:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1171,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1993:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1176,
                        "src": "1985:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1170,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1985:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1173,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "2013:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1176,
                        "src": "2005:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1172,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2005:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1953:73:7"
                  },
                  "returnParameters": {
                    "id": 1175,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2035:0:7"
                  },
                  "scope": 1233,
                  "src": "1928:108:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1177,
                    "nodeType": "StructuredDocumentation",
                    "src": "2042:504:7",
                    "text": " @dev Transfers `tokenId` token from `from` to `to`.\n WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "23b872dd",
                  "id": 1186,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "2560:12:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1184,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1179,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2590:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1186,
                        "src": "2582:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1178,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2582:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1181,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2612:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1186,
                        "src": "2604:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1180,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2604:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1183,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "2632:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1186,
                        "src": "2624:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1182,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2624:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2572:73:7"
                  },
                  "returnParameters": {
                    "id": 1185,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2654:0:7"
                  },
                  "scope": 1233,
                  "src": "2551:104:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1187,
                    "nodeType": "StructuredDocumentation",
                    "src": "2661:452:7",
                    "text": " @dev Gives permission to `to` to transfer `tokenId` token to another account.\n The approval is cleared when the token is transferred.\n Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n Requirements:\n - The caller must own the token or be an approved operator.\n - `tokenId` must exist.\n Emits an {Approval} event."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 1194,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "3127:7:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1192,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1189,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3143:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1194,
                        "src": "3135:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1188,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3135:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1191,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3155:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1194,
                        "src": "3147:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1190,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3147:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3134:29:7"
                  },
                  "returnParameters": {
                    "id": 1193,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3172:0:7"
                  },
                  "scope": 1233,
                  "src": "3118:55:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1195,
                    "nodeType": "StructuredDocumentation",
                    "src": "3179:139:7",
                    "text": " @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."
                  },
                  "functionSelector": "081812fc",
                  "id": 1202,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getApproved",
                  "nameLocation": "3332:11:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1198,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1197,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3352:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1202,
                        "src": "3344:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1196,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3344:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3343:17:7"
                  },
                  "returnParameters": {
                    "id": 1201,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1200,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3392:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1202,
                        "src": "3384:16:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1199,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3384:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3383:18:7"
                  },
                  "scope": 1233,
                  "src": "3323:79:7",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1203,
                    "nodeType": "StructuredDocumentation",
                    "src": "3408:309:7",
                    "text": " @dev Approve or remove `operator` as an operator for the caller.\n Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n Requirements:\n - The `operator` cannot be the caller.\n Emits an {ApprovalForAll} event."
                  },
                  "functionSelector": "a22cb465",
                  "id": 1210,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setApprovalForAll",
                  "nameLocation": "3731:17:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1208,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1205,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3757:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1210,
                        "src": "3749:16:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1204,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3749:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1207,
                        "mutability": "mutable",
                        "name": "_approved",
                        "nameLocation": "3772:9:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1210,
                        "src": "3767:14:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1206,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3767:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3748:34:7"
                  },
                  "returnParameters": {
                    "id": 1209,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3791:0:7"
                  },
                  "scope": 1233,
                  "src": "3722:70:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1211,
                    "nodeType": "StructuredDocumentation",
                    "src": "3798:138:7",
                    "text": " @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"
                  },
                  "functionSelector": "e985e9c5",
                  "id": 1220,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isApprovedForAll",
                  "nameLocation": "3950:16:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1216,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1213,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "3975:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1220,
                        "src": "3967:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1212,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3967:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1215,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3990:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1220,
                        "src": "3982:16:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1214,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3982:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3966:33:7"
                  },
                  "returnParameters": {
                    "id": 1219,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1218,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1220,
                        "src": "4023:4:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1217,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4023:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4022:6:7"
                  },
                  "scope": 1233,
                  "src": "3941:88:7",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1221,
                    "nodeType": "StructuredDocumentation",
                    "src": "4035:556:7",
                    "text": " @dev Safely transfers `tokenId` token from `from` to `to`.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
                  },
                  "functionSelector": "b88d4fde",
                  "id": 1232,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "4605:16:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1230,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1223,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "4639:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1232,
                        "src": "4631:12:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1222,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4631:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1225,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "4661:2:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1232,
                        "src": "4653:10:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1224,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4653:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1227,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "4681:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1232,
                        "src": "4673:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1226,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4673:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1229,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4713:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1232,
                        "src": "4698:19:7",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1228,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4698:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4621:102:7"
                  },
                  "returnParameters": {
                    "id": 1231,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4732:0:7"
                  },
                  "scope": 1233,
                  "src": "4596:137:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 1234,
              "src": "235:4500:7",
              "usedErrors": []
            }
          ],
          "src": "93:4643:7"
        },
        "id": 7
      },
      "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
          "exportedSymbols": {
            "IERC721Receiver": [
              1251
            ]
          },
          "id": 1252,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1235,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "101:23:8"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 1236,
                "nodeType": "StructuredDocumentation",
                "src": "126:152:8",
                "text": " @title ERC721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC721 asset contracts."
              },
              "fullyImplemented": false,
              "id": 1251,
              "linearizedBaseContracts": [
                1251
              ],
              "name": "IERC721Receiver",
              "nameLocation": "289:15:8",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 1237,
                    "nodeType": "StructuredDocumentation",
                    "src": "311:485:8",
                    "text": " @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n by `operator` from `from`, this function is called.\n It must return its Solidity selector to confirm the token transfer.\n If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`."
                  },
                  "functionSelector": "150b7a02",
                  "id": 1250,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "onERC721Received",
                  "nameLocation": "810:16:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1246,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1239,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "844:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1250,
                        "src": "836:16:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1238,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "836:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1241,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "870:4:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1250,
                        "src": "862:12:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1240,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "862:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1243,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "892:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1250,
                        "src": "884:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1242,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "884:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1245,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "924:4:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1250,
                        "src": "909:19:8",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1244,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "909:5:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "826:108:8"
                  },
                  "returnParameters": {
                    "id": 1249,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1248,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1250,
                        "src": "953:6:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 1247,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "953:6:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "952:8:8"
                  },
                  "scope": 1251,
                  "src": "801:160:8",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 1252,
              "src": "279:684:8",
              "usedErrors": []
            }
          ],
          "src": "101:863:8"
        },
        "id": 8
      },
      "@openzeppelin/contracts/utils/Address.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ]
          },
          "id": 1549,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1253,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "86:23:9"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1254,
                "nodeType": "StructuredDocumentation",
                "src": "111:67:9",
                "text": " @dev Collection of functions related to the address type"
              },
              "fullyImplemented": true,
              "id": 1548,
              "linearizedBaseContracts": [
                1548
              ],
              "name": "Address",
              "nameLocation": "187:7:9",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 1270,
                    "nodeType": "Block",
                    "src": "837:311:9",
                    "statements": [
                      {
                        "assignments": [
                          1263
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1263,
                            "mutability": "mutable",
                            "name": "size",
                            "nameLocation": "1042:4:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1270,
                            "src": "1034:12:9",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1262,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1034:7:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1264,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1034:12:9"
                      },
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "1065:52:9",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1079:28:9",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "account",
                                    "nodeType": "YulIdentifier",
                                    "src": "1099:7:9"
                                  }
                                ],
                                "functionName": {
                                  "name": "extcodesize",
                                  "nodeType": "YulIdentifier",
                                  "src": "1087:11:9"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1087:20:9"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "1079:4:9"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 1257,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1099:7:9",
                            "valueSize": 1
                          },
                          {
                            "declaration": 1263,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1079:4:9",
                            "valueSize": 1
                          }
                        ],
                        "id": 1265,
                        "nodeType": "InlineAssembly",
                        "src": "1056:61:9"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1268,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1266,
                            "name": "size",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1263,
                            "src": "1133:4:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1267,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1140:1:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1133:8:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 1261,
                        "id": 1269,
                        "nodeType": "Return",
                        "src": "1126:15:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1255,
                    "nodeType": "StructuredDocumentation",
                    "src": "201:565:9",
                    "text": " @dev Returns true if `account` is a contract.\n [IMPORTANT]\n ====\n It is unsafe to assume that an address for which this function returns\n false is an externally-owned account (EOA) and not a contract.\n Among others, `isContract` will return false for the following\n types of addresses:\n  - an externally-owned account\n  - a contract in construction\n  - an address where a contract will be created\n  - an address where a contract lived, but was destroyed\n ===="
                  },
                  "id": 1271,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isContract",
                  "nameLocation": "780:10:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1258,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1257,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "799:7:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1271,
                        "src": "791:15:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1256,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "791:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "790:17:9"
                  },
                  "returnParameters": {
                    "id": 1261,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1260,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1271,
                        "src": "831:4:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1259,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "831:4:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "830:6:9"
                  },
                  "scope": 1548,
                  "src": "771:377:9",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1304,
                    "nodeType": "Block",
                    "src": "2136:241:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1286,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 1282,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "2162:4:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Address_$1548",
                                        "typeString": "library Address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_Address_$1548",
                                        "typeString": "library Address"
                                      }
                                    ],
                                    "id": 1281,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2154:7:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1280,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2154:7:9",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1283,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2154:13:9",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "id": 1284,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "src": "2154:21:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 1285,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1276,
                                "src": "2179:6:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2154:31:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20696e73756666696369656e742062616c616e6365",
                              "id": 1287,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2187:31:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9",
                                "typeString": "literal_string \"Address: insufficient balance\""
                              },
                              "value": "Address: insufficient balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9",
                                "typeString": "literal_string \"Address: insufficient balance\""
                              }
                            ],
                            "id": 1279,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2146:7:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1288,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2146:73:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1289,
                        "nodeType": "ExpressionStatement",
                        "src": "2146:73:9"
                      },
                      {
                        "assignments": [
                          1291,
                          null
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1291,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "2236:7:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1304,
                            "src": "2231:12:9",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1290,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "2231:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          null
                        ],
                        "id": 1298,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "",
                              "id": 1296,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2279:2:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              },
                              "value": ""
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                "typeString": "literal_string \"\""
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
                                  "typeString": "literal_string \"\""
                                }
                              ],
                              "expression": {
                                "id": 1292,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1274,
                                "src": "2249:9:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address_payable",
                                  "typeString": "address payable"
                                }
                              },
                              "id": 1293,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "call",
                              "nodeType": "MemberAccess",
                              "src": "2249:14:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                                "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                              }
                            },
                            "id": 1295,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "value"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "id": 1294,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1276,
                                "src": "2271:6:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "src": "2249:29:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value",
                              "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                            }
                          },
                          "id": 1297,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2249:33:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2230:52:9"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1300,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1291,
                              "src": "2300:7:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564",
                              "id": 1301,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2309:60:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae",
                                "typeString": "literal_string \"Address: unable to send value, recipient may have reverted\""
                              },
                              "value": "Address: unable to send value, recipient may have reverted"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae",
                                "typeString": "literal_string \"Address: unable to send value, recipient may have reverted\""
                              }
                            ],
                            "id": 1299,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2292:7:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1302,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2292:78:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1303,
                        "nodeType": "ExpressionStatement",
                        "src": "2292:78:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1272,
                    "nodeType": "StructuredDocumentation",
                    "src": "1154:906:9",
                    "text": " @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n `recipient`, forwarding all available gas and reverting on errors.\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 https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]."
                  },
                  "id": 1305,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sendValue",
                  "nameLocation": "2074:9:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1277,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1274,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "2100:9:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1305,
                        "src": "2084:25:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address_payable",
                          "typeString": "address payable"
                        },
                        "typeName": {
                          "id": 1273,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2084:15:9",
                          "stateMutability": "payable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address_payable",
                            "typeString": "address payable"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1276,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2119:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1305,
                        "src": "2111:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1275,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2111:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2083:43:9"
                  },
                  "returnParameters": {
                    "id": 1278,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2136:0:9"
                  },
                  "scope": 1548,
                  "src": "2065:312:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1321,
                    "nodeType": "Block",
                    "src": "3208:84:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1316,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1308,
                              "src": "3238:6:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1317,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1310,
                              "src": "3246:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564",
                              "id": 1318,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3252:32:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df",
                                "typeString": "literal_string \"Address: low-level call failed\""
                              },
                              "value": "Address: low-level call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df",
                                "typeString": "literal_string \"Address: low-level call failed\""
                              }
                            ],
                            "id": 1315,
                            "name": "functionCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1322,
                              1342
                            ],
                            "referencedDeclaration": 1342,
                            "src": "3225:12:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 1319,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3225:60:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1314,
                        "id": 1320,
                        "nodeType": "Return",
                        "src": "3218:67:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1306,
                    "nodeType": "StructuredDocumentation",
                    "src": "2383:731:9",
                    "text": " @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 If `target` reverts with a revert reason, it is bubbled up by this\n function (like regular Solidity function calls).\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 Requirements:\n - `target` must be a contract.\n - calling `target` with `data` must not revert.\n _Available since v3.1._"
                  },
                  "id": 1322,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCall",
                  "nameLocation": "3128:12:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1311,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1308,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "3149:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1322,
                        "src": "3141:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1307,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3141:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1310,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3170:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1322,
                        "src": "3157:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1309,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3157:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3140:35:9"
                  },
                  "returnParameters": {
                    "id": 1314,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1313,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1322,
                        "src": "3194:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1312,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3194:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3193:14:9"
                  },
                  "scope": 1548,
                  "src": "3119:173:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1341,
                    "nodeType": "Block",
                    "src": "3661:76:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1335,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1325,
                              "src": "3700:6:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1336,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1327,
                              "src": "3708:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "30",
                              "id": 1337,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3714:1:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            {
                              "id": 1338,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1329,
                              "src": "3717:12:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 1334,
                            "name": "functionCallWithValue",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1362,
                              1412
                            ],
                            "referencedDeclaration": 1412,
                            "src": "3678:21:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,uint256,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 1339,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3678:52:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1333,
                        "id": 1340,
                        "nodeType": "Return",
                        "src": "3671:59:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1323,
                    "nodeType": "StructuredDocumentation",
                    "src": "3298:211:9",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"
                  },
                  "id": 1342,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCall",
                  "nameLocation": "3523:12:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1330,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1325,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "3553:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1342,
                        "src": "3545:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1324,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3545:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1327,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3582:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1342,
                        "src": "3569:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1326,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3569:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1329,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "3610:12:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1342,
                        "src": "3596:26:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1328,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "3596:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3535:93:9"
                  },
                  "returnParameters": {
                    "id": 1333,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1332,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1342,
                        "src": "3647:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1331,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3647:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3646:14:9"
                  },
                  "scope": 1548,
                  "src": "3514:223:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1361,
                    "nodeType": "Block",
                    "src": "4242:111:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1355,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1345,
                              "src": "4281:6:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1356,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1347,
                              "src": "4289:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1357,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1349,
                              "src": "4295:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564",
                              "id": 1358,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4302:43:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc",
                                "typeString": "literal_string \"Address: low-level call with value failed\""
                              },
                              "value": "Address: low-level call with value failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_88a4a0b5e975840320a0475d4027005235904fdb5ece94df156f3d717cb2dbfc",
                                "typeString": "literal_string \"Address: low-level call with value failed\""
                              }
                            ],
                            "id": 1354,
                            "name": "functionCallWithValue",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1362,
                              1412
                            ],
                            "referencedDeclaration": 1412,
                            "src": "4259:21:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_uint256_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,uint256,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 1359,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4259:87:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1353,
                        "id": 1360,
                        "nodeType": "Return",
                        "src": "4252:94:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1343,
                    "nodeType": "StructuredDocumentation",
                    "src": "3743:351:9",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but also transferring `value` wei to `target`.\n Requirements:\n - the calling contract must have an ETH balance of at least `value`.\n - the called Solidity function must be `payable`.\n _Available since v3.1._"
                  },
                  "id": 1362,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCallWithValue",
                  "nameLocation": "4108:21:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1350,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1345,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "4147:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1362,
                        "src": "4139:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1344,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4139:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1347,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4176:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1362,
                        "src": "4163:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1346,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4163:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1349,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4198:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1362,
                        "src": "4190:13:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1348,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4190:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4129:80:9"
                  },
                  "returnParameters": {
                    "id": 1353,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1352,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1362,
                        "src": "4228:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1351,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4228:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4227:14:9"
                  },
                  "scope": 1548,
                  "src": "4099:254:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1411,
                    "nodeType": "Block",
                    "src": "4780:320:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1383,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 1379,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "4806:4:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Address_$1548",
                                        "typeString": "library Address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_Address_$1548",
                                        "typeString": "library Address"
                                      }
                                    ],
                                    "id": 1378,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "4798:7:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1377,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "4798:7:9",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1380,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4798:13:9",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "id": 1381,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "src": "4798:21:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 1382,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1369,
                                "src": "4823:5:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "4798:30:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c",
                              "id": 1384,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4830:40:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c",
                                "typeString": "literal_string \"Address: insufficient balance for call\""
                              },
                              "value": "Address: insufficient balance for call"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c",
                                "typeString": "literal_string \"Address: insufficient balance for call\""
                              }
                            ],
                            "id": 1376,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4790:7:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1385,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4790:81:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1386,
                        "nodeType": "ExpressionStatement",
                        "src": "4790:81:9"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1389,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1365,
                                  "src": "4900:6:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 1388,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1271,
                                "src": "4889:10:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 1390,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4889:18:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 1391,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4909:31:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad",
                                "typeString": "literal_string \"Address: call to non-contract\""
                              },
                              "value": "Address: call to non-contract"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad",
                                "typeString": "literal_string \"Address: call to non-contract\""
                              }
                            ],
                            "id": 1387,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4881:7:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1392,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4881:60:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1393,
                        "nodeType": "ExpressionStatement",
                        "src": "4881:60:9"
                      },
                      {
                        "assignments": [
                          1395,
                          1397
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1395,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "4958:7:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1411,
                            "src": "4953:12:9",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1394,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "4953:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 1397,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "4980:10:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1411,
                            "src": "4967:23:9",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1396,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4967:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1404,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1402,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1367,
                              "src": "5020:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              ],
                              "expression": {
                                "id": 1398,
                                "name": "target",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1365,
                                "src": "4994:6:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 1399,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "call",
                              "nodeType": "MemberAccess",
                              "src": "4994:11:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                                "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                              }
                            },
                            "id": 1401,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "value"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "id": 1400,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1369,
                                "src": "5013:5:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "src": "4994:25:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value",
                              "typeString": "function (bytes memory) payable returns (bool,bytes memory)"
                            }
                          },
                          "id": 1403,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4994:31:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4952:73:9"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1406,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1395,
                              "src": "5059:7:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 1407,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1397,
                              "src": "5068:10:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1408,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1371,
                              "src": "5080:12:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 1405,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1547,
                            "src": "5042:16:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bool,bytes memory,string memory) pure returns (bytes memory)"
                            }
                          },
                          "id": 1409,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5042:51:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1375,
                        "id": 1410,
                        "nodeType": "Return",
                        "src": "5035:58:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1363,
                    "nodeType": "StructuredDocumentation",
                    "src": "4359:237:9",
                    "text": " @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n with `errorMessage` as a fallback revert reason when `target` reverts.\n _Available since v3.1._"
                  },
                  "id": 1412,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCallWithValue",
                  "nameLocation": "4610:21:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1372,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1365,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "4649:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1412,
                        "src": "4641:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1364,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4641:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1367,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4678:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1412,
                        "src": "4665:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1366,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4665:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1369,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4700:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1412,
                        "src": "4692:13:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1368,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4692:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1371,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "4729:12:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1412,
                        "src": "4715:26:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1370,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4715:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4631:116:9"
                  },
                  "returnParameters": {
                    "id": 1375,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1374,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1412,
                        "src": "4766:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1373,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4766:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4765:14:9"
                  },
                  "scope": 1548,
                  "src": "4601:499:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1428,
                    "nodeType": "Block",
                    "src": "5377:97:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1423,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1415,
                              "src": "5413:6:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1424,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1417,
                              "src": "5421:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564",
                              "id": 1425,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5427:39:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0",
                                "typeString": "literal_string \"Address: low-level static call failed\""
                              },
                              "value": "Address: low-level static call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_90ec82aa826a536a4cbfae44ecfa384680faa9a4b77344bce96aa761ad904df0",
                                "typeString": "literal_string \"Address: low-level static call failed\""
                              }
                            ],
                            "id": 1422,
                            "name": "functionStaticCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1429,
                              1464
                            ],
                            "referencedDeclaration": 1464,
                            "src": "5394:18:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,string memory) view returns (bytes memory)"
                            }
                          },
                          "id": 1426,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5394:73:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1421,
                        "id": 1427,
                        "nodeType": "Return",
                        "src": "5387:80:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1413,
                    "nodeType": "StructuredDocumentation",
                    "src": "5106:166:9",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"
                  },
                  "id": 1429,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionStaticCall",
                  "nameLocation": "5286:18:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1418,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1415,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "5313:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1429,
                        "src": "5305:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1414,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5305:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1417,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "5334:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1429,
                        "src": "5321:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1416,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5321:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5304:35:9"
                  },
                  "returnParameters": {
                    "id": 1421,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1420,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1429,
                        "src": "5363:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1419,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5363:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5362:14:9"
                  },
                  "scope": 1548,
                  "src": "5277:197:9",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1463,
                    "nodeType": "Block",
                    "src": "5816:228:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1443,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1432,
                                  "src": "5845:6:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 1442,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1271,
                                "src": "5834:10:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 1444,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5834:18:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 1445,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5854:38:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c79cc78e4f16ce3933a42b84c73868f93bb4a59c031a0acf576679de98c608a9",
                                "typeString": "literal_string \"Address: static call to non-contract\""
                              },
                              "value": "Address: static call to non-contract"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c79cc78e4f16ce3933a42b84c73868f93bb4a59c031a0acf576679de98c608a9",
                                "typeString": "literal_string \"Address: static call to non-contract\""
                              }
                            ],
                            "id": 1441,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5826:7:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1446,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5826:67:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1447,
                        "nodeType": "ExpressionStatement",
                        "src": "5826:67:9"
                      },
                      {
                        "assignments": [
                          1449,
                          1451
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1449,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "5910:7:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1463,
                            "src": "5905:12:9",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1448,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "5905:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 1451,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "5932:10:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1463,
                            "src": "5919:23:9",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1450,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "5919:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1456,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1454,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1434,
                              "src": "5964:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "id": 1452,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1432,
                              "src": "5946:6:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1453,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "staticcall",
                            "nodeType": "MemberAccess",
                            "src": "5946:17:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                            }
                          },
                          "id": 1455,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5946:23:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5904:65:9"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1458,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1449,
                              "src": "6003:7:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 1459,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1451,
                              "src": "6012:10:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1460,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1436,
                              "src": "6024:12:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 1457,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1547,
                            "src": "5986:16:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bool,bytes memory,string memory) pure returns (bytes memory)"
                            }
                          },
                          "id": 1461,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5986:51:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1440,
                        "id": 1462,
                        "nodeType": "Return",
                        "src": "5979:58:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1430,
                    "nodeType": "StructuredDocumentation",
                    "src": "5480:173:9",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"
                  },
                  "id": 1464,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionStaticCall",
                  "nameLocation": "5667:18:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1437,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1432,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "5703:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1464,
                        "src": "5695:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1431,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5695:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1434,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "5732:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1464,
                        "src": "5719:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1433,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5719:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1436,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "5760:12:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1464,
                        "src": "5746:26:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1435,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "5746:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5685:93:9"
                  },
                  "returnParameters": {
                    "id": 1440,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1439,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1464,
                        "src": "5802:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1438,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5802:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5801:14:9"
                  },
                  "scope": 1548,
                  "src": "5658:386:9",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1480,
                    "nodeType": "Block",
                    "src": "6320:101:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1475,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1467,
                              "src": "6358:6:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1476,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1469,
                              "src": "6366:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564",
                              "id": 1477,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6372:41:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398",
                                "typeString": "literal_string \"Address: low-level delegate call failed\""
                              },
                              "value": "Address: low-level delegate call failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398",
                                "typeString": "literal_string \"Address: low-level delegate call failed\""
                              }
                            ],
                            "id": 1474,
                            "name": "functionDelegateCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1481,
                              1516
                            ],
                            "referencedDeclaration": 1516,
                            "src": "6337:20:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,bytes memory,string memory) returns (bytes memory)"
                            }
                          },
                          "id": 1478,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6337:77:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1473,
                        "id": 1479,
                        "nodeType": "Return",
                        "src": "6330:84:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1465,
                    "nodeType": "StructuredDocumentation",
                    "src": "6050:168:9",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"
                  },
                  "id": 1481,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionDelegateCall",
                  "nameLocation": "6232:20:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1470,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1467,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "6261:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1481,
                        "src": "6253:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1466,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6253:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1469,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "6282:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1481,
                        "src": "6269:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1468,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6269:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6252:35:9"
                  },
                  "returnParameters": {
                    "id": 1473,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1472,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1481,
                        "src": "6306:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1471,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6306:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6305:14:9"
                  },
                  "scope": 1548,
                  "src": "6223:198:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1515,
                    "nodeType": "Block",
                    "src": "6762:232:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1495,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1484,
                                  "src": "6791:6:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 1494,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1271,
                                "src": "6780:10:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 1496,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6780:18:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 1497,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6800:40:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520",
                                "typeString": "literal_string \"Address: delegate call to non-contract\""
                              },
                              "value": "Address: delegate call to non-contract"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520",
                                "typeString": "literal_string \"Address: delegate call to non-contract\""
                              }
                            ],
                            "id": 1493,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6772:7:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1498,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6772:69:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1499,
                        "nodeType": "ExpressionStatement",
                        "src": "6772:69:9"
                      },
                      {
                        "assignments": [
                          1501,
                          1503
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1501,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "6858:7:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1515,
                            "src": "6853:12:9",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1500,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "6853:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 1503,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "6880:10:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1515,
                            "src": "6867:23:9",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1502,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "6867:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1508,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1506,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1486,
                              "src": "6914:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "id": 1504,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1484,
                              "src": "6894:6:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1505,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "delegatecall",
                            "nodeType": "MemberAccess",
                            "src": "6894:19:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_baredelegatecall_nonpayable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes memory) returns (bool,bytes memory)"
                            }
                          },
                          "id": 1507,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6894:25:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6852:67:9"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1510,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1501,
                              "src": "6953:7:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 1511,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1503,
                              "src": "6962:10:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1512,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1488,
                              "src": "6974:12:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 1509,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1547,
                            "src": "6936:16:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bool,bytes memory,string memory) pure returns (bytes memory)"
                            }
                          },
                          "id": 1513,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6936:51:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1492,
                        "id": 1514,
                        "nodeType": "Return",
                        "src": "6929:58:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1482,
                    "nodeType": "StructuredDocumentation",
                    "src": "6427:175:9",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"
                  },
                  "id": 1516,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionDelegateCall",
                  "nameLocation": "6616:20:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1489,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1484,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "6654:6:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1516,
                        "src": "6646:14:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1483,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6646:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1486,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "6683:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1516,
                        "src": "6670:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1485,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6670:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1488,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "6711:12:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1516,
                        "src": "6697:26:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1487,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "6697:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6636:93:9"
                  },
                  "returnParameters": {
                    "id": 1492,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1491,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1516,
                        "src": "6748:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1490,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6748:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6747:14:9"
                  },
                  "scope": 1548,
                  "src": "6607:387:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1546,
                    "nodeType": "Block",
                    "src": "7374:532:9",
                    "statements": [
                      {
                        "condition": {
                          "id": 1528,
                          "name": "success",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1519,
                          "src": "7388:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 1544,
                          "nodeType": "Block",
                          "src": "7445:455:9",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 1535,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 1532,
                                    "name": "returndata",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1521,
                                    "src": "7529:10:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 1533,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "7529:17:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 1534,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7549:1:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "7529:21:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 1542,
                                "nodeType": "Block",
                                "src": "7837:53:9",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 1539,
                                          "name": "errorMessage",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 1523,
                                          "src": "7862:12:9",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        ],
                                        "id": 1538,
                                        "name": "revert",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -19,
                                          -19
                                        ],
                                        "referencedDeclaration": -19,
                                        "src": "7855:6:9",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (string memory) pure"
                                        }
                                      },
                                      "id": 1540,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "7855:20:9",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 1541,
                                    "nodeType": "ExpressionStatement",
                                    "src": "7855:20:9"
                                  }
                                ]
                              },
                              "id": 1543,
                              "nodeType": "IfStatement",
                              "src": "7525:365:9",
                              "trueBody": {
                                "id": 1537,
                                "nodeType": "Block",
                                "src": "7552:279:9",
                                "statements": [
                                  {
                                    "AST": {
                                      "nodeType": "YulBlock",
                                      "src": "7672:145:9",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "7694:40:9",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "returndata",
                                                "nodeType": "YulIdentifier",
                                                "src": "7723:10:9"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mload",
                                              "nodeType": "YulIdentifier",
                                              "src": "7717:5:9"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7717:17:9"
                                          },
                                          "variables": [
                                            {
                                              "name": "returndata_size",
                                              "nodeType": "YulTypedName",
                                              "src": "7698:15:9",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "7766:2:9",
                                                    "type": "",
                                                    "value": "32"
                                                  },
                                                  {
                                                    "name": "returndata",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "7770:10:9"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "7762:3:9"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "7762:19:9"
                                              },
                                              {
                                                "name": "returndata_size",
                                                "nodeType": "YulIdentifier",
                                                "src": "7783:15:9"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7755:6:9"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7755:44:9"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7755:44:9"
                                        }
                                      ]
                                    },
                                    "evmVersion": "berlin",
                                    "externalReferences": [
                                      {
                                        "declaration": 1521,
                                        "isOffset": false,
                                        "isSlot": false,
                                        "src": "7723:10:9",
                                        "valueSize": 1
                                      },
                                      {
                                        "declaration": 1521,
                                        "isOffset": false,
                                        "isSlot": false,
                                        "src": "7770:10:9",
                                        "valueSize": 1
                                      }
                                    ],
                                    "id": 1536,
                                    "nodeType": "InlineAssembly",
                                    "src": "7663:154:9"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "id": 1545,
                        "nodeType": "IfStatement",
                        "src": "7384:516:9",
                        "trueBody": {
                          "id": 1531,
                          "nodeType": "Block",
                          "src": "7397:42:9",
                          "statements": [
                            {
                              "expression": {
                                "id": 1529,
                                "name": "returndata",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1521,
                                "src": "7418:10:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "functionReturnParameters": 1527,
                              "id": 1530,
                              "nodeType": "Return",
                              "src": "7411:17:9"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1517,
                    "nodeType": "StructuredDocumentation",
                    "src": "7000:209:9",
                    "text": " @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason using the provided one.\n _Available since v4.3._"
                  },
                  "id": 1547,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "verifyCallResult",
                  "nameLocation": "7223:16:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1524,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1519,
                        "mutability": "mutable",
                        "name": "success",
                        "nameLocation": "7254:7:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1547,
                        "src": "7249:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1518,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7249:4:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1521,
                        "mutability": "mutable",
                        "name": "returndata",
                        "nameLocation": "7284:10:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1547,
                        "src": "7271:23:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1520,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "7271:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1523,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "7318:12:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1547,
                        "src": "7304:26:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1522,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "7304:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7239:97:9"
                  },
                  "returnParameters": {
                    "id": 1527,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1526,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1547,
                        "src": "7360:12:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1525,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "7360:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7359:14:9"
                  },
                  "scope": 1548,
                  "src": "7214:692:9",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 1549,
              "src": "179:7729:9",
              "usedErrors": []
            }
          ],
          "src": "86:7823:9"
        },
        "id": 9
      },
      "@openzeppelin/contracts/utils/Context.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Context.sol",
          "exportedSymbols": {
            "Context": [
              1570
            ]
          },
          "id": 1571,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1550,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "86:23:10"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 1551,
                "nodeType": "StructuredDocumentation",
                "src": "111:496:10",
                "text": " @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 This contract is only required for intermediate, library-like contracts."
              },
              "fullyImplemented": true,
              "id": 1570,
              "linearizedBaseContracts": [
                1570
              ],
              "name": "Context",
              "nameLocation": "626:7:10",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 1559,
                    "nodeType": "Block",
                    "src": "702:34:10",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 1556,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -15,
                            "src": "719:3:10",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 1557,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "sender",
                          "nodeType": "MemberAccess",
                          "src": "719:10:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 1555,
                        "id": 1558,
                        "nodeType": "Return",
                        "src": "712:17:10"
                      }
                    ]
                  },
                  "id": 1560,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_msgSender",
                  "nameLocation": "649:10:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1552,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "659:2:10"
                  },
                  "returnParameters": {
                    "id": 1555,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1554,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1560,
                        "src": "693:7:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1553,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "693:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "692:9:10"
                  },
                  "scope": 1570,
                  "src": "640:96:10",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1568,
                    "nodeType": "Block",
                    "src": "809:32:10",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 1565,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -15,
                            "src": "826:3:10",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 1566,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "data",
                          "nodeType": "MemberAccess",
                          "src": "826:8:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_calldata_ptr",
                            "typeString": "bytes calldata"
                          }
                        },
                        "functionReturnParameters": 1564,
                        "id": 1567,
                        "nodeType": "Return",
                        "src": "819:15:10"
                      }
                    ]
                  },
                  "id": 1569,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_msgData",
                  "nameLocation": "751:8:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1561,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "759:2:10"
                  },
                  "returnParameters": {
                    "id": 1564,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1563,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1569,
                        "src": "793:14:10",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1562,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "793:5:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "792:16:10"
                  },
                  "scope": 1570,
                  "src": "742:99:10",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 1571,
              "src": "608:235:10",
              "usedErrors": []
            }
          ],
          "src": "86:758:10"
        },
        "id": 10
      },
      "@openzeppelin/contracts/utils/Counters.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Counters.sol",
          "exportedSymbols": {
            "Counters": [
              1644
            ]
          },
          "id": 1645,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1572,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "87:23:11"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1573,
                "nodeType": "StructuredDocumentation",
                "src": "112:311:11",
                "text": " @title Counters\n @author Matt Condon (@shrugs)\n @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n of elements in a mapping, issuing ERC721 ids, or counting request ids.\n Include with `using Counters for Counters.Counter;`"
              },
              "fullyImplemented": true,
              "id": 1644,
              "linearizedBaseContracts": [
                1644
              ],
              "name": "Counters",
              "nameLocation": "432:8:11",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "Counters.Counter",
                  "id": 1576,
                  "members": [
                    {
                      "constant": false,
                      "id": 1575,
                      "mutability": "mutable",
                      "name": "_value",
                      "nameLocation": "794:6:11",
                      "nodeType": "VariableDeclaration",
                      "scope": 1576,
                      "src": "786:14:11",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 1574,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "786:7:11",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Counter",
                  "nameLocation": "454:7:11",
                  "nodeType": "StructDefinition",
                  "scope": 1644,
                  "src": "447:374:11",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 1587,
                    "nodeType": "Block",
                    "src": "901:38:11",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 1584,
                            "name": "counter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1579,
                            "src": "918:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                              "typeString": "struct Counters.Counter storage pointer"
                            }
                          },
                          "id": 1585,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_value",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 1575,
                          "src": "918:14:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 1583,
                        "id": 1586,
                        "nodeType": "Return",
                        "src": "911:21:11"
                      }
                    ]
                  },
                  "id": 1588,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "current",
                  "nameLocation": "836:7:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1580,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1579,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "860:7:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1588,
                        "src": "844:23:11",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1578,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1577,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1576,
                            "src": "844:7:11"
                          },
                          "referencedDeclaration": 1576,
                          "src": "844:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "843:25:11"
                  },
                  "returnParameters": {
                    "id": 1583,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1582,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1588,
                        "src": "892:7:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1581,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "892:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "891:9:11"
                  },
                  "scope": 1644,
                  "src": "827:112:11",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1601,
                    "nodeType": "Block",
                    "src": "998:70:11",
                    "statements": [
                      {
                        "id": 1600,
                        "nodeType": "UncheckedBlock",
                        "src": "1008:54:11",
                        "statements": [
                          {
                            "expression": {
                              "id": 1598,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 1594,
                                  "name": "counter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1591,
                                  "src": "1032:7:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                                    "typeString": "struct Counters.Counter storage pointer"
                                  }
                                },
                                "id": 1596,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "_value",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 1575,
                                "src": "1032:14:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "+=",
                              "rightHandSide": {
                                "hexValue": "31",
                                "id": 1597,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1050:1:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "1032:19:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 1599,
                            "nodeType": "ExpressionStatement",
                            "src": "1032:19:11"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 1602,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increment",
                  "nameLocation": "954:9:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1592,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1591,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "980:7:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1602,
                        "src": "964:23:11",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1590,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1589,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1576,
                            "src": "964:7:11"
                          },
                          "referencedDeclaration": 1576,
                          "src": "964:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "963:25:11"
                  },
                  "returnParameters": {
                    "id": 1593,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "998:0:11"
                  },
                  "scope": 1644,
                  "src": "945:123:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1629,
                    "nodeType": "Block",
                    "src": "1127:176:11",
                    "statements": [
                      {
                        "assignments": [
                          1609
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1609,
                            "mutability": "mutable",
                            "name": "value",
                            "nameLocation": "1145:5:11",
                            "nodeType": "VariableDeclaration",
                            "scope": 1629,
                            "src": "1137:13:11",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1608,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1137:7:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1612,
                        "initialValue": {
                          "expression": {
                            "id": 1610,
                            "name": "counter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1605,
                            "src": "1153:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                              "typeString": "struct Counters.Counter storage pointer"
                            }
                          },
                          "id": 1611,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_value",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 1575,
                          "src": "1153:14:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1137:30:11"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1616,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1614,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1609,
                                "src": "1185:5:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 1615,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1193:1:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1185:9:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f756e7465723a2064656372656d656e74206f766572666c6f77",
                              "id": 1617,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1196:29:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1dfd0d5389474d871b8e8929aab9d4def041f55f90f625754fb5f9a9ba08af6f",
                                "typeString": "literal_string \"Counter: decrement overflow\""
                              },
                              "value": "Counter: decrement overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1dfd0d5389474d871b8e8929aab9d4def041f55f90f625754fb5f9a9ba08af6f",
                                "typeString": "literal_string \"Counter: decrement overflow\""
                              }
                            ],
                            "id": 1613,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1177:7:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1618,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1177:49:11",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1619,
                        "nodeType": "ExpressionStatement",
                        "src": "1177:49:11"
                      },
                      {
                        "id": 1628,
                        "nodeType": "UncheckedBlock",
                        "src": "1236:61:11",
                        "statements": [
                          {
                            "expression": {
                              "id": 1626,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 1620,
                                  "name": "counter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1605,
                                  "src": "1260:7:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                                    "typeString": "struct Counters.Counter storage pointer"
                                  }
                                },
                                "id": 1622,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "_value",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 1575,
                                "src": "1260:14:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 1625,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 1623,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1609,
                                  "src": "1277:5:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "hexValue": "31",
                                  "id": 1624,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1285:1:11",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "1277:9:11",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1260:26:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 1627,
                            "nodeType": "ExpressionStatement",
                            "src": "1260:26:11"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 1630,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decrement",
                  "nameLocation": "1083:9:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1606,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1605,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "1109:7:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1630,
                        "src": "1093:23:11",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1604,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1603,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1576,
                            "src": "1093:7:11"
                          },
                          "referencedDeclaration": 1576,
                          "src": "1093:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1092:25:11"
                  },
                  "returnParameters": {
                    "id": 1607,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1127:0:11"
                  },
                  "scope": 1644,
                  "src": "1074:229:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1642,
                    "nodeType": "Block",
                    "src": "1358:35:11",
                    "statements": [
                      {
                        "expression": {
                          "id": 1640,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 1636,
                              "name": "counter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1633,
                              "src": "1368:7:11",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                                "typeString": "struct Counters.Counter storage pointer"
                              }
                            },
                            "id": 1638,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "_value",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1575,
                            "src": "1368:14:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "30",
                            "id": 1639,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1385:1:11",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1368:18:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 1641,
                        "nodeType": "ExpressionStatement",
                        "src": "1368:18:11"
                      }
                    ]
                  },
                  "id": 1643,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "reset",
                  "nameLocation": "1318:5:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1634,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1633,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "1340:7:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1643,
                        "src": "1324:23:11",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1632,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1631,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1576,
                            "src": "1324:7:11"
                          },
                          "referencedDeclaration": 1576,
                          "src": "1324:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1576_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1323:25:11"
                  },
                  "returnParameters": {
                    "id": 1635,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1358:0:11"
                  },
                  "scope": 1644,
                  "src": "1309:84:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 1645,
              "src": "424:971:11",
              "usedErrors": []
            }
          ],
          "src": "87:1309:11"
        },
        "id": 11
      },
      "@openzeppelin/contracts/utils/Strings.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Strings.sol",
          "exportedSymbols": {
            "Strings": [
              1847
            ]
          },
          "id": 1848,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1646,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "86:23:12"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1647,
                "nodeType": "StructuredDocumentation",
                "src": "111:34:12",
                "text": " @dev String operations."
              },
              "fullyImplemented": true,
              "id": 1847,
              "linearizedBaseContracts": [
                1847
              ],
              "name": "Strings",
              "nameLocation": "154:7:12",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 1650,
                  "mutability": "constant",
                  "name": "_HEX_SYMBOLS",
                  "nameLocation": "193:12:12",
                  "nodeType": "VariableDeclaration",
                  "scope": 1847,
                  "src": "168:58:12",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes16",
                    "typeString": "bytes16"
                  },
                  "typeName": {
                    "id": 1648,
                    "name": "bytes16",
                    "nodeType": "ElementaryTypeName",
                    "src": "168:7:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes16",
                      "typeString": "bytes16"
                    }
                  },
                  "value": {
                    "hexValue": "30313233343536373839616263646566",
                    "id": 1649,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "208:18:12",
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f",
                      "typeString": "literal_string \"0123456789abcdef\""
                    },
                    "value": "0123456789abcdef"
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 1728,
                    "nodeType": "Block",
                    "src": "399:632:12",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1660,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1658,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1653,
                            "src": "601:5:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1659,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "610:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "601:10:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1664,
                        "nodeType": "IfStatement",
                        "src": "597:51:12",
                        "trueBody": {
                          "id": 1663,
                          "nodeType": "Block",
                          "src": "613:35:12",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 1661,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "string",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "634:3:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d",
                                  "typeString": "literal_string \"0\""
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 1657,
                              "id": 1662,
                              "nodeType": "Return",
                              "src": "627:10:12"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          1666
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1666,
                            "mutability": "mutable",
                            "name": "temp",
                            "nameLocation": "665:4:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1728,
                            "src": "657:12:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1665,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "657:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1668,
                        "initialValue": {
                          "id": 1667,
                          "name": "value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1653,
                          "src": "672:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "657:20:12"
                      },
                      {
                        "assignments": [
                          1670
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1670,
                            "mutability": "mutable",
                            "name": "digits",
                            "nameLocation": "695:6:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1728,
                            "src": "687:14:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1669,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "687:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1671,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "687:14:12"
                      },
                      {
                        "body": {
                          "id": 1682,
                          "nodeType": "Block",
                          "src": "729:57:12",
                          "statements": [
                            {
                              "expression": {
                                "id": 1676,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "743:8:12",
                                "subExpression": {
                                  "id": 1675,
                                  "name": "digits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1670,
                                  "src": "743:6:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1677,
                              "nodeType": "ExpressionStatement",
                              "src": "743:8:12"
                            },
                            {
                              "expression": {
                                "id": 1680,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1678,
                                  "name": "temp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1666,
                                  "src": "765:4:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "/=",
                                "rightHandSide": {
                                  "hexValue": "3130",
                                  "id": 1679,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "773:2:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_10_by_1",
                                    "typeString": "int_const 10"
                                  },
                                  "value": "10"
                                },
                                "src": "765:10:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1681,
                              "nodeType": "ExpressionStatement",
                              "src": "765:10:12"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1674,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1672,
                            "name": "temp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1666,
                            "src": "718:4:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1673,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "726:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "718:9:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1683,
                        "nodeType": "WhileStatement",
                        "src": "711:75:12"
                      },
                      {
                        "assignments": [
                          1685
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1685,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "808:6:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1728,
                            "src": "795:19:12",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1684,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "795:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1690,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1688,
                              "name": "digits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1670,
                              "src": "827:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1687,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "817:9:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory)"
                            },
                            "typeName": {
                              "id": 1686,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "821:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            }
                          },
                          "id": 1689,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "817:17:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "795:39:12"
                      },
                      {
                        "body": {
                          "id": 1721,
                          "nodeType": "Block",
                          "src": "863:131:12",
                          "statements": [
                            {
                              "expression": {
                                "id": 1696,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1694,
                                  "name": "digits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1670,
                                  "src": "877:6:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "-=",
                                "rightHandSide": {
                                  "hexValue": "31",
                                  "id": 1695,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "887:1:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "877:11:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1697,
                              "nodeType": "ExpressionStatement",
                              "src": "877:11:12"
                            },
                            {
                              "expression": {
                                "id": 1715,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 1698,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1685,
                                    "src": "902:6:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 1700,
                                  "indexExpression": {
                                    "id": 1699,
                                    "name": "digits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1670,
                                    "src": "909:6:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "902:14:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "id": 1712,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "hexValue": "3438",
                                            "id": 1705,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "932:2:12",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_48_by_1",
                                              "typeString": "int_const 48"
                                            },
                                            "value": "48"
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "arguments": [
                                              {
                                                "commonType": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                },
                                                "id": 1710,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "leftExpression": {
                                                  "id": 1708,
                                                  "name": "value",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 1653,
                                                  "src": "945:5:12",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "nodeType": "BinaryOperation",
                                                "operator": "%",
                                                "rightExpression": {
                                                  "hexValue": "3130",
                                                  "id": 1709,
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "kind": "number",
                                                  "lValueRequested": false,
                                                  "nodeType": "Literal",
                                                  "src": "953:2:12",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_rational_10_by_1",
                                                    "typeString": "int_const 10"
                                                  },
                                                  "value": "10"
                                                },
                                                "src": "945:10:12",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              ],
                                              "id": 1707,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "nodeType": "ElementaryTypeNameExpression",
                                              "src": "937:7:12",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_type$_t_uint256_$",
                                                "typeString": "type(uint256)"
                                              },
                                              "typeName": {
                                                "id": 1706,
                                                "name": "uint256",
                                                "nodeType": "ElementaryTypeName",
                                                "src": "937:7:12",
                                                "typeDescriptions": {}
                                              }
                                            },
                                            "id": 1711,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "typeConversion",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "937:19:12",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "src": "932:24:12",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 1704,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "926:5:12",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint8_$",
                                          "typeString": "type(uint8)"
                                        },
                                        "typeName": {
                                          "id": 1703,
                                          "name": "uint8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "926:5:12",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 1713,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "926:31:12",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 1702,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "919:6:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bytes1_$",
                                      "typeString": "type(bytes1)"
                                    },
                                    "typeName": {
                                      "id": 1701,
                                      "name": "bytes1",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "919:6:12",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1714,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "919:39:12",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "src": "902:56:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes1",
                                  "typeString": "bytes1"
                                }
                              },
                              "id": 1716,
                              "nodeType": "ExpressionStatement",
                              "src": "902:56:12"
                            },
                            {
                              "expression": {
                                "id": 1719,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1717,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1653,
                                  "src": "972:5:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "/=",
                                "rightHandSide": {
                                  "hexValue": "3130",
                                  "id": 1718,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "981:2:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_10_by_1",
                                    "typeString": "int_const 10"
                                  },
                                  "value": "10"
                                },
                                "src": "972:11:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1720,
                              "nodeType": "ExpressionStatement",
                              "src": "972:11:12"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1693,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1691,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1653,
                            "src": "851:5:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1692,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "860:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "851:10:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1722,
                        "nodeType": "WhileStatement",
                        "src": "844:150:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1725,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1685,
                              "src": "1017:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1724,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1010:6:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                              "typeString": "type(string storage pointer)"
                            },
                            "typeName": {
                              "id": 1723,
                              "name": "string",
                              "nodeType": "ElementaryTypeName",
                              "src": "1010:6:12",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 1726,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1010:14:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 1657,
                        "id": 1727,
                        "nodeType": "Return",
                        "src": "1003:21:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1651,
                    "nodeType": "StructuredDocumentation",
                    "src": "233:90:12",
                    "text": " @dev Converts a `uint256` to its ASCII `string` decimal representation."
                  },
                  "id": 1729,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toString",
                  "nameLocation": "337:8:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1654,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1653,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "354:5:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1729,
                        "src": "346:13:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1652,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "346:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "345:15:12"
                  },
                  "returnParameters": {
                    "id": 1657,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1656,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1729,
                        "src": "384:13:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1655,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "384:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "383:15:12"
                  },
                  "scope": 1847,
                  "src": "328:703:12",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1769,
                    "nodeType": "Block",
                    "src": "1210:255:12",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1739,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1737,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1732,
                            "src": "1224:5:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1738,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1233:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1224:10:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1743,
                        "nodeType": "IfStatement",
                        "src": "1220:54:12",
                        "trueBody": {
                          "id": 1742,
                          "nodeType": "Block",
                          "src": "1236:38:12",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30783030",
                                "id": 1740,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "string",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1257:6:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_stringliteral_27489e20a0060b723a1748bdff5e44570ee9fae64141728105692eac6031e8a4",
                                  "typeString": "literal_string \"0x00\""
                                },
                                "value": "0x00"
                              },
                              "functionReturnParameters": 1736,
                              "id": 1741,
                              "nodeType": "Return",
                              "src": "1250:13:12"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          1745
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1745,
                            "mutability": "mutable",
                            "name": "temp",
                            "nameLocation": "1291:4:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1769,
                            "src": "1283:12:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1744,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1283:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1747,
                        "initialValue": {
                          "id": 1746,
                          "name": "value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1732,
                          "src": "1298:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1283:20:12"
                      },
                      {
                        "assignments": [
                          1749
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1749,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "1321:6:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1769,
                            "src": "1313:14:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1748,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1313:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1751,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 1750,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1330:1:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1313:18:12"
                      },
                      {
                        "body": {
                          "id": 1762,
                          "nodeType": "Block",
                          "src": "1359:57:12",
                          "statements": [
                            {
                              "expression": {
                                "id": 1756,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "1373:8:12",
                                "subExpression": {
                                  "id": 1755,
                                  "name": "length",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1749,
                                  "src": "1373:6:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1757,
                              "nodeType": "ExpressionStatement",
                              "src": "1373:8:12"
                            },
                            {
                              "expression": {
                                "id": 1760,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1758,
                                  "name": "temp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1745,
                                  "src": "1395:4:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": ">>=",
                                "rightHandSide": {
                                  "hexValue": "38",
                                  "id": 1759,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1404:1:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_8_by_1",
                                    "typeString": "int_const 8"
                                  },
                                  "value": "8"
                                },
                                "src": "1395:10:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1761,
                              "nodeType": "ExpressionStatement",
                              "src": "1395:10:12"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1754,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1752,
                            "name": "temp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1745,
                            "src": "1348:4:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1753,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1356:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1348:9:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1763,
                        "nodeType": "WhileStatement",
                        "src": "1341:75:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1765,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1732,
                              "src": "1444:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 1766,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1749,
                              "src": "1451:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1764,
                            "name": "toHexString",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1770,
                              1846
                            ],
                            "referencedDeclaration": 1846,
                            "src": "1432:11:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$",
                              "typeString": "function (uint256,uint256) pure returns (string memory)"
                            }
                          },
                          "id": 1767,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1432:26:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 1736,
                        "id": 1768,
                        "nodeType": "Return",
                        "src": "1425:33:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1730,
                    "nodeType": "StructuredDocumentation",
                    "src": "1037:94:12",
                    "text": " @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."
                  },
                  "id": 1770,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toHexString",
                  "nameLocation": "1145:11:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1733,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1732,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1165:5:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1770,
                        "src": "1157:13:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1731,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1157:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1156:15:12"
                  },
                  "returnParameters": {
                    "id": 1736,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1735,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1770,
                        "src": "1195:13:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1734,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1195:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1194:15:12"
                  },
                  "scope": 1847,
                  "src": "1136:329:12",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1845,
                    "nodeType": "Block",
                    "src": "1678:351:12",
                    "statements": [
                      {
                        "assignments": [
                          1781
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1781,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "1701:6:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1845,
                            "src": "1688:19:12",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1780,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1688:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1790,
                        "initialValue": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1788,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 1786,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "hexValue": "32",
                                  "id": 1784,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1720:1:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_2_by_1",
                                    "typeString": "int_const 2"
                                  },
                                  "value": "2"
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 1785,
                                  "name": "length",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1775,
                                  "src": "1724:6:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1720:10:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "32",
                                "id": 1787,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1733:1:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "src": "1720:14:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1783,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "1710:9:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory)"
                            },
                            "typeName": {
                              "id": 1782,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1714:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            }
                          },
                          "id": 1789,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1710:25:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1688:47:12"
                      },
                      {
                        "expression": {
                          "id": 1795,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1791,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1781,
                              "src": "1745:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 1793,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 1792,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1752:1:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "1745:9:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes1",
                              "typeString": "bytes1"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "30",
                            "id": 1794,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1757:3:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d",
                              "typeString": "literal_string \"0\""
                            },
                            "value": "0"
                          },
                          "src": "1745:15:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes1",
                            "typeString": "bytes1"
                          }
                        },
                        "id": 1796,
                        "nodeType": "ExpressionStatement",
                        "src": "1745:15:12"
                      },
                      {
                        "expression": {
                          "id": 1801,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 1797,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1781,
                              "src": "1770:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 1799,
                            "indexExpression": {
                              "hexValue": "31",
                              "id": 1798,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1777:1:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "1770:9:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes1",
                              "typeString": "bytes1"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "78",
                            "id": 1800,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1782:3:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83",
                              "typeString": "literal_string \"x\""
                            },
                            "value": "x"
                          },
                          "src": "1770:15:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes1",
                            "typeString": "bytes1"
                          }
                        },
                        "id": 1802,
                        "nodeType": "ExpressionStatement",
                        "src": "1770:15:12"
                      },
                      {
                        "body": {
                          "id": 1831,
                          "nodeType": "Block",
                          "src": "1840:87:12",
                          "statements": [
                            {
                              "expression": {
                                "id": 1825,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 1817,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1781,
                                    "src": "1854:6:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 1819,
                                  "indexExpression": {
                                    "id": 1818,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1804,
                                    "src": "1861:1:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "1854:9:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 1820,
                                    "name": "_HEX_SYMBOLS",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1650,
                                    "src": "1866:12:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes16",
                                      "typeString": "bytes16"
                                    }
                                  },
                                  "id": 1824,
                                  "indexExpression": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 1823,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 1821,
                                      "name": "value",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1773,
                                      "src": "1879:5:12",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "&",
                                    "rightExpression": {
                                      "hexValue": "307866",
                                      "id": 1822,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1887:3:12",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_15_by_1",
                                        "typeString": "int_const 15"
                                      },
                                      "value": "0xf"
                                    },
                                    "src": "1879:11:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "1866:25:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "src": "1854:37:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes1",
                                  "typeString": "bytes1"
                                }
                              },
                              "id": 1826,
                              "nodeType": "ExpressionStatement",
                              "src": "1854:37:12"
                            },
                            {
                              "expression": {
                                "id": 1829,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1827,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1773,
                                  "src": "1905:5:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": ">>=",
                                "rightHandSide": {
                                  "hexValue": "34",
                                  "id": 1828,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1915:1:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_4_by_1",
                                    "typeString": "int_const 4"
                                  },
                                  "value": "4"
                                },
                                "src": "1905:11:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1830,
                              "nodeType": "ExpressionStatement",
                              "src": "1905:11:12"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1813,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1811,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1804,
                            "src": "1828:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 1812,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1832:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "1828:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1832,
                        "initializationExpression": {
                          "assignments": [
                            1804
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 1804,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "1808:1:12",
                              "nodeType": "VariableDeclaration",
                              "scope": 1832,
                              "src": "1800:9:12",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 1803,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1800:7:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 1810,
                          "initialValue": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 1809,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1807,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 1805,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1812:1:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "*",
                              "rightExpression": {
                                "id": 1806,
                                "name": "length",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1775,
                                "src": "1816:6:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1812:10:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 1808,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1825:1:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "1812:14:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1800:26:12"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 1815,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "--",
                            "prefix": true,
                            "src": "1835:3:12",
                            "subExpression": {
                              "id": 1814,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1804,
                              "src": "1837:1:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 1816,
                          "nodeType": "ExpressionStatement",
                          "src": "1835:3:12"
                        },
                        "nodeType": "ForStatement",
                        "src": "1795:132:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1836,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1834,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1773,
                                "src": "1944:5:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 1835,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1953:1:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1944:10:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "537472696e67733a20686578206c656e67746820696e73756666696369656e74",
                              "id": 1837,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1956:34:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
                                "typeString": "literal_string \"Strings: hex length insufficient\""
                              },
                              "value": "Strings: hex length insufficient"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
                                "typeString": "literal_string \"Strings: hex length insufficient\""
                              }
                            ],
                            "id": 1833,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1936:7:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1838,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1936:55:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1839,
                        "nodeType": "ExpressionStatement",
                        "src": "1936:55:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1842,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1781,
                              "src": "2015:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1841,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2008:6:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                              "typeString": "type(string storage pointer)"
                            },
                            "typeName": {
                              "id": 1840,
                              "name": "string",
                              "nodeType": "ElementaryTypeName",
                              "src": "2008:6:12",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 1843,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2008:14:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 1779,
                        "id": 1844,
                        "nodeType": "Return",
                        "src": "2001:21:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1771,
                    "nodeType": "StructuredDocumentation",
                    "src": "1471:112:12",
                    "text": " @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."
                  },
                  "id": 1846,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toHexString",
                  "nameLocation": "1597:11:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1776,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1773,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1617:5:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1846,
                        "src": "1609:13:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1772,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1609:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1775,
                        "mutability": "mutable",
                        "name": "length",
                        "nameLocation": "1632:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1846,
                        "src": "1624:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1774,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1624:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1608:31:12"
                  },
                  "returnParameters": {
                    "id": 1779,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1778,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1846,
                        "src": "1663:13:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1777,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1663:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1662:15:12"
                  },
                  "scope": 1847,
                  "src": "1588:441:12",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 1848,
              "src": "146:1885:12",
              "usedErrors": []
            }
          ],
          "src": "86:1946:12"
        },
        "id": 12
      },
      "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
          "exportedSymbols": {
            "ECDSA": [
              2237
            ],
            "Strings": [
              1847
            ]
          },
          "id": 2238,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1849,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "97:23:13"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Strings.sol",
              "file": "../Strings.sol",
              "id": 1850,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2238,
              "sourceUnit": 1848,
              "src": "122:24:13",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1851,
                "nodeType": "StructuredDocumentation",
                "src": "148:205:13",
                "text": " @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\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."
              },
              "fullyImplemented": true,
              "id": 2237,
              "linearizedBaseContracts": [
                2237
              ],
              "name": "ECDSA",
              "nameLocation": "362:5:13",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "ECDSA.RecoverError",
                  "id": 1857,
                  "members": [
                    {
                      "id": 1852,
                      "name": "NoError",
                      "nameLocation": "402:7:13",
                      "nodeType": "EnumValue",
                      "src": "402:7:13"
                    },
                    {
                      "id": 1853,
                      "name": "InvalidSignature",
                      "nameLocation": "419:16:13",
                      "nodeType": "EnumValue",
                      "src": "419:16:13"
                    },
                    {
                      "id": 1854,
                      "name": "InvalidSignatureLength",
                      "nameLocation": "445:22:13",
                      "nodeType": "EnumValue",
                      "src": "445:22:13"
                    },
                    {
                      "id": 1855,
                      "name": "InvalidSignatureS",
                      "nameLocation": "477:17:13",
                      "nodeType": "EnumValue",
                      "src": "477:17:13"
                    },
                    {
                      "id": 1856,
                      "name": "InvalidSignatureV",
                      "nameLocation": "504:17:13",
                      "nodeType": "EnumValue",
                      "src": "504:17:13"
                    }
                  ],
                  "name": "RecoverError",
                  "nameLocation": "379:12:13",
                  "nodeType": "EnumDefinition",
                  "src": "374:153:13"
                },
                {
                  "body": {
                    "id": 1910,
                    "nodeType": "Block",
                    "src": "587:577:13",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_enum$_RecoverError_$1857",
                            "typeString": "enum ECDSA.RecoverError"
                          },
                          "id": 1866,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1863,
                            "name": "error",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1860,
                            "src": "601:5:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$1857",
                              "typeString": "enum ECDSA.RecoverError"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "id": 1864,
                              "name": "RecoverError",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1857,
                              "src": "610:12:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                "typeString": "type(enum ECDSA.RecoverError)"
                              }
                            },
                            "id": 1865,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "NoError",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1852,
                            "src": "610:20:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$1857",
                              "typeString": "enum ECDSA.RecoverError"
                            }
                          },
                          "src": "601:29:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_enum$_RecoverError_$1857",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "id": 1872,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 1869,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1860,
                              "src": "697:5:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "expression": {
                                "id": 1870,
                                "name": "RecoverError",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1857,
                                "src": "706:12:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                  "typeString": "type(enum ECDSA.RecoverError)"
                                }
                              },
                              "id": 1871,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "InvalidSignature",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 1853,
                              "src": "706:29:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "src": "697:38:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              },
                              "id": 1881,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1878,
                                "name": "error",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1860,
                                "src": "806:5:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_enum$_RecoverError_$1857",
                                  "typeString": "enum ECDSA.RecoverError"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 1879,
                                  "name": "RecoverError",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1857,
                                  "src": "815:12:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                    "typeString": "type(enum ECDSA.RecoverError)"
                                  }
                                },
                                "id": 1880,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "InvalidSignatureLength",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 1854,
                                "src": "815:35:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_enum$_RecoverError_$1857",
                                  "typeString": "enum ECDSA.RecoverError"
                                }
                              },
                              "src": "806:44:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "falseBody": {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_enum$_RecoverError_$1857",
                                  "typeString": "enum ECDSA.RecoverError"
                                },
                                "id": 1890,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 1887,
                                  "name": "error",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1860,
                                  "src": "928:5:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_enum$_RecoverError_$1857",
                                    "typeString": "enum ECDSA.RecoverError"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 1888,
                                    "name": "RecoverError",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1857,
                                    "src": "937:12:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                      "typeString": "type(enum ECDSA.RecoverError)"
                                    }
                                  },
                                  "id": 1889,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "InvalidSignatureS",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1855,
                                  "src": "937:30:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_enum$_RecoverError_$1857",
                                    "typeString": "enum ECDSA.RecoverError"
                                  }
                                },
                                "src": "928:39:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "condition": {
                                  "commonType": {
                                    "typeIdentifier": "t_enum$_RecoverError_$1857",
                                    "typeString": "enum ECDSA.RecoverError"
                                  },
                                  "id": 1899,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 1896,
                                    "name": "error",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1860,
                                    "src": "1048:5:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$1857",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 1897,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1857,
                                      "src": "1057:12:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 1898,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureV",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 1856,
                                    "src": "1057:30:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$1857",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  },
                                  "src": "1048:39:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "id": 1905,
                                "nodeType": "IfStatement",
                                "src": "1044:114:13",
                                "trueBody": {
                                  "id": 1904,
                                  "nodeType": "Block",
                                  "src": "1089:69:13",
                                  "statements": [
                                    {
                                      "expression": {
                                        "arguments": [
                                          {
                                            "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c7565",
                                            "id": 1901,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "string",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "1110:36:13",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4",
                                              "typeString": "literal_string \"ECDSA: invalid signature 'v' value\""
                                            },
                                            "value": "ECDSA: invalid signature 'v' value"
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4",
                                              "typeString": "literal_string \"ECDSA: invalid signature 'v' value\""
                                            }
                                          ],
                                          "id": 1900,
                                          "name": "revert",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [
                                            -19,
                                            -19
                                          ],
                                          "referencedDeclaration": -19,
                                          "src": "1103:6:13",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                            "typeString": "function (string memory) pure"
                                          }
                                        },
                                        "id": 1902,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "1103:44:13",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_tuple$__$",
                                          "typeString": "tuple()"
                                        }
                                      },
                                      "id": 1903,
                                      "nodeType": "ExpressionStatement",
                                      "src": "1103:44:13"
                                    }
                                  ]
                                }
                              },
                              "id": 1906,
                              "nodeType": "IfStatement",
                              "src": "924:234:13",
                              "trueBody": {
                                "id": 1895,
                                "nodeType": "Block",
                                "src": "969:69:13",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c7565",
                                          "id": 1892,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "990:36:13",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd",
                                            "typeString": "literal_string \"ECDSA: invalid signature 's' value\""
                                          },
                                          "value": "ECDSA: invalid signature 's' value"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd",
                                            "typeString": "literal_string \"ECDSA: invalid signature 's' value\""
                                          }
                                        ],
                                        "id": 1891,
                                        "name": "revert",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -19,
                                          -19
                                        ],
                                        "referencedDeclaration": -19,
                                        "src": "983:6:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (string memory) pure"
                                        }
                                      },
                                      "id": 1893,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "983:44:13",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 1894,
                                    "nodeType": "ExpressionStatement",
                                    "src": "983:44:13"
                                  }
                                ]
                              }
                            },
                            "id": 1907,
                            "nodeType": "IfStatement",
                            "src": "802:356:13",
                            "trueBody": {
                              "id": 1886,
                              "nodeType": "Block",
                              "src": "852:66:13",
                              "statements": [
                                {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                        "id": 1883,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "string",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "873:33:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77",
                                          "typeString": "literal_string \"ECDSA: invalid signature length\""
                                        },
                                        "value": "ECDSA: invalid signature length"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77",
                                          "typeString": "literal_string \"ECDSA: invalid signature length\""
                                        }
                                      ],
                                      "id": 1882,
                                      "name": "revert",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [
                                        -19,
                                        -19
                                      ],
                                      "referencedDeclaration": -19,
                                      "src": "866:6:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                        "typeString": "function (string memory) pure"
                                      }
                                    },
                                    "id": 1884,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "866:41:13",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_tuple$__$",
                                      "typeString": "tuple()"
                                    }
                                  },
                                  "id": 1885,
                                  "nodeType": "ExpressionStatement",
                                  "src": "866:41:13"
                                }
                              ]
                            }
                          },
                          "id": 1908,
                          "nodeType": "IfStatement",
                          "src": "693:465:13",
                          "trueBody": {
                            "id": 1877,
                            "nodeType": "Block",
                            "src": "737:59:13",
                            "statements": [
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                      "id": 1874,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "string",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "758:26:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be",
                                        "typeString": "literal_string \"ECDSA: invalid signature\""
                                      },
                                      "value": "ECDSA: invalid signature"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be",
                                        "typeString": "literal_string \"ECDSA: invalid signature\""
                                      }
                                    ],
                                    "id": 1873,
                                    "name": "revert",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [
                                      -19,
                                      -19
                                    ],
                                    "referencedDeclaration": -19,
                                    "src": "751:6:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                      "typeString": "function (string memory) pure"
                                    }
                                  },
                                  "id": 1875,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "751:34:13",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$__$",
                                    "typeString": "tuple()"
                                  }
                                },
                                "id": 1876,
                                "nodeType": "ExpressionStatement",
                                "src": "751:34:13"
                              }
                            ]
                          }
                        },
                        "id": 1909,
                        "nodeType": "IfStatement",
                        "src": "597:561:13",
                        "trueBody": {
                          "id": 1868,
                          "nodeType": "Block",
                          "src": "632:55:13",
                          "statements": [
                            {
                              "functionReturnParameters": 1862,
                              "id": 1867,
                              "nodeType": "Return",
                              "src": "646:7:13"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "id": 1911,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_throwError",
                  "nameLocation": "542:11:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1861,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1860,
                        "mutability": "mutable",
                        "name": "error",
                        "nameLocation": "567:5:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 1911,
                        "src": "554:18:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$1857",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 1859,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1858,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1857,
                            "src": "554:12:13"
                          },
                          "referencedDeclaration": 1857,
                          "src": "554:12:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$1857",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "553:20:13"
                  },
                  "returnParameters": {
                    "id": 1862,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "587:0:13"
                  },
                  "scope": 2237,
                  "src": "533:631:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 1975,
                    "nodeType": "Block",
                    "src": "2332:1175:13",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1927,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 1924,
                              "name": "signature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1916,
                              "src": "2539:9:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 1925,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2539:16:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "3635",
                            "id": 1926,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2559:2:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_65_by_1",
                              "typeString": "int_const 65"
                            },
                            "value": "65"
                          },
                          "src": "2539:22:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 1949,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 1946,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1916,
                                "src": "3021:9:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "id": 1947,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "3021:16:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "hexValue": "3634",
                              "id": 1948,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3041:2:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_64_by_1",
                                "typeString": "int_const 64"
                              },
                              "value": "64"
                            },
                            "src": "3021:22:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "id": 1972,
                            "nodeType": "Block",
                            "src": "3420:81:13",
                            "statements": [
                              {
                                "expression": {
                                  "components": [
                                    {
                                      "arguments": [
                                        {
                                          "hexValue": "30",
                                          "id": 1966,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "3450:1:13",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          },
                                          "value": "0"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          }
                                        ],
                                        "id": 1965,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "3442:7:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 1964,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "3442:7:13",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 1967,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "3442:10:13",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "expression": {
                                        "id": 1968,
                                        "name": "RecoverError",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 1857,
                                        "src": "3454:12:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                          "typeString": "type(enum ECDSA.RecoverError)"
                                        }
                                      },
                                      "id": 1969,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "memberName": "InvalidSignatureLength",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 1854,
                                      "src": "3454:35:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_enum$_RecoverError_$1857",
                                        "typeString": "enum ECDSA.RecoverError"
                                      }
                                    }
                                  ],
                                  "id": 1970,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "3441:49:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                                    "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "functionReturnParameters": 1923,
                                "id": 1971,
                                "nodeType": "Return",
                                "src": "3434:56:13"
                              }
                            ]
                          },
                          "id": 1973,
                          "nodeType": "IfStatement",
                          "src": "3017:484:13",
                          "trueBody": {
                            "id": 1963,
                            "nodeType": "Block",
                            "src": "3045:369:13",
                            "statements": [
                              {
                                "assignments": [
                                  1951
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 1951,
                                    "mutability": "mutable",
                                    "name": "r",
                                    "nameLocation": "3067:1:13",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 1963,
                                    "src": "3059:9:13",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    "typeName": {
                                      "id": 1950,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3059:7:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 1952,
                                "nodeType": "VariableDeclarationStatement",
                                "src": "3059:9:13"
                              },
                              {
                                "assignments": [
                                  1954
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 1954,
                                    "mutability": "mutable",
                                    "name": "vs",
                                    "nameLocation": "3090:2:13",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 1963,
                                    "src": "3082:10:13",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    "typeName": {
                                      "id": 1953,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3082:7:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 1955,
                                "nodeType": "VariableDeclarationStatement",
                                "src": "3082:10:13"
                              },
                              {
                                "AST": {
                                  "nodeType": "YulBlock",
                                  "src": "3246:114:13",
                                  "statements": [
                                    {
                                      "nodeType": "YulAssignment",
                                      "src": "3264:32:13",
                                      "value": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "signature",
                                                "nodeType": "YulIdentifier",
                                                "src": "3279:9:13"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3290:4:13",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3275:3:13"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3275:20:13"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3269:5:13"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3269:27:13"
                                      },
                                      "variableNames": [
                                        {
                                          "name": "r",
                                          "nodeType": "YulIdentifier",
                                          "src": "3264:1:13"
                                        }
                                      ]
                                    },
                                    {
                                      "nodeType": "YulAssignment",
                                      "src": "3313:33:13",
                                      "value": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "signature",
                                                "nodeType": "YulIdentifier",
                                                "src": "3329:9:13"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3340:4:13",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3325:3:13"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3325:20:13"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3319:5:13"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3319:27:13"
                                      },
                                      "variableNames": [
                                        {
                                          "name": "vs",
                                          "nodeType": "YulIdentifier",
                                          "src": "3313:2:13"
                                        }
                                      ]
                                    }
                                  ]
                                },
                                "evmVersion": "berlin",
                                "externalReferences": [
                                  {
                                    "declaration": 1951,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3264:1:13",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 1916,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3279:9:13",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 1916,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3329:9:13",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 1954,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3313:2:13",
                                    "valueSize": 1
                                  }
                                ],
                                "id": 1956,
                                "nodeType": "InlineAssembly",
                                "src": "3237:123:13"
                              },
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 1958,
                                      "name": "hash",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1914,
                                      "src": "3391:4:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "id": 1959,
                                      "name": "r",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1951,
                                      "src": "3397:1:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "id": 1960,
                                      "name": "vs",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1954,
                                      "src": "3400:2:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    ],
                                    "id": 1957,
                                    "name": "tryRecover",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [
                                      1976,
                                      2033,
                                      2144
                                    ],
                                    "referencedDeclaration": 2033,
                                    "src": "3380:10:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$1857_$",
                                      "typeString": "function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                                    }
                                  },
                                  "id": 1961,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3380:23:13",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                                    "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "functionReturnParameters": 1923,
                                "id": 1962,
                                "nodeType": "Return",
                                "src": "3373:30:13"
                              }
                            ]
                          }
                        },
                        "id": 1974,
                        "nodeType": "IfStatement",
                        "src": "2535:966:13",
                        "trueBody": {
                          "id": 1945,
                          "nodeType": "Block",
                          "src": "2563:448:13",
                          "statements": [
                            {
                              "assignments": [
                                1929
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 1929,
                                  "mutability": "mutable",
                                  "name": "r",
                                  "nameLocation": "2585:1:13",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 1945,
                                  "src": "2577:9:13",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  "typeName": {
                                    "id": 1928,
                                    "name": "bytes32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2577:7:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 1930,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2577:9:13"
                            },
                            {
                              "assignments": [
                                1932
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 1932,
                                  "mutability": "mutable",
                                  "name": "s",
                                  "nameLocation": "2608:1:13",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 1945,
                                  "src": "2600:9:13",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  "typeName": {
                                    "id": 1931,
                                    "name": "bytes32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2600:7:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 1933,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2600:9:13"
                            },
                            {
                              "assignments": [
                                1935
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 1935,
                                  "mutability": "mutable",
                                  "name": "v",
                                  "nameLocation": "2629:1:13",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 1945,
                                  "src": "2623:7:13",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 1934,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2623:5:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 1936,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2623:7:13"
                            },
                            {
                              "AST": {
                                "nodeType": "YulBlock",
                                "src": "2784:171:13",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2802:32:13",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "signature",
                                              "nodeType": "YulIdentifier",
                                              "src": "2817:9:13"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2828:4:13",
                                              "type": "",
                                              "value": "0x20"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2813:3:13"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2813:20:13"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2807:5:13"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2807:27:13"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "r",
                                        "nodeType": "YulIdentifier",
                                        "src": "2802:1:13"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2851:32:13",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "signature",
                                              "nodeType": "YulIdentifier",
                                              "src": "2866:9:13"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2877:4:13",
                                              "type": "",
                                              "value": "0x40"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2862:3:13"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2862:20:13"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2856:5:13"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2856:27:13"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "s",
                                        "nodeType": "YulIdentifier",
                                        "src": "2851:1:13"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2900:41:13",
                                    "value": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2910:1:13",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "signature",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2923:9:13"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "2934:4:13",
                                                  "type": "",
                                                  "value": "0x60"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "2919:3:13"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2919:20:13"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2913:5:13"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2913:27:13"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "byte",
                                        "nodeType": "YulIdentifier",
                                        "src": "2905:4:13"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2905:36:13"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "v",
                                        "nodeType": "YulIdentifier",
                                        "src": "2900:1:13"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "evmVersion": "berlin",
                              "externalReferences": [
                                {
                                  "declaration": 1929,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2802:1:13",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 1932,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2851:1:13",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 1916,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2817:9:13",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 1916,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2866:9:13",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 1916,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2923:9:13",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 1935,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2900:1:13",
                                  "valueSize": 1
                                }
                              ],
                              "id": 1937,
                              "nodeType": "InlineAssembly",
                              "src": "2775:180:13"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 1939,
                                    "name": "hash",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1914,
                                    "src": "2986:4:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 1940,
                                    "name": "v",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1935,
                                    "src": "2992:1:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  {
                                    "id": 1941,
                                    "name": "r",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1929,
                                    "src": "2995:1:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 1942,
                                    "name": "s",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1932,
                                    "src": "2998:1:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 1938,
                                  "name": "tryRecover",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    1976,
                                    2033,
                                    2144
                                  ],
                                  "referencedDeclaration": 2144,
                                  "src": "2975:10:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$1857_$",
                                    "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "id": 1943,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2975:25:13",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 1923,
                              "id": 1944,
                              "nodeType": "Return",
                              "src": "2968:32:13"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1912,
                    "nodeType": "StructuredDocumentation",
                    "src": "1170:1053:13",
                    "text": " @dev Returns the address that signed a hashed message (`hash`) with\n `signature` or error string. This address can then be used for verification purposes.\n The `ecrecover` EVM opcode 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 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 {toEthSignedMessageHash} on it.\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 _Available since v4.3._"
                  },
                  "id": 1976,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "2237:10:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1917,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1914,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "2256:4:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 1976,
                        "src": "2248:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 1913,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2248:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1916,
                        "mutability": "mutable",
                        "name": "signature",
                        "nameLocation": "2275:9:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 1976,
                        "src": "2262:22:13",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1915,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2262:5:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2247:38:13"
                  },
                  "returnParameters": {
                    "id": 1923,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1919,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1976,
                        "src": "2309:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1918,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2309:7:13",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1922,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1976,
                        "src": "2318:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$1857",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 1921,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1920,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1857,
                            "src": "2318:12:13"
                          },
                          "referencedDeclaration": 1857,
                          "src": "2318:12:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$1857",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2308:23:13"
                  },
                  "scope": 2237,
                  "src": "2228:1279:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2002,
                    "nodeType": "Block",
                    "src": "4380:140:13",
                    "statements": [
                      {
                        "assignments": [
                          1987,
                          1990
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1987,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "4399:9:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2002,
                            "src": "4391:17:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 1986,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4391:7:13",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 1990,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "4423:5:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2002,
                            "src": "4410:18:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$1857",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 1989,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 1988,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 1857,
                                "src": "4410:12:13"
                              },
                              "referencedDeclaration": 1857,
                              "src": "4410:12:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1995,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1992,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1979,
                              "src": "4443:4:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 1993,
                              "name": "signature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1981,
                              "src": "4449:9:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1991,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1976,
                              2033,
                              2144
                            ],
                            "referencedDeclaration": 1976,
                            "src": "4432:10:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$1857_$",
                              "typeString": "function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 1994,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4432:27:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4390:69:13"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1997,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1990,
                              "src": "4481:5:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 1996,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1911,
                            "src": "4469:11:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$1857_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 1998,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4469:18:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1999,
                        "nodeType": "ExpressionStatement",
                        "src": "4469:18:13"
                      },
                      {
                        "expression": {
                          "id": 2000,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1987,
                          "src": "4504:9:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 1985,
                        "id": 2001,
                        "nodeType": "Return",
                        "src": "4497:16:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1977,
                    "nodeType": "StructuredDocumentation",
                    "src": "3513:775:13",
                    "text": " @dev Returns the address that signed a hashed message (`hash`) with\n `signature`. This address can then be used for verification purposes.\n The `ecrecover` EVM opcode 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 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 {toEthSignedMessageHash} on it."
                  },
                  "id": 2003,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "4302:7:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1982,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1979,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "4318:4:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2003,
                        "src": "4310:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 1978,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4310:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1981,
                        "mutability": "mutable",
                        "name": "signature",
                        "nameLocation": "4337:9:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2003,
                        "src": "4324:22:13",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1980,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4324:5:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4309:38:13"
                  },
                  "returnParameters": {
                    "id": 1985,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1984,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2003,
                        "src": "4371:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1983,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4371:7:13",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4370:9:13"
                  },
                  "scope": 2237,
                  "src": "4293:227:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2032,
                    "nodeType": "Block",
                    "src": "4907:246:13",
                    "statements": [
                      {
                        "assignments": [
                          2019
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2019,
                            "mutability": "mutable",
                            "name": "s",
                            "nameLocation": "4925:1:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2032,
                            "src": "4917:9:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2018,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4917:7:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2020,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4917:9:13"
                      },
                      {
                        "assignments": [
                          2022
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2022,
                            "mutability": "mutable",
                            "name": "v",
                            "nameLocation": "4942:1:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2032,
                            "src": "4936:7:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 2021,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "4936:5:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2023,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4936:7:13"
                      },
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "4962:143:13",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4976:80:13",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "vs",
                                    "nodeType": "YulIdentifier",
                                    "src": "4985:2:13"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4989:66:13",
                                    "type": "",
                                    "value": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "4981:3:13"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4981:75:13"
                              },
                              "variableNames": [
                                {
                                  "name": "s",
                                  "nodeType": "YulIdentifier",
                                  "src": "4976:1:13"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5069:26:13",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5082:3:13",
                                        "type": "",
                                        "value": "255"
                                      },
                                      {
                                        "name": "vs",
                                        "nodeType": "YulIdentifier",
                                        "src": "5087:2:13"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shr",
                                      "nodeType": "YulIdentifier",
                                      "src": "5078:3:13"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5078:12:13"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5092:2:13",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5074:3:13"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5074:21:13"
                              },
                              "variableNames": [
                                {
                                  "name": "v",
                                  "nodeType": "YulIdentifier",
                                  "src": "5069:1:13"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 2019,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4976:1:13",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2022,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "5069:1:13",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2010,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4985:2:13",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2010,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "5087:2:13",
                            "valueSize": 1
                          }
                        ],
                        "id": 2024,
                        "nodeType": "InlineAssembly",
                        "src": "4953:152:13"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2026,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2006,
                              "src": "5132:4:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2027,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2022,
                              "src": "5138:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2028,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2008,
                              "src": "5141:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2029,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2019,
                              "src": "5144:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2025,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1976,
                              2033,
                              2144
                            ],
                            "referencedDeclaration": 2144,
                            "src": "5121:10:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$1857_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2030,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5121:25:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "functionReturnParameters": 2017,
                        "id": 2031,
                        "nodeType": "Return",
                        "src": "5114:32:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2004,
                    "nodeType": "StructuredDocumentation",
                    "src": "4526:243:13",
                    "text": " @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n _Available since v4.3._"
                  },
                  "id": 2033,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "4783:10:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2011,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2006,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "4811:4:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2033,
                        "src": "4803:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2005,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4803:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2008,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "4833:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2033,
                        "src": "4825:9:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2007,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4825:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2010,
                        "mutability": "mutable",
                        "name": "vs",
                        "nameLocation": "4852:2:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2033,
                        "src": "4844:10:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2009,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4844:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4793:67:13"
                  },
                  "returnParameters": {
                    "id": 2017,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2013,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2033,
                        "src": "4884:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2012,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4884:7:13",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2016,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2033,
                        "src": "4893:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$1857",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2015,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2014,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1857,
                            "src": "4893:12:13"
                          },
                          "referencedDeclaration": 1857,
                          "src": "4893:12:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$1857",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4883:23:13"
                  },
                  "scope": 2237,
                  "src": "4774:379:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2062,
                    "nodeType": "Block",
                    "src": "5434:136:13",
                    "statements": [
                      {
                        "assignments": [
                          2046,
                          2049
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2046,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "5453:9:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2062,
                            "src": "5445:17:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2045,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "5445:7:13",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2049,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "5477:5:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2062,
                            "src": "5464:18:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$1857",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 2048,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 2047,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 1857,
                                "src": "5464:12:13"
                              },
                              "referencedDeclaration": 1857,
                              "src": "5464:12:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2055,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2051,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2036,
                              "src": "5497:4:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2052,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2038,
                              "src": "5503:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2053,
                              "name": "vs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2040,
                              "src": "5506:2:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2050,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1976,
                              2033,
                              2144
                            ],
                            "referencedDeclaration": 2033,
                            "src": "5486:10:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$1857_$",
                              "typeString": "function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2054,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5486:23:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5444:65:13"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2057,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2049,
                              "src": "5531:5:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 2056,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1911,
                            "src": "5519:11:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$1857_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 2058,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5519:18:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2059,
                        "nodeType": "ExpressionStatement",
                        "src": "5519:18:13"
                      },
                      {
                        "expression": {
                          "id": 2060,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2046,
                          "src": "5554:9:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2044,
                        "id": 2061,
                        "nodeType": "Return",
                        "src": "5547:16:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2034,
                    "nodeType": "StructuredDocumentation",
                    "src": "5159:154:13",
                    "text": " @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n _Available since v4.2._"
                  },
                  "id": 2063,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "5327:7:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2041,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2036,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "5352:4:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2063,
                        "src": "5344:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2035,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5344:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2038,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "5374:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2063,
                        "src": "5366:9:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2037,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5366:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2040,
                        "mutability": "mutable",
                        "name": "vs",
                        "nameLocation": "5393:2:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2063,
                        "src": "5385:10:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2039,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5385:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5334:67:13"
                  },
                  "returnParameters": {
                    "id": 2044,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2043,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2063,
                        "src": "5425:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2042,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5425:7:13",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5424:9:13"
                  },
                  "scope": 2237,
                  "src": "5318:252:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2143,
                    "nodeType": "Block",
                    "src": "5893:1454:13",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2085,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 2082,
                                "name": "s",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2072,
                                "src": "6789:1:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              ],
                              "id": 2081,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "6781:7:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint256_$",
                                "typeString": "type(uint256)"
                              },
                              "typeName": {
                                "id": 2080,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "6781:7:13",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2083,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6781:10:13",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130",
                            "id": 2084,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "6794:66:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1",
                              "typeString": "int_const 5789...(69 digits omitted)...7168"
                            },
                            "value": "0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"
                          },
                          "src": "6781:79:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2095,
                        "nodeType": "IfStatement",
                        "src": "6777:161:13",
                        "trueBody": {
                          "id": 2094,
                          "nodeType": "Block",
                          "src": "6862:76:13",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2088,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "6892:1:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        }
                                      ],
                                      "id": 2087,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "6884:7:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2086,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "6884:7:13",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2089,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6884:10:13",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2090,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1857,
                                      "src": "6896:12:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2091,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureS",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 1855,
                                    "src": "6896:30:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$1857",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2092,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "6883:44:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2079,
                              "id": 2093,
                              "nodeType": "Return",
                              "src": "6876:51:13"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2102,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 2098,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2096,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2068,
                              "src": "6951:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "hexValue": "3237",
                              "id": 2097,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6956:2:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_27_by_1",
                                "typeString": "int_const 27"
                              },
                              "value": "27"
                            },
                            "src": "6951:7:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 2101,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2099,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2068,
                              "src": "6962:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "hexValue": "3238",
                              "id": 2100,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6967:2:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_28_by_1",
                                "typeString": "int_const 28"
                              },
                              "value": "28"
                            },
                            "src": "6962:7:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "6951:18:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2112,
                        "nodeType": "IfStatement",
                        "src": "6947:100:13",
                        "trueBody": {
                          "id": 2111,
                          "nodeType": "Block",
                          "src": "6971:76:13",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2105,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "7001:1:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        }
                                      ],
                                      "id": 2104,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "6993:7:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2103,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "6993:7:13",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2106,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6993:10:13",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2107,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1857,
                                      "src": "7005:12:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2108,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureV",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 1856,
                                    "src": "7005:30:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$1857",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2109,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "6992:44:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2079,
                              "id": 2110,
                              "nodeType": "Return",
                              "src": "6985:51:13"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          2114
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2114,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "7149:6:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2143,
                            "src": "7141:14:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2113,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7141:7:13",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2121,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2116,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2066,
                              "src": "7168:4:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2117,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2068,
                              "src": "7174:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2118,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2070,
                              "src": "7177:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2119,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2072,
                              "src": "7180:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2115,
                            "name": "ecrecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -6,
                            "src": "7158:9:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_ecrecover_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address)"
                            }
                          },
                          "id": 2120,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7158:24:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7141:41:13"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 2127,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2122,
                            "name": "signer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2114,
                            "src": "7196:6:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 2125,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7214:1:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 2124,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "7206:7:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 2123,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "7206:7:13",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2126,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7206:10:13",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7196:20:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2137,
                        "nodeType": "IfStatement",
                        "src": "7192:101:13",
                        "trueBody": {
                          "id": 2136,
                          "nodeType": "Block",
                          "src": "7218:75:13",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2130,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "7248:1:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        }
                                      ],
                                      "id": 2129,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "7240:7:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2128,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "7240:7:13",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2131,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7240:10:13",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2132,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1857,
                                      "src": "7252:12:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2133,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignature",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 1853,
                                    "src": "7252:29:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$1857",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2134,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "7239:43:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2079,
                              "id": 2135,
                              "nodeType": "Return",
                              "src": "7232:50:13"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "id": 2138,
                              "name": "signer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2114,
                              "src": "7311:6:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 2139,
                                "name": "RecoverError",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1857,
                                "src": "7319:12:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_enum$_RecoverError_$1857_$",
                                  "typeString": "type(enum ECDSA.RecoverError)"
                                }
                              },
                              "id": 2140,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "NoError",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 1852,
                              "src": "7319:20:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "id": 2141,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "7310:30:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "functionReturnParameters": 2079,
                        "id": 2142,
                        "nodeType": "Return",
                        "src": "7303:37:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2064,
                    "nodeType": "StructuredDocumentation",
                    "src": "5576:163:13",
                    "text": " @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately.\n _Available since v4.3._"
                  },
                  "id": 2144,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "5753:10:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2073,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2066,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "5781:4:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2144,
                        "src": "5773:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2065,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5773:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2068,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "5801:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2144,
                        "src": "5795:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2067,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "5795:5:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2070,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "5820:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2144,
                        "src": "5812:9:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2069,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5812:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2072,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "5839:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2144,
                        "src": "5831:9:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2071,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5831:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5763:83:13"
                  },
                  "returnParameters": {
                    "id": 2079,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2075,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2144,
                        "src": "5870:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2074,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5870:7:13",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2078,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2144,
                        "src": "5879:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$1857",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2077,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2076,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1857,
                            "src": "5879:12:13"
                          },
                          "referencedDeclaration": 1857,
                          "src": "5879:12:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$1857",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5869:23:13"
                  },
                  "scope": 2237,
                  "src": "5744:1603:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2176,
                    "nodeType": "Block",
                    "src": "7612:138:13",
                    "statements": [
                      {
                        "assignments": [
                          2159,
                          2162
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2159,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "7631:9:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2176,
                            "src": "7623:17:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2158,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7623:7:13",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2162,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "7655:5:13",
                            "nodeType": "VariableDeclaration",
                            "scope": 2176,
                            "src": "7642:18:13",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$1857",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 2161,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 2160,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 1857,
                                "src": "7642:12:13"
                              },
                              "referencedDeclaration": 1857,
                              "src": "7642:12:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2169,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2164,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2147,
                              "src": "7675:4:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2165,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2149,
                              "src": "7681:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2166,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2151,
                              "src": "7684:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2167,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2153,
                              "src": "7687:1:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2163,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1976,
                              2033,
                              2144
                            ],
                            "referencedDeclaration": 2144,
                            "src": "7664:10:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$1857_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2168,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7664:25:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$1857_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7622:67:13"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2171,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2162,
                              "src": "7711:5:13",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$1857",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 2170,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1911,
                            "src": "7699:11:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$1857_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 2172,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7699:18:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2173,
                        "nodeType": "ExpressionStatement",
                        "src": "7699:18:13"
                      },
                      {
                        "expression": {
                          "id": 2174,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2159,
                          "src": "7734:9:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2157,
                        "id": 2175,
                        "nodeType": "Return",
                        "src": "7727:16:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2145,
                    "nodeType": "StructuredDocumentation",
                    "src": "7353:122:13",
                    "text": " @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."
                  },
                  "id": 2177,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "7489:7:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2147,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "7514:4:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2177,
                        "src": "7506:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2146,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7506:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2149,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "7534:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2177,
                        "src": "7528:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2148,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "7528:5:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2151,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "7553:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2177,
                        "src": "7545:9:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2150,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7545:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2153,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "7572:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2177,
                        "src": "7564:9:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2152,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7564:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7496:83:13"
                  },
                  "returnParameters": {
                    "id": 2157,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2156,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2177,
                        "src": "7603:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2155,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7603:7:13",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7602:9:13"
                  },
                  "scope": 2237,
                  "src": "7480:270:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2193,
                    "nodeType": "Block",
                    "src": "8118:187:13",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "19457468657265756d205369676e6564204d6573736167653a0a3332",
                                  "id": 2188,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8256:34:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_178a2411ab6fbc1ba11064408972259c558d0e82fd48b0aba3ad81d14f065e73",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a3332\""
                                  },
                                  "value": "\u0019Ethereum Signed Message:\n32"
                                },
                                {
                                  "id": 2189,
                                  "name": "hash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2180,
                                  "src": "8292:4:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_stringliteral_178a2411ab6fbc1ba11064408972259c558d0e82fd48b0aba3ad81d14f065e73",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a3332\""
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "expression": {
                                  "id": 2186,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "8239:3:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2187,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "8239:16:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2190,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8239:58:13",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2185,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "8229:9:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2191,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8229:69:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2184,
                        "id": 2192,
                        "nodeType": "Return",
                        "src": "8222:76:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2178,
                    "nodeType": "StructuredDocumentation",
                    "src": "7756:279:13",
                    "text": " @dev Returns an Ethereum Signed Message, created from a `hash`. This\n produces hash corresponding to the one signed with the\n https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n JSON-RPC method as part of EIP-191.\n See {recover}."
                  },
                  "id": 2194,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toEthSignedMessageHash",
                  "nameLocation": "8049:22:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2181,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2180,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "8080:4:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2194,
                        "src": "8072:12:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2179,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8072:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8071:14:13"
                  },
                  "returnParameters": {
                    "id": 2184,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2183,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2194,
                        "src": "8109:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2182,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8109:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8108:9:13"
                  },
                  "scope": 2237,
                  "src": "8040:265:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2215,
                    "nodeType": "Block",
                    "src": "8670:116:13",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "19457468657265756d205369676e6564204d6573736167653a0a",
                                  "id": 2205,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8714:32:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""
                                  },
                                  "value": "\u0019Ethereum Signed Message:\n"
                                },
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 2208,
                                        "name": "s",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2197,
                                        "src": "8765:1:13",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      },
                                      "id": 2209,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "length",
                                      "nodeType": "MemberAccess",
                                      "src": "8765:8:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "expression": {
                                      "id": 2206,
                                      "name": "Strings",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1847,
                                      "src": "8748:7:13",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_Strings_$1847_$",
                                        "typeString": "type(library Strings)"
                                      }
                                    },
                                    "id": 2207,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "toString",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 1729,
                                    "src": "8748:16:13",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$",
                                      "typeString": "function (uint256) pure returns (string memory)"
                                    }
                                  },
                                  "id": 2210,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8748:26:13",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                },
                                {
                                  "id": 2211,
                                  "name": "s",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2197,
                                  "src": "8776:1:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""
                                  },
                                  {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                ],
                                "expression": {
                                  "id": 2203,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "8697:3:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2204,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "8697:16:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2212,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8697:81:13",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2202,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "8687:9:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2213,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8687:92:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2201,
                        "id": 2214,
                        "nodeType": "Return",
                        "src": "8680:99:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2195,
                    "nodeType": "StructuredDocumentation",
                    "src": "8311:274:13",
                    "text": " @dev Returns an Ethereum Signed Message, created from `s`. This\n produces hash corresponding to the one signed with the\n https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n JSON-RPC method as part of EIP-191.\n See {recover}."
                  },
                  "id": 2216,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toEthSignedMessageHash",
                  "nameLocation": "8599:22:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2198,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2197,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "8635:1:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2216,
                        "src": "8622:14:13",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2196,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "8622:5:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8621:16:13"
                  },
                  "returnParameters": {
                    "id": 2201,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2200,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2216,
                        "src": "8661:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2199,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8661:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8660:9:13"
                  },
                  "scope": 2237,
                  "src": "8590:196:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2235,
                    "nodeType": "Block",
                    "src": "9227:92:13",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "1901",
                                  "id": 2229,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9271:10:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541",
                                    "typeString": "literal_string hex\"1901\""
                                  },
                                  "value": "\u0019\u0001"
                                },
                                {
                                  "id": 2230,
                                  "name": "domainSeparator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2219,
                                  "src": "9283:15:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 2231,
                                  "name": "structHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2221,
                                  "src": "9300:10:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541",
                                    "typeString": "literal_string hex\"1901\""
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "expression": {
                                  "id": 2227,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "9254:3:13",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2228,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "9254:16:13",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2232,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9254:57:13",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2226,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "9244:9:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2233,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9244:68:13",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2225,
                        "id": 2234,
                        "nodeType": "Return",
                        "src": "9237:75:13"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2217,
                    "nodeType": "StructuredDocumentation",
                    "src": "8792:328:13",
                    "text": " @dev Returns an Ethereum Signed Typed Data, created from a\n `domainSeparator` and a `structHash`. This produces hash corresponding\n to the one signed with the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n JSON-RPC method as part of EIP-712.\n See {recover}."
                  },
                  "id": 2236,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toTypedDataHash",
                  "nameLocation": "9134:15:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2222,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2219,
                        "mutability": "mutable",
                        "name": "domainSeparator",
                        "nameLocation": "9158:15:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2236,
                        "src": "9150:23:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2218,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9150:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2221,
                        "mutability": "mutable",
                        "name": "structHash",
                        "nameLocation": "9183:10:13",
                        "nodeType": "VariableDeclaration",
                        "scope": 2236,
                        "src": "9175:18:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2220,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9175:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9149:45:13"
                  },
                  "returnParameters": {
                    "id": 2225,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2224,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2236,
                        "src": "9218:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2223,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9218:7:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9217:9:13"
                  },
                  "scope": 2237,
                  "src": "9125:194:13",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 2238,
              "src": "354:8967:13",
              "usedErrors": []
            }
          ],
          "src": "97:9225:13"
        },
        "id": 13
      },
      "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol",
          "exportedSymbols": {
            "ECDSA": [
              2237
            ],
            "EIP712": [
              2391
            ],
            "Strings": [
              1847
            ]
          },
          "id": 2392,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2239,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "104:23:14"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
              "file": "./ECDSA.sol",
              "id": 2240,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2392,
              "sourceUnit": 2238,
              "src": "129:21:14",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 2241,
                "nodeType": "StructuredDocumentation",
                "src": "152:1142:14",
                "text": " @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\n thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\n they need in their contracts using a combination of `abi.encode` and `keccak256`.\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 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 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 _Available since v3.4._"
              },
              "fullyImplemented": true,
              "id": 2391,
              "linearizedBaseContracts": [
                2391
              ],
              "name": "EIP712",
              "nameLocation": "1313:6:14",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 2243,
                  "mutability": "immutable",
                  "name": "_CACHED_DOMAIN_SEPARATOR",
                  "nameLocation": "1589:24:14",
                  "nodeType": "VariableDeclaration",
                  "scope": 2391,
                  "src": "1563:50:14",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2242,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1563:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2245,
                  "mutability": "immutable",
                  "name": "_CACHED_CHAIN_ID",
                  "nameLocation": "1645:16:14",
                  "nodeType": "VariableDeclaration",
                  "scope": 2391,
                  "src": "1619:42:14",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 2244,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1619:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2247,
                  "mutability": "immutable",
                  "name": "_CACHED_THIS",
                  "nameLocation": "1693:12:14",
                  "nodeType": "VariableDeclaration",
                  "scope": 2391,
                  "src": "1667:38:14",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 2246,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1667:7:14",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2249,
                  "mutability": "immutable",
                  "name": "_HASHED_NAME",
                  "nameLocation": "1738:12:14",
                  "nodeType": "VariableDeclaration",
                  "scope": 2391,
                  "src": "1712:38:14",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2248,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1712:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2251,
                  "mutability": "immutable",
                  "name": "_HASHED_VERSION",
                  "nameLocation": "1782:15:14",
                  "nodeType": "VariableDeclaration",
                  "scope": 2391,
                  "src": "1756:41:14",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2250,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1756:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2253,
                  "mutability": "immutable",
                  "name": "_TYPE_HASH",
                  "nameLocation": "1829:10:14",
                  "nodeType": "VariableDeclaration",
                  "scope": 2391,
                  "src": "1803:36:14",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2252,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1803:7:14",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2317,
                    "nodeType": "Block",
                    "src": "2510:547:14",
                    "statements": [
                      {
                        "assignments": [
                          2262
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2262,
                            "mutability": "mutable",
                            "name": "hashedName",
                            "nameLocation": "2528:10:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2317,
                            "src": "2520:18:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2261,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2520:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2269,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2266,
                                  "name": "name",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2256,
                                  "src": "2557:4:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                ],
                                "id": 2265,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2551:5:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bytes_storage_ptr_$",
                                  "typeString": "type(bytes storage pointer)"
                                },
                                "typeName": {
                                  "id": 2264,
                                  "name": "bytes",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2551:5:14",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 2267,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2551:11:14",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2263,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2541:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2268,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2541:22:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2520:43:14"
                      },
                      {
                        "assignments": [
                          2271
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2271,
                            "mutability": "mutable",
                            "name": "hashedVersion",
                            "nameLocation": "2581:13:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2317,
                            "src": "2573:21:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2270,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2573:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2278,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2275,
                                  "name": "version",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2258,
                                  "src": "2613:7:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                ],
                                "id": 2274,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2607:5:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bytes_storage_ptr_$",
                                  "typeString": "type(bytes storage pointer)"
                                },
                                "typeName": {
                                  "id": 2273,
                                  "name": "bytes",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2607:5:14",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 2276,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2607:14:14",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2272,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2597:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2277,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2597:25:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2573:49:14"
                      },
                      {
                        "assignments": [
                          2280
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2280,
                            "mutability": "mutable",
                            "name": "typeHash",
                            "nameLocation": "2640:8:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 2317,
                            "src": "2632:16:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2279,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2632:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2284,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429",
                              "id": 2282,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2674:84:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f",
                                "typeString": "literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""
                              },
                              "value": "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f",
                                "typeString": "literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""
                              }
                            ],
                            "id": 2281,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2651:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2283,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2651:117:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2632:136:14"
                      },
                      {
                        "expression": {
                          "id": 2287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2285,
                            "name": "_HASHED_NAME",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2249,
                            "src": "2778:12:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 2286,
                            "name": "hashedName",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2262,
                            "src": "2793:10:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2778:25:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2288,
                        "nodeType": "ExpressionStatement",
                        "src": "2778:25:14"
                      },
                      {
                        "expression": {
                          "id": 2291,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2289,
                            "name": "_HASHED_VERSION",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2251,
                            "src": "2813:15:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 2290,
                            "name": "hashedVersion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2271,
                            "src": "2831:13:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2813:31:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2292,
                        "nodeType": "ExpressionStatement",
                        "src": "2813:31:14"
                      },
                      {
                        "expression": {
                          "id": 2296,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2293,
                            "name": "_CACHED_CHAIN_ID",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2245,
                            "src": "2854:16:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 2294,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "2873:5:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 2295,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "chainid",
                            "nodeType": "MemberAccess",
                            "src": "2873:13:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2854:32:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 2297,
                        "nodeType": "ExpressionStatement",
                        "src": "2854:32:14"
                      },
                      {
                        "expression": {
                          "id": 2304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2298,
                            "name": "_CACHED_DOMAIN_SEPARATOR",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2243,
                            "src": "2896:24:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 2300,
                                "name": "typeHash",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2280,
                                "src": "2945:8:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              {
                                "id": 2301,
                                "name": "hashedName",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2262,
                                "src": "2955:10:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              {
                                "id": 2302,
                                "name": "hashedVersion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2271,
                                "src": "2967:13:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                },
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                },
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              ],
                              "id": 2299,
                              "name": "_buildDomainSeparator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2374,
                              "src": "2923:21:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                                "typeString": "function (bytes32,bytes32,bytes32) view returns (bytes32)"
                              }
                            },
                            "id": 2303,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2923:58:14",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2896:85:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2305,
                        "nodeType": "ExpressionStatement",
                        "src": "2896:85:14"
                      },
                      {
                        "expression": {
                          "id": 2311,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2306,
                            "name": "_CACHED_THIS",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2247,
                            "src": "2991:12:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 2309,
                                "name": "this",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -28,
                                "src": "3014:4:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_EIP712_$2391",
                                  "typeString": "contract EIP712"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_contract$_EIP712_$2391",
                                  "typeString": "contract EIP712"
                                }
                              ],
                              "id": 2308,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3006:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 2307,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "3006:7:14",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2310,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3006:13:14",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2991:28:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 2312,
                        "nodeType": "ExpressionStatement",
                        "src": "2991:28:14"
                      },
                      {
                        "expression": {
                          "id": 2315,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2313,
                            "name": "_TYPE_HASH",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2253,
                            "src": "3029:10:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 2314,
                            "name": "typeHash",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2280,
                            "src": "3042:8:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "3029:21:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2316,
                        "nodeType": "ExpressionStatement",
                        "src": "3029:21:14"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2254,
                    "nodeType": "StructuredDocumentation",
                    "src": "1891:559:14",
                    "text": " @dev Initializes the domain separator and parameter caches.\n The meaning of `name` and `version` is specified in\n https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\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 NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n contract upgrade]."
                  },
                  "id": 2318,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2259,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2256,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "2481:4:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2318,
                        "src": "2467:18:14",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2255,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2467:6:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2258,
                        "mutability": "mutable",
                        "name": "version",
                        "nameLocation": "2501:7:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2318,
                        "src": "2487:21:14",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2257,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2487:6:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2466:43:14"
                  },
                  "returnParameters": {
                    "id": 2260,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2510:0:14"
                  },
                  "scope": 2391,
                  "src": "2455:602:14",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2346,
                    "nodeType": "Block",
                    "src": "3205:246:14",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2334,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "id": 2329,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "arguments": [
                                {
                                  "id": 2326,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "3227:4:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP712_$2391",
                                    "typeString": "contract EIP712"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP712_$2391",
                                    "typeString": "contract EIP712"
                                  }
                                ],
                                "id": 2325,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3219:7:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 2324,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3219:7:14",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 2327,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3219:13:14",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "id": 2328,
                              "name": "_CACHED_THIS",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2247,
                              "src": "3236:12:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "src": "3219:29:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 2333,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 2330,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "3252:5:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 2331,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "chainid",
                              "nodeType": "MemberAccess",
                              "src": "3252:13:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "id": 2332,
                              "name": "_CACHED_CHAIN_ID",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2245,
                              "src": "3269:16:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "3252:33:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "3219:66:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 2344,
                          "nodeType": "Block",
                          "src": "3349:96:14",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 2339,
                                    "name": "_TYPE_HASH",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2253,
                                    "src": "3392:10:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2340,
                                    "name": "_HASHED_NAME",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2249,
                                    "src": "3404:12:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2341,
                                    "name": "_HASHED_VERSION",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2251,
                                    "src": "3418:15:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 2338,
                                  "name": "_buildDomainSeparator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2374,
                                  "src": "3370:21:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                                    "typeString": "function (bytes32,bytes32,bytes32) view returns (bytes32)"
                                  }
                                },
                                "id": 2342,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3370:64:14",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "functionReturnParameters": 2323,
                              "id": 2343,
                              "nodeType": "Return",
                              "src": "3363:71:14"
                            }
                          ]
                        },
                        "id": 2345,
                        "nodeType": "IfStatement",
                        "src": "3215:230:14",
                        "trueBody": {
                          "id": 2337,
                          "nodeType": "Block",
                          "src": "3287:56:14",
                          "statements": [
                            {
                              "expression": {
                                "id": 2335,
                                "name": "_CACHED_DOMAIN_SEPARATOR",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2243,
                                "src": "3308:24:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "functionReturnParameters": 2323,
                              "id": 2336,
                              "nodeType": "Return",
                              "src": "3301:31:14"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2319,
                    "nodeType": "StructuredDocumentation",
                    "src": "3063:75:14",
                    "text": " @dev Returns the domain separator for the current chain."
                  },
                  "id": 2347,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_domainSeparatorV4",
                  "nameLocation": "3152:18:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2320,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3170:2:14"
                  },
                  "returnParameters": {
                    "id": 2323,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2322,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2347,
                        "src": "3196:7:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2321,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3196:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3195:9:14"
                  },
                  "scope": 2391,
                  "src": "3143:308:14",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2373,
                    "nodeType": "Block",
                    "src": "3606:108:14",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2361,
                                  "name": "typeHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2349,
                                  "src": "3644:8:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 2362,
                                  "name": "nameHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2351,
                                  "src": "3654:8:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 2363,
                                  "name": "versionHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2353,
                                  "src": "3664:11:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 2364,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "3677:5:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 2365,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "chainid",
                                  "nodeType": "MemberAccess",
                                  "src": "3677:13:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 2368,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "3700:4:14",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_EIP712_$2391",
                                        "typeString": "contract EIP712"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_EIP712_$2391",
                                        "typeString": "contract EIP712"
                                      }
                                    ],
                                    "id": 2367,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "3692:7:14",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 2366,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3692:7:14",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 2369,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3692:13:14",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 2359,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "3633:3:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2360,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "3633:10:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2370,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3633:73:14",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2358,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "3623:9:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2371,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3623:84:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2357,
                        "id": 2372,
                        "nodeType": "Return",
                        "src": "3616:91:14"
                      }
                    ]
                  },
                  "id": 2374,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_buildDomainSeparator",
                  "nameLocation": "3466:21:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2354,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2349,
                        "mutability": "mutable",
                        "name": "typeHash",
                        "nameLocation": "3505:8:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2374,
                        "src": "3497:16:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2348,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3497:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2351,
                        "mutability": "mutable",
                        "name": "nameHash",
                        "nameLocation": "3531:8:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2374,
                        "src": "3523:16:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2350,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3523:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2353,
                        "mutability": "mutable",
                        "name": "versionHash",
                        "nameLocation": "3557:11:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2374,
                        "src": "3549:19:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2352,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3549:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3487:87:14"
                  },
                  "returnParameters": {
                    "id": 2357,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2356,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2374,
                        "src": "3597:7:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2355,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3597:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3596:9:14"
                  },
                  "scope": 2391,
                  "src": "3457:257:14",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2389,
                    "nodeType": "Block",
                    "src": "4425:79:14",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 2384,
                                "name": "_domainSeparatorV4",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2347,
                                "src": "4464:18:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bytes32_$",
                                  "typeString": "function () view returns (bytes32)"
                                }
                              },
                              "id": 2385,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4464:20:14",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2386,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2377,
                              "src": "4486:10:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 2382,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2237,
                              "src": "4442:5:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$2237_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 2383,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toTypedDataHash",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2236,
                            "src": "4442:21:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32,bytes32) pure returns (bytes32)"
                            }
                          },
                          "id": 2387,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4442:55:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2381,
                        "id": 2388,
                        "nodeType": "Return",
                        "src": "4435:62:14"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2375,
                    "nodeType": "StructuredDocumentation",
                    "src": "3720:614:14",
                    "text": " @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 This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\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 ```"
                  },
                  "id": 2390,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_hashTypedDataV4",
                  "nameLocation": "4348:16:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2378,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2377,
                        "mutability": "mutable",
                        "name": "structHash",
                        "nameLocation": "4373:10:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 2390,
                        "src": "4365:18:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2376,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4365:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4364:20:14"
                  },
                  "returnParameters": {
                    "id": 2381,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2380,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2390,
                        "src": "4416:7:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2379,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4416:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4415:9:14"
                  },
                  "scope": 2391,
                  "src": "4339:165:14",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 2392,
              "src": "1295:3211:14",
              "usedErrors": []
            }
          ],
          "src": "104:4403:14"
        },
        "id": 14
      },
      "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
          "exportedSymbols": {
            "ERC165Checker": [
              2593
            ],
            "IERC165": [
              2605
            ]
          },
          "id": 2594,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2393,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "106:23:15"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
              "file": "./IERC165.sol",
              "id": 2394,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2594,
              "sourceUnit": 2606,
              "src": "131:23:15",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2395,
                "nodeType": "StructuredDocumentation",
                "src": "156:277:15",
                "text": " @dev Library used to query support of an interface declared via {IERC165}.\n Note that these functions return the actual result of the query: they do not\n `revert` if an interface is not supported. It is up to the caller to decide\n what to do in these cases."
              },
              "fullyImplemented": true,
              "id": 2593,
              "linearizedBaseContracts": [
                2593
              ],
              "name": "ERC165Checker",
              "nameLocation": "442:13:15",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 2398,
                  "mutability": "constant",
                  "name": "_INTERFACE_ID_INVALID",
                  "nameLocation": "560:21:15",
                  "nodeType": "VariableDeclaration",
                  "scope": 2593,
                  "src": "536:58:15",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes4",
                    "typeString": "bytes4"
                  },
                  "typeName": {
                    "id": 2396,
                    "name": "bytes4",
                    "nodeType": "ElementaryTypeName",
                    "src": "536:6:15",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes4",
                      "typeString": "bytes4"
                    }
                  },
                  "value": {
                    "hexValue": "30786666666666666666",
                    "id": 2397,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "584:10:15",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_4294967295_by_1",
                      "typeString": "int_const 4294967295"
                    },
                    "value": "0xffffffff"
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2420,
                    "nodeType": "Block",
                    "src": "759:341:15",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2418,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 2407,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2401,
                                "src": "985:7:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2409,
                                      "name": "IERC165",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2605,
                                      "src": "999:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC165_$2605_$",
                                        "typeString": "type(contract IERC165)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_contract$_IERC165_$2605_$",
                                        "typeString": "type(contract IERC165)"
                                      }
                                    ],
                                    "id": 2408,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "994:4:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2410,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "994:13:15",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_contract$_IERC165_$2605",
                                    "typeString": "type(contract IERC165)"
                                  }
                                },
                                "id": 2411,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "interfaceId",
                                "nodeType": "MemberAccess",
                                "src": "994:25:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              ],
                              "id": 2406,
                              "name": "_supportsERC165Interface",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2592,
                              "src": "960:24:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                "typeString": "function (address,bytes4) view returns (bool)"
                              }
                            },
                            "id": 2412,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "960:60:15",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "id": 2417,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "!",
                            "prefix": true,
                            "src": "1036:57:15",
                            "subExpression": {
                              "arguments": [
                                {
                                  "id": 2414,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2401,
                                  "src": "1062:7:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 2415,
                                  "name": "_INTERFACE_ID_INVALID",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2398,
                                  "src": "1071:21:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                ],
                                "id": 2413,
                                "name": "_supportsERC165Interface",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2592,
                                "src": "1037:24:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                  "typeString": "function (address,bytes4) view returns (bool)"
                                }
                              },
                              "id": 2416,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1037:56:15",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "960:133:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 2405,
                        "id": 2419,
                        "nodeType": "Return",
                        "src": "941:152:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2399,
                    "nodeType": "StructuredDocumentation",
                    "src": "601:83:15",
                    "text": " @dev Returns true if `account` supports the {IERC165} interface,"
                  },
                  "id": 2421,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsERC165",
                  "nameLocation": "698:14:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2402,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2401,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "721:7:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2421,
                        "src": "713:15:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2400,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "713:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "712:17:15"
                  },
                  "returnParameters": {
                    "id": 2405,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2404,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2421,
                        "src": "753:4:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2403,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "753:4:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "752:6:15"
                  },
                  "scope": 2593,
                  "src": "689:411:15",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2440,
                    "nodeType": "Block",
                    "src": "1411:181:15",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2438,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 2432,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2424,
                                "src": "1527:7:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "id": 2431,
                              "name": "supportsERC165",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2421,
                              "src": "1512:14:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                "typeString": "function (address) view returns (bool)"
                              }
                            },
                            "id": 2433,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1512:23:15",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 2435,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2424,
                                "src": "1564:7:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 2436,
                                "name": "interfaceId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2426,
                                "src": "1573:11:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              ],
                              "id": 2434,
                              "name": "_supportsERC165Interface",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2592,
                              "src": "1539:24:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                "typeString": "function (address,bytes4) view returns (bool)"
                              }
                            },
                            "id": 2437,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1539:46:15",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "1512:73:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 2430,
                        "id": 2439,
                        "nodeType": "Return",
                        "src": "1505:80:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2422,
                    "nodeType": "StructuredDocumentation",
                    "src": "1106:207:15",
                    "text": " @dev Returns true if `account` supports the interface defined by\n `interfaceId`. Support for {IERC165} itself is queried automatically.\n See {IERC165-supportsInterface}."
                  },
                  "id": 2441,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "1327:17:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2427,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2424,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "1353:7:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2441,
                        "src": "1345:15:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2423,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1345:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2426,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "1369:11:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2441,
                        "src": "1362:18:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 2425,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "1362:6:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1344:37:15"
                  },
                  "returnParameters": {
                    "id": 2430,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2429,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2441,
                        "src": "1405:4:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2428,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1405:4:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1404:6:15"
                  },
                  "scope": 2593,
                  "src": "1318:274:15",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2496,
                    "nodeType": "Block",
                    "src": "2122:552:15",
                    "statements": [
                      {
                        "assignments": [
                          2457
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2457,
                            "mutability": "mutable",
                            "name": "interfaceIdsSupported",
                            "nameLocation": "2245:21:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2496,
                            "src": "2231:35:15",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                              "typeString": "bool[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 2455,
                                "name": "bool",
                                "nodeType": "ElementaryTypeName",
                                "src": "2231:4:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2456,
                              "nodeType": "ArrayTypeName",
                              "src": "2231:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                                "typeString": "bool[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2464,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 2461,
                                "name": "interfaceIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2447,
                                "src": "2280:12:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                  "typeString": "bytes4[] memory"
                                }
                              },
                              "id": 2462,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2280:19:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2460,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "2269:10:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bool_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bool[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 2458,
                                "name": "bool",
                                "nodeType": "ElementaryTypeName",
                                "src": "2273:4:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2459,
                              "nodeType": "ArrayTypeName",
                              "src": "2273:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                                "typeString": "bool[]"
                              }
                            }
                          },
                          "id": 2463,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2269:31:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                            "typeString": "bool[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2231:69:15"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 2466,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2444,
                              "src": "2372:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 2465,
                            "name": "supportsERC165",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2421,
                            "src": "2357:14:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) view returns (bool)"
                            }
                          },
                          "id": 2467,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2357:23:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2493,
                        "nodeType": "IfStatement",
                        "src": "2353:276:15",
                        "trueBody": {
                          "id": 2492,
                          "nodeType": "Block",
                          "src": "2382:247:15",
                          "statements": [
                            {
                              "body": {
                                "id": 2490,
                                "nodeType": "Block",
                                "src": "2509:110:15",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 2488,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 2479,
                                          "name": "interfaceIdsSupported",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 2457,
                                          "src": "2527:21:15",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                                            "typeString": "bool[] memory"
                                          }
                                        },
                                        "id": 2481,
                                        "indexExpression": {
                                          "id": 2480,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 2469,
                                          "src": "2549:1:15",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "2527:24:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 2483,
                                            "name": "account",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 2444,
                                            "src": "2579:7:15",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 2484,
                                              "name": "interfaceIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 2447,
                                              "src": "2588:12:15",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                                "typeString": "bytes4[] memory"
                                              }
                                            },
                                            "id": 2486,
                                            "indexExpression": {
                                              "id": 2485,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 2469,
                                              "src": "2601:1:15",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "2588:15:15",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            },
                                            {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          ],
                                          "id": 2482,
                                          "name": "_supportsERC165Interface",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 2592,
                                          "src": "2554:24:15",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                            "typeString": "function (address,bytes4) view returns (bool)"
                                          }
                                        },
                                        "id": 2487,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "2554:50:15",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "src": "2527:77:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 2489,
                                    "nodeType": "ExpressionStatement",
                                    "src": "2527:77:15"
                                  }
                                ]
                              },
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 2475,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2472,
                                  "name": "i",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2469,
                                  "src": "2479:1:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "expression": {
                                    "id": 2473,
                                    "name": "interfaceIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2447,
                                    "src": "2483:12:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                      "typeString": "bytes4[] memory"
                                    }
                                  },
                                  "id": 2474,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "2483:19:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "2479:23:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2491,
                              "initializationExpression": {
                                "assignments": [
                                  2469
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 2469,
                                    "mutability": "mutable",
                                    "name": "i",
                                    "nameLocation": "2472:1:15",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 2491,
                                    "src": "2464:9:15",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "typeName": {
                                      "id": 2468,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2464:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 2471,
                                "initialValue": {
                                  "hexValue": "30",
                                  "id": 2470,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2476:1:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "nodeType": "VariableDeclarationStatement",
                                "src": "2464:13:15"
                              },
                              "loopExpression": {
                                "expression": {
                                  "id": 2477,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "UnaryOperation",
                                  "operator": "++",
                                  "prefix": false,
                                  "src": "2504:3:15",
                                  "subExpression": {
                                    "id": 2476,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2469,
                                    "src": "2504:1:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 2478,
                                "nodeType": "ExpressionStatement",
                                "src": "2504:3:15"
                              },
                              "nodeType": "ForStatement",
                              "src": "2459:160:15"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 2494,
                          "name": "interfaceIdsSupported",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2457,
                          "src": "2646:21:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                            "typeString": "bool[] memory"
                          }
                        },
                        "functionReturnParameters": 2452,
                        "id": 2495,
                        "nodeType": "Return",
                        "src": "2639:28:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2442,
                    "nodeType": "StructuredDocumentation",
                    "src": "1598:374:15",
                    "text": " @dev Returns a boolean array where each value corresponds to the\n interfaces passed in and whether they're supported or not. This allows\n you to batch check interfaces for a contract where your expectation\n is that some interfaces may not be supported.\n See {IERC165-supportsInterface}.\n _Available since v3.4._"
                  },
                  "id": 2497,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getSupportedInterfaces",
                  "nameLocation": "1986:22:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2448,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2444,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "2017:7:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2497,
                        "src": "2009:15:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2443,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2009:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2447,
                        "mutability": "mutable",
                        "name": "interfaceIds",
                        "nameLocation": "2042:12:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2497,
                        "src": "2026:28:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                          "typeString": "bytes4[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 2445,
                            "name": "bytes4",
                            "nodeType": "ElementaryTypeName",
                            "src": "2026:6:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "id": 2446,
                          "nodeType": "ArrayTypeName",
                          "src": "2026:8:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes4_$dyn_storage_ptr",
                            "typeString": "bytes4[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2008:47:15"
                  },
                  "returnParameters": {
                    "id": 2452,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2451,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2497,
                        "src": "2103:13:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                          "typeString": "bool[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 2449,
                            "name": "bool",
                            "nodeType": "ElementaryTypeName",
                            "src": "2103:4:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "id": 2450,
                          "nodeType": "ArrayTypeName",
                          "src": "2103:6:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                            "typeString": "bool[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2102:15:15"
                  },
                  "scope": 2593,
                  "src": "1977:697:15",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2542,
                    "nodeType": "Block",
                    "src": "3116:429:15",
                    "statements": [
                      {
                        "condition": {
                          "id": 2511,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "!",
                          "prefix": true,
                          "src": "3172:24:15",
                          "subExpression": {
                            "arguments": [
                              {
                                "id": 2509,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2500,
                                "src": "3188:7:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "id": 2508,
                              "name": "supportsERC165",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2421,
                              "src": "3173:14:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                "typeString": "function (address) view returns (bool)"
                              }
                            },
                            "id": 2510,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3173:23:15",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2515,
                        "nodeType": "IfStatement",
                        "src": "3168:67:15",
                        "trueBody": {
                          "id": 2514,
                          "nodeType": "Block",
                          "src": "3198:37:15",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 2512,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3219:5:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 2507,
                              "id": 2513,
                              "nodeType": "Return",
                              "src": "3212:12:15"
                            }
                          ]
                        }
                      },
                      {
                        "body": {
                          "id": 2538,
                          "nodeType": "Block",
                          "src": "3355:126:15",
                          "statements": [
                            {
                              "condition": {
                                "id": 2533,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "3373:51:15",
                                "subExpression": {
                                  "arguments": [
                                    {
                                      "id": 2528,
                                      "name": "account",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2500,
                                      "src": "3399:7:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 2529,
                                        "name": "interfaceIds",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2503,
                                        "src": "3408:12:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                          "typeString": "bytes4[] memory"
                                        }
                                      },
                                      "id": 2531,
                                      "indexExpression": {
                                        "id": 2530,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2517,
                                        "src": "3421:1:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "3408:15:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    ],
                                    "id": 2527,
                                    "name": "_supportsERC165Interface",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2592,
                                    "src": "3374:24:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                      "typeString": "function (address,bytes4) view returns (bool)"
                                    }
                                  },
                                  "id": 2532,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3374:50:15",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2537,
                              "nodeType": "IfStatement",
                              "src": "3369:102:15",
                              "trueBody": {
                                "id": 2536,
                                "nodeType": "Block",
                                "src": "3426:45:15",
                                "statements": [
                                  {
                                    "expression": {
                                      "hexValue": "66616c7365",
                                      "id": 2534,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "bool",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "3451:5:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      },
                                      "value": "false"
                                    },
                                    "functionReturnParameters": 2507,
                                    "id": 2535,
                                    "nodeType": "Return",
                                    "src": "3444:12:15"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2523,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2520,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2517,
                            "src": "3325:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 2521,
                              "name": "interfaceIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2503,
                              "src": "3329:12:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                "typeString": "bytes4[] memory"
                              }
                            },
                            "id": 2522,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "3329:19:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3325:23:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2539,
                        "initializationExpression": {
                          "assignments": [
                            2517
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 2517,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "3318:1:15",
                              "nodeType": "VariableDeclaration",
                              "scope": 2539,
                              "src": "3310:9:15",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 2516,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3310:7:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 2519,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 2518,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3322:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "3310:13:15"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 2525,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "3350:3:15",
                            "subExpression": {
                              "id": 2524,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2517,
                              "src": "3350:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 2526,
                          "nodeType": "ExpressionStatement",
                          "src": "3350:3:15"
                        },
                        "nodeType": "ForStatement",
                        "src": "3305:176:15"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 2540,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3534:4:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 2507,
                        "id": 2541,
                        "nodeType": "Return",
                        "src": "3527:11:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2498,
                    "nodeType": "StructuredDocumentation",
                    "src": "2680:324:15",
                    "text": " @dev Returns true if `account` supports all the interfaces defined in\n `interfaceIds`. Support for {IERC165} itself is queried automatically.\n Batch-querying can lead to gas savings by skipping repeated checks for\n {IERC165} support.\n See {IERC165-supportsInterface}."
                  },
                  "id": 2543,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsAllInterfaces",
                  "nameLocation": "3018:21:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2504,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2500,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "3048:7:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2543,
                        "src": "3040:15:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2499,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3040:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2503,
                        "mutability": "mutable",
                        "name": "interfaceIds",
                        "nameLocation": "3073:12:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2543,
                        "src": "3057:28:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                          "typeString": "bytes4[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 2501,
                            "name": "bytes4",
                            "nodeType": "ElementaryTypeName",
                            "src": "3057:6:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "id": 2502,
                          "nodeType": "ArrayTypeName",
                          "src": "3057:8:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes4_$dyn_storage_ptr",
                            "typeString": "bytes4[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3039:47:15"
                  },
                  "returnParameters": {
                    "id": 2507,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2506,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2543,
                        "src": "3110:4:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2505,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3110:4:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3109:6:15"
                  },
                  "scope": 2593,
                  "src": "3009:536:15",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2591,
                    "nodeType": "Block",
                    "src": "4307:310:15",
                    "statements": [
                      {
                        "assignments": [
                          2554
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2554,
                            "mutability": "mutable",
                            "name": "encodedParams",
                            "nameLocation": "4330:13:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2591,
                            "src": "4317:26:15",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2553,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4317:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2562,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 2557,
                                  "name": "IERC165",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2605,
                                  "src": "4369:7:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_IERC165_$2605_$",
                                    "typeString": "type(contract IERC165)"
                                  }
                                },
                                "id": 2558,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "supportsInterface",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 2604,
                                "src": "4369:25:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_declaration_view$_t_bytes4_$returns$_t_bool_$",
                                  "typeString": "function IERC165.supportsInterface(bytes4) view returns (bool)"
                                }
                              },
                              "id": 2559,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "selector",
                              "nodeType": "MemberAccess",
                              "src": "4369:34:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            },
                            {
                              "id": 2560,
                              "name": "interfaceId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2548,
                              "src": "4405:11:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              },
                              {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            ],
                            "expression": {
                              "id": 2555,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "4346:3:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 2556,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "encodeWithSelector",
                            "nodeType": "MemberAccess",
                            "src": "4346:22:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes4) pure returns (bytes memory)"
                            }
                          },
                          "id": 2561,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4346:71:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4317:100:15"
                      },
                      {
                        "assignments": [
                          2564,
                          2566
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2564,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "4433:7:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2591,
                            "src": "4428:12:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 2563,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "4428:4:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2566,
                            "mutability": "mutable",
                            "name": "result",
                            "nameLocation": "4455:6:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2591,
                            "src": "4442:19:15",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2565,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4442:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2573,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2571,
                              "name": "encodedParams",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2554,
                              "src": "4496:13:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              ],
                              "expression": {
                                "id": 2567,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2546,
                                "src": "4465:7:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 2568,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "staticcall",
                              "nodeType": "MemberAccess",
                              "src": "4465:18:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                                "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                              }
                            },
                            "id": 2570,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "gas"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "hexValue": "3330303030",
                                "id": 2569,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4489:5:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_30000_by_1",
                                  "typeString": "int_const 30000"
                                },
                                "value": "30000"
                              }
                            ],
                            "src": "4465:30:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$gas",
                              "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                            }
                          },
                          "id": 2572,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4465:45:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4427:83:15"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2577,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 2574,
                              "name": "result",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2566,
                              "src": "4524:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2575,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "4524:13:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "hexValue": "3332",
                            "id": 2576,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4540:2:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_32_by_1",
                              "typeString": "int_const 32"
                            },
                            "value": "32"
                          },
                          "src": "4524:18:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2580,
                        "nodeType": "IfStatement",
                        "src": "4520:36:15",
                        "trueBody": {
                          "expression": {
                            "hexValue": "66616c7365",
                            "id": 2578,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4551:5:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "false"
                          },
                          "functionReturnParameters": 2552,
                          "id": 2579,
                          "nodeType": "Return",
                          "src": "4544:12:15"
                        }
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2589,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2581,
                            "name": "success",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2564,
                            "src": "4573:7:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 2584,
                                "name": "result",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2566,
                                "src": "4595:6:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              {
                                "components": [
                                  {
                                    "id": 2586,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "4604:4:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bool_$",
                                      "typeString": "type(bool)"
                                    },
                                    "typeName": {
                                      "id": 2585,
                                      "name": "bool",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "4604:4:15",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "id": 2587,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "4603:6:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bool_$",
                                  "typeString": "type(bool)"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                },
                                {
                                  "typeIdentifier": "t_type$_t_bool_$",
                                  "typeString": "type(bool)"
                                }
                              ],
                              "expression": {
                                "id": 2582,
                                "name": "abi",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -1,
                                "src": "4584:3:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_abi",
                                  "typeString": "abi"
                                }
                              },
                              "id": 2583,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "decode",
                              "nodeType": "MemberAccess",
                              "src": "4584:10:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                "typeString": "function () pure"
                              }
                            },
                            "id": 2588,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "4584:26:15",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "4573:37:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 2552,
                        "id": 2590,
                        "nodeType": "Return",
                        "src": "4566:44:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2544,
                    "nodeType": "StructuredDocumentation",
                    "src": "3551:652:15",
                    "text": " @notice Query if a contract implements an interface, does not check ERC165 support\n @param account The address of the contract to query for support of an interface\n @param interfaceId The interface identifier, as specified in ERC-165\n @return true if the contract at account indicates support of the interface with\n identifier interfaceId, false otherwise\n @dev Assumes that account contains a contract that supports ERC165, otherwise\n the behavior of this method is undefined. This precondition can be checked\n with {supportsERC165}.\n Interface identification is specified in ERC-165."
                  },
                  "id": 2592,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supportsERC165Interface",
                  "nameLocation": "4217:24:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2549,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2546,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "4250:7:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2592,
                        "src": "4242:15:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2545,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4242:7:15",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2548,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "4266:11:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2592,
                        "src": "4259:18:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 2547,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "4259:6:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4241:37:15"
                  },
                  "returnParameters": {
                    "id": 2552,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2551,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2592,
                        "src": "4301:4:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2550,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4301:4:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4300:6:15"
                  },
                  "scope": 2593,
                  "src": "4208:409:15",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                }
              ],
              "scope": 2594,
              "src": "434:4185:15",
              "usedErrors": []
            }
          ],
          "src": "106:4514:15"
        },
        "id": 15
      },
      "@openzeppelin/contracts/utils/introspection/IERC165.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
          "exportedSymbols": {
            "IERC165": [
              2605
            ]
          },
          "id": 2606,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2595,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "100:23:16"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 2596,
                "nodeType": "StructuredDocumentation",
                "src": "125:279:16",
                "text": " @dev Interface of the ERC165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[EIP].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."
              },
              "fullyImplemented": false,
              "id": 2605,
              "linearizedBaseContracts": [
                2605
              ],
              "name": "IERC165",
              "nameLocation": "415:7:16",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 2597,
                    "nodeType": "StructuredDocumentation",
                    "src": "429:340:16",
                    "text": " @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."
                  },
                  "functionSelector": "01ffc9a7",
                  "id": 2604,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "783:17:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2600,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2599,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "808:11:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2604,
                        "src": "801:18:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 2598,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "801:6:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "800:20:16"
                  },
                  "returnParameters": {
                    "id": 2603,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2602,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2604,
                        "src": "844:4:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2601,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "844:4:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "843:6:16"
                  },
                  "scope": 2605,
                  "src": "774:76:16",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 2606,
              "src": "405:447:16",
              "usedErrors": []
            }
          ],
          "src": "100:753:16"
        },
        "id": 16
      },
      "@openzeppelin/contracts/utils/math/SafeCast.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
          "exportedSymbols": {
            "SafeCast": [
              2998
            ]
          },
          "id": 2999,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2607,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "92:23:17"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2608,
                "nodeType": "StructuredDocumentation",
                "src": "117:709:17",
                "text": " @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always.\n Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n all math on `uint256` and `int256` and then downcasting."
              },
              "fullyImplemented": true,
              "id": 2998,
              "linearizedBaseContracts": [
                2998
              ],
              "name": "SafeCast",
              "nameLocation": "835:8:17",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 2632,
                    "nodeType": "Block",
                    "src": "1201:126:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2623,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2617,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2611,
                                "src": "1219:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2620,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1233:7:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      },
                                      "typeName": {
                                        "id": 2619,
                                        "name": "uint224",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1233:7:17",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      }
                                    ],
                                    "id": 2618,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1228:4:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2621,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1228:13:17",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint224",
                                    "typeString": "type(uint224)"
                                  }
                                },
                                "id": 2622,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1228:17:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "1219:26:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473",
                              "id": 2624,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1247:41:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 224 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              }
                            ],
                            "id": 2616,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1211:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2625,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1211:78:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2626,
                        "nodeType": "ExpressionStatement",
                        "src": "1211:78:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2629,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2611,
                              "src": "1314:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2628,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1306:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 2627,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "1306:7:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2630,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1306:14:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 2615,
                        "id": 2631,
                        "nodeType": "Return",
                        "src": "1299:21:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2609,
                    "nodeType": "StructuredDocumentation",
                    "src": "850:280:17",
                    "text": " @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"
                  },
                  "id": 2633,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint224",
                  "nameLocation": "1144:9:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2612,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2611,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1162:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2633,
                        "src": "1154:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2610,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1154:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1153:15:17"
                  },
                  "returnParameters": {
                    "id": 2615,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2614,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2633,
                        "src": "1192:7:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 2613,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "1192:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1191:9:17"
                  },
                  "scope": 2998,
                  "src": "1135:192:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2657,
                    "nodeType": "Block",
                    "src": "1684:126:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2648,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2642,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2636,
                                "src": "1702:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2645,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1716:7:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint128_$",
                                        "typeString": "type(uint128)"
                                      },
                                      "typeName": {
                                        "id": 2644,
                                        "name": "uint128",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1716:7:17",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint128_$",
                                        "typeString": "type(uint128)"
                                      }
                                    ],
                                    "id": 2643,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1711:4:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2646,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1711:13:17",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint128",
                                    "typeString": "type(uint128)"
                                  }
                                },
                                "id": 2647,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1711:17:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint128",
                                  "typeString": "uint128"
                                }
                              },
                              "src": "1702:26:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473",
                              "id": 2649,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1730:41:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 128 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              }
                            ],
                            "id": 2641,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1694:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2650,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1694:78:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2651,
                        "nodeType": "ExpressionStatement",
                        "src": "1694:78:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2654,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2636,
                              "src": "1797:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2653,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1789:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint128_$",
                              "typeString": "type(uint128)"
                            },
                            "typeName": {
                              "id": 2652,
                              "name": "uint128",
                              "nodeType": "ElementaryTypeName",
                              "src": "1789:7:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2655,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1789:14:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint128",
                            "typeString": "uint128"
                          }
                        },
                        "functionReturnParameters": 2640,
                        "id": 2656,
                        "nodeType": "Return",
                        "src": "1782:21:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2634,
                    "nodeType": "StructuredDocumentation",
                    "src": "1333:280:17",
                    "text": " @dev Returns the downcasted uint128 from uint256, reverting on\n overflow (when the input is greater than largest uint128).\n Counterpart to Solidity's `uint128` operator.\n Requirements:\n - input must fit into 128 bits"
                  },
                  "id": 2658,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint128",
                  "nameLocation": "1627:9:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2637,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2636,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1645:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2658,
                        "src": "1637:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2635,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1637:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1636:15:17"
                  },
                  "returnParameters": {
                    "id": 2640,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2639,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2658,
                        "src": "1675:7:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint128",
                          "typeString": "uint128"
                        },
                        "typeName": {
                          "id": 2638,
                          "name": "uint128",
                          "nodeType": "ElementaryTypeName",
                          "src": "1675:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint128",
                            "typeString": "uint128"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1674:9:17"
                  },
                  "scope": 2998,
                  "src": "1618:192:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2682,
                    "nodeType": "Block",
                    "src": "2161:123:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2673,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2667,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2661,
                                "src": "2179:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2670,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2193:6:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint96_$",
                                        "typeString": "type(uint96)"
                                      },
                                      "typeName": {
                                        "id": 2669,
                                        "name": "uint96",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2193:6:17",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint96_$",
                                        "typeString": "type(uint96)"
                                      }
                                    ],
                                    "id": 2668,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2188:4:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2671,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2188:12:17",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint96",
                                    "typeString": "type(uint96)"
                                  }
                                },
                                "id": 2672,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2188:16:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint96",
                                  "typeString": "uint96"
                                }
                              },
                              "src": "2179:25:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2039362062697473",
                              "id": 2674,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2206:40:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_06d20189090e973729391526269baef79c35dd621633195648e5f8309eef9e19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 96 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 96 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_06d20189090e973729391526269baef79c35dd621633195648e5f8309eef9e19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 96 bits\""
                              }
                            ],
                            "id": 2666,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2171:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2675,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2171:76:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2676,
                        "nodeType": "ExpressionStatement",
                        "src": "2171:76:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2679,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2661,
                              "src": "2271:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2678,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2264:6:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint96_$",
                              "typeString": "type(uint96)"
                            },
                            "typeName": {
                              "id": 2677,
                              "name": "uint96",
                              "nodeType": "ElementaryTypeName",
                              "src": "2264:6:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2264:13:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "functionReturnParameters": 2665,
                        "id": 2681,
                        "nodeType": "Return",
                        "src": "2257:20:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2659,
                    "nodeType": "StructuredDocumentation",
                    "src": "1816:276:17",
                    "text": " @dev Returns the downcasted uint96 from uint256, reverting on\n overflow (when the input is greater than largest uint96).\n Counterpart to Solidity's `uint96` operator.\n Requirements:\n - input must fit into 96 bits"
                  },
                  "id": 2683,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint96",
                  "nameLocation": "2106:8:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2662,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2661,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2123:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2683,
                        "src": "2115:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2660,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2115:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2114:15:17"
                  },
                  "returnParameters": {
                    "id": 2665,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2664,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2683,
                        "src": "2153:6:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 2663,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "2153:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2152:8:17"
                  },
                  "scope": 2998,
                  "src": "2097:187:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2707,
                    "nodeType": "Block",
                    "src": "2635:123:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2698,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2692,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2686,
                                "src": "2653:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2695,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2667:6:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      },
                                      "typeName": {
                                        "id": 2694,
                                        "name": "uint64",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2667:6:17",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      }
                                    ],
                                    "id": 2693,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2662:4:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2696,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2662:12:17",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint64",
                                    "typeString": "type(uint64)"
                                  }
                                },
                                "id": 2697,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2662:16:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "src": "2653:25:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473",
                              "id": 2699,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2680:40:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 64 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              }
                            ],
                            "id": 2691,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2645:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2700,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2645:76:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2701,
                        "nodeType": "ExpressionStatement",
                        "src": "2645:76:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2704,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2686,
                              "src": "2745:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2703,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2738:6:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 2702,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "2738:6:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2705,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2738:13:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 2690,
                        "id": 2706,
                        "nodeType": "Return",
                        "src": "2731:20:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2684,
                    "nodeType": "StructuredDocumentation",
                    "src": "2290:276:17",
                    "text": " @dev Returns the downcasted uint64 from uint256, reverting on\n overflow (when the input is greater than largest uint64).\n Counterpart to Solidity's `uint64` operator.\n Requirements:\n - input must fit into 64 bits"
                  },
                  "id": 2708,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint64",
                  "nameLocation": "2580:8:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2687,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2686,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2597:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2708,
                        "src": "2589:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2685,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2589:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2588:15:17"
                  },
                  "returnParameters": {
                    "id": 2690,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2689,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2708,
                        "src": "2627:6:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 2688,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2627:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2626:8:17"
                  },
                  "scope": 2998,
                  "src": "2571:187:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2732,
                    "nodeType": "Block",
                    "src": "3109:123:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2723,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2717,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2711,
                                "src": "3127:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2720,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3141:6:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint32_$",
                                        "typeString": "type(uint32)"
                                      },
                                      "typeName": {
                                        "id": 2719,
                                        "name": "uint32",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3141:6:17",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint32_$",
                                        "typeString": "type(uint32)"
                                      }
                                    ],
                                    "id": 2718,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "3136:4:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2721,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3136:12:17",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint32",
                                    "typeString": "type(uint32)"
                                  }
                                },
                                "id": 2722,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "3136:16:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "3127:25:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473",
                              "id": 2724,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3154:40:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 32 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              }
                            ],
                            "id": 2716,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3119:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2725,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3119:76:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2726,
                        "nodeType": "ExpressionStatement",
                        "src": "3119:76:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2729,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2711,
                              "src": "3219:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2728,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3212:6:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 2727,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3212:6:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2730,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3212:13:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 2715,
                        "id": 2731,
                        "nodeType": "Return",
                        "src": "3205:20:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2709,
                    "nodeType": "StructuredDocumentation",
                    "src": "2764:276:17",
                    "text": " @dev Returns the downcasted uint32 from uint256, reverting on\n overflow (when the input is greater than largest uint32).\n Counterpart to Solidity's `uint32` operator.\n Requirements:\n - input must fit into 32 bits"
                  },
                  "id": 2733,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint32",
                  "nameLocation": "3054:8:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2712,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2711,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "3071:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2733,
                        "src": "3063:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2710,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3063:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3062:15:17"
                  },
                  "returnParameters": {
                    "id": 2715,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2714,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2733,
                        "src": "3101:6:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 2713,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3101:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3100:8:17"
                  },
                  "scope": 2998,
                  "src": "3045:187:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2757,
                    "nodeType": "Block",
                    "src": "3583:123:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2748,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2742,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2736,
                                "src": "3601:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2745,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3615:6:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint16_$",
                                        "typeString": "type(uint16)"
                                      },
                                      "typeName": {
                                        "id": 2744,
                                        "name": "uint16",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3615:6:17",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint16_$",
                                        "typeString": "type(uint16)"
                                      }
                                    ],
                                    "id": 2743,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "3610:4:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2746,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3610:12:17",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint16",
                                    "typeString": "type(uint16)"
                                  }
                                },
                                "id": 2747,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "3610:16:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3601:25:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473",
                              "id": 2749,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3628:40:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 16 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              }
                            ],
                            "id": 2741,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3593:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2750,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3593:76:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2751,
                        "nodeType": "ExpressionStatement",
                        "src": "3593:76:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2754,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2736,
                              "src": "3693:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2753,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3686:6:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint16_$",
                              "typeString": "type(uint16)"
                            },
                            "typeName": {
                              "id": 2752,
                              "name": "uint16",
                              "nodeType": "ElementaryTypeName",
                              "src": "3686:6:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2755,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3686:13:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "functionReturnParameters": 2740,
                        "id": 2756,
                        "nodeType": "Return",
                        "src": "3679:20:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2734,
                    "nodeType": "StructuredDocumentation",
                    "src": "3238:276:17",
                    "text": " @dev Returns the downcasted uint16 from uint256, reverting on\n overflow (when the input is greater than largest uint16).\n Counterpart to Solidity's `uint16` operator.\n Requirements:\n - input must fit into 16 bits"
                  },
                  "id": 2758,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint16",
                  "nameLocation": "3528:8:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2737,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2736,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "3545:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2758,
                        "src": "3537:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2735,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3537:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3536:15:17"
                  },
                  "returnParameters": {
                    "id": 2740,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2739,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2758,
                        "src": "3575:6:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 2738,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "3575:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3574:8:17"
                  },
                  "scope": 2998,
                  "src": "3519:187:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2782,
                    "nodeType": "Block",
                    "src": "4052:120:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2773,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2767,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2761,
                                "src": "4070:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2770,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "4084:5:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      },
                                      "typeName": {
                                        "id": 2769,
                                        "name": "uint8",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "4084:5:17",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      }
                                    ],
                                    "id": 2768,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "4079:4:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2771,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4079:11:17",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint8",
                                    "typeString": "type(uint8)"
                                  }
                                },
                                "id": 2772,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "4079:15:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "4070:24:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473",
                              "id": 2774,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4096:39:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 8 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              }
                            ],
                            "id": 2766,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4062:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2775,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4062:74:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2776,
                        "nodeType": "ExpressionStatement",
                        "src": "4062:74:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2779,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2761,
                              "src": "4159:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2778,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4153:5:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 2777,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "4153:5:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2780,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4153:12:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 2765,
                        "id": 2781,
                        "nodeType": "Return",
                        "src": "4146:19:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2759,
                    "nodeType": "StructuredDocumentation",
                    "src": "3712:273:17",
                    "text": " @dev Returns the downcasted uint8 from uint256, reverting on\n overflow (when the input is greater than largest uint8).\n Counterpart to Solidity's `uint8` operator.\n Requirements:\n - input must fit into 8 bits."
                  },
                  "id": 2783,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint8",
                  "nameLocation": "3999:7:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2762,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2761,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4015:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2783,
                        "src": "4007:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2760,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4007:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4006:15:17"
                  },
                  "returnParameters": {
                    "id": 2765,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2764,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2783,
                        "src": "4045:5:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2763,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "4045:5:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4044:7:17"
                  },
                  "scope": 2998,
                  "src": "3990:182:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2803,
                    "nodeType": "Block",
                    "src": "4408:103:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              },
                              "id": 2794,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2792,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2786,
                                "src": "4426:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 2793,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4435:1:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4426:10:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c7565206d75737420626520706f736974697665",
                              "id": 2795,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4438:34:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_74e6d3a4204092bea305532ded31d3763fc378e46be3884a93ceff08a0761807",
                                "typeString": "literal_string \"SafeCast: value must be positive\""
                              },
                              "value": "SafeCast: value must be positive"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_74e6d3a4204092bea305532ded31d3763fc378e46be3884a93ceff08a0761807",
                                "typeString": "literal_string \"SafeCast: value must be positive\""
                              }
                            ],
                            "id": 2791,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4418:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2796,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4418:55:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2797,
                        "nodeType": "ExpressionStatement",
                        "src": "4418:55:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2800,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2786,
                              "src": "4498:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 2799,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4490:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint256_$",
                              "typeString": "type(uint256)"
                            },
                            "typeName": {
                              "id": 2798,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4490:7:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2801,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4490:14:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 2790,
                        "id": 2802,
                        "nodeType": "Return",
                        "src": "4483:21:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2784,
                    "nodeType": "StructuredDocumentation",
                    "src": "4178:160:17",
                    "text": " @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."
                  },
                  "id": 2804,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint256",
                  "nameLocation": "4352:9:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2787,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2786,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4369:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2804,
                        "src": "4362:12:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 2785,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4362:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4361:14:17"
                  },
                  "returnParameters": {
                    "id": 2790,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2789,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2804,
                        "src": "4399:7:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2788,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4399:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4398:9:17"
                  },
                  "scope": 2998,
                  "src": "4343:168:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2836,
                    "nodeType": "Block",
                    "src": "4935:153:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 2827,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2819,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2813,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2807,
                                  "src": "4953:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2816,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4967:6:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        },
                                        "typeName": {
                                          "id": 2815,
                                          "name": "int128",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4967:6:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        }
                                      ],
                                      "id": 2814,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "4962:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2817,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "4962:12:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int128",
                                      "typeString": "type(int128)"
                                    }
                                  },
                                  "id": 2818,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "4962:16:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int128",
                                    "typeString": "int128"
                                  }
                                },
                                "src": "4953:25:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2826,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2820,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2807,
                                  "src": "4982:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2823,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4996:6:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        },
                                        "typeName": {
                                          "id": 2822,
                                          "name": "int128",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4996:6:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        }
                                      ],
                                      "id": 2821,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "4991:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2824,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "4991:12:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int128",
                                      "typeString": "type(int128)"
                                    }
                                  },
                                  "id": 2825,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "4991:16:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int128",
                                    "typeString": "int128"
                                  }
                                },
                                "src": "4982:25:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "4953:54:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473",
                              "id": 2828,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5009:41:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 128 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_47a1e201974f94d3d1a31c8b08ae18c6966c758bdcd4400020012b98cc55426c",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 128 bits\""
                              }
                            ],
                            "id": 2812,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4945:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2829,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4945:106:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2830,
                        "nodeType": "ExpressionStatement",
                        "src": "4945:106:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2833,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2807,
                              "src": "5075:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 2832,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5068:6:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int128_$",
                              "typeString": "type(int128)"
                            },
                            "typeName": {
                              "id": 2831,
                              "name": "int128",
                              "nodeType": "ElementaryTypeName",
                              "src": "5068:6:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2834,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5068:13:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int128",
                            "typeString": "int128"
                          }
                        },
                        "functionReturnParameters": 2811,
                        "id": 2835,
                        "nodeType": "Return",
                        "src": "5061:20:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2805,
                    "nodeType": "StructuredDocumentation",
                    "src": "4517:350:17",
                    "text": " @dev Returns the downcasted int128 from int256, reverting on\n overflow (when the input is less than smallest int128 or\n greater than largest int128).\n Counterpart to Solidity's `int128` operator.\n Requirements:\n - input must fit into 128 bits\n _Available since v3.1._"
                  },
                  "id": 2837,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt128",
                  "nameLocation": "4881:8:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2808,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2807,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4897:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2837,
                        "src": "4890:12:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 2806,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4890:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4889:14:17"
                  },
                  "returnParameters": {
                    "id": 2811,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2810,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2837,
                        "src": "4927:6:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int128",
                          "typeString": "int128"
                        },
                        "typeName": {
                          "id": 2809,
                          "name": "int128",
                          "nodeType": "ElementaryTypeName",
                          "src": "4927:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int128",
                            "typeString": "int128"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4926:8:17"
                  },
                  "scope": 2998,
                  "src": "4872:216:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2869,
                    "nodeType": "Block",
                    "src": "5505:149:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 2860,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2852,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2846,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2840,
                                  "src": "5523:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2849,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5537:5:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        },
                                        "typeName": {
                                          "id": 2848,
                                          "name": "int64",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5537:5:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        }
                                      ],
                                      "id": 2847,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "5532:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2850,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5532:11:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int64",
                                      "typeString": "type(int64)"
                                    }
                                  },
                                  "id": 2851,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "5532:15:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int64",
                                    "typeString": "int64"
                                  }
                                },
                                "src": "5523:24:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2859,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2853,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2840,
                                  "src": "5551:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2856,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5565:5:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        },
                                        "typeName": {
                                          "id": 2855,
                                          "name": "int64",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5565:5:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        }
                                      ],
                                      "id": 2854,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "5560:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2857,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5560:11:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int64",
                                      "typeString": "type(int64)"
                                    }
                                  },
                                  "id": 2858,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "5560:15:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int64",
                                    "typeString": "int64"
                                  }
                                },
                                "src": "5551:24:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "5523:52:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473",
                              "id": 2861,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5577:40:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 64 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_93ae0c6bf6ffaece591a770b1865daa9f65157e541970aa9d8dc5f89a9490939",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 64 bits\""
                              }
                            ],
                            "id": 2845,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5515:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2862,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5515:103:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2863,
                        "nodeType": "ExpressionStatement",
                        "src": "5515:103:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2866,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2840,
                              "src": "5641:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 2865,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5635:5:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int64_$",
                              "typeString": "type(int64)"
                            },
                            "typeName": {
                              "id": 2864,
                              "name": "int64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5635:5:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2867,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5635:12:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int64",
                            "typeString": "int64"
                          }
                        },
                        "functionReturnParameters": 2844,
                        "id": 2868,
                        "nodeType": "Return",
                        "src": "5628:19:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2838,
                    "nodeType": "StructuredDocumentation",
                    "src": "5094:345:17",
                    "text": " @dev Returns the downcasted int64 from int256, reverting on\n overflow (when the input is less than smallest int64 or\n greater than largest int64).\n Counterpart to Solidity's `int64` operator.\n Requirements:\n - input must fit into 64 bits\n _Available since v3.1._"
                  },
                  "id": 2870,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt64",
                  "nameLocation": "5453:7:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2841,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2840,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "5468:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2870,
                        "src": "5461:12:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 2839,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5461:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5460:14:17"
                  },
                  "returnParameters": {
                    "id": 2844,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2843,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2870,
                        "src": "5498:5:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int64",
                          "typeString": "int64"
                        },
                        "typeName": {
                          "id": 2842,
                          "name": "int64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5498:5:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int64",
                            "typeString": "int64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5497:7:17"
                  },
                  "scope": 2998,
                  "src": "5444:210:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2902,
                    "nodeType": "Block",
                    "src": "6071:149:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 2893,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2885,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2879,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2873,
                                  "src": "6089:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2882,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6103:5:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        },
                                        "typeName": {
                                          "id": 2881,
                                          "name": "int32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6103:5:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        }
                                      ],
                                      "id": 2880,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6098:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2883,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6098:11:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int32",
                                      "typeString": "type(int32)"
                                    }
                                  },
                                  "id": 2884,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "6098:15:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int32",
                                    "typeString": "int32"
                                  }
                                },
                                "src": "6089:24:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2892,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2886,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2873,
                                  "src": "6117:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2889,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6131:5:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        },
                                        "typeName": {
                                          "id": 2888,
                                          "name": "int32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6131:5:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        }
                                      ],
                                      "id": 2887,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6126:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2890,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6126:11:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int32",
                                      "typeString": "type(int32)"
                                    }
                                  },
                                  "id": 2891,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "6126:15:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int32",
                                    "typeString": "int32"
                                  }
                                },
                                "src": "6117:24:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "6089:52:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473",
                              "id": 2894,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6143:40:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 32 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c907489dafcfb622d3b83f2657a14d6da2f59e0de3116af0d6a80554c1a7cb19",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 32 bits\""
                              }
                            ],
                            "id": 2878,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6081:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2895,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6081:103:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2896,
                        "nodeType": "ExpressionStatement",
                        "src": "6081:103:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2899,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2873,
                              "src": "6207:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 2898,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6201:5:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int32_$",
                              "typeString": "type(int32)"
                            },
                            "typeName": {
                              "id": 2897,
                              "name": "int32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6201:5:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2900,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6201:12:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int32",
                            "typeString": "int32"
                          }
                        },
                        "functionReturnParameters": 2877,
                        "id": 2901,
                        "nodeType": "Return",
                        "src": "6194:19:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2871,
                    "nodeType": "StructuredDocumentation",
                    "src": "5660:345:17",
                    "text": " @dev Returns the downcasted int32 from int256, reverting on\n overflow (when the input is less than smallest int32 or\n greater than largest int32).\n Counterpart to Solidity's `int32` operator.\n Requirements:\n - input must fit into 32 bits\n _Available since v3.1._"
                  },
                  "id": 2903,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt32",
                  "nameLocation": "6019:7:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2874,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2873,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "6034:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2903,
                        "src": "6027:12:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 2872,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6027:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6026:14:17"
                  },
                  "returnParameters": {
                    "id": 2877,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2876,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2903,
                        "src": "6064:5:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int32",
                          "typeString": "int32"
                        },
                        "typeName": {
                          "id": 2875,
                          "name": "int32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6064:5:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int32",
                            "typeString": "int32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6063:7:17"
                  },
                  "scope": 2998,
                  "src": "6010:210:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2935,
                    "nodeType": "Block",
                    "src": "6637:149:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 2926,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2918,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2912,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2906,
                                  "src": "6655:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2915,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6669:5:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        },
                                        "typeName": {
                                          "id": 2914,
                                          "name": "int16",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6669:5:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        }
                                      ],
                                      "id": 2913,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6664:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2916,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6664:11:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int16",
                                      "typeString": "type(int16)"
                                    }
                                  },
                                  "id": 2917,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "6664:15:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int16",
                                    "typeString": "int16"
                                  }
                                },
                                "src": "6655:24:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2925,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2919,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2906,
                                  "src": "6683:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2922,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6697:5:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        },
                                        "typeName": {
                                          "id": 2921,
                                          "name": "int16",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6697:5:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        }
                                      ],
                                      "id": 2920,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6692:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2923,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6692:11:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int16",
                                      "typeString": "type(int16)"
                                    }
                                  },
                                  "id": 2924,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "6692:15:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int16",
                                    "typeString": "int16"
                                  }
                                },
                                "src": "6683:24:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "6655:52:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473",
                              "id": 2927,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6709:40:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 16 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_13d3a66f9e0e5c92bbe7743bcd3bdb4695009d5f3a96e5ff49718d715b484033",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 16 bits\""
                              }
                            ],
                            "id": 2911,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6647:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2928,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6647:103:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2929,
                        "nodeType": "ExpressionStatement",
                        "src": "6647:103:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2932,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2906,
                              "src": "6773:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 2931,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6767:5:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int16_$",
                              "typeString": "type(int16)"
                            },
                            "typeName": {
                              "id": 2930,
                              "name": "int16",
                              "nodeType": "ElementaryTypeName",
                              "src": "6767:5:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2933,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6767:12:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int16",
                            "typeString": "int16"
                          }
                        },
                        "functionReturnParameters": 2910,
                        "id": 2934,
                        "nodeType": "Return",
                        "src": "6760:19:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2904,
                    "nodeType": "StructuredDocumentation",
                    "src": "6226:345:17",
                    "text": " @dev Returns the downcasted int16 from int256, reverting on\n overflow (when the input is less than smallest int16 or\n greater than largest int16).\n Counterpart to Solidity's `int16` operator.\n Requirements:\n - input must fit into 16 bits\n _Available since v3.1._"
                  },
                  "id": 2936,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt16",
                  "nameLocation": "6585:7:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2907,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2906,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "6600:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2936,
                        "src": "6593:12:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 2905,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6593:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6592:14:17"
                  },
                  "returnParameters": {
                    "id": 2910,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2909,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2936,
                        "src": "6630:5:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int16",
                          "typeString": "int16"
                        },
                        "typeName": {
                          "id": 2908,
                          "name": "int16",
                          "nodeType": "ElementaryTypeName",
                          "src": "6630:5:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int16",
                            "typeString": "int16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6629:7:17"
                  },
                  "scope": 2998,
                  "src": "6576:210:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2968,
                    "nodeType": "Block",
                    "src": "7197:145:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 2959,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2951,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2945,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2939,
                                  "src": "7215:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2948,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "7229:4:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        },
                                        "typeName": {
                                          "id": 2947,
                                          "name": "int8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "7229:4:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        }
                                      ],
                                      "id": 2946,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "7224:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2949,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7224:10:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int8",
                                      "typeString": "type(int8)"
                                    }
                                  },
                                  "id": 2950,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "7224:14:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int8",
                                    "typeString": "int8"
                                  }
                                },
                                "src": "7215:23:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 2958,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2952,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2939,
                                  "src": "7242:5:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 2955,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "7256:4:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        },
                                        "typeName": {
                                          "id": 2954,
                                          "name": "int8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "7256:4:17",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        }
                                      ],
                                      "id": 2953,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "7251:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 2956,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7251:10:17",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int8",
                                      "typeString": "type(int8)"
                                    }
                                  },
                                  "id": 2957,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "7251:14:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int8",
                                    "typeString": "int8"
                                  }
                                },
                                "src": "7242:23:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "7215:50:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473",
                              "id": 2960,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7267:39:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 8 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2610961ba53259047cd57c60366c5ad0b8aabf5eb4132487619b736715a740d1",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 8 bits\""
                              }
                            ],
                            "id": 2944,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7207:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2961,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7207:100:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2962,
                        "nodeType": "ExpressionStatement",
                        "src": "7207:100:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2965,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2939,
                              "src": "7329:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 2964,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7324:4:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int8_$",
                              "typeString": "type(int8)"
                            },
                            "typeName": {
                              "id": 2963,
                              "name": "int8",
                              "nodeType": "ElementaryTypeName",
                              "src": "7324:4:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2966,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7324:11:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int8",
                            "typeString": "int8"
                          }
                        },
                        "functionReturnParameters": 2943,
                        "id": 2967,
                        "nodeType": "Return",
                        "src": "7317:18:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2937,
                    "nodeType": "StructuredDocumentation",
                    "src": "6792:341:17",
                    "text": " @dev Returns the downcasted int8 from int256, reverting on\n overflow (when the input is less than smallest int8 or\n greater than largest int8).\n Counterpart to Solidity's `int8` operator.\n Requirements:\n - input must fit into 8 bits.\n _Available since v3.1._"
                  },
                  "id": 2969,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt8",
                  "nameLocation": "7147:6:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2940,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2939,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "7161:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2969,
                        "src": "7154:12:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 2938,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7154:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7153:14:17"
                  },
                  "returnParameters": {
                    "id": 2943,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2942,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2969,
                        "src": "7191:4:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int8",
                          "typeString": "int8"
                        },
                        "typeName": {
                          "id": 2941,
                          "name": "int8",
                          "nodeType": "ElementaryTypeName",
                          "src": "7191:4:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int8",
                            "typeString": "int8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7190:6:17"
                  },
                  "scope": 2998,
                  "src": "7138:204:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2996,
                    "nodeType": "Block",
                    "src": "7582:233:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2987,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2978,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2972,
                                "src": "7699:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 2983,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "7721:6:17",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_int256_$",
                                            "typeString": "type(int256)"
                                          },
                                          "typeName": {
                                            "id": 2982,
                                            "name": "int256",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "7721:6:17",
                                            "typeDescriptions": {}
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_type$_t_int256_$",
                                            "typeString": "type(int256)"
                                          }
                                        ],
                                        "id": 2981,
                                        "name": "type",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -27,
                                        "src": "7716:4:17",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                          "typeString": "function () pure"
                                        }
                                      },
                                      "id": 2984,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "7716:12:17",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_meta_type_t_int256",
                                        "typeString": "type(int256)"
                                      }
                                    },
                                    "id": 2985,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "max",
                                    "nodeType": "MemberAccess",
                                    "src": "7716:16:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_int256",
                                      "typeString": "int256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_int256",
                                      "typeString": "int256"
                                    }
                                  ],
                                  "id": 2980,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7708:7:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 2979,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7708:7:17",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 2986,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7708:25:17",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7699:34:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20616e20696e74323536",
                              "id": 2988,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7735:42:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d70dcf21692b3c91b4c5fbb89ed57f464aa42efbe5b0ea96c4acb7c080144227",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in an int256\""
                              },
                              "value": "SafeCast: value doesn't fit in an int256"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d70dcf21692b3c91b4c5fbb89ed57f464aa42efbe5b0ea96c4acb7c080144227",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in an int256\""
                              }
                            ],
                            "id": 2977,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7691:7:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2989,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7691:87:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2990,
                        "nodeType": "ExpressionStatement",
                        "src": "7691:87:17"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2993,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2972,
                              "src": "7802:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2992,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7795:6:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int256_$",
                              "typeString": "type(int256)"
                            },
                            "typeName": {
                              "id": 2991,
                              "name": "int256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7795:6:17",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2994,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7795:13:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "functionReturnParameters": 2976,
                        "id": 2995,
                        "nodeType": "Return",
                        "src": "7788:20:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2970,
                    "nodeType": "StructuredDocumentation",
                    "src": "7348:165:17",
                    "text": " @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."
                  },
                  "id": 2997,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt256",
                  "nameLocation": "7527:8:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2973,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2972,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "7544:5:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2997,
                        "src": "7536:13:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2971,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7536:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7535:15:17"
                  },
                  "returnParameters": {
                    "id": 2976,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2975,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2997,
                        "src": "7574:6:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 2974,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7574:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7573:8:17"
                  },
                  "scope": 2998,
                  "src": "7518:297:17",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 2999,
              "src": "827:6990:17",
              "usedErrors": []
            }
          ],
          "src": "92:7726:17"
        },
        "id": 17
      },
      "@pooltogether/owner-manager-contracts/contracts/Manageable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
          "exportedSymbols": {
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ]
          },
          "id": 3104,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3000,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:23:18"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "./Ownable.sol",
              "id": 3001,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3104,
              "sourceUnit": 3259,
              "src": "62:23:18",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 3003,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3258,
                    "src": "933:7:18"
                  },
                  "id": 3004,
                  "nodeType": "InheritanceSpecifier",
                  "src": "933:7:18"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3002,
                "nodeType": "StructuredDocumentation",
                "src": "87:813:18",
                "text": " @title Abstract manageable contract that can be inherited by other contracts\n @notice Contract module based on Ownable which provides a basic access control mechanism, where\n there is an owner and a manager that can be granted exclusive access to specific functions.\n By default, the owner is the deployer of the contract.\n The owner account is set through a two steps process.\n      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n The manager account needs to be set using {setManager}.\n This module is used through inheritance. It will make available the modifier\n `onlyManager`, which can be applied to your functions to restrict their use to\n the manager."
              },
              "fullyImplemented": false,
              "id": 3103,
              "linearizedBaseContracts": [
                3103,
                3258
              ],
              "name": "Manageable",
              "nameLocation": "919:10:18",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 3006,
                  "mutability": "mutable",
                  "name": "_manager",
                  "nameLocation": "963:8:18",
                  "nodeType": "VariableDeclaration",
                  "scope": 3103,
                  "src": "947:24:18",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 3005,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "947:7:18",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3007,
                    "nodeType": "StructuredDocumentation",
                    "src": "978:173:18",
                    "text": " @dev Emitted when `_manager` has been changed.\n @param previousManager previous `_manager` address.\n @param newManager new `_manager` address."
                  },
                  "id": 3013,
                  "name": "ManagerTransferred",
                  "nameLocation": "1162:18:18",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3012,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3009,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "previousManager",
                        "nameLocation": "1197:15:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3013,
                        "src": "1181:31:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3008,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1181:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3011,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newManager",
                        "nameLocation": "1230:10:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3013,
                        "src": "1214:26:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3010,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1214:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1180:61:18"
                  },
                  "src": "1156:86:18"
                },
                {
                  "body": {
                    "id": 3021,
                    "nodeType": "Block",
                    "src": "1460:32:18",
                    "statements": [
                      {
                        "expression": {
                          "id": 3019,
                          "name": "_manager",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3006,
                          "src": "1477:8:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 3018,
                        "id": 3020,
                        "nodeType": "Return",
                        "src": "1470:15:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3014,
                    "nodeType": "StructuredDocumentation",
                    "src": "1304:94:18",
                    "text": " @notice Gets current `_manager`.\n @return Current `_manager` address."
                  },
                  "functionSelector": "481c6a75",
                  "id": 3022,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "manager",
                  "nameLocation": "1412:7:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3015,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1419:2:18"
                  },
                  "returnParameters": {
                    "id": 3018,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3017,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3022,
                        "src": "1451:7:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3016,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1451:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1450:9:18"
                  },
                  "scope": 3103,
                  "src": "1403:89:18",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 3036,
                    "nodeType": "Block",
                    "src": "1819:48:18",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3033,
                              "name": "_newManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3025,
                              "src": "1848:11:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3032,
                            "name": "_setManager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3068,
                            "src": "1836:11:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) returns (bool)"
                            }
                          },
                          "id": 3034,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1836:24:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3031,
                        "id": 3035,
                        "nodeType": "Return",
                        "src": "1829:31:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3023,
                    "nodeType": "StructuredDocumentation",
                    "src": "1498:241:18",
                    "text": " @notice Set or change of manager.\n @dev Throws if called by any account other than the owner.\n @param _newManager New _manager address.\n @return Boolean to indicate if the operation was successful or not."
                  },
                  "functionSelector": "d0ebdbe7",
                  "id": 3037,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3028,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3027,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "1794:9:18"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1794:9:18"
                    }
                  ],
                  "name": "setManager",
                  "nameLocation": "1753:10:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3026,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3025,
                        "mutability": "mutable",
                        "name": "_newManager",
                        "nameLocation": "1772:11:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3037,
                        "src": "1764:19:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3024,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1764:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1763:21:18"
                  },
                  "returnParameters": {
                    "id": 3031,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3030,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3037,
                        "src": "1813:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3029,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1813:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1812:6:18"
                  },
                  "scope": 3103,
                  "src": "1744:123:18",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3067,
                    "nodeType": "Block",
                    "src": "2174:261:18",
                    "statements": [
                      {
                        "assignments": [
                          3046
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3046,
                            "mutability": "mutable",
                            "name": "_previousManager",
                            "nameLocation": "2192:16:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 3067,
                            "src": "2184:24:18",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 3045,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "2184:7:18",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3048,
                        "initialValue": {
                          "id": 3047,
                          "name": "_manager",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3006,
                          "src": "2211:8:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2184:35:18"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3052,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3050,
                                "name": "_newManager",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3040,
                                "src": "2238:11:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 3051,
                                "name": "_previousManager",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3046,
                                "src": "2253:16:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2238:31:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472657373",
                              "id": 3053,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2271:37:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32",
                                "typeString": "literal_string \"Manageable/existing-manager-address\""
                              },
                              "value": "Manageable/existing-manager-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32",
                                "typeString": "literal_string \"Manageable/existing-manager-address\""
                              }
                            ],
                            "id": 3049,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2230:7:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3054,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2230:79:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3055,
                        "nodeType": "ExpressionStatement",
                        "src": "2230:79:18"
                      },
                      {
                        "expression": {
                          "id": 3058,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3056,
                            "name": "_manager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3006,
                            "src": "2320:8:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3057,
                            "name": "_newManager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3040,
                            "src": "2331:11:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2320:22:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 3059,
                        "nodeType": "ExpressionStatement",
                        "src": "2320:22:18"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3061,
                              "name": "_previousManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3046,
                              "src": "2377:16:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 3062,
                              "name": "_newManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3040,
                              "src": "2395:11:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3060,
                            "name": "ManagerTransferred",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3013,
                            "src": "2358:18:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 3063,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2358:49:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3064,
                        "nodeType": "EmitStatement",
                        "src": "2353:54:18"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 3065,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2424:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 3044,
                        "id": 3066,
                        "nodeType": "Return",
                        "src": "2417:11:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3038,
                    "nodeType": "StructuredDocumentation",
                    "src": "1929:175:18",
                    "text": " @notice Set or change of manager.\n @param _newManager New _manager address.\n @return Boolean to indicate if the operation was successful or not."
                  },
                  "id": 3068,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setManager",
                  "nameLocation": "2118:11:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3041,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3040,
                        "mutability": "mutable",
                        "name": "_newManager",
                        "nameLocation": "2138:11:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 3068,
                        "src": "2130:19:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3039,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2130:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2129:21:18"
                  },
                  "returnParameters": {
                    "id": 3044,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3043,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3068,
                        "src": "2168:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3042,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2168:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2167:6:18"
                  },
                  "scope": 3103,
                  "src": "2109:326:18",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 3081,
                    "nodeType": "Block",
                    "src": "2604:93:18",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3076,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 3072,
                                  "name": "manager",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3022,
                                  "src": "2622:7:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 3073,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2622:9:18",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 3074,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "2635:3:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 3075,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "2635:10:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2622:23:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e61676572",
                              "id": 3077,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2647:31:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_781c54ee483ba928cbb64c052f134c6ba48222415b5ff16d687a605ab640168f",
                                "typeString": "literal_string \"Manageable/caller-not-manager\""
                              },
                              "value": "Manageable/caller-not-manager"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_781c54ee483ba928cbb64c052f134c6ba48222415b5ff16d687a605ab640168f",
                                "typeString": "literal_string \"Manageable/caller-not-manager\""
                              }
                            ],
                            "id": 3071,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2614:7:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3078,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2614:65:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3079,
                        "nodeType": "ExpressionStatement",
                        "src": "2614:65:18"
                      },
                      {
                        "id": 3080,
                        "nodeType": "PlaceholderStatement",
                        "src": "2689:1:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3069,
                    "nodeType": "StructuredDocumentation",
                    "src": "2497:79:18",
                    "text": " @dev Throws if called by any account other than the manager."
                  },
                  "id": 3082,
                  "name": "onlyManager",
                  "nameLocation": "2590:11:18",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3070,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2601:2:18"
                  },
                  "src": "2581:116:18",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3101,
                    "nodeType": "Block",
                    "src": "2830:127:18",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3096,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 3090,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 3086,
                                    "name": "manager",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3022,
                                    "src": "2848:7:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 3087,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2848:9:18",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 3088,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "2861:3:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 3089,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "2861:10:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2848:23:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 3095,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 3091,
                                    "name": "owner",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3142,
                                    "src": "2875:5:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 3092,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2875:7:18",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 3093,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "2886:3:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 3094,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "2886:10:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2875:21:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "2848:48:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f722d6f776e6572",
                              "id": 3097,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2898:40:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308",
                                "typeString": "literal_string \"Manageable/caller-not-manager-or-owner\""
                              },
                              "value": "Manageable/caller-not-manager-or-owner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308",
                                "typeString": "literal_string \"Manageable/caller-not-manager-or-owner\""
                              }
                            ],
                            "id": 3085,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2840:7:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3098,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2840:99:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3099,
                        "nodeType": "ExpressionStatement",
                        "src": "2840:99:18"
                      },
                      {
                        "id": 3100,
                        "nodeType": "PlaceholderStatement",
                        "src": "2949:1:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3083,
                    "nodeType": "StructuredDocumentation",
                    "src": "2703:92:18",
                    "text": " @dev Throws if called by any account other than the manager or the owner."
                  },
                  "id": 3102,
                  "name": "onlyManagerOrOwner",
                  "nameLocation": "2809:18:18",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3084,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2827:2:18"
                  },
                  "src": "2800:157:18",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 3104,
              "src": "901:2058:18",
              "usedErrors": []
            }
          ],
          "src": "37:2923:18"
        },
        "id": 18
      },
      "@pooltogether/owner-manager-contracts/contracts/Ownable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
          "exportedSymbols": {
            "Ownable": [
              3258
            ]
          },
          "id": 3259,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3105,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:23:19"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3106,
                "nodeType": "StructuredDocumentation",
                "src": "62:791:19",
                "text": " @title Abstract ownable contract that can be inherited by other contracts\n @notice 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 By default, the owner is the deployer of the contract.\n The owner account is set through a two steps process.\n      1. The current `owner` calls {transferOwnership} to set a `pendingOwner`\n      2. The `pendingOwner` calls {acceptOwnership} to accept the ownership transfer\n The manager account needs to be set using {setManager}.\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."
              },
              "fullyImplemented": true,
              "id": 3258,
              "linearizedBaseContracts": [
                3258
              ],
              "name": "Ownable",
              "nameLocation": "872:7:19",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 3108,
                  "mutability": "mutable",
                  "name": "_owner",
                  "nameLocation": "902:6:19",
                  "nodeType": "VariableDeclaration",
                  "scope": 3258,
                  "src": "886:22:19",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 3107,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "886:7:19",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 3110,
                  "mutability": "mutable",
                  "name": "_pendingOwner",
                  "nameLocation": "930:13:19",
                  "nodeType": "VariableDeclaration",
                  "scope": 3258,
                  "src": "914:29:19",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 3109,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "914:7:19",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3111,
                    "nodeType": "StructuredDocumentation",
                    "src": "950:126:19",
                    "text": " @dev Emitted when `_pendingOwner` has been changed.\n @param pendingOwner new `_pendingOwner` address."
                  },
                  "id": 3115,
                  "name": "OwnershipOffered",
                  "nameLocation": "1087:16:19",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3114,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3113,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "pendingOwner",
                        "nameLocation": "1120:12:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 3115,
                        "src": "1104:28:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3112,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1104:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1103:30:19"
                  },
                  "src": "1081:53:19"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3116,
                    "nodeType": "StructuredDocumentation",
                    "src": "1140:163:19",
                    "text": " @dev Emitted when `_owner` has been changed.\n @param previousOwner previous `_owner` address.\n @param newOwner new `_owner` address."
                  },
                  "id": 3122,
                  "name": "OwnershipTransferred",
                  "nameLocation": "1314:20:19",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3121,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3118,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "previousOwner",
                        "nameLocation": "1351:13:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 3122,
                        "src": "1335:29:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3117,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1335:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3120,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newOwner",
                        "nameLocation": "1382:8:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 3122,
                        "src": "1366:24:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3119,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1366:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1334:57:19"
                  },
                  "src": "1308:84:19"
                },
                {
                  "body": {
                    "id": 3132,
                    "nodeType": "Block",
                    "src": "1638:41:19",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3129,
                              "name": "_initialOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3125,
                              "src": "1658:13:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3128,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3230,
                            "src": "1648:9:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 3130,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1648:24:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3131,
                        "nodeType": "ExpressionStatement",
                        "src": "1648:24:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3123,
                    "nodeType": "StructuredDocumentation",
                    "src": "1442:156:19",
                    "text": " @notice Initializes the contract setting `_initialOwner` as the initial owner.\n @param _initialOwner Initial owner of the contract."
                  },
                  "id": 3133,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3126,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3125,
                        "mutability": "mutable",
                        "name": "_initialOwner",
                        "nameLocation": "1623:13:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 3133,
                        "src": "1615:21:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3124,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1615:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1614:23:19"
                  },
                  "returnParameters": {
                    "id": 3127,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1638:0:19"
                  },
                  "scope": 3258,
                  "src": "1603:76:19",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3141,
                    "nodeType": "Block",
                    "src": "1869:30:19",
                    "statements": [
                      {
                        "expression": {
                          "id": 3139,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3108,
                          "src": "1886:6:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 3138,
                        "id": 3140,
                        "nodeType": "Return",
                        "src": "1879:13:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3134,
                    "nodeType": "StructuredDocumentation",
                    "src": "1741:68:19",
                    "text": " @notice Returns the address of the current owner."
                  },
                  "functionSelector": "8da5cb5b",
                  "id": 3142,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "owner",
                  "nameLocation": "1823:5:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3135,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1828:2:19"
                  },
                  "returnParameters": {
                    "id": 3138,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3137,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3142,
                        "src": "1860:7:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3136,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1860:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1859:9:19"
                  },
                  "scope": 3258,
                  "src": "1814:85:19",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 3150,
                    "nodeType": "Block",
                    "src": "2078:37:19",
                    "statements": [
                      {
                        "expression": {
                          "id": 3148,
                          "name": "_pendingOwner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3110,
                          "src": "2095:13:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 3147,
                        "id": 3149,
                        "nodeType": "Return",
                        "src": "2088:20:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3143,
                    "nodeType": "StructuredDocumentation",
                    "src": "1905:104:19",
                    "text": " @notice Gets current `_pendingOwner`.\n @return Current `_pendingOwner` address."
                  },
                  "functionSelector": "e30c3978",
                  "id": 3151,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pendingOwner",
                  "nameLocation": "2023:12:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3144,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2035:2:19"
                  },
                  "returnParameters": {
                    "id": 3147,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3146,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3151,
                        "src": "2069:7:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3145,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2069:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2068:9:19"
                  },
                  "scope": 3258,
                  "src": "2014:101:19",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3164,
                    "nodeType": "Block",
                    "src": "2564:38:19",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 3160,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2592:1:19",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 3159,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2584:7:19",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 3158,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2584:7:19",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 3161,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2584:10:19",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3157,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3230,
                            "src": "2574:9:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 3162,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2574:21:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3163,
                        "nodeType": "ExpressionStatement",
                        "src": "2574:21:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3152,
                    "nodeType": "StructuredDocumentation",
                    "src": "2121:382:19",
                    "text": " @notice Renounce ownership of the contract.\n @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions anymore. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby removing any functionality that is only available to the owner."
                  },
                  "functionSelector": "715018a6",
                  "id": 3165,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3155,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3154,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "2554:9:19"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2554:9:19"
                    }
                  ],
                  "name": "renounceOwnership",
                  "nameLocation": "2517:17:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3153,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2534:2:19"
                  },
                  "returnParameters": {
                    "id": 3156,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2564:0:19"
                  },
                  "scope": 3258,
                  "src": "2508:94:19",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3191,
                    "nodeType": "Block",
                    "src": "2816:169:19",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3179,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3174,
                                "name": "_newOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3168,
                                "src": "2834:9:19",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 3177,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2855:1:19",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 3176,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2847:7:19",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 3175,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2847:7:19",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3178,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2847:10:19",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2834:23:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d61646472657373",
                              "id": 3180,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2859:39:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4",
                                "typeString": "literal_string \"Ownable/pendingOwner-not-zero-address\""
                              },
                              "value": "Ownable/pendingOwner-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4",
                                "typeString": "literal_string \"Ownable/pendingOwner-not-zero-address\""
                              }
                            ],
                            "id": 3173,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2826:7:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3181,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2826:73:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3182,
                        "nodeType": "ExpressionStatement",
                        "src": "2826:73:19"
                      },
                      {
                        "expression": {
                          "id": 3185,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3183,
                            "name": "_pendingOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3110,
                            "src": "2910:13:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3184,
                            "name": "_newOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3168,
                            "src": "2926:9:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2910:25:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 3186,
                        "nodeType": "ExpressionStatement",
                        "src": "2910:25:19"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3188,
                              "name": "_newOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3168,
                              "src": "2968:9:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3187,
                            "name": "OwnershipOffered",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3115,
                            "src": "2951:16:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 3189,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2951:27:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3190,
                        "nodeType": "EmitStatement",
                        "src": "2946:32:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3166,
                    "nodeType": "StructuredDocumentation",
                    "src": "2608:138:19",
                    "text": " @notice Allows current owner to set the `_pendingOwner` address.\n @param _newOwner Address to transfer ownership to."
                  },
                  "functionSelector": "f2fde38b",
                  "id": 3192,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3171,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3170,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "2806:9:19"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2806:9:19"
                    }
                  ],
                  "name": "transferOwnership",
                  "nameLocation": "2760:17:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3169,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3168,
                        "mutability": "mutable",
                        "name": "_newOwner",
                        "nameLocation": "2786:9:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 3192,
                        "src": "2778:17:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3167,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2778:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2777:19:19"
                  },
                  "returnParameters": {
                    "id": 3172,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2816:0:19"
                  },
                  "scope": 3258,
                  "src": "2751:234:19",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3209,
                    "nodeType": "Block",
                    "src": "3199:77:19",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3199,
                              "name": "_pendingOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3110,
                              "src": "3219:13:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3198,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3230,
                            "src": "3209:9:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 3200,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3209:24:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3201,
                        "nodeType": "ExpressionStatement",
                        "src": "3209:24:19"
                      },
                      {
                        "expression": {
                          "id": 3207,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3202,
                            "name": "_pendingOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3110,
                            "src": "3243:13:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 3205,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3267:1:19",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 3204,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3259:7:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 3203,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "3259:7:19",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 3206,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3259:10:19",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3243:26:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 3208,
                        "nodeType": "ExpressionStatement",
                        "src": "3243:26:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3193,
                    "nodeType": "StructuredDocumentation",
                    "src": "2991:151:19",
                    "text": " @notice Allows the `_pendingOwner` address to finalize the transfer.\n @dev This function is only callable by the `_pendingOwner`."
                  },
                  "functionSelector": "4e71e0c8",
                  "id": 3210,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3196,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3195,
                        "name": "onlyPendingOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3257,
                        "src": "3182:16:19"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3182:16:19"
                    }
                  ],
                  "name": "claimOwnership",
                  "nameLocation": "3156:14:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3194,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3170:2:19"
                  },
                  "returnParameters": {
                    "id": 3197,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3199:0:19"
                  },
                  "scope": 3258,
                  "src": "3147:129:19",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3229,
                    "nodeType": "Block",
                    "src": "3516:128:19",
                    "statements": [
                      {
                        "assignments": [
                          3217
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3217,
                            "mutability": "mutable",
                            "name": "_oldOwner",
                            "nameLocation": "3534:9:19",
                            "nodeType": "VariableDeclaration",
                            "scope": 3229,
                            "src": "3526:17:19",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 3216,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "3526:7:19",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3219,
                        "initialValue": {
                          "id": 3218,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3108,
                          "src": "3546:6:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3526:26:19"
                      },
                      {
                        "expression": {
                          "id": 3222,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3220,
                            "name": "_owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3108,
                            "src": "3562:6:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3221,
                            "name": "_newOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3213,
                            "src": "3571:9:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3562:18:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 3223,
                        "nodeType": "ExpressionStatement",
                        "src": "3562:18:19"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3225,
                              "name": "_oldOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3217,
                              "src": "3616:9:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 3226,
                              "name": "_newOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3213,
                              "src": "3627:9:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3224,
                            "name": "OwnershipTransferred",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3122,
                            "src": "3595:20:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 3227,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3595:42:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3228,
                        "nodeType": "EmitStatement",
                        "src": "3590:47:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3211,
                    "nodeType": "StructuredDocumentation",
                    "src": "3338:127:19",
                    "text": " @notice Internal function to set the `_owner` of the contract.\n @param _newOwner New `_owner` address."
                  },
                  "id": 3230,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setOwner",
                  "nameLocation": "3479:9:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3214,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3213,
                        "mutability": "mutable",
                        "name": "_newOwner",
                        "nameLocation": "3497:9:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 3230,
                        "src": "3489:17:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3212,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3489:7:19",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3488:19:19"
                  },
                  "returnParameters": {
                    "id": 3215,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3516:0:19"
                  },
                  "scope": 3258,
                  "src": "3470:174:19",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 3243,
                    "nodeType": "Block",
                    "src": "3809:86:19",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3238,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 3234,
                                  "name": "owner",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3142,
                                  "src": "3827:5:19",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 3235,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3827:7:19",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 3236,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "3838:3:19",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 3237,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "3838:10:19",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3827:21:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                              "id": 3239,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3850:26:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14",
                                "typeString": "literal_string \"Ownable/caller-not-owner\""
                              },
                              "value": "Ownable/caller-not-owner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14",
                                "typeString": "literal_string \"Ownable/caller-not-owner\""
                              }
                            ],
                            "id": 3233,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3819:7:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3240,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3819:58:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3241,
                        "nodeType": "ExpressionStatement",
                        "src": "3819:58:19"
                      },
                      {
                        "id": 3242,
                        "nodeType": "PlaceholderStatement",
                        "src": "3887:1:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3231,
                    "nodeType": "StructuredDocumentation",
                    "src": "3706:77:19",
                    "text": " @dev Throws if called by any account other than the owner."
                  },
                  "id": 3244,
                  "name": "onlyOwner",
                  "nameLocation": "3797:9:19",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3232,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3806:2:19"
                  },
                  "src": "3788:107:19",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3256,
                    "nodeType": "Block",
                    "src": "4018:99:19",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3251,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 3248,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "4036:3:19",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 3249,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "4036:10:19",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 3250,
                                "name": "_pendingOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3110,
                                "src": "4050:13:19",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4036:27:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                              "id": 3252,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4065:33:19",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396",
                                "typeString": "literal_string \"Ownable/caller-not-pendingOwner\""
                              },
                              "value": "Ownable/caller-not-pendingOwner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396",
                                "typeString": "literal_string \"Ownable/caller-not-pendingOwner\""
                              }
                            ],
                            "id": 3247,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4028:7:19",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3253,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4028:71:19",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3254,
                        "nodeType": "ExpressionStatement",
                        "src": "4028:71:19"
                      },
                      {
                        "id": 3255,
                        "nodeType": "PlaceholderStatement",
                        "src": "4109:1:19"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3245,
                    "nodeType": "StructuredDocumentation",
                    "src": "3901:84:19",
                    "text": " @dev Throws if called by any account other than the `pendingOwner`."
                  },
                  "id": 3257,
                  "name": "onlyPendingOwner",
                  "nameLocation": "3999:16:19",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3246,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4015:2:19"
                  },
                  "src": "3990:127:19",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 3259,
              "src": "854:3265:19",
              "usedErrors": []
            }
          ],
          "src": "37:4083:19"
        },
        "id": 19
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "ast": {
          "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
          "exportedSymbols": {
            "RNGInterface": [
              3314
            ]
          },
          "id": 3315,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3260,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:20"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 3261,
                "nodeType": "StructuredDocumentation",
                "src": "63:175:20",
                "text": "@title Random Number Generator Interface\n @notice Provides an interface for requesting random numbers from 3rd-party RNG services (Chainlink VRF, Starkware VDF, etc..)"
              },
              "fullyImplemented": false,
              "id": 3314,
              "linearizedBaseContracts": [
                3314
              ],
              "name": "RNGInterface",
              "nameLocation": "248:12:20",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3262,
                    "nodeType": "StructuredDocumentation",
                    "src": "266:242:20",
                    "text": "@notice Emitted when a new request for a random number has been submitted\n @param requestId The indexed ID of the request used to get the results of the RNG service\n @param sender The indexed address of the sender of the request"
                  },
                  "id": 3268,
                  "name": "RandomNumberRequested",
                  "nameLocation": "517:21:20",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3267,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3264,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "554:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3268,
                        "src": "539:24:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3263,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "539:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3266,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "581:6:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3268,
                        "src": "565:22:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3265,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "565:7:20",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "538:50:20"
                  },
                  "src": "511:78:20"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3269,
                    "nodeType": "StructuredDocumentation",
                    "src": "593:257:20",
                    "text": "@notice Emitted when an existing request for a random number has been completed\n @param requestId The indexed ID of the request used to get the results of the RNG service\n @param randomNumber The random number produced by the 3rd-party service"
                  },
                  "id": 3275,
                  "name": "RandomNumberCompleted",
                  "nameLocation": "859:21:20",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3274,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3271,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "896:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3275,
                        "src": "881:24:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3270,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "881:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3273,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "randomNumber",
                        "nameLocation": "915:12:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3275,
                        "src": "907:20:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3272,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "907:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "880:48:20"
                  },
                  "src": "853:76:20"
                },
                {
                  "documentation": {
                    "id": 3276,
                    "nodeType": "StructuredDocumentation",
                    "src": "933:129:20",
                    "text": "@notice Gets the last request id used by the RNG service\n @return requestId The last request id used in the last request"
                  },
                  "functionSelector": "19c2b4c3",
                  "id": 3281,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRequestId",
                  "nameLocation": "1074:16:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3277,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1090:2:20"
                  },
                  "returnParameters": {
                    "id": 3280,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3279,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "1123:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3281,
                        "src": "1116:16:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3278,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1116:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1115:18:20"
                  },
                  "scope": 3314,
                  "src": "1065:69:20",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3282,
                    "nodeType": "StructuredDocumentation",
                    "src": "1138:212:20",
                    "text": "@notice Gets the Fee for making a Request against an RNG service\n @return feeToken The address of the token that is used to pay fees\n @return requestFee The fee required to be paid to make a request"
                  },
                  "functionSelector": "0d37b537",
                  "id": 3289,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRequestFee",
                  "nameLocation": "1362:13:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3283,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1375:2:20"
                  },
                  "returnParameters": {
                    "id": 3288,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3285,
                        "mutability": "mutable",
                        "name": "feeToken",
                        "nameLocation": "1409:8:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3289,
                        "src": "1401:16:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3284,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1401:7:20",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3287,
                        "mutability": "mutable",
                        "name": "requestFee",
                        "nameLocation": "1427:10:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3289,
                        "src": "1419:18:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3286,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1419:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1400:38:20"
                  },
                  "scope": 3314,
                  "src": "1353:86:20",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3290,
                    "nodeType": "StructuredDocumentation",
                    "src": "1443:569:20",
                    "text": "@notice Sends a request for a random number to the 3rd-party service\n @dev Some services will complete the request immediately, others may have a time-delay\n @dev Some services require payment in the form of a token, such as $LINK for Chainlink VRF\n @return requestId The ID of the request used to get the results of the RNG service\n @return lockBlock The block number at which the RNG service will start generating time-delayed randomness.  The calling contract\n should \"lock\" all activity until the result is available via the `requestId`"
                  },
                  "functionSelector": "8678a7b2",
                  "id": 3297,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "requestRandomNumber",
                  "nameLocation": "2024:19:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3291,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2043:2:20"
                  },
                  "returnParameters": {
                    "id": 3296,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3293,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2071:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3297,
                        "src": "2064:16:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3292,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2064:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3295,
                        "mutability": "mutable",
                        "name": "lockBlock",
                        "nameLocation": "2089:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3297,
                        "src": "2082:16:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3294,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2082:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2063:36:20"
                  },
                  "scope": 3314,
                  "src": "2015:85:20",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3298,
                    "nodeType": "StructuredDocumentation",
                    "src": "2104:375:20",
                    "text": "@notice Checks if the request for randomness from the 3rd-party service has completed\n @dev For time-delayed requests, this function is used to check/confirm completion\n @param requestId The ID of the request used to get the results of the RNG service\n @return isCompleted True if the request has completed and a random number is available, false otherwise"
                  },
                  "functionSelector": "3a19b9bc",
                  "id": 3305,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRequestComplete",
                  "nameLocation": "2491:17:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3301,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3300,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2516:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3305,
                        "src": "2509:16:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3299,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2509:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2508:18:20"
                  },
                  "returnParameters": {
                    "id": 3304,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3303,
                        "mutability": "mutable",
                        "name": "isCompleted",
                        "nameLocation": "2555:11:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3305,
                        "src": "2550:16:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3302,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2550:4:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2549:18:20"
                  },
                  "scope": 3314,
                  "src": "2482:86:20",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3306,
                    "nodeType": "StructuredDocumentation",
                    "src": "2572:198:20",
                    "text": "@notice Gets the random number produced by the 3rd-party service\n @param requestId The ID of the request used to get the results of the RNG service\n @return randomNum The random number"
                  },
                  "functionSelector": "9d2a5f98",
                  "id": 3313,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "randomNumber",
                  "nameLocation": "2782:12:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3309,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3308,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2802:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3313,
                        "src": "2795:16:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3307,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2795:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2794:18:20"
                  },
                  "returnParameters": {
                    "id": 3312,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3311,
                        "mutability": "mutable",
                        "name": "randomNum",
                        "nameLocation": "2839:9:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3313,
                        "src": "2831:17:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3310,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2831:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2830:19:20"
                  },
                  "scope": 3314,
                  "src": "2773:77:20",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 3315,
              "src": "238:2614:20",
              "usedErrors": []
            }
          ],
          "src": "37:2816:20"
        },
        "id": 20
      },
      "@pooltogether/v4-core/contracts/ControlledToken.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/ControlledToken.sol",
          "exportedSymbols": {
            "Context": [
              1570
            ],
            "ControlledToken": [
              3492
            ],
            "Counters": [
              1644
            ],
            "ECDSA": [
              2237
            ],
            "EIP712": [
              2391
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ],
            "Strings": [
              1847
            ]
          },
          "id": 3493,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3316,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:21"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "id": 3317,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3493,
              "sourceUnit": 858,
              "src": "61:78:21",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
              "file": "./interfaces/IControlledToken.sol",
              "id": 3318,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3493,
              "sourceUnit": 8161,
              "src": "141:43:21",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 3320,
                    "name": "ERC20Permit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 857,
                    "src": "370:11:21"
                  },
                  "id": 3321,
                  "nodeType": "InheritanceSpecifier",
                  "src": "370:11:21"
                },
                {
                  "baseName": {
                    "id": 3322,
                    "name": "IControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8160,
                    "src": "383:16:21"
                  },
                  "id": 3323,
                  "nodeType": "InheritanceSpecifier",
                  "src": "383:16:21"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3319,
                "nodeType": "StructuredDocumentation",
                "src": "186:155:21",
                "text": " @title  PoolTogether V4 Controlled ERC20 Token\n @author PoolTogether Inc Team\n @notice  ERC20 Tokens with a controller for minting & burning"
              },
              "fullyImplemented": true,
              "id": 3492,
              "linearizedBaseContracts": [
                3492,
                8160,
                857,
                2391,
                893,
                585,
                688,
                663,
                1570
              ],
              "name": "ControlledToken",
              "nameLocation": "351:15:21",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "baseFunctions": [
                    8133
                  ],
                  "constant": false,
                  "documentation": {
                    "id": 3324,
                    "nodeType": "StructuredDocumentation",
                    "src": "460:75:21",
                    "text": "@notice Interface to the contract responsible for controlling mint/burn"
                  },
                  "functionSelector": "f77c4791",
                  "id": 3327,
                  "mutability": "immutable",
                  "name": "controller",
                  "nameLocation": "574:10:21",
                  "nodeType": "VariableDeclaration",
                  "overrides": {
                    "id": 3326,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "555:8:21"
                  },
                  "scope": 3492,
                  "src": "540:44:21",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 3325,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "540:7:21",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3328,
                    "nodeType": "StructuredDocumentation",
                    "src": "591:44:21",
                    "text": "@notice ERC20 controlled token decimals."
                  },
                  "id": 3330,
                  "mutability": "immutable",
                  "name": "_decimals",
                  "nameLocation": "664:9:21",
                  "nodeType": "VariableDeclaration",
                  "scope": 3492,
                  "src": "640:33:21",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 3329,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "640:5:21",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3331,
                    "nodeType": "StructuredDocumentation",
                    "src": "724:42:21",
                    "text": "@dev Emitted when contract is deployed"
                  },
                  "id": 3341,
                  "name": "Deployed",
                  "nameLocation": "777:8:21",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3340,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3333,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "793:4:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3341,
                        "src": "786:11:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3332,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "786:6:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3335,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "symbol",
                        "nameLocation": "806:6:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3341,
                        "src": "799:13:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3334,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "799:6:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3337,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "decimals",
                        "nameLocation": "820:8:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3341,
                        "src": "814:14:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 3336,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "814:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3339,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "controller",
                        "nameLocation": "846:10:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3341,
                        "src": "830:26:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3338,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "830:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "785:72:21"
                  },
                  "src": "771:87:21"
                },
                {
                  "body": {
                    "id": 3356,
                    "nodeType": "Block",
                    "src": "1021:105:21",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3351,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 3345,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "1039:3:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 3346,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "1039:10:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 3349,
                                    "name": "controller",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3327,
                                    "src": "1061:10:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 3348,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1053:7:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 3347,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1053:7:21",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3350,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1053:19:21",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1039:33:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                              "id": 3352,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1074:33:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35",
                                "typeString": "literal_string \"ControlledToken/only-controller\""
                              },
                              "value": "ControlledToken/only-controller"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35",
                                "typeString": "literal_string \"ControlledToken/only-controller\""
                              }
                            ],
                            "id": 3344,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1031:7:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3353,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1031:77:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3354,
                        "nodeType": "ExpressionStatement",
                        "src": "1031:77:21"
                      },
                      {
                        "id": 3355,
                        "nodeType": "PlaceholderStatement",
                        "src": "1118:1:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3342,
                    "nodeType": "StructuredDocumentation",
                    "src": "911:79:21",
                    "text": "@dev Function modifier to ensure that the caller is the controller contract"
                  },
                  "id": 3357,
                  "name": "onlyController",
                  "nameLocation": "1004:14:21",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3343,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1018:2:21"
                  },
                  "src": "995:131:21",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3411,
                    "nodeType": "Block",
                    "src": "1698:305:21",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3385,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 3379,
                                    "name": "_controller",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3366,
                                    "src": "1724:11:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 3378,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1716:7:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 3377,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1716:7:21",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3380,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1716:20:21",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 3383,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1748:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 3382,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1740:7:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 3381,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1740:7:21",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3384,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1740:10:21",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1716:34:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a65726f2d61646472657373",
                              "id": 3386,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1752:45:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54",
                                "typeString": "literal_string \"ControlledToken/controller-not-zero-address\""
                              },
                              "value": "ControlledToken/controller-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54",
                                "typeString": "literal_string \"ControlledToken/controller-not-zero-address\""
                              }
                            ],
                            "id": 3376,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1708:7:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3387,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1708:90:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3388,
                        "nodeType": "ExpressionStatement",
                        "src": "1708:90:21"
                      },
                      {
                        "expression": {
                          "id": 3391,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3389,
                            "name": "controller",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3327,
                            "src": "1808:10:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3390,
                            "name": "_controller",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3366,
                            "src": "1821:11:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "1808:24:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 3392,
                        "nodeType": "ExpressionStatement",
                        "src": "1808:24:21"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 3396,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3394,
                                "name": "decimals_",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3364,
                                "src": "1851:9:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 3395,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1863:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1851:13:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                              "id": 3397,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1866:34:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0",
                                "typeString": "literal_string \"ControlledToken/decimals-gt-zero\""
                              },
                              "value": "ControlledToken/decimals-gt-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0",
                                "typeString": "literal_string \"ControlledToken/decimals-gt-zero\""
                              }
                            ],
                            "id": 3393,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1843:7:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3398,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1843:58:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3399,
                        "nodeType": "ExpressionStatement",
                        "src": "1843:58:21"
                      },
                      {
                        "expression": {
                          "id": 3402,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3400,
                            "name": "_decimals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3330,
                            "src": "1911:9:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3401,
                            "name": "decimals_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3364,
                            "src": "1923:9:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "1911:21:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 3403,
                        "nodeType": "ExpressionStatement",
                        "src": "1911:21:21"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3405,
                              "name": "_name",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3360,
                              "src": "1957:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 3406,
                              "name": "_symbol",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3362,
                              "src": "1964:7:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 3407,
                              "name": "decimals_",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3364,
                              "src": "1973:9:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 3408,
                              "name": "_controller",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3366,
                              "src": "1984:11:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 3404,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3341,
                            "src": "1948:8:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint8_$_t_address_$returns$__$",
                              "typeString": "function (string memory,string memory,uint8,address)"
                            }
                          },
                          "id": 3409,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1948:48:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3410,
                        "nodeType": "EmitStatement",
                        "src": "1943:53:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3358,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:314:21",
                    "text": "@notice Deploy the Controlled Token with Token Details and the Controller\n @param _name The name of the Token\n @param _symbol The symbol for the Token\n @param decimals_ The number of decimals for the Token\n @param _controller Address of the Controller contract for minting & burning"
                  },
                  "id": 3412,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "hexValue": "506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e",
                          "id": 3369,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1644:30:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_4c56e52e1e1083962e8a166de35adcba6701e0a029333db5a80367db0f67e330",
                            "typeString": "literal_string \"PoolTogether ControlledToken\""
                          },
                          "value": "PoolTogether ControlledToken"
                        }
                      ],
                      "id": 3370,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 3368,
                        "name": "ERC20Permit",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 857,
                        "src": "1632:11:21"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1632:43:21"
                    },
                    {
                      "arguments": [
                        {
                          "id": 3372,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3360,
                          "src": "1682:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 3373,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3362,
                          "src": "1689:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 3374,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 3371,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 585,
                        "src": "1676:5:21"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1676:21:21"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3367,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3360,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "1535:5:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3412,
                        "src": "1521:19:21",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3359,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1521:6:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3362,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "1564:7:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3412,
                        "src": "1550:21:21",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3361,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1550:6:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3364,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "1587:9:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3412,
                        "src": "1581:15:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 3363,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1581:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3366,
                        "mutability": "mutable",
                        "name": "_controller",
                        "nameLocation": "1614:11:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3412,
                        "src": "1606:19:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3365,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1606:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1511:120:21"
                  },
                  "returnParameters": {
                    "id": 3375,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1698:0:21"
                  },
                  "scope": 3492,
                  "src": "1500:503:21",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8141
                  ],
                  "body": {
                    "id": 3428,
                    "nodeType": "Block",
                    "src": "2461:38:21",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3424,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3415,
                              "src": "2477:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 3425,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3417,
                              "src": "2484:7:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3423,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "2471:5:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 3426,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2471:21:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3427,
                        "nodeType": "ExpressionStatement",
                        "src": "2471:21:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3413,
                    "nodeType": "StructuredDocumentation",
                    "src": "2065:258:21",
                    "text": "@notice Allows the controller to mint tokens for a user account\n @dev May be overridden to provide more granular control over minting\n @param _user Address of the receiver of the minted tokens\n @param _amount Amount of tokens to mint"
                  },
                  "functionSelector": "5d7b0758",
                  "id": 3429,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3421,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3420,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3357,
                        "src": "2442:14:21"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2442:14:21"
                    }
                  ],
                  "name": "controllerMint",
                  "nameLocation": "2337:14:21",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3419,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2425:8:21"
                  },
                  "parameters": {
                    "id": 3418,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3415,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2360:5:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3429,
                        "src": "2352:13:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3414,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2352:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3417,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2375:7:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3429,
                        "src": "2367:15:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3416,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2367:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2351:32:21"
                  },
                  "returnParameters": {
                    "id": 3422,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2461:0:21"
                  },
                  "scope": 3492,
                  "src": "2328:171:21",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8149
                  ],
                  "body": {
                    "id": 3445,
                    "nodeType": "Block",
                    "src": "2907:38:21",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3441,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3432,
                              "src": "2923:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 3442,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3434,
                              "src": "2930:7:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3440,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "2917:5:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 3443,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2917:21:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3444,
                        "nodeType": "ExpressionStatement",
                        "src": "2917:21:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3430,
                    "nodeType": "StructuredDocumentation",
                    "src": "2505:264:21",
                    "text": "@notice Allows the controller to burn tokens from a user account\n @dev May be overridden to provide more granular control over burning\n @param _user Address of the holder account to burn tokens from\n @param _amount Amount of tokens to burn"
                  },
                  "functionSelector": "90596dd1",
                  "id": 3446,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3438,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3437,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3357,
                        "src": "2888:14:21"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2888:14:21"
                    }
                  ],
                  "name": "controllerBurn",
                  "nameLocation": "2783:14:21",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3436,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2871:8:21"
                  },
                  "parameters": {
                    "id": 3435,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3432,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2806:5:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3446,
                        "src": "2798:13:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3431,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2798:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3434,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2821:7:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3446,
                        "src": "2813:15:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3433,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2813:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2797:32:21"
                  },
                  "returnParameters": {
                    "id": 3439,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2907:0:21"
                  },
                  "scope": 3492,
                  "src": "2774:171:21",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8159
                  ],
                  "body": {
                    "id": 3480,
                    "nodeType": "Block",
                    "src": "3507:162:21",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 3461,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3459,
                            "name": "_operator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3449,
                            "src": "3521:9:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "id": 3460,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3451,
                            "src": "3534:5:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3521:18:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 3474,
                        "nodeType": "IfStatement",
                        "src": "3517:114:21",
                        "trueBody": {
                          "id": 3473,
                          "nodeType": "Block",
                          "src": "3541:90:21",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 3463,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3451,
                                    "src": "3564:5:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 3464,
                                    "name": "_operator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3449,
                                    "src": "3571:9:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 3470,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "arguments": [
                                        {
                                          "id": 3466,
                                          "name": "_user",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 3451,
                                          "src": "3592:5:21",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        {
                                          "id": 3467,
                                          "name": "_operator",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 3449,
                                          "src": "3599:9:21",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          },
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        ],
                                        "id": 3465,
                                        "name": "allowance",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 177,
                                        "src": "3582:9:21",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                          "typeString": "function (address,address) view returns (uint256)"
                                        }
                                      },
                                      "id": 3468,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "3582:27:21",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "id": 3469,
                                      "name": "_amount",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 3453,
                                      "src": "3612:7:21",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "3582:37:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 3462,
                                  "name": "_approve",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 562,
                                  "src": "3555:8:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 3471,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3555:65:21",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 3472,
                              "nodeType": "ExpressionStatement",
                              "src": "3555:65:21"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3476,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3451,
                              "src": "3647:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 3477,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3453,
                              "src": "3654:7:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3475,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "3641:5:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 3478,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3641:21:21",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3479,
                        "nodeType": "ExpressionStatement",
                        "src": "3641:21:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3447,
                    "nodeType": "StructuredDocumentation",
                    "src": "2951:401:21",
                    "text": "@notice Allows an operator via the controller to burn tokens on behalf of a user account\n @dev May be overridden to provide more granular control over operator-burning\n @param _operator Address of the operator performing the burn action via the controller contract\n @param _user Address of the holder account to burn tokens from\n @param _amount Amount of tokens to burn"
                  },
                  "functionSelector": "631b5dfb",
                  "id": 3481,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3457,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3456,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3357,
                        "src": "3492:14:21"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3492:14:21"
                    }
                  ],
                  "name": "controllerBurnFrom",
                  "nameLocation": "3366:18:21",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3455,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3483:8:21"
                  },
                  "parameters": {
                    "id": 3454,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3449,
                        "mutability": "mutable",
                        "name": "_operator",
                        "nameLocation": "3402:9:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3481,
                        "src": "3394:17:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3448,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3394:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3451,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3429:5:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3481,
                        "src": "3421:13:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3450,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3421:7:21",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3453,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3452:7:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3481,
                        "src": "3444:15:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3452,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3444:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3384:81:21"
                  },
                  "returnParameters": {
                    "id": 3458,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3507:0:21"
                  },
                  "scope": 3492,
                  "src": "3357:312:21",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    114
                  ],
                  "body": {
                    "id": 3490,
                    "nodeType": "Block",
                    "src": "3933:33:21",
                    "statements": [
                      {
                        "expression": {
                          "id": 3488,
                          "name": "_decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3330,
                          "src": "3950:9:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 3487,
                        "id": 3489,
                        "nodeType": "Return",
                        "src": "3943:16:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3482,
                    "nodeType": "StructuredDocumentation",
                    "src": "3675:188:21",
                    "text": "@notice Returns the ERC20 controlled token decimals.\n @dev This value should be equal to the decimals of the token used to deposit into the pool.\n @return uint8 decimals."
                  },
                  "functionSelector": "313ce567",
                  "id": 3491,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3877:8:21",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3484,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3908:8:21"
                  },
                  "parameters": {
                    "id": 3483,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3885:2:21"
                  },
                  "returnParameters": {
                    "id": 3487,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3486,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3491,
                        "src": "3926:5:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 3485,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3926:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3925:7:21"
                  },
                  "scope": 3492,
                  "src": "3868:98:21",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                }
              ],
              "scope": 3493,
              "src": "342:3626:21",
              "usedErrors": []
            }
          ],
          "src": "37:3932:21"
        },
        "id": 21
      },
      "@pooltogether/v4-core/contracts/DrawBeacon.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawBeacon": [
              4371
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IERC20": [
              663
            ],
            "Ownable": [
              3258
            ],
            "RNGInterface": [
              3314
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 4372,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3494,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:22"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 3495,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4372,
              "sourceUnit": 2999,
              "src": "61:57:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 3496,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4372,
              "sourceUnit": 664,
              "src": "119:56:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 3497,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4372,
              "sourceUnit": 1118,
              "src": "176:65:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 3498,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4372,
              "sourceUnit": 3315,
              "src": "243:77:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 3499,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4372,
              "sourceUnit": 3259,
              "src": "321:69:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 3500,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4372,
              "sourceUnit": 8333,
              "src": "392:38:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 3501,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4372,
              "sourceUnit": 8410,
              "src": "431:38:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 3503,
                    "name": "IDrawBeacon",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8332,
                    "src": "1154:11:22"
                  },
                  "id": 3504,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1154:11:22"
                },
                {
                  "baseName": {
                    "id": 3505,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3258,
                    "src": "1167:7:22"
                  },
                  "id": 3506,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1167:7:22"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 3502,
                "nodeType": "StructuredDocumentation",
                "src": "472:658:22",
                "text": " @title  PoolTogether V4 DrawBeacon\n @author PoolTogether Inc Team\n @notice Manages RNG (random number generator) requests and pushing Draws onto DrawBuffer.\nThe DrawBeacon has 3 major actions for requesting a random number: start, cancel and complete.\nTo create a new Draw, the user requests a new random number from the RNG service.\nWhen the random number is available, the user can create the draw using the create() method\nwhich will push the draw onto the DrawBuffer.\nIf the RNG service fails to deliver a rng, when the request timeout elapses, the user can cancel the request."
              },
              "fullyImplemented": true,
              "id": 4371,
              "linearizedBaseContracts": [
                4371,
                3258,
                8332
              ],
              "name": "DrawBeacon",
              "nameLocation": "1140:10:22",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 3509,
                  "libraryName": {
                    "id": 3507,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2998,
                    "src": "1187:8:22"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1181:27:22",
                  "typeName": {
                    "id": 3508,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1200:7:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "id": 3513,
                  "libraryName": {
                    "id": 3510,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1219:9:22"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1213:27:22",
                  "typeName": {
                    "id": 3512,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 3511,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1233:6:22"
                    },
                    "referencedDeclaration": 663,
                    "src": "1233:6:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3514,
                    "nodeType": "StructuredDocumentation",
                    "src": "1293:34:22",
                    "text": "@notice RNG contract interface"
                  },
                  "id": 3517,
                  "mutability": "mutable",
                  "name": "rng",
                  "nameLocation": "1354:3:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4371,
                  "src": "1332:25:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_RNGInterface_$3314",
                    "typeString": "contract RNGInterface"
                  },
                  "typeName": {
                    "id": 3516,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 3515,
                      "name": "RNGInterface",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 3314,
                      "src": "1332:12:22"
                    },
                    "referencedDeclaration": 3314,
                    "src": "1332:12:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_RNGInterface_$3314",
                      "typeString": "contract RNGInterface"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3518,
                    "nodeType": "StructuredDocumentation",
                    "src": "1364:31:22",
                    "text": "@notice Current RNG Request"
                  },
                  "id": 3521,
                  "mutability": "mutable",
                  "name": "rngRequest",
                  "nameLocation": "1420:10:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4371,
                  "src": "1400:30:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                    "typeString": "struct DrawBeacon.RngRequest"
                  },
                  "typeName": {
                    "id": 3520,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 3519,
                      "name": "RngRequest",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 3544,
                      "src": "1400:10:22"
                    },
                    "referencedDeclaration": 3544,
                    "src": "1400:10:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_RngRequest_$3544_storage_ptr",
                      "typeString": "struct DrawBeacon.RngRequest"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3522,
                    "nodeType": "StructuredDocumentation",
                    "src": "1437:30:22",
                    "text": "@notice DrawBuffer address"
                  },
                  "id": 3525,
                  "mutability": "mutable",
                  "name": "drawBuffer",
                  "nameLocation": "1493:10:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4371,
                  "src": "1472:31:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 3524,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 3523,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8409,
                      "src": "1472:11:22"
                    },
                    "referencedDeclaration": 8409,
                    "src": "1472:11:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3526,
                    "nodeType": "StructuredDocumentation",
                    "src": "1510:166:22",
                    "text": " @notice RNG Request Timeout.  In fact, this is really a \"complete draw\" timeout.\n @dev If the rng completes the award can still be cancelled."
                  },
                  "id": 3528,
                  "mutability": "mutable",
                  "name": "rngTimeout",
                  "nameLocation": "1697:10:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4371,
                  "src": "1681:26:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 3527,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1681:6:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3529,
                    "nodeType": "StructuredDocumentation",
                    "src": "1714:49:22",
                    "text": "@notice Seconds between beacon period request"
                  },
                  "id": 3531,
                  "mutability": "mutable",
                  "name": "beaconPeriodSeconds",
                  "nameLocation": "1784:19:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4371,
                  "src": "1768:35:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 3530,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1768:6:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3532,
                    "nodeType": "StructuredDocumentation",
                    "src": "1810:56:22",
                    "text": "@notice Epoch timestamp when beacon period can start"
                  },
                  "id": 3534,
                  "mutability": "mutable",
                  "name": "beaconPeriodStartedAt",
                  "nameLocation": "1887:21:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4371,
                  "src": "1871:37:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint64",
                    "typeString": "uint64"
                  },
                  "typeName": {
                    "id": 3533,
                    "name": "uint64",
                    "nodeType": "ElementaryTypeName",
                    "src": "1871:6:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint64",
                      "typeString": "uint64"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 3535,
                    "nodeType": "StructuredDocumentation",
                    "src": "1915:161:22",
                    "text": " @notice Next Draw ID to use when pushing a Draw onto DrawBuffer\n @dev Starts at 1. This way we know that no Draw has been recorded at 0."
                  },
                  "id": 3537,
                  "mutability": "mutable",
                  "name": "nextDrawId",
                  "nameLocation": "2097:10:22",
                  "nodeType": "VariableDeclaration",
                  "scope": 4371,
                  "src": "2081:26:22",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 3536,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "2081:6:22",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "canonicalName": "DrawBeacon.RngRequest",
                  "id": 3544,
                  "members": [
                    {
                      "constant": false,
                      "id": 3539,
                      "mutability": "mutable",
                      "name": "id",
                      "nameLocation": "2401:2:22",
                      "nodeType": "VariableDeclaration",
                      "scope": 3544,
                      "src": "2394:9:22",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 3538,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "2394:6:22",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 3541,
                      "mutability": "mutable",
                      "name": "lockBlock",
                      "nameLocation": "2420:9:22",
                      "nodeType": "VariableDeclaration",
                      "scope": 3544,
                      "src": "2413:16:22",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 3540,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "2413:6:22",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 3543,
                      "mutability": "mutable",
                      "name": "requestedAt",
                      "nameLocation": "2446:11:22",
                      "nodeType": "VariableDeclaration",
                      "scope": 3544,
                      "src": "2439:18:22",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 3542,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "2439:6:22",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "RngRequest",
                  "nameLocation": "2373:10:22",
                  "nodeType": "StructDefinition",
                  "scope": 4371,
                  "src": "2366:98:22",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3545,
                    "nodeType": "StructuredDocumentation",
                    "src": "2514:232:22",
                    "text": " @notice Emit when the DrawBeacon is deployed.\n @param nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n @param beaconPeriodStartedAt Timestamp when beacon period starts."
                  },
                  "id": 3551,
                  "name": "Deployed",
                  "nameLocation": "2757:8:22",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3550,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3547,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "nextDrawId",
                        "nameLocation": "2782:10:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3551,
                        "src": "2775:17:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3546,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2775:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3549,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "beaconPeriodStartedAt",
                        "nameLocation": "2809:21:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3551,
                        "src": "2802:28:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3548,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2802:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2765:71:22"
                  },
                  "src": "2751:86:22"
                },
                {
                  "body": {
                    "id": 3557,
                    "nodeType": "Block",
                    "src": "2923:52:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 3553,
                            "name": "_requireDrawNotStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4274,
                            "src": "2933:22:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$__$",
                              "typeString": "function () view"
                            }
                          },
                          "id": 3554,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2933:24:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3555,
                        "nodeType": "ExpressionStatement",
                        "src": "2933:24:22"
                      },
                      {
                        "id": 3556,
                        "nodeType": "PlaceholderStatement",
                        "src": "2967:1:22"
                      }
                    ]
                  },
                  "id": 3558,
                  "name": "requireDrawNotStarted",
                  "nameLocation": "2899:21:22",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3552,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2920:2:22"
                  },
                  "src": "2890:85:22",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3574,
                    "nodeType": "Block",
                    "src": "3012:167:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 3561,
                                "name": "_isBeaconPeriodOver",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4251,
                                "src": "3030:19:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 3562,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3030:21:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766572",
                              "id": 3563,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3053:35:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-not-over\""
                              },
                              "value": "DrawBeacon/beacon-period-not-over"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-not-over\""
                              }
                            ],
                            "id": 3560,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3022:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3564,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3022:67:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3565,
                        "nodeType": "ExpressionStatement",
                        "src": "3022:67:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3569,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "!",
                              "prefix": true,
                              "src": "3107:17:22",
                              "subExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 3567,
                                  "name": "isRngRequested",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3702,
                                  "src": "3108:14:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                    "typeString": "function () view returns (bool)"
                                  }
                                },
                                "id": 3568,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3108:16:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d616c72656164792d726571756573746564",
                              "id": 3570,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3126:34:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d",
                                "typeString": "literal_string \"DrawBeacon/rng-already-requested\""
                              },
                              "value": "DrawBeacon/rng-already-requested"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d",
                                "typeString": "literal_string \"DrawBeacon/rng-already-requested\""
                              }
                            ],
                            "id": 3566,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3099:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3571,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3099:62:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3572,
                        "nodeType": "ExpressionStatement",
                        "src": "3099:62:22"
                      },
                      {
                        "id": 3573,
                        "nodeType": "PlaceholderStatement",
                        "src": "3171:1:22"
                      }
                    ]
                  },
                  "id": 3575,
                  "name": "requireCanStartDraw",
                  "nameLocation": "2990:19:22",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3559,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3009:2:22"
                  },
                  "src": "2981:198:22",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3590,
                    "nodeType": "Block",
                    "src": "3225:151:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 3578,
                                "name": "isRngRequested",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3702,
                                "src": "3243:14:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 3579,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3243:16:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d726571756573746564",
                              "id": 3580,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3261:30:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280",
                                "typeString": "literal_string \"DrawBeacon/rng-not-requested\""
                              },
                              "value": "DrawBeacon/rng-not-requested"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280",
                                "typeString": "literal_string \"DrawBeacon/rng-not-requested\""
                              }
                            ],
                            "id": 3577,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3235:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3581,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3235:57:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3582,
                        "nodeType": "ExpressionStatement",
                        "src": "3235:57:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 3584,
                                "name": "isRngCompleted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3689,
                                "src": "3310:14:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 3585,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3310:16:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d636f6d706c657465",
                              "id": 3586,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3328:29:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe",
                                "typeString": "literal_string \"DrawBeacon/rng-not-complete\""
                              },
                              "value": "DrawBeacon/rng-not-complete"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe",
                                "typeString": "literal_string \"DrawBeacon/rng-not-complete\""
                              }
                            ],
                            "id": 3583,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3302:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3587,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3302:56:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3588,
                        "nodeType": "ExpressionStatement",
                        "src": "3302:56:22"
                      },
                      {
                        "id": 3589,
                        "nodeType": "PlaceholderStatement",
                        "src": "3368:1:22"
                      }
                    ]
                  },
                  "id": 3591,
                  "name": "requireCanCompleteRngRequest",
                  "nameLocation": "3194:28:22",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 3576,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3222:2:22"
                  },
                  "src": "3185:191:22",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3674,
                    "nodeType": "Block",
                    "src": "4169:595:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 3617,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3615,
                                "name": "_beaconPeriodStart",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3604,
                                "src": "4187:18:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 3616,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4208:1:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4187:22:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d677265617465722d7468616e2d7a65726f",
                              "id": 3618,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4211:44:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              },
                              "value": "DrawBeacon/beacon-period-greater-than-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              }
                            ],
                            "id": 3614,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4179:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3619,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4179:77:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3620,
                        "nodeType": "ExpressionStatement",
                        "src": "4179:77:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 3630,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 3624,
                                    "name": "_rng",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3600,
                                    "src": "4282:4:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                      "typeString": "contract RNGInterface"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                      "typeString": "contract RNGInterface"
                                    }
                                  ],
                                  "id": 3623,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4274:7:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 3622,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4274:7:22",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3625,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4274:13:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 3628,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4299:1:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 3627,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4291:7:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 3626,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4291:7:22",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3629,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4291:10:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4274:27:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d7a65726f",
                              "id": 3631,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4303:25:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529",
                                "typeString": "literal_string \"DrawBeacon/rng-not-zero\""
                              },
                              "value": "DrawBeacon/rng-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529",
                                "typeString": "literal_string \"DrawBeacon/rng-not-zero\""
                              }
                            ],
                            "id": 3621,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4266:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3632,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4266:63:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3633,
                        "nodeType": "ExpressionStatement",
                        "src": "4266:63:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 3637,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3635,
                                "name": "_nextDrawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3602,
                                "src": "4347:11:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 3636,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4362:1:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "4347:16:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65",
                              "id": 3638,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4365:33:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189",
                                "typeString": "literal_string \"DrawBeacon/next-draw-id-gte-one\""
                              },
                              "value": "DrawBeacon/next-draw-id-gte-one"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189",
                                "typeString": "literal_string \"DrawBeacon/next-draw-id-gte-one\""
                              }
                            ],
                            "id": 3634,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4339:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3639,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4339:60:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3640,
                        "nodeType": "ExpressionStatement",
                        "src": "4339:60:22"
                      },
                      {
                        "expression": {
                          "id": 3643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3641,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3534,
                            "src": "4410:21:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3642,
                            "name": "_beaconPeriodStart",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3604,
                            "src": "4434:18:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "4410:42:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 3644,
                        "nodeType": "ExpressionStatement",
                        "src": "4410:42:22"
                      },
                      {
                        "expression": {
                          "id": 3647,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3645,
                            "name": "nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3537,
                            "src": "4462:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3646,
                            "name": "_nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3602,
                            "src": "4475:11:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "4462:24:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 3648,
                        "nodeType": "ExpressionStatement",
                        "src": "4462:24:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3650,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3606,
                              "src": "4521:20:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 3649,
                            "name": "_setBeaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4348,
                            "src": "4497:23:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 3651,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4497:45:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3652,
                        "nodeType": "ExpressionStatement",
                        "src": "4497:45:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3654,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3597,
                              "src": "4567:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 3653,
                            "name": "_setDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4326,
                            "src": "4552:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawBuffer_$8409_$returns$_t_contract$_IDrawBuffer_$8409_$",
                              "typeString": "function (contract IDrawBuffer) returns (contract IDrawBuffer)"
                            }
                          },
                          "id": 3655,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4552:27:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 3656,
                        "nodeType": "ExpressionStatement",
                        "src": "4552:27:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3658,
                              "name": "_rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3600,
                              "src": "4604:4:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 3657,
                            "name": "_setRngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4157,
                            "src": "4589:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_RNGInterface_$3314_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 3659,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4589:20:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3660,
                        "nodeType": "ExpressionStatement",
                        "src": "4589:20:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3662,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3608,
                              "src": "4634:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 3661,
                            "name": "_setRngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4370,
                            "src": "4619:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 3663,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4619:27:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3664,
                        "nodeType": "ExpressionStatement",
                        "src": "4619:27:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3666,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3602,
                              "src": "4671:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 3667,
                              "name": "_beaconPeriodStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3604,
                              "src": "4684:18:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 3665,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3551,
                            "src": "4662:8:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint64_$returns$__$",
                              "typeString": "function (uint32,uint64)"
                            }
                          },
                          "id": 3668,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4662:41:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3669,
                        "nodeType": "EmitStatement",
                        "src": "4657:46:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3671,
                              "name": "_beaconPeriodStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3604,
                              "src": "4738:18:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 3670,
                            "name": "BeaconPeriodStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8187,
                            "src": "4718:19:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 3672,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4718:39:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3673,
                        "nodeType": "EmitStatement",
                        "src": "4713:44:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3592,
                    "nodeType": "StructuredDocumentation",
                    "src": "3431:487:22",
                    "text": " @notice Deploy the DrawBeacon smart contract.\n @param _owner Address of the DrawBeacon owner\n @param _drawBuffer The address of the draw buffer to push draws to\n @param _rng The RNG service to use\n @param _nextDrawId Draw ID at which the DrawBeacon should start. Can't be inferior to 1.\n @param _beaconPeriodStart The starting timestamp of the beacon period.\n @param _beaconPeriodSeconds The duration of the beacon period in seconds"
                  },
                  "id": 3675,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 3611,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3594,
                          "src": "4161:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 3612,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 3610,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "4153:7:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4153:15:22"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3609,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3594,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "3952:6:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3675,
                        "src": "3944:14:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3593,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3944:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3597,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "3980:11:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3675,
                        "src": "3968:23:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 3596,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 3595,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "3968:11:22"
                          },
                          "referencedDeclaration": 8409,
                          "src": "3968:11:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3600,
                        "mutability": "mutable",
                        "name": "_rng",
                        "nameLocation": "4014:4:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3675,
                        "src": "4001:17:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 3599,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 3598,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3314,
                            "src": "4001:12:22"
                          },
                          "referencedDeclaration": 3314,
                          "src": "4001:12:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3602,
                        "mutability": "mutable",
                        "name": "_nextDrawId",
                        "nameLocation": "4035:11:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3675,
                        "src": "4028:18:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3601,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4028:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3604,
                        "mutability": "mutable",
                        "name": "_beaconPeriodStart",
                        "nameLocation": "4063:18:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3675,
                        "src": "4056:25:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3603,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4056:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3606,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "4098:20:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3675,
                        "src": "4091:27:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3605,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4091:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3608,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "4135:11:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3675,
                        "src": "4128:18:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3607,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4128:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3934:218:22"
                  },
                  "returnParameters": {
                    "id": 3613,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4169:0:22"
                  },
                  "scope": 4371,
                  "src": "3923:841:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8286
                  ],
                  "body": {
                    "id": 3688,
                    "nodeType": "Block",
                    "src": "5053:60:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 3684,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3521,
                                "src": "5092:10:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 3685,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "id",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 3539,
                              "src": "5092:13:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 3682,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3517,
                              "src": "5070:3:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 3683,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "isRequestComplete",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3305,
                            "src": "5070:21:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_uint32_$returns$_t_bool_$",
                              "typeString": "function (uint32) view external returns (bool)"
                            }
                          },
                          "id": 3686,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5070:36:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3681,
                        "id": 3687,
                        "nodeType": "Return",
                        "src": "5063:43:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3676,
                    "nodeType": "StructuredDocumentation",
                    "src": "4824:162:22",
                    "text": " @notice Returns whether the random number request has completed.\n @return True if a random number request has completed, false otherwise."
                  },
                  "functionSelector": "4aba4f6b",
                  "id": 3689,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngCompleted",
                  "nameLocation": "5000:14:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3678,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5029:8:22"
                  },
                  "parameters": {
                    "id": 3677,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5014:2:22"
                  },
                  "returnParameters": {
                    "id": 3681,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3680,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3689,
                        "src": "5047:4:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3679,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5047:4:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5046:6:22"
                  },
                  "scope": 4371,
                  "src": "4991:122:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8292
                  ],
                  "body": {
                    "id": 3701,
                    "nodeType": "Block",
                    "src": "5339:42:22",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 3699,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 3696,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3521,
                              "src": "5356:10:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 3697,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "id",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3539,
                            "src": "5356:13:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 3698,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5373:1:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5356:18:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3695,
                        "id": 3700,
                        "nodeType": "Return",
                        "src": "5349:25:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3690,
                    "nodeType": "StructuredDocumentation",
                    "src": "5119:153:22",
                    "text": " @notice Returns whether a random number has been requested\n @return True if a random number has been requested, false otherwise."
                  },
                  "functionSelector": "111070e4",
                  "id": 3702,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngRequested",
                  "nameLocation": "5286:14:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3692,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5315:8:22"
                  },
                  "parameters": {
                    "id": 3691,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5300:2:22"
                  },
                  "returnParameters": {
                    "id": 3695,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3694,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3702,
                        "src": "5333:4:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3693,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5333:4:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5332:6:22"
                  },
                  "scope": 4371,
                  "src": "5277:104:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8298
                  ],
                  "body": {
                    "id": 3726,
                    "nodeType": "Block",
                    "src": "5615:176:22",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 3712,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 3709,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3521,
                              "src": "5629:10:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 3710,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "requestedAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3543,
                            "src": "5629:22:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 3711,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5655:1:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5629:27:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 3724,
                          "nodeType": "Block",
                          "src": "5701:84:22",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 3722,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  },
                                  "id": 3719,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 3716,
                                    "name": "rngTimeout",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3528,
                                    "src": "5722:10:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "+",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 3717,
                                      "name": "rngRequest",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 3521,
                                      "src": "5735:10:22",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                        "typeString": "struct DrawBeacon.RngRequest storage ref"
                                      }
                                    },
                                    "id": 3718,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "requestedAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 3543,
                                    "src": "5735:22:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "src": "5722:35:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 3720,
                                    "name": "_currentTime",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4199,
                                    "src": "5760:12:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                      "typeString": "function () view returns (uint64)"
                                    }
                                  },
                                  "id": 3721,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5760:14:22",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "5722:52:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "functionReturnParameters": 3708,
                              "id": 3723,
                              "nodeType": "Return",
                              "src": "5715:59:22"
                            }
                          ]
                        },
                        "id": 3725,
                        "nodeType": "IfStatement",
                        "src": "5625:160:22",
                        "trueBody": {
                          "id": 3715,
                          "nodeType": "Block",
                          "src": "5658:37:22",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 3713,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5679:5:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 3708,
                              "id": 3714,
                              "nodeType": "Return",
                              "src": "5672:12:22"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3703,
                    "nodeType": "StructuredDocumentation",
                    "src": "5387:162:22",
                    "text": " @notice Returns whether the random number request has timed out.\n @return True if a random number request has timed out, false otherwise."
                  },
                  "functionSelector": "738bbea8",
                  "id": 3727,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngTimedOut",
                  "nameLocation": "5563:13:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3705,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5591:8:22"
                  },
                  "parameters": {
                    "id": 3704,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5576:2:22"
                  },
                  "returnParameters": {
                    "id": 3708,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3707,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3727,
                        "src": "5609:4:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3706,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5609:4:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5608:6:22"
                  },
                  "scope": 4371,
                  "src": "5554:237:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8240
                  ],
                  "body": {
                    "id": 3741,
                    "nodeType": "Block",
                    "src": "5947:66:22",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 3739,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 3734,
                              "name": "_isBeaconPeriodOver",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4251,
                              "src": "5964:19:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 3735,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5964:21:22",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "id": 3738,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "!",
                            "prefix": true,
                            "src": "5989:17:22",
                            "subExpression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 3736,
                                "name": "isRngRequested",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3702,
                                "src": "5990:14:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 3737,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5990:16:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "5964:42:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3733,
                        "id": 3740,
                        "nodeType": "Return",
                        "src": "5957:49:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3728,
                    "nodeType": "StructuredDocumentation",
                    "src": "5853:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "0996f6e1",
                  "id": 3742,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canStartDraw",
                  "nameLocation": "5894:12:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3730,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5923:8:22"
                  },
                  "parameters": {
                    "id": 3729,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5906:2:22"
                  },
                  "returnParameters": {
                    "id": 3733,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3732,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3742,
                        "src": "5941:4:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3731,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5941:4:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5940:6:22"
                  },
                  "scope": 4371,
                  "src": "5885:128:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8246
                  ],
                  "body": {
                    "id": 3755,
                    "nodeType": "Block",
                    "src": "6116:60:22",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 3753,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 3749,
                              "name": "isRngRequested",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3702,
                              "src": "6133:14:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 3750,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6133:16:22",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 3751,
                              "name": "isRngCompleted",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3689,
                              "src": "6153:14:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 3752,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6153:16:22",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "6133:36:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3748,
                        "id": 3754,
                        "nodeType": "Return",
                        "src": "6126:43:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3743,
                    "nodeType": "StructuredDocumentation",
                    "src": "6019:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "e4a75bb8",
                  "id": 3756,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canCompleteDraw",
                  "nameLocation": "6060:15:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3745,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6092:8:22"
                  },
                  "parameters": {
                    "id": 3744,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6075:2:22"
                  },
                  "returnParameters": {
                    "id": 3748,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3747,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3756,
                        "src": "6110:4:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3746,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6110:4:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6109:6:22"
                  },
                  "scope": 4371,
                  "src": "6051:125:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3769,
                    "nodeType": "Block",
                    "src": "6447:193:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3763,
                              "name": "beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3534,
                              "src": "6529:21:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 3764,
                              "name": "beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3531,
                              "src": "6568:19:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 3765,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4199,
                                "src": "6605:12:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                  "typeString": "function () view returns (uint64)"
                                }
                              },
                              "id": 3766,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6605:14:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 3762,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4186,
                            "src": "6476:35:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 3767,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6476:157:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 3761,
                        "id": 3768,
                        "nodeType": "Return",
                        "src": "6457:176:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3757,
                    "nodeType": "StructuredDocumentation",
                    "src": "6182:168:22",
                    "text": "@notice Calculates the next beacon start time, assuming all beacon periods have occurred between the last and now.\n @return The next beacon period start time"
                  },
                  "functionSelector": "89c36f8e",
                  "id": 3770,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTimeFromCurrentTime",
                  "nameLocation": "6364:49:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3758,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6413:2:22"
                  },
                  "returnParameters": {
                    "id": 3761,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3760,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3770,
                        "src": "6439:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3759,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6439:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6438:8:22"
                  },
                  "scope": 4371,
                  "src": "6355:285:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8254
                  ],
                  "body": {
                    "id": 3785,
                    "nodeType": "Block",
                    "src": "6812:184:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3780,
                              "name": "beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3534,
                              "src": "6894:21:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 3781,
                              "name": "beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3531,
                              "src": "6933:19:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 3782,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3773,
                              "src": "6970:5:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 3779,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4186,
                            "src": "6841:35:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 3783,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6841:148:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 3778,
                        "id": 3784,
                        "nodeType": "Return",
                        "src": "6822:167:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3771,
                    "nodeType": "StructuredDocumentation",
                    "src": "6646:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "a3ae35ab",
                  "id": 3786,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTime",
                  "nameLocation": "6687:34:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3775,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6774:8:22"
                  },
                  "parameters": {
                    "id": 3774,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3773,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "6729:5:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 3786,
                        "src": "6722:12:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3772,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6722:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6721:14:22"
                  },
                  "returnParameters": {
                    "id": 3778,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3777,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3786,
                        "src": "6800:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3776,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6800:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6799:8:22"
                  },
                  "scope": 4371,
                  "src": "6678:318:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8258
                  ],
                  "body": {
                    "id": 3815,
                    "nodeType": "Block",
                    "src": "7074:240:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 3792,
                                "name": "isRngTimedOut",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3727,
                                "src": "7092:13:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 3793,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7092:15:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d74696d65646f7574",
                              "id": 3794,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7109:29:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448",
                                "typeString": "literal_string \"DrawBeacon/rng-not-timedout\""
                              },
                              "value": "DrawBeacon/rng-not-timedout"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448",
                                "typeString": "literal_string \"DrawBeacon/rng-not-timedout\""
                              }
                            ],
                            "id": 3791,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7084:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3795,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7084:55:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3796,
                        "nodeType": "ExpressionStatement",
                        "src": "7084:55:22"
                      },
                      {
                        "assignments": [
                          3798
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3798,
                            "mutability": "mutable",
                            "name": "requestId",
                            "nameLocation": "7156:9:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3815,
                            "src": "7149:16:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 3797,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7149:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3801,
                        "initialValue": {
                          "expression": {
                            "id": 3799,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3521,
                            "src": "7168:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 3800,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "id",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3539,
                          "src": "7168:13:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7149:32:22"
                      },
                      {
                        "assignments": [
                          3803
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3803,
                            "mutability": "mutable",
                            "name": "lockBlock",
                            "nameLocation": "7198:9:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3815,
                            "src": "7191:16:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 3802,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7191:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3806,
                        "initialValue": {
                          "expression": {
                            "id": 3804,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3521,
                            "src": "7210:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 3805,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "lockBlock",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3541,
                          "src": "7210:20:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7191:39:22"
                      },
                      {
                        "expression": {
                          "id": 3808,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "7240:17:22",
                          "subExpression": {
                            "id": 3807,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3521,
                            "src": "7247:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3809,
                        "nodeType": "ExpressionStatement",
                        "src": "7240:17:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3811,
                              "name": "requestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3798,
                              "src": "7286:9:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 3812,
                              "name": "lockBlock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3803,
                              "src": "7297:9:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 3810,
                            "name": "DrawCancelled",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8201,
                            "src": "7272:13:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint32_$returns$__$",
                              "typeString": "function (uint32,uint32)"
                            }
                          },
                          "id": 3813,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7272:35:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3814,
                        "nodeType": "EmitStatement",
                        "src": "7267:40:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3787,
                    "nodeType": "StructuredDocumentation",
                    "src": "7002:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "412a616a",
                  "id": 3816,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cancelDraw",
                  "nameLocation": "7043:10:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3789,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7065:8:22"
                  },
                  "parameters": {
                    "id": 3788,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7053:2:22"
                  },
                  "returnParameters": {
                    "id": 3790,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7074:0:22"
                  },
                  "scope": 4371,
                  "src": "7034:280:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8262
                  ],
                  "body": {
                    "id": 3898,
                    "nodeType": "Block",
                    "src": "7423:1306:22",
                    "statements": [
                      {
                        "assignments": [
                          3824
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3824,
                            "mutability": "mutable",
                            "name": "randomNumber",
                            "nameLocation": "7441:12:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3898,
                            "src": "7433:20:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 3823,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7433:7:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3830,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 3827,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3521,
                                "src": "7473:10:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 3828,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "id",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 3539,
                              "src": "7473:13:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 3825,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3517,
                              "src": "7456:3:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 3826,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "randomNumber",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3313,
                            "src": "7456:16:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (uint32) external returns (uint256)"
                            }
                          },
                          "id": 3829,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7456:31:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7433:54:22"
                      },
                      {
                        "assignments": [
                          3832
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3832,
                            "mutability": "mutable",
                            "name": "_nextDrawId",
                            "nameLocation": "7504:11:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3898,
                            "src": "7497:18:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 3831,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7497:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3834,
                        "initialValue": {
                          "id": 3833,
                          "name": "nextDrawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3537,
                          "src": "7518:10:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7497:31:22"
                      },
                      {
                        "assignments": [
                          3836
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3836,
                            "mutability": "mutable",
                            "name": "_beaconPeriodStartedAt",
                            "nameLocation": "7545:22:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3898,
                            "src": "7538:29:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 3835,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7538:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3838,
                        "initialValue": {
                          "id": 3837,
                          "name": "beaconPeriodStartedAt",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3534,
                          "src": "7570:21:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7538:53:22"
                      },
                      {
                        "assignments": [
                          3840
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3840,
                            "mutability": "mutable",
                            "name": "_beaconPeriodSeconds",
                            "nameLocation": "7608:20:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3898,
                            "src": "7601:27:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 3839,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7601:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3842,
                        "initialValue": {
                          "id": 3841,
                          "name": "beaconPeriodSeconds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3531,
                          "src": "7631:19:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7601:49:22"
                      },
                      {
                        "assignments": [
                          3844
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3844,
                            "mutability": "mutable",
                            "name": "_time",
                            "nameLocation": "7667:5:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3898,
                            "src": "7660:12:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 3843,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7660:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3847,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 3845,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4199,
                            "src": "7675:12:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 3846,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7675:14:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7660:29:22"
                      },
                      {
                        "assignments": [
                          3852
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3852,
                            "mutability": "mutable",
                            "name": "_draw",
                            "nameLocation": "7754:5:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3898,
                            "src": "7730:29:22",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            },
                            "typeName": {
                              "id": 3851,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 3850,
                                "name": "IDrawBeacon.Draw",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8176,
                                "src": "7730:16:22"
                              },
                              "referencedDeclaration": 8176,
                              "src": "7730:16:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3862,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 3855,
                              "name": "randomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3824,
                              "src": "7814:12:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 3856,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3832,
                              "src": "7848:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 3857,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3521,
                                "src": "7884:10:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 3858,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "requestedAt",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 3543,
                              "src": "7884:22:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 3859,
                              "name": "_beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3836,
                              "src": "8007:22:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 3860,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3840,
                              "src": "8064:20:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 3853,
                              "name": "IDrawBeacon",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8332,
                              "src": "7762:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_IDrawBeacon_$8332_$",
                                "typeString": "type(contract IDrawBeacon)"
                              }
                            },
                            "id": 3854,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "Draw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8176,
                            "src": "7762:16:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Draw_$8176_storage_ptr_$",
                              "typeString": "type(struct IDrawBeacon.Draw storage pointer)"
                            }
                          },
                          "id": 3861,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "winningRandomNumber",
                            "drawId",
                            "timestamp",
                            "beaconPeriodStartedAt",
                            "beaconPeriodSeconds"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "7762:333:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7730:365:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3866,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3852,
                              "src": "8126:5:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "expression": {
                              "id": 3863,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3525,
                              "src": "8106:10:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 3865,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8399,
                            "src": "8106:19:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_struct$_Draw_$8176_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) external returns (uint32)"
                            }
                          },
                          "id": 3867,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8106:26:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 3868,
                        "nodeType": "ExpressionStatement",
                        "src": "8106:26:22"
                      },
                      {
                        "assignments": [
                          3870
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 3870,
                            "mutability": "mutable",
                            "name": "nextBeaconPeriodStartedAt",
                            "nameLocation": "8259:25:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 3898,
                            "src": "8252:32:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 3869,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "8252:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 3876,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 3872,
                              "name": "_beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3836,
                              "src": "8336:22:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 3873,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3840,
                              "src": "8372:20:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 3874,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3844,
                              "src": "8406:5:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 3871,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4186,
                            "src": "8287:35:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 3875,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8287:134:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8252:169:22"
                      },
                      {
                        "expression": {
                          "id": 3879,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3877,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3534,
                            "src": "8431:21:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 3878,
                            "name": "nextBeaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3870,
                            "src": "8455:25:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "8431:49:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 3880,
                        "nodeType": "ExpressionStatement",
                        "src": "8431:49:22"
                      },
                      {
                        "expression": {
                          "id": 3885,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 3881,
                            "name": "nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3537,
                            "src": "8490:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 3884,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 3882,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3832,
                              "src": "8503:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 3883,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8517:1:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "8503:15:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "8490:28:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 3886,
                        "nodeType": "ExpressionStatement",
                        "src": "8490:28:22"
                      },
                      {
                        "expression": {
                          "id": 3888,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "8601:17:22",
                          "subExpression": {
                            "id": 3887,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3521,
                            "src": "8608:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3889,
                        "nodeType": "ExpressionStatement",
                        "src": "8601:17:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3891,
                              "name": "randomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3824,
                              "src": "8648:12:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3890,
                            "name": "DrawCompleted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8206,
                            "src": "8634:13:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 3892,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8634:27:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3893,
                        "nodeType": "EmitStatement",
                        "src": "8629:32:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 3895,
                              "name": "nextBeaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3870,
                              "src": "8696:25:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 3894,
                            "name": "BeaconPeriodStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8187,
                            "src": "8676:19:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 3896,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8676:46:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3897,
                        "nodeType": "EmitStatement",
                        "src": "8671:51:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3817,
                    "nodeType": "StructuredDocumentation",
                    "src": "7320:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "0bdeecbd",
                  "id": 3899,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 3821,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 3820,
                        "name": "requireCanCompleteRngRequest",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3591,
                        "src": "7394:28:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7394:28:22"
                    }
                  ],
                  "name": "completeDraw",
                  "nameLocation": "7361:12:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3819,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7385:8:22"
                  },
                  "parameters": {
                    "id": 3818,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7373:2:22"
                  },
                  "returnParameters": {
                    "id": 3822,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7423:0:22"
                  },
                  "scope": 4371,
                  "src": "7352:1377:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8228
                  ],
                  "body": {
                    "id": 3909,
                    "nodeType": "Block",
                    "src": "8847:55:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 3906,
                            "name": "_beaconPeriodRemainingSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4238,
                            "src": "8864:29:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 3907,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8864:31:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 3905,
                        "id": 3908,
                        "nodeType": "Return",
                        "src": "8857:38:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3900,
                    "nodeType": "StructuredDocumentation",
                    "src": "8735:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "75e38f16",
                  "id": 3910,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodRemainingSeconds",
                  "nameLocation": "8776:28:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3902,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8821:8:22"
                  },
                  "parameters": {
                    "id": 3901,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8804:2:22"
                  },
                  "returnParameters": {
                    "id": 3905,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3904,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3910,
                        "src": "8839:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3903,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "8839:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8838:8:22"
                  },
                  "scope": 4371,
                  "src": "8767:135:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8234
                  ],
                  "body": {
                    "id": 3920,
                    "nodeType": "Block",
                    "src": "9009:44:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 3917,
                            "name": "_beaconPeriodEndAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4210,
                            "src": "9026:18:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 3918,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9026:20:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 3916,
                        "id": 3919,
                        "nodeType": "Return",
                        "src": "9019:27:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3911,
                    "nodeType": "StructuredDocumentation",
                    "src": "8908:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "a104fd79",
                  "id": 3921,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodEndAt",
                  "nameLocation": "8949:17:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3913,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8983:8:22"
                  },
                  "parameters": {
                    "id": 3912,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8966:2:22"
                  },
                  "returnParameters": {
                    "id": 3916,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3915,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3921,
                        "src": "9001:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3914,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "9001:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9000:8:22"
                  },
                  "scope": 4371,
                  "src": "8940:113:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3928,
                    "nodeType": "Block",
                    "src": "9124:43:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3926,
                          "name": "beaconPeriodSeconds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3531,
                          "src": "9141:19:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 3925,
                        "id": 3927,
                        "nodeType": "Return",
                        "src": "9134:26:22"
                      }
                    ]
                  },
                  "functionSelector": "3e7a3908",
                  "id": 3929,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBeaconPeriodSeconds",
                  "nameLocation": "9068:22:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3922,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9090:2:22"
                  },
                  "returnParameters": {
                    "id": 3925,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3924,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3929,
                        "src": "9116:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3923,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9116:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9115:8:22"
                  },
                  "scope": 4371,
                  "src": "9059:108:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3936,
                    "nodeType": "Block",
                    "src": "9240:45:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3934,
                          "name": "beaconPeriodStartedAt",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3534,
                          "src": "9257:21:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 3933,
                        "id": 3935,
                        "nodeType": "Return",
                        "src": "9250:28:22"
                      }
                    ]
                  },
                  "functionSelector": "39f92c30",
                  "id": 3937,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBeaconPeriodStartedAt",
                  "nameLocation": "9182:24:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3930,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9206:2:22"
                  },
                  "returnParameters": {
                    "id": 3933,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3932,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3937,
                        "src": "9232:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 3931,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "9232:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9231:8:22"
                  },
                  "scope": 4371,
                  "src": "9173:112:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3945,
                    "nodeType": "Block",
                    "src": "9352:34:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3943,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3525,
                          "src": "9369:10:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 3942,
                        "id": 3944,
                        "nodeType": "Return",
                        "src": "9362:17:22"
                      }
                    ]
                  },
                  "functionSelector": "4019f2d6",
                  "id": 3946,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "9300:13:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3938,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9313:2:22"
                  },
                  "returnParameters": {
                    "id": 3942,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3941,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3946,
                        "src": "9339:11:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 3940,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 3939,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "9339:11:22"
                          },
                          "referencedDeclaration": 8409,
                          "src": "9339:11:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9338:13:22"
                  },
                  "scope": 4371,
                  "src": "9291:95:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3953,
                    "nodeType": "Block",
                    "src": "9448:34:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3951,
                          "name": "nextDrawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3537,
                          "src": "9465:10:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 3950,
                        "id": 3952,
                        "nodeType": "Return",
                        "src": "9458:17:22"
                      }
                    ]
                  },
                  "functionSelector": "c57708c2",
                  "id": 3954,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNextDrawId",
                  "nameLocation": "9401:13:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3947,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9414:2:22"
                  },
                  "returnParameters": {
                    "id": 3950,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3949,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3954,
                        "src": "9440:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3948,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9440:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9439:8:22"
                  },
                  "scope": 4371,
                  "src": "9392:90:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8268
                  ],
                  "body": {
                    "id": 3964,
                    "nodeType": "Block",
                    "src": "9591:44:22",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 3961,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3521,
                            "src": "9608:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 3962,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "lockBlock",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3541,
                          "src": "9608:20:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 3960,
                        "id": 3963,
                        "nodeType": "Return",
                        "src": "9601:27:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3955,
                    "nodeType": "StructuredDocumentation",
                    "src": "9488:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "6bea5344",
                  "id": 3965,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngLockBlock",
                  "nameLocation": "9529:19:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3957,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9565:8:22"
                  },
                  "parameters": {
                    "id": 3956,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9548:2:22"
                  },
                  "returnParameters": {
                    "id": 3960,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3959,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3965,
                        "src": "9583:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3958,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9583:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9582:8:22"
                  },
                  "scope": 4371,
                  "src": "9520:115:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8274
                  ],
                  "body": {
                    "id": 3974,
                    "nodeType": "Block",
                    "src": "9712:37:22",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 3971,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3521,
                            "src": "9729:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 3972,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "id",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3539,
                          "src": "9729:13:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 3970,
                        "id": 3973,
                        "nodeType": "Return",
                        "src": "9722:20:22"
                      }
                    ]
                  },
                  "functionSelector": "2a7ad609",
                  "id": 3975,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngRequestId",
                  "nameLocation": "9650:19:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3967,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9686:8:22"
                  },
                  "parameters": {
                    "id": 3966,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9669:2:22"
                  },
                  "returnParameters": {
                    "id": 3970,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3969,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3975,
                        "src": "9704:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3968,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9704:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9703:8:22"
                  },
                  "scope": 4371,
                  "src": "9641:108:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3983,
                    "nodeType": "Block",
                    "src": "9817:27:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3981,
                          "name": "rng",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3517,
                          "src": "9834:3:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "functionReturnParameters": 3980,
                        "id": 3982,
                        "nodeType": "Return",
                        "src": "9827:10:22"
                      }
                    ]
                  },
                  "functionSelector": "7ce52b18",
                  "id": 3984,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRngService",
                  "nameLocation": "9764:13:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3976,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9777:2:22"
                  },
                  "returnParameters": {
                    "id": 3980,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3979,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3984,
                        "src": "9803:12:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 3978,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 3977,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3314,
                            "src": "9803:12:22"
                          },
                          "referencedDeclaration": 3314,
                          "src": "9803:12:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9802:14:22"
                  },
                  "scope": 4371,
                  "src": "9755:89:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 3991,
                    "nodeType": "Block",
                    "src": "9906:34:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 3989,
                          "name": "rngTimeout",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3528,
                          "src": "9923:10:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 3988,
                        "id": 3990,
                        "nodeType": "Return",
                        "src": "9916:17:22"
                      }
                    ]
                  },
                  "functionSelector": "1b5344a2",
                  "id": 3992,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRngTimeout",
                  "nameLocation": "9859:13:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3985,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9872:2:22"
                  },
                  "returnParameters": {
                    "id": 3988,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3987,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3992,
                        "src": "9898:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 3986,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9898:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9897:8:22"
                  },
                  "scope": 4371,
                  "src": "9850:90:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8280
                  ],
                  "body": {
                    "id": 4002,
                    "nodeType": "Block",
                    "src": "10046:45:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 3999,
                            "name": "_isBeaconPeriodOver",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4251,
                            "src": "10063:19:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                              "typeString": "function () view returns (bool)"
                            }
                          },
                          "id": 4000,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10063:21:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 3998,
                        "id": 4001,
                        "nodeType": "Return",
                        "src": "10056:28:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3993,
                    "nodeType": "StructuredDocumentation",
                    "src": "9946:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "d1e77657",
                  "id": 4003,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isBeaconPeriodOver",
                  "nameLocation": "9987:18:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 3995,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10022:8:22"
                  },
                  "parameters": {
                    "id": 3994,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10005:2:22"
                  },
                  "returnParameters": {
                    "id": 3998,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3997,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4003,
                        "src": "10040:4:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3996,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "10040:4:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10039:6:22"
                  },
                  "scope": 4371,
                  "src": "9978:113:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8331
                  ],
                  "body": {
                    "id": 4020,
                    "nodeType": "Block",
                    "src": "10265:53:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4017,
                              "name": "newDrawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4007,
                              "src": "10297:13:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 4016,
                            "name": "_setDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4326,
                            "src": "10282:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawBuffer_$8409_$returns$_t_contract$_IDrawBuffer_$8409_$",
                              "typeString": "function (contract IDrawBuffer) returns (contract IDrawBuffer)"
                            }
                          },
                          "id": 4018,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10282:29:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 4015,
                        "id": 4019,
                        "nodeType": "Return",
                        "src": "10275:36:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4004,
                    "nodeType": "StructuredDocumentation",
                    "src": "10097:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "ab70d49c",
                  "id": 4021,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4011,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4010,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "10221:9:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10221:9:22"
                    }
                  ],
                  "name": "setDrawBuffer",
                  "nameLocation": "10138:13:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4009,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10204:8:22"
                  },
                  "parameters": {
                    "id": 4008,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4007,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "10164:13:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4021,
                        "src": "10152:25:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 4006,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4005,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "10152:11:22"
                          },
                          "referencedDeclaration": 8409,
                          "src": "10152:11:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10151:27:22"
                  },
                  "returnParameters": {
                    "id": 4015,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4014,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4021,
                        "src": "10248:11:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 4013,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4012,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "10248:11:22"
                          },
                          "referencedDeclaration": 8409,
                          "src": "10248:11:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10247:13:22"
                  },
                  "scope": 4371,
                  "src": "10129:189:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8321
                  ],
                  "body": {
                    "id": 4091,
                    "nodeType": "Block",
                    "src": "10415:472:22",
                    "statements": [
                      {
                        "assignments": [
                          4029,
                          4031
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4029,
                            "mutability": "mutable",
                            "name": "feeToken",
                            "nameLocation": "10434:8:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4091,
                            "src": "10426:16:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 4028,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "10426:7:22",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 4031,
                            "mutability": "mutable",
                            "name": "requestFee",
                            "nameLocation": "10452:10:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4091,
                            "src": "10444:18:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4030,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "10444:7:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4035,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 4032,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3517,
                              "src": "10466:3:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 4033,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getRequestFee",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3289,
                            "src": "10466:17:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$_t_uint256_$",
                              "typeString": "function () view external returns (address,uint256)"
                            }
                          },
                          "id": 4034,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10466:19:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_uint256_$",
                            "typeString": "tuple(address,uint256)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10425:60:22"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 4045,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "id": 4041,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 4036,
                              "name": "feeToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4029,
                              "src": "10500:8:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 4039,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10520:1:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 4038,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10512:7:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4037,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10512:7:22",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4040,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10512:10:22",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "src": "10500:22:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 4044,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 4042,
                              "name": "requestFee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4031,
                              "src": "10526:10:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "hexValue": "30",
                              "id": 4043,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10539:1:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "src": "10526:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "10500:40:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4058,
                        "nodeType": "IfStatement",
                        "src": "10496:135:22",
                        "trueBody": {
                          "id": 4057,
                          "nodeType": "Block",
                          "src": "10542:89:22",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 4052,
                                        "name": "rng",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 3517,
                                        "src": "10603:3:22",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                          "typeString": "contract RNGInterface"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                          "typeString": "contract RNGInterface"
                                        }
                                      ],
                                      "id": 4051,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "10595:7:22",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 4050,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "10595:7:22",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 4053,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "10595:12:22",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 4054,
                                    "name": "requestFee",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4031,
                                    "src": "10609:10:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 4047,
                                        "name": "feeToken",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 4029,
                                        "src": "10563:8:22",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "id": 4046,
                                      "name": "IERC20",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 663,
                                      "src": "10556:6:22",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                        "typeString": "type(contract IERC20)"
                                      }
                                    },
                                    "id": 4048,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "10556:16:22",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  },
                                  "id": 4049,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "safeIncreaseAllowance",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1030,
                                  "src": "10556:38:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                                    "typeString": "function (contract IERC20,address,uint256)"
                                  }
                                },
                                "id": 4055,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10556:64:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 4056,
                              "nodeType": "ExpressionStatement",
                              "src": "10556:64:22"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          4060,
                          4062
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4060,
                            "mutability": "mutable",
                            "name": "requestId",
                            "nameLocation": "10649:9:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4091,
                            "src": "10642:16:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 4059,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10642:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 4062,
                            "mutability": "mutable",
                            "name": "lockBlock",
                            "nameLocation": "10667:9:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4091,
                            "src": "10660:16:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 4061,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10660:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4066,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 4063,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3517,
                              "src": "10680:3:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 4064,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "requestRandomNumber",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3297,
                            "src": "10680:23:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$__$returns$_t_uint32_$_t_uint32_$",
                              "typeString": "function () external returns (uint32,uint32)"
                            }
                          },
                          "id": 4065,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10680:25:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint32_$_t_uint32_$",
                            "typeString": "tuple(uint32,uint32)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10641:64:22"
                      },
                      {
                        "expression": {
                          "id": 4071,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 4067,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3521,
                              "src": "10715:10:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 4069,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "id",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3539,
                            "src": "10715:13:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4070,
                            "name": "requestId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4060,
                            "src": "10731:9:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10715:25:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 4072,
                        "nodeType": "ExpressionStatement",
                        "src": "10715:25:22"
                      },
                      {
                        "expression": {
                          "id": 4077,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 4073,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3521,
                              "src": "10750:10:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 4075,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "lockBlock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3541,
                            "src": "10750:20:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4076,
                            "name": "lockBlock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4062,
                            "src": "10773:9:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10750:32:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 4078,
                        "nodeType": "ExpressionStatement",
                        "src": "10750:32:22"
                      },
                      {
                        "expression": {
                          "id": 4084,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 4079,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3521,
                              "src": "10792:10:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 4081,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "requestedAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3543,
                            "src": "10792:22:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 4082,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4199,
                              "src": "10817:12:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 4083,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10817:14:22",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "10792:39:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 4085,
                        "nodeType": "ExpressionStatement",
                        "src": "10792:39:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4087,
                              "name": "requestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4060,
                              "src": "10859:9:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 4088,
                              "name": "lockBlock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4062,
                              "src": "10870:9:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 4086,
                            "name": "DrawStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8194,
                            "src": "10847:11:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint32_$returns$__$",
                              "typeString": "function (uint32,uint32)"
                            }
                          },
                          "id": 4089,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10847:33:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4090,
                        "nodeType": "EmitStatement",
                        "src": "10842:38:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4022,
                    "nodeType": "StructuredDocumentation",
                    "src": "10324:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "2ae168a6",
                  "id": 4092,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4026,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4025,
                        "name": "requireCanStartDraw",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3575,
                        "src": "10395:19:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10395:19:22"
                    }
                  ],
                  "name": "startDraw",
                  "nameLocation": "10365:9:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4024,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10386:8:22"
                  },
                  "parameters": {
                    "id": 4023,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10374:2:22"
                  },
                  "returnParameters": {
                    "id": 4027,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10415:0:22"
                  },
                  "scope": 4371,
                  "src": "10356:531:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8304
                  ],
                  "body": {
                    "id": 4107,
                    "nodeType": "Block",
                    "src": "11072:62:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4104,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4095,
                              "src": "11106:20:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 4103,
                            "name": "_setBeaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4348,
                            "src": "11082:23:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 4105,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11082:45:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4106,
                        "nodeType": "ExpressionStatement",
                        "src": "11082:45:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4093,
                    "nodeType": "StructuredDocumentation",
                    "src": "10893:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "919bead0",
                  "id": 4108,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4099,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4098,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "11028:9:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11028:9:22"
                    },
                    {
                      "id": 4101,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4100,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3558,
                        "src": "11046:21:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11046:21:22"
                    }
                  ],
                  "name": "setBeaconPeriodSeconds",
                  "nameLocation": "10934:22:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4097,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11011:8:22"
                  },
                  "parameters": {
                    "id": 4096,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4095,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "10964:20:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4108,
                        "src": "10957:27:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4094,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10957:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10956:29:22"
                  },
                  "returnParameters": {
                    "id": 4102,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11072:0:22"
                  },
                  "scope": 4371,
                  "src": "10925:209:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8310
                  ],
                  "body": {
                    "id": 4123,
                    "nodeType": "Block",
                    "src": "11265:44:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4120,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4111,
                              "src": "11290:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 4119,
                            "name": "_setRngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4370,
                            "src": "11275:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 4121,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11275:27:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4122,
                        "nodeType": "ExpressionStatement",
                        "src": "11275:27:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4109,
                    "nodeType": "StructuredDocumentation",
                    "src": "11140:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "5020ea56",
                  "id": 4124,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4115,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4114,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "11233:9:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11233:9:22"
                    },
                    {
                      "id": 4117,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4116,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3558,
                        "src": "11243:21:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11243:21:22"
                    }
                  ],
                  "name": "setRngTimeout",
                  "nameLocation": "11181:13:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4113,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11224:8:22"
                  },
                  "parameters": {
                    "id": 4112,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4111,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "11202:11:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4124,
                        "src": "11195:18:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4110,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "11195:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11194:20:22"
                  },
                  "returnParameters": {
                    "id": 4118,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11265:0:22"
                  },
                  "scope": 4371,
                  "src": "11172:137:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8317
                  ],
                  "body": {
                    "id": 4140,
                    "nodeType": "Block",
                    "src": "11482:44:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4137,
                              "name": "_rngService",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4128,
                              "src": "11507:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 4136,
                            "name": "_setRngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4157,
                            "src": "11492:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_RNGInterface_$3314_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 4138,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11492:27:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4139,
                        "nodeType": "ExpressionStatement",
                        "src": "11492:27:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4125,
                    "nodeType": "StructuredDocumentation",
                    "src": "11315:27:22",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "7f4296d7",
                  "id": 4141,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4132,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4131,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "11438:9:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11438:9:22"
                    },
                    {
                      "id": 4134,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4133,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3558,
                        "src": "11456:21:22"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11456:21:22"
                    }
                  ],
                  "name": "setRngService",
                  "nameLocation": "11356:13:22",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4130,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11421:8:22"
                  },
                  "parameters": {
                    "id": 4129,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4128,
                        "mutability": "mutable",
                        "name": "_rngService",
                        "nameLocation": "11383:11:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4141,
                        "src": "11370:24:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 4127,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4126,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3314,
                            "src": "11370:12:22"
                          },
                          "referencedDeclaration": 3314,
                          "src": "11370:12:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11369:26:22"
                  },
                  "returnParameters": {
                    "id": 4135,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11482:0:22"
                  },
                  "scope": 4371,
                  "src": "11347:179:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4156,
                    "nodeType": "Block",
                    "src": "11758:79:22",
                    "statements": [
                      {
                        "expression": {
                          "id": 4150,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4148,
                            "name": "rng",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3517,
                            "src": "11768:3:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_RNGInterface_$3314",
                              "typeString": "contract RNGInterface"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4149,
                            "name": "_rngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4145,
                            "src": "11774:11:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_RNGInterface_$3314",
                              "typeString": "contract RNGInterface"
                            }
                          },
                          "src": "11768:17:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "id": 4151,
                        "nodeType": "ExpressionStatement",
                        "src": "11768:17:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4153,
                              "name": "_rngService",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4145,
                              "src": "11818:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$3314",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 4152,
                            "name": "RngServiceUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8212,
                            "src": "11800:17:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_RNGInterface_$3314_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 4154,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11800:30:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4155,
                        "nodeType": "EmitStatement",
                        "src": "11795:35:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4142,
                    "nodeType": "StructuredDocumentation",
                    "src": "11532:158:22",
                    "text": " @notice Sets the RNG service that the Prize Strategy is connected to\n @param _rngService The address of the new RNG service interface"
                  },
                  "id": 4157,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setRngService",
                  "nameLocation": "11704:14:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4146,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4145,
                        "mutability": "mutable",
                        "name": "_rngService",
                        "nameLocation": "11732:11:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4157,
                        "src": "11719:24:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 4144,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4143,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3314,
                            "src": "11719:12:22"
                          },
                          "referencedDeclaration": 3314,
                          "src": "11719:12:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11718:26:22"
                  },
                  "returnParameters": {
                    "id": 4147,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11758:0:22"
                  },
                  "scope": 4371,
                  "src": "11695:142:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4185,
                    "nodeType": "Block",
                    "src": "12460:177:22",
                    "statements": [
                      {
                        "assignments": [
                          4170
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4170,
                            "mutability": "mutable",
                            "name": "elapsedPeriods",
                            "nameLocation": "12477:14:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4185,
                            "src": "12470:21:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 4169,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "12470:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4177,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4176,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 4173,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 4171,
                                  "name": "_time",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4164,
                                  "src": "12495:5:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 4172,
                                  "name": "_beaconPeriodStartedAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4160,
                                  "src": "12503:22:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "12495:30:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "id": 4174,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12494:32:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 4175,
                            "name": "_beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4162,
                            "src": "12529:20:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "12494:55:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12470:79:22"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4183,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4178,
                            "name": "_beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4160,
                            "src": "12566:22:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 4181,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 4179,
                                  "name": "elapsedPeriods",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4170,
                                  "src": "12592:14:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 4180,
                                  "name": "_beaconPeriodSeconds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4162,
                                  "src": "12609:20:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "12592:37:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "id": 4182,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12591:39:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "12566:64:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 4168,
                        "id": 4184,
                        "nodeType": "Return",
                        "src": "12559:71:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4158,
                    "nodeType": "StructuredDocumentation",
                    "src": "11899:376:22",
                    "text": " @notice Calculates when the next beacon period will start\n @param _beaconPeriodStartedAt The timestamp at which the beacon period started\n @param _beaconPeriodSeconds The duration of the beacon period in seconds\n @param _time The timestamp to use as the current time\n @return The timestamp at which the next beacon period would start"
                  },
                  "id": 4186,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateNextBeaconPeriodStartTime",
                  "nameLocation": "12289:35:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4160,
                        "mutability": "mutable",
                        "name": "_beaconPeriodStartedAt",
                        "nameLocation": "12341:22:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4186,
                        "src": "12334:29:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 4159,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12334:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4162,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "12380:20:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4186,
                        "src": "12373:27:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4161,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "12373:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4164,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "12417:5:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4186,
                        "src": "12410:12:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 4163,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12410:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12324:104:22"
                  },
                  "returnParameters": {
                    "id": 4168,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4167,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4186,
                        "src": "12452:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 4166,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12452:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12451:8:22"
                  },
                  "scope": 4371,
                  "src": "12280:357:22",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4198,
                    "nodeType": "Block",
                    "src": "12832:47:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4194,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "12856:5:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 4195,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "12856:15:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4193,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "12849:6:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 4192,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "12849:6:22",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 4196,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12849:23:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 4191,
                        "id": 4197,
                        "nodeType": "Return",
                        "src": "12842:30:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4187,
                    "nodeType": "StructuredDocumentation",
                    "src": "12643:121:22",
                    "text": " @notice returns the current time.  Used for testing.\n @return The current time (block.timestamp)"
                  },
                  "id": 4199,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "12778:12:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4188,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12790:2:22"
                  },
                  "returnParameters": {
                    "id": 4191,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4190,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4199,
                        "src": "12824:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 4189,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12824:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12823:8:22"
                  },
                  "scope": 4371,
                  "src": "12769:110:22",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4209,
                    "nodeType": "Block",
                    "src": "13092:67:22",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4207,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4205,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3534,
                            "src": "13109:21:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 4206,
                            "name": "beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3531,
                            "src": "13133:19:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "13109:43:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 4204,
                        "id": 4208,
                        "nodeType": "Return",
                        "src": "13102:50:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4200,
                    "nodeType": "StructuredDocumentation",
                    "src": "12885:141:22",
                    "text": " @notice Returns the timestamp at which the beacon period ends\n @return The timestamp at which the beacon period ends"
                  },
                  "id": 4210,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beaconPeriodEndAt",
                  "nameLocation": "13040:18:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4201,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13058:2:22"
                  },
                  "returnParameters": {
                    "id": 4204,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4203,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4210,
                        "src": "13084:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 4202,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "13084:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13083:8:22"
                  },
                  "scope": 4371,
                  "src": "13031:128:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4237,
                    "nodeType": "Block",
                    "src": "13419:182:22",
                    "statements": [
                      {
                        "assignments": [
                          4217
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4217,
                            "mutability": "mutable",
                            "name": "endAt",
                            "nameLocation": "13436:5:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4237,
                            "src": "13429:12:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 4216,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "13429:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4220,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 4218,
                            "name": "_beaconPeriodEndAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4210,
                            "src": "13444:18:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 4219,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13444:20:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13429:35:22"
                      },
                      {
                        "assignments": [
                          4222
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4222,
                            "mutability": "mutable",
                            "name": "time",
                            "nameLocation": "13481:4:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4237,
                            "src": "13474:11:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 4221,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "13474:6:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4225,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 4223,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4199,
                            "src": "13488:12:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 4224,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13488:14:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13474:28:22"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4228,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4226,
                            "name": "endAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4217,
                            "src": "13517:5:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 4227,
                            "name": "time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4222,
                            "src": "13526:4:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13517:13:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4232,
                        "nodeType": "IfStatement",
                        "src": "13513:52:22",
                        "trueBody": {
                          "id": 4231,
                          "nodeType": "Block",
                          "src": "13532:33:22",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 4229,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "13553:1:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 4215,
                              "id": 4230,
                              "nodeType": "Return",
                              "src": "13546:8:22"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4235,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4233,
                            "name": "endAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4217,
                            "src": "13582:5:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 4234,
                            "name": "time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4222,
                            "src": "13590:4:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13582:12:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 4215,
                        "id": 4236,
                        "nodeType": "Return",
                        "src": "13575:19:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4211,
                    "nodeType": "StructuredDocumentation",
                    "src": "13165:177:22",
                    "text": " @notice Returns the number of seconds remaining until the prize can be awarded.\n @return The number of seconds remaining until the prize can be awarded."
                  },
                  "id": 4238,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beaconPeriodRemainingSeconds",
                  "nameLocation": "13356:29:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4212,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13385:2:22"
                  },
                  "returnParameters": {
                    "id": 4215,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4214,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4238,
                        "src": "13411:6:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 4213,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "13411:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13410:8:22"
                  },
                  "scope": 4371,
                  "src": "13347:254:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4250,
                    "nodeType": "Block",
                    "src": "13807:62:22",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4248,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 4244,
                              "name": "_beaconPeriodEndAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4210,
                              "src": "13824:18:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 4245,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "13824:20:22",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 4246,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4199,
                              "src": "13848:12:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 4247,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "13848:14:22",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13824:38:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 4243,
                        "id": 4249,
                        "nodeType": "Return",
                        "src": "13817:45:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4239,
                    "nodeType": "StructuredDocumentation",
                    "src": "13607:135:22",
                    "text": " @notice Returns whether the beacon period is over.\n @return True if the beacon period is over, false otherwise"
                  },
                  "id": 4251,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isBeaconPeriodOver",
                  "nameLocation": "13756:19:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4240,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13775:2:22"
                  },
                  "returnParameters": {
                    "id": 4243,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4242,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4251,
                        "src": "13801:4:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4241,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "13801:4:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13800:6:22"
                  },
                  "scope": 4371,
                  "src": "13747:122:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4273,
                    "nodeType": "Block",
                    "src": "13988:198:22",
                    "statements": [
                      {
                        "assignments": [
                          4256
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4256,
                            "mutability": "mutable",
                            "name": "currentBlock",
                            "nameLocation": "14006:12:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4273,
                            "src": "13998:20:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4255,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "13998:7:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4259,
                        "initialValue": {
                          "expression": {
                            "id": 4257,
                            "name": "block",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -4,
                            "src": "14021:5:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_block",
                              "typeString": "block"
                            }
                          },
                          "id": 4258,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "number",
                          "nodeType": "MemberAccess",
                          "src": "14021:12:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13998:35:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 4269,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 4264,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 4261,
                                    "name": "rngRequest",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3521,
                                    "src": "14065:10:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                      "typeString": "struct DrawBeacon.RngRequest storage ref"
                                    }
                                  },
                                  "id": 4262,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lockBlock",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 3541,
                                  "src": "14065:20:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 4263,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "14089:1:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "14065:25:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 4268,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 4265,
                                  "name": "currentBlock",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4256,
                                  "src": "14094:12:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "expression": {
                                    "id": 4266,
                                    "name": "rngRequest",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3521,
                                    "src": "14109:10:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_RngRequest_$3544_storage",
                                      "typeString": "struct DrawBeacon.RngRequest storage ref"
                                    }
                                  },
                                  "id": 4267,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lockBlock",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 3541,
                                  "src": "14109:20:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "14094:35:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "14065:64:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d696e2d666c69676874",
                              "id": 4270,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14143:26:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77",
                                "typeString": "literal_string \"DrawBeacon/rng-in-flight\""
                              },
                              "value": "DrawBeacon/rng-in-flight"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77",
                                "typeString": "literal_string \"DrawBeacon/rng-in-flight\""
                              }
                            ],
                            "id": 4260,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14044:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4271,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14044:135:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4272,
                        "nodeType": "ExpressionStatement",
                        "src": "14044:135:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4252,
                    "nodeType": "StructuredDocumentation",
                    "src": "13875:60:22",
                    "text": " @notice Check to see draw is in progress."
                  },
                  "id": 4274,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireDrawNotStarted",
                  "nameLocation": "13949:22:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4253,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13971:2:22"
                  },
                  "returnParameters": {
                    "id": 4254,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13988:0:22"
                  },
                  "scope": 4371,
                  "src": "13940:246:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4325,
                    "nodeType": "Block",
                    "src": "14507:433:22",
                    "statements": [
                      {
                        "assignments": [
                          4286
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4286,
                            "mutability": "mutable",
                            "name": "_previousDrawBuffer",
                            "nameLocation": "14529:19:22",
                            "nodeType": "VariableDeclaration",
                            "scope": 4325,
                            "src": "14517:31:22",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            },
                            "typeName": {
                              "id": 4285,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4284,
                                "name": "IDrawBuffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8409,
                                "src": "14517:11:22"
                              },
                              "referencedDeclaration": 8409,
                              "src": "14517:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4288,
                        "initialValue": {
                          "id": 4287,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 3525,
                          "src": "14551:10:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14517:44:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4298,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4292,
                                    "name": "_newDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4278,
                                    "src": "14587:14:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 4291,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14579:7:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4290,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14579:7:22",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4293,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14579:23:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4296,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14614:1:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4295,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14606:7:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4294,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14606:7:22",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4297,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14606:10:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "14579:37:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f2d61646472657373",
                              "id": 4299,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14618:42:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9",
                                "typeString": "literal_string \"DrawBeacon/draw-history-not-zero-address\""
                              },
                              "value": "DrawBeacon/draw-history-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9",
                                "typeString": "literal_string \"DrawBeacon/draw-history-not-zero-address\""
                              }
                            ],
                            "id": 4289,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14571:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4300,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14571:90:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4301,
                        "nodeType": "ExpressionStatement",
                        "src": "14571:90:22"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4311,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4305,
                                    "name": "_newDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4278,
                                    "src": "14701:14:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 4304,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14693:7:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4303,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14693:7:22",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4306,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14693:23:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 4309,
                                    "name": "_previousDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4286,
                                    "src": "14728:19:22",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 4308,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14720:7:22",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4307,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14720:7:22",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4310,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14720:28:22",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "14693:55:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f72792d61646472657373",
                              "id": 4312,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14762:42:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf",
                                "typeString": "literal_string \"DrawBeacon/existing-draw-history-address\""
                              },
                              "value": "DrawBeacon/existing-draw-history-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf",
                                "typeString": "literal_string \"DrawBeacon/existing-draw-history-address\""
                              }
                            ],
                            "id": 4302,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14672:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4313,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14672:142:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4314,
                        "nodeType": "ExpressionStatement",
                        "src": "14672:142:22"
                      },
                      {
                        "expression": {
                          "id": 4317,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4315,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3525,
                            "src": "14825:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4316,
                            "name": "_newDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4278,
                            "src": "14838:14:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "14825:27:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 4318,
                        "nodeType": "ExpressionStatement",
                        "src": "14825:27:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4320,
                              "name": "_newDrawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4278,
                              "src": "14886:14:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 4319,
                            "name": "DrawBufferUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8182,
                            "src": "14868:17:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawBuffer_$8409_$returns$__$",
                              "typeString": "function (contract IDrawBuffer)"
                            }
                          },
                          "id": 4321,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14868:33:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4322,
                        "nodeType": "EmitStatement",
                        "src": "14863:38:22"
                      },
                      {
                        "expression": {
                          "id": 4323,
                          "name": "_newDrawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4278,
                          "src": "14919:14:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 4283,
                        "id": 4324,
                        "nodeType": "Return",
                        "src": "14912:21:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4275,
                    "nodeType": "StructuredDocumentation",
                    "src": "14192:227:22",
                    "text": " @notice Set global DrawBuffer variable.\n @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n @param _newDrawBuffer  DrawBuffer address\n @return DrawBuffer"
                  },
                  "id": 4326,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawBuffer",
                  "nameLocation": "14433:14:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4279,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4278,
                        "mutability": "mutable",
                        "name": "_newDrawBuffer",
                        "nameLocation": "14460:14:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4326,
                        "src": "14448:26:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 4277,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4276,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "14448:11:22"
                          },
                          "referencedDeclaration": 8409,
                          "src": "14448:11:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14447:28:22"
                  },
                  "returnParameters": {
                    "id": 4283,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4282,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4326,
                        "src": "14494:11:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 4281,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4280,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "14494:11:22"
                          },
                          "referencedDeclaration": 8409,
                          "src": "14494:11:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14493:13:22"
                  },
                  "scope": 4371,
                  "src": "14424:516:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4347,
                    "nodeType": "Block",
                    "src": "15180:212:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 4335,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4333,
                                "name": "_beaconPeriodSeconds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4329,
                                "src": "15198:20:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 4334,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "15221:1:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "15198:24:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d677265617465722d7468616e2d7a65726f",
                              "id": 4336,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15224:44:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              },
                              "value": "DrawBeacon/beacon-period-greater-than-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df",
                                "typeString": "literal_string \"DrawBeacon/beacon-period-greater-than-zero\""
                              }
                            ],
                            "id": 4332,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15190:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4337,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15190:79:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4338,
                        "nodeType": "ExpressionStatement",
                        "src": "15190:79:22"
                      },
                      {
                        "expression": {
                          "id": 4341,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4339,
                            "name": "beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3531,
                            "src": "15279:19:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4340,
                            "name": "_beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4329,
                            "src": "15301:20:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15279:42:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 4342,
                        "nodeType": "ExpressionStatement",
                        "src": "15279:42:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4344,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4329,
                              "src": "15364:20:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 4343,
                            "name": "BeaconPeriodSecondsUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8222,
                            "src": "15337:26:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 4345,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15337:48:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4346,
                        "nodeType": "EmitStatement",
                        "src": "15332:53:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4327,
                    "nodeType": "StructuredDocumentation",
                    "src": "14946:158:22",
                    "text": " @notice Sets the beacon period in seconds.\n @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero."
                  },
                  "id": 4348,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setBeaconPeriodSeconds",
                  "nameLocation": "15118:23:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4330,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4329,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "15149:20:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4348,
                        "src": "15142:27:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4328,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "15142:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15141:29:22"
                  },
                  "returnParameters": {
                    "id": 4331,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15180:0:22"
                  },
                  "scope": 4371,
                  "src": "15109:283:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4369,
                    "nodeType": "Block",
                    "src": "15684:155:22",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 4357,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4355,
                                "name": "_rngTimeout",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4351,
                                "src": "15702:11:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "3630",
                                "id": 4356,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "15716:2:22",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_60_by_1",
                                  "typeString": "int_const 60"
                                },
                                "value": "60"
                              },
                              "src": "15702:16:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656373",
                              "id": 4358,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15720:35:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe",
                                "typeString": "literal_string \"DrawBeacon/rng-timeout-gt-60-secs\""
                              },
                              "value": "DrawBeacon/rng-timeout-gt-60-secs"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe",
                                "typeString": "literal_string \"DrawBeacon/rng-timeout-gt-60-secs\""
                              }
                            ],
                            "id": 4354,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15694:7:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4359,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15694:62:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4360,
                        "nodeType": "ExpressionStatement",
                        "src": "15694:62:22"
                      },
                      {
                        "expression": {
                          "id": 4363,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4361,
                            "name": "rngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3528,
                            "src": "15766:10:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4362,
                            "name": "_rngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4351,
                            "src": "15779:11:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15766:24:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 4364,
                        "nodeType": "ExpressionStatement",
                        "src": "15766:24:22"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4366,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4351,
                              "src": "15820:11:22",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 4365,
                            "name": "RngTimeoutSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8217,
                            "src": "15806:13:22",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 4367,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15806:26:22",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4368,
                        "nodeType": "EmitStatement",
                        "src": "15801:31:22"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4349,
                    "nodeType": "StructuredDocumentation",
                    "src": "15398:228:22",
                    "text": " @notice Sets the RNG request timeout in seconds.  This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n @param _rngTimeout The RNG request timeout in seconds."
                  },
                  "id": 4370,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setRngTimeout",
                  "nameLocation": "15640:14:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4352,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4351,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "15662:11:22",
                        "nodeType": "VariableDeclaration",
                        "scope": 4370,
                        "src": "15655:18:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4350,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "15655:6:22",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15654:20:22"
                  },
                  "returnParameters": {
                    "id": 4353,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15684:0:22"
                  },
                  "scope": 4371,
                  "src": "15631:208:22",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 4372,
              "src": "1131:14710:22",
              "usedErrors": []
            }
          ],
          "src": "37:15805:22"
        },
        "id": 22
      },
      "@pooltogether/v4-core/contracts/DrawBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/DrawBuffer.sol",
          "exportedSymbols": {
            "DrawBuffer": [
              4742
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ]
          },
          "id": 4743,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4373,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:23"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 4374,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4743,
              "sourceUnit": 3104,
              "src": "61:72:23",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 4375,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4743,
              "sourceUnit": 8410,
              "src": "135:38:23",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 4376,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4743,
              "sourceUnit": 8333,
              "src": "174:38:23",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol",
              "file": "./libraries/DrawRingBufferLib.sol",
              "id": 4377,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4743,
              "sourceUnit": 9439,
              "src": "213:43:23",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 4379,
                    "name": "IDrawBuffer",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8409,
                    "src": "1207:11:23"
                  },
                  "id": 4380,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1207:11:23"
                },
                {
                  "baseName": {
                    "id": 4381,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "1220:10:23"
                  },
                  "id": 4382,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1220:10:23"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 4378,
                "nodeType": "StructuredDocumentation",
                "src": "258:925:23",
                "text": " @title  PoolTogether V4 DrawBuffer\n @author PoolTogether Inc Team\n @notice The DrawBuffer provides historical lookups of Draws via a circular ring buffer.\nHistorical Draws can be accessed on-chain using a drawId to calculate ring buffer storage slot.\nThe Draw settings can be created by manager/owner and existing Draws can only be updated the owner.\nOnce a starting Draw has been added to the ring buffer, all following draws must have a sequential Draw ID.\n@dev    A DrawBuffer store a limited number of Draws before beginning to overwrite (managed via the cardinality) previous Draws.\n@dev    All mainnet DrawBuffer(s) are updated directly from a DrawBeacon, but non-mainnet DrawBuffer(s) (Matic, Optimism, Arbitrum, etc...)\nwill receive a cross-chain message, duplicating the mainnet Draw configuration - enabling a prize savings liquidity network."
              },
              "fullyImplemented": true,
              "id": 4742,
              "linearizedBaseContracts": [
                4742,
                3103,
                3258,
                8409
              ],
              "name": "DrawBuffer",
              "nameLocation": "1193:10:23",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 4386,
                  "libraryName": {
                    "id": 4383,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9438,
                    "src": "1243:17:23"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1237:53:23",
                  "typeName": {
                    "id": 4385,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4384,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9308,
                      "src": "1265:24:23"
                    },
                    "referencedDeclaration": 9308,
                    "src": "1265:24:23",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 4387,
                    "nodeType": "StructuredDocumentation",
                    "src": "1296:41:23",
                    "text": "@notice Draws ring buffer max length."
                  },
                  "functionSelector": "8200d873",
                  "id": 4390,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1365:15:23",
                  "nodeType": "VariableDeclaration",
                  "scope": 4742,
                  "src": "1342:44:23",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 4388,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "1342:6:23",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 4389,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1383:3:23",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4391,
                    "nodeType": "StructuredDocumentation",
                    "src": "1393:36:23",
                    "text": "@notice Draws ring buffer array."
                  },
                  "id": 4396,
                  "mutability": "mutable",
                  "name": "drawRingBuffer",
                  "nameLocation": "1476:14:23",
                  "nodeType": "VariableDeclaration",
                  "scope": 4742,
                  "src": "1434:56:23",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                    "typeString": "struct IDrawBeacon.Draw[256]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 4393,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 4392,
                        "name": "IDrawBeacon.Draw",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 8176,
                        "src": "1434:16:23"
                      },
                      "referencedDeclaration": 8176,
                      "src": "1434:16:23",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                        "typeString": "struct IDrawBeacon.Draw"
                      }
                    },
                    "id": 4395,
                    "length": {
                      "id": 4394,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 4390,
                      "src": "1451:15:23",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1434:33:23",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage_ptr",
                      "typeString": "struct IDrawBeacon.Draw[256]"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4397,
                    "nodeType": "StructuredDocumentation",
                    "src": "1497:41:23",
                    "text": "@notice Holds ring buffer information"
                  },
                  "id": 4400,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "1577:14:23",
                  "nodeType": "VariableDeclaration",
                  "scope": 4742,
                  "src": "1543:48:23",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 4399,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4398,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9308,
                      "src": "1543:24:23"
                    },
                    "referencedDeclaration": 9308,
                    "src": "1543:24:23",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4417,
                    "nodeType": "Block",
                    "src": "1889:58:23",
                    "statements": [
                      {
                        "expression": {
                          "id": 4415,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 4411,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4400,
                              "src": "1899:14:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 4413,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9307,
                            "src": "1899:26:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4414,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4405,
                            "src": "1928:12:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "1899:41:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 4416,
                        "nodeType": "ExpressionStatement",
                        "src": "1899:41:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4401,
                    "nodeType": "StructuredDocumentation",
                    "src": "1642:178:23",
                    "text": " @notice Deploy DrawBuffer smart contract.\n @param _owner Address of the owner of the DrawBuffer.\n @param _cardinality Draw ring buffer cardinality."
                  },
                  "id": 4418,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 4408,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4403,
                          "src": "1881:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 4409,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 4407,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "1873:7:23"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1873:15:23"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4406,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4403,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1845:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4418,
                        "src": "1837:14:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4402,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1837:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4405,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1859:12:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4418,
                        "src": "1853:18:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4404,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1853:5:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1836:36:23"
                  },
                  "returnParameters": {
                    "id": 4410,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1889:0:23"
                  },
                  "scope": 4742,
                  "src": "1825:122:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8350
                  ],
                  "body": {
                    "id": 4428,
                    "nodeType": "Block",
                    "src": "2113:50:23",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 4425,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4400,
                            "src": "2130:14:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "id": 4426,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "cardinality",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9307,
                          "src": "2130:26:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 4424,
                        "id": 4427,
                        "nodeType": "Return",
                        "src": "2123:33:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4419,
                    "nodeType": "StructuredDocumentation",
                    "src": "2009:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 4429,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "2050:20:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4421,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2087:8:23"
                  },
                  "parameters": {
                    "id": 4420,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2070:2:23"
                  },
                  "returnParameters": {
                    "id": 4424,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4423,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4429,
                        "src": "2105:6:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4422,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2105:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2104:8:23"
                  },
                  "scope": 4742,
                  "src": "2041:122:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8359
                  ],
                  "body": {
                    "id": 4446,
                    "nodeType": "Block",
                    "src": "2290:82:23",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 4439,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4396,
                            "src": "2307:14:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 4444,
                          "indexExpression": {
                            "arguments": [
                              {
                                "id": 4441,
                                "name": "bufferMetadata",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4400,
                                "src": "2341:14:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                  "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                                }
                              },
                              {
                                "id": 4442,
                                "name": "drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4432,
                                "src": "2357:6:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                  "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 4440,
                              "name": "_drawIdToDrawIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4681,
                              "src": "2322:18:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 4443,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2322:42:23",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2307:58:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "functionReturnParameters": 4438,
                        "id": 4445,
                        "nodeType": "Return",
                        "src": "2300:65:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4430,
                    "nodeType": "StructuredDocumentation",
                    "src": "2169:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "83c34aaf",
                  "id": 4447,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraw",
                  "nameLocation": "2210:7:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4434,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2247:8:23"
                  },
                  "parameters": {
                    "id": 4433,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4432,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2225:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4447,
                        "src": "2218:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4431,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2218:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2217:15:23"
                  },
                  "returnParameters": {
                    "id": 4438,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4437,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4447,
                        "src": "2265:23:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 4436,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4435,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "2265:16:23"
                          },
                          "referencedDeclaration": 8176,
                          "src": "2265:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2264:25:23"
                  },
                  "scope": 4742,
                  "src": "2201:171:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8370
                  ],
                  "body": {
                    "id": 4508,
                    "nodeType": "Block",
                    "src": "2551:345:23",
                    "statements": [
                      {
                        "assignments": [
                          4464
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4464,
                            "mutability": "mutable",
                            "name": "draws",
                            "nameLocation": "2587:5:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4508,
                            "src": "2561:31:23",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4462,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 4461,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8176,
                                  "src": "2561:16:23"
                                },
                                "referencedDeclaration": 8176,
                                "src": "2561:16:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 4463,
                              "nodeType": "ArrayTypeName",
                              "src": "2561:18:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4472,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4469,
                                "name": "_drawIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4451,
                                "src": "2618:8:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                  "typeString": "uint32[] calldata"
                                }
                              },
                              "id": 4470,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2618:15:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4468,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "2595:22:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct IDrawBeacon.Draw memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4466,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 4465,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8176,
                                  "src": "2599:16:23"
                                },
                                "referencedDeclaration": 8176,
                                "src": "2599:16:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 4467,
                              "nodeType": "ArrayTypeName",
                              "src": "2599:18:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            }
                          },
                          "id": 4471,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2595:39:23",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2561:73:23"
                      },
                      {
                        "assignments": [
                          4477
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4477,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "2676:6:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4508,
                            "src": "2644:38:23",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 4476,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4475,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "2644:24:23"
                              },
                              "referencedDeclaration": 9308,
                              "src": "2644:24:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4479,
                        "initialValue": {
                          "id": 4478,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4400,
                          "src": "2685:14:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2644:55:23"
                      },
                      {
                        "body": {
                          "id": 4504,
                          "nodeType": "Block",
                          "src": "2768:99:23",
                          "statements": [
                            {
                              "expression": {
                                "id": 4502,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 4491,
                                    "name": "draws",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4464,
                                    "src": "2782:5:23",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                    }
                                  },
                                  "id": 4493,
                                  "indexExpression": {
                                    "id": 4492,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4481,
                                    "src": "2788:5:23",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "2782:12:23",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 4494,
                                    "name": "drawRingBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4396,
                                    "src": "2797:14:23",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                                      "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                    }
                                  },
                                  "id": 4501,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "id": 4496,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 4477,
                                        "src": "2831:6:23",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      {
                                        "baseExpression": {
                                          "id": 4497,
                                          "name": "_drawIds",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 4451,
                                          "src": "2839:8:23",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                            "typeString": "uint32[] calldata"
                                          }
                                        },
                                        "id": 4499,
                                        "indexExpression": {
                                          "id": 4498,
                                          "name": "index",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 4481,
                                          "src": "2848:5:23",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "2839:15:23",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        },
                                        {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      ],
                                      "id": 4495,
                                      "name": "_drawIdToDrawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 4681,
                                      "src": "2812:18:23",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                                        "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                                      }
                                    },
                                    "id": 4500,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "2812:43:23",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2797:59:23",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_storage",
                                    "typeString": "struct IDrawBeacon.Draw storage ref"
                                  }
                                },
                                "src": "2782:74:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 4503,
                              "nodeType": "ExpressionStatement",
                              "src": "2782:74:23"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4487,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4484,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4481,
                            "src": "2734:5:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 4485,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4451,
                              "src": "2742:8:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            "id": 4486,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2742:15:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2734:23:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4505,
                        "initializationExpression": {
                          "assignments": [
                            4481
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 4481,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "2723:5:23",
                              "nodeType": "VariableDeclaration",
                              "scope": 4505,
                              "src": "2715:13:23",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 4480,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2715:7:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 4483,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 4482,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2731:1:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2715:17:23"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 4489,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2759:7:23",
                            "subExpression": {
                              "id": 4488,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4481,
                              "src": "2759:5:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 4490,
                          "nodeType": "ExpressionStatement",
                          "src": "2759:7:23"
                        },
                        "nodeType": "ForStatement",
                        "src": "2710:157:23"
                      },
                      {
                        "expression": {
                          "id": 4506,
                          "name": "draws",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4464,
                          "src": "2884:5:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "functionReturnParameters": 4458,
                        "id": 4507,
                        "nodeType": "Return",
                        "src": "2877:12:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4448,
                    "nodeType": "StructuredDocumentation",
                    "src": "2378:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "d0bb78f3",
                  "id": 4509,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraws",
                  "nameLocation": "2419:8:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4453,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2494:8:23"
                  },
                  "parameters": {
                    "id": 4452,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4451,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2446:8:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4509,
                        "src": "2428:26:23",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 4449,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2428:6:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 4450,
                          "nodeType": "ArrayTypeName",
                          "src": "2428:8:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2427:28:23"
                  },
                  "returnParameters": {
                    "id": 4458,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4457,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4509,
                        "src": "2520:25:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 4455,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 4454,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8176,
                              "src": "2520:16:23"
                            },
                            "referencedDeclaration": 8176,
                            "src": "2520:16:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 4456,
                          "nodeType": "ArrayTypeName",
                          "src": "2520:18:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2519:27:23"
                  },
                  "scope": 4742,
                  "src": "2410:486:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8376
                  ],
                  "body": {
                    "id": 4550,
                    "nodeType": "Block",
                    "src": "2998:360:23",
                    "statements": [
                      {
                        "assignments": [
                          4520
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4520,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3040:6:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4550,
                            "src": "3008:38:23",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 4519,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4518,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "3008:24:23"
                              },
                              "referencedDeclaration": 9308,
                              "src": "3008:24:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4522,
                        "initialValue": {
                          "id": 4521,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4400,
                          "src": "3049:14:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3008:55:23"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 4526,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 4523,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4520,
                              "src": "3078:6:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 4524,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9303,
                            "src": "3078:17:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 4525,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3099:1:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3078:22:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4530,
                        "nodeType": "IfStatement",
                        "src": "3074:61:23",
                        "trueBody": {
                          "id": 4529,
                          "nodeType": "Block",
                          "src": "3102:33:23",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 4527,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3123:1:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 4515,
                              "id": 4528,
                              "nodeType": "Return",
                              "src": "3116:8:23"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          4532
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4532,
                            "mutability": "mutable",
                            "name": "bufferNextIndex",
                            "nameLocation": "3152:15:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4550,
                            "src": "3145:22:23",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 4531,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3145:6:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4535,
                        "initialValue": {
                          "expression": {
                            "id": 4533,
                            "name": "buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4520,
                            "src": "3170:6:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "id": 4534,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "nextIndex",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9305,
                          "src": "3170:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3145:41:23"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4541,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 4536,
                                "name": "drawRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4396,
                                "src": "3201:14:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                                  "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                }
                              },
                              "id": 4538,
                              "indexExpression": {
                                "id": 4537,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4532,
                                "src": "3216:15:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "3201:31:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref"
                              }
                            },
                            "id": 4539,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8171,
                            "src": "3201:41:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 4540,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3246:1:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3201:46:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 4548,
                          "nodeType": "Block",
                          "src": "3305:47:23",
                          "statements": [
                            {
                              "expression": {
                                "id": 4546,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4532,
                                "src": "3326:15:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 4515,
                              "id": 4547,
                              "nodeType": "Return",
                              "src": "3319:22:23"
                            }
                          ]
                        },
                        "id": 4549,
                        "nodeType": "IfStatement",
                        "src": "3197:155:23",
                        "trueBody": {
                          "id": 4545,
                          "nodeType": "Block",
                          "src": "3249:50:23",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 4542,
                                  "name": "buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4520,
                                  "src": "3270:6:23",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 4543,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9307,
                                "src": "3270:18:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 4515,
                              "id": 4544,
                              "nodeType": "Return",
                              "src": "3263:25:23"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4510,
                    "nodeType": "StructuredDocumentation",
                    "src": "2902:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "c4df5fed",
                  "id": 4551,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCount",
                  "nameLocation": "2943:12:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4512,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2972:8:23"
                  },
                  "parameters": {
                    "id": 4511,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2955:2:23"
                  },
                  "returnParameters": {
                    "id": 4515,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4514,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4551,
                        "src": "2990:6:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4513,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2990:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2989:8:23"
                  },
                  "scope": 4742,
                  "src": "2934:424:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8383
                  ],
                  "body": {
                    "id": 4563,
                    "nodeType": "Block",
                    "src": "3478:54:23",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4560,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4400,
                              "src": "3510:14:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            ],
                            "id": 4559,
                            "name": "_getNewestDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4700,
                            "src": "3495:14:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$9308_memory_ptr_$returns$_t_struct$_Draw_$8176_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory) view returns (struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 4561,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3495:30:23",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "functionReturnParameters": 4558,
                        "id": 4562,
                        "nodeType": "Return",
                        "src": "3488:37:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4552,
                    "nodeType": "StructuredDocumentation",
                    "src": "3364:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "0edb1d2e",
                  "id": 4564,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDraw",
                  "nameLocation": "3405:13:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4554,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3435:8:23"
                  },
                  "parameters": {
                    "id": 4553,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3418:2:23"
                  },
                  "returnParameters": {
                    "id": 4558,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4557,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4564,
                        "src": "3453:23:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 4556,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4555,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "3453:16:23"
                          },
                          "referencedDeclaration": 8176,
                          "src": "3453:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3452:25:23"
                  },
                  "scope": 4742,
                  "src": "3396:136:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8390
                  ],
                  "body": {
                    "id": 4603,
                    "nodeType": "Block",
                    "src": "3652:381:23",
                    "statements": [
                      {
                        "assignments": [
                          4576
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4576,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3769:6:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4603,
                            "src": "3737:38:23",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 4575,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4574,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "3737:24:23"
                              },
                              "referencedDeclaration": 9308,
                              "src": "3737:24:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4578,
                        "initialValue": {
                          "id": 4577,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4400,
                          "src": "3778:14:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3737:55:23"
                      },
                      {
                        "assignments": [
                          4583
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4583,
                            "mutability": "mutable",
                            "name": "draw",
                            "nameLocation": "3826:4:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4603,
                            "src": "3802:28:23",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            },
                            "typeName": {
                              "id": 4582,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4581,
                                "name": "IDrawBeacon.Draw",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8176,
                                "src": "3802:16:23"
                              },
                              "referencedDeclaration": 8176,
                              "src": "3802:16:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4588,
                        "initialValue": {
                          "baseExpression": {
                            "id": 4584,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4396,
                            "src": "3833:14:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 4587,
                          "indexExpression": {
                            "expression": {
                              "id": 4585,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4576,
                              "src": "3848:6:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 4586,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "nextIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9305,
                            "src": "3848:16:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3833:32:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3802:63:23"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 4592,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 4589,
                              "name": "draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4583,
                              "src": "3880:4:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            "id": 4590,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8171,
                            "src": "3880:14:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 4591,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3898:1:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3880:19:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4600,
                        "nodeType": "IfStatement",
                        "src": "3876:129:23",
                        "trueBody": {
                          "id": 4599,
                          "nodeType": "Block",
                          "src": "3901:104:23",
                          "statements": [
                            {
                              "expression": {
                                "id": 4597,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 4593,
                                  "name": "draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4583,
                                  "src": "3970:4:23",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 4594,
                                    "name": "drawRingBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4396,
                                    "src": "3977:14:23",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                                      "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                    }
                                  },
                                  "id": 4596,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 4595,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3992:1:23",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3977:17:23",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_storage",
                                    "typeString": "struct IDrawBeacon.Draw storage ref"
                                  }
                                },
                                "src": "3970:24:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 4598,
                              "nodeType": "ExpressionStatement",
                              "src": "3970:24:23"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 4601,
                          "name": "draw",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4583,
                          "src": "4022:4:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "functionReturnParameters": 4571,
                        "id": 4602,
                        "nodeType": "Return",
                        "src": "4015:11:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4565,
                    "nodeType": "StructuredDocumentation",
                    "src": "3538:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "648b1b4f",
                  "id": 4604,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDraw",
                  "nameLocation": "3579:13:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4567,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3609:8:23"
                  },
                  "parameters": {
                    "id": 4566,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3592:2:23"
                  },
                  "returnParameters": {
                    "id": 4571,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4570,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4604,
                        "src": "3627:23:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 4569,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4568,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "3627:16:23"
                          },
                          "referencedDeclaration": 8176,
                          "src": "3627:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3626:25:23"
                  },
                  "scope": 4742,
                  "src": "3570:463:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8399
                  ],
                  "body": {
                    "id": 4620,
                    "nodeType": "Block",
                    "src": "4210:40:23",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4617,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4608,
                              "src": "4237:5:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 4616,
                            "name": "_pushDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4741,
                            "src": "4227:9:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Draw_$8176_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) returns (uint32)"
                            }
                          },
                          "id": 4618,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4227:16:23",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 4615,
                        "id": 4619,
                        "nodeType": "Return",
                        "src": "4220:23:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4605,
                    "nodeType": "StructuredDocumentation",
                    "src": "4039:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "089eb925",
                  "id": 4621,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4612,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4611,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "4162:18:23"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4162:18:23"
                    }
                  ],
                  "name": "pushDraw",
                  "nameLocation": "4080:8:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4610,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4145:8:23"
                  },
                  "parameters": {
                    "id": 4609,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4608,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "4113:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4621,
                        "src": "4089:29:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 4607,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4606,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "4089:16:23"
                          },
                          "referencedDeclaration": 8176,
                          "src": "4089:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4088:31:23"
                  },
                  "returnParameters": {
                    "id": 4615,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4614,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4621,
                        "src": "4198:6:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4613,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4198:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4197:8:23"
                  },
                  "scope": 4742,
                  "src": "4071:179:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8408
                  ],
                  "body": {
                    "id": 4663,
                    "nodeType": "Block",
                    "src": "4384:252:23",
                    "statements": [
                      {
                        "assignments": [
                          4637
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4637,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4426:6:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4663,
                            "src": "4394:38:23",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 4636,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4635,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "4394:24:23"
                              },
                              "referencedDeclaration": 9308,
                              "src": "4394:24:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4639,
                        "initialValue": {
                          "id": 4638,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4400,
                          "src": "4435:14:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4394:55:23"
                      },
                      {
                        "assignments": [
                          4641
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4641,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "4466:5:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4663,
                            "src": "4459:12:23",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 4640,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4459:6:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4647,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4644,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4625,
                                "src": "4490:8:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 4645,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "4490:15:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 4642,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4637,
                              "src": "4474:6:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 4643,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9437,
                            "src": "4474:15:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 4646,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4474:32:23",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4459:47:23"
                      },
                      {
                        "expression": {
                          "id": 4652,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 4648,
                              "name": "drawRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4396,
                              "src": "4516:14:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                              }
                            },
                            "id": 4650,
                            "indexExpression": {
                              "id": 4649,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4641,
                              "src": "4531:5:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "4516:21:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4651,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4625,
                            "src": "4540:8:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "src": "4516:32:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "id": 4653,
                        "nodeType": "ExpressionStatement",
                        "src": "4516:32:23"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4655,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4625,
                                "src": "4571:8:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 4656,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "4571:15:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 4657,
                              "name": "_newDraw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4625,
                              "src": "4588:8:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 4654,
                            "name": "DrawSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8344,
                            "src": "4563:7:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$8176_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 4658,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4563:34:23",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4659,
                        "nodeType": "EmitStatement",
                        "src": "4558:39:23"
                      },
                      {
                        "expression": {
                          "expression": {
                            "id": 4660,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4625,
                            "src": "4614:8:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "id": 4661,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 8169,
                          "src": "4614:15:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 4632,
                        "id": 4662,
                        "nodeType": "Return",
                        "src": "4607:22:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4622,
                    "nodeType": "StructuredDocumentation",
                    "src": "4256:27:23",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "d7bcb86b",
                  "id": 4664,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4629,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4628,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "4357:9:23"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4357:9:23"
                    }
                  ],
                  "name": "setDraw",
                  "nameLocation": "4297:7:23",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4627,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4348:8:23"
                  },
                  "parameters": {
                    "id": 4626,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4625,
                        "mutability": "mutable",
                        "name": "_newDraw",
                        "nameLocation": "4329:8:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4664,
                        "src": "4305:32:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 4624,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4623,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "4305:16:23"
                          },
                          "referencedDeclaration": 8176,
                          "src": "4305:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4304:34:23"
                  },
                  "returnParameters": {
                    "id": 4632,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4631,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4664,
                        "src": "4376:6:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4630,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4376:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4375:8:23"
                  },
                  "scope": 4742,
                  "src": "4288:348:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4680,
                    "nodeType": "Block",
                    "src": "5104:49:23",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4677,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4670,
                              "src": "5138:7:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 4675,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4668,
                              "src": "5121:7:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 4676,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9437,
                            "src": "5121:16:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 4678,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5121:25:23",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 4674,
                        "id": 4679,
                        "nodeType": "Return",
                        "src": "5114:32:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4665,
                    "nodeType": "StructuredDocumentation",
                    "src": "4698:257:23",
                    "text": " @notice Convert a Draw.drawId to a Draws ring buffer index pointer.\n @dev    The getNewestDraw.drawId() is used to calculate a Draws ID delta position.\n @param _drawId Draw.drawId\n @return Draws ring buffer index pointer"
                  },
                  "id": 4681,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_drawIdToDrawIndex",
                  "nameLocation": "4969:18:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4671,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4668,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "5020:7:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4681,
                        "src": "4988:39:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 4667,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4666,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9308,
                            "src": "4988:24:23"
                          },
                          "referencedDeclaration": 9308,
                          "src": "4988:24:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4670,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "5036:7:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4681,
                        "src": "5029:14:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4669,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5029:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4987:57:23"
                  },
                  "returnParameters": {
                    "id": 4674,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4673,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4681,
                        "src": "5092:6:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4672,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5092:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5091:8:23"
                  },
                  "scope": 4742,
                  "src": "4960:193:23",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4699,
                    "nodeType": "Block",
                    "src": "5525:76:23",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 4691,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4396,
                            "src": "5542:14:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 4697,
                          "indexExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 4694,
                                  "name": "_buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4685,
                                  "src": "5574:7:23",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 4695,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "lastDrawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9303,
                                "src": "5574:18:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 4692,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4685,
                                "src": "5557:7:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 4693,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "getIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9437,
                              "src": "5557:16:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 4696,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5557:36:23",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5542:52:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "functionReturnParameters": 4690,
                        "id": 4698,
                        "nodeType": "Return",
                        "src": "5535:59:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4682,
                    "nodeType": "StructuredDocumentation",
                    "src": "5159:220:23",
                    "text": " @notice Read newest Draw from the draws ring buffer.\n @dev    Uses the lastDrawId to calculate the most recently added Draw.\n @param _buffer Draw ring buffer\n @return IDrawBeacon.Draw"
                  },
                  "id": 4700,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNewestDraw",
                  "nameLocation": "5393:14:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4686,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4685,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "5440:7:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4700,
                        "src": "5408:39:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 4684,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4683,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9308,
                            "src": "5408:24:23"
                          },
                          "referencedDeclaration": 9308,
                          "src": "5408:24:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5407:41:23"
                  },
                  "returnParameters": {
                    "id": 4690,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4689,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4700,
                        "src": "5496:23:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 4688,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4687,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "5496:16:23"
                          },
                          "referencedDeclaration": 8176,
                          "src": "5496:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5495:25:23"
                  },
                  "scope": 4742,
                  "src": "5384:217:23",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4740,
                    "nodeType": "Block",
                    "src": "5904:266:23",
                    "statements": [
                      {
                        "assignments": [
                          4713
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4713,
                            "mutability": "mutable",
                            "name": "_buffer",
                            "nameLocation": "5946:7:23",
                            "nodeType": "VariableDeclaration",
                            "scope": 4740,
                            "src": "5914:39:23",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 4712,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4711,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "5914:24:23"
                              },
                              "referencedDeclaration": 9308,
                              "src": "5914:24:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4715,
                        "initialValue": {
                          "id": 4714,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4400,
                          "src": "5956:14:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5914:56:23"
                      },
                      {
                        "expression": {
                          "id": 4721,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 4716,
                              "name": "drawRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4396,
                              "src": "5980:14:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$256_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                              }
                            },
                            "id": 4719,
                            "indexExpression": {
                              "expression": {
                                "id": 4717,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4713,
                                "src": "5995:7:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 4718,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9305,
                              "src": "5995:17:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "5980:33:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4720,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4704,
                            "src": "6016:8:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "src": "5980:44:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "id": 4722,
                        "nodeType": "ExpressionStatement",
                        "src": "5980:44:23"
                      },
                      {
                        "expression": {
                          "id": 4729,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4723,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4400,
                            "src": "6034:14:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 4726,
                                  "name": "_newDraw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4704,
                                  "src": "6064:8:23",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 4727,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8169,
                                "src": "6064:15:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 4724,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4713,
                                "src": "6051:7:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 4725,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "push",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9374,
                              "src": "6051:12:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$9308_memory_ptr_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                              }
                            },
                            "id": 4728,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6051:29:23",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "src": "6034:46:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "id": 4730,
                        "nodeType": "ExpressionStatement",
                        "src": "6034:46:23"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4732,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4704,
                                "src": "6104:8:23",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 4733,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "6104:15:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 4734,
                              "name": "_newDraw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4704,
                              "src": "6121:8:23",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 4731,
                            "name": "DrawSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8344,
                            "src": "6096:7:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$8176_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 4735,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6096:34:23",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4736,
                        "nodeType": "EmitStatement",
                        "src": "6091:39:23"
                      },
                      {
                        "expression": {
                          "expression": {
                            "id": 4737,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4704,
                            "src": "6148:8:23",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "id": 4738,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 8169,
                          "src": "6148:15:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 4708,
                        "id": 4739,
                        "nodeType": "Return",
                        "src": "6141:22:23"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4701,
                    "nodeType": "StructuredDocumentation",
                    "src": "5607:213:23",
                    "text": " @notice Push Draw onto draws ring buffer history.\n @dev    Push new draw onto draws list via authorized manager or owner.\n @param _newDraw IDrawBeacon.Draw\n @return Draw.drawId"
                  },
                  "id": 4741,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_pushDraw",
                  "nameLocation": "5834:9:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4705,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4704,
                        "mutability": "mutable",
                        "name": "_newDraw",
                        "nameLocation": "5868:8:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 4741,
                        "src": "5844:32:23",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 4703,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4702,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "5844:16:23"
                          },
                          "referencedDeclaration": 8176,
                          "src": "5844:16:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5843:34:23"
                  },
                  "returnParameters": {
                    "id": 4708,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4707,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4741,
                        "src": "5896:6:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 4706,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5896:6:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5895:8:23"
                  },
                  "scope": 4742,
                  "src": "5825:345:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 4743,
              "src": "1184:4988:23",
              "usedErrors": []
            }
          ],
          "src": "37:6136:23"
        },
        "id": 23
      },
      "@pooltogether/v4-core/contracts/DrawCalculator.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/DrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawCalculator": [
              5772
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 5773,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4744,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:24"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "./interfaces/IDrawCalculator.sol",
              "id": 4745,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5773,
              "sourceUnit": 8483,
              "src": "61:42:24",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "./interfaces/ITicket.sol",
              "id": 4746,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5773,
              "sourceUnit": 9298,
              "src": "104:34:24",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 4747,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5773,
              "sourceUnit": 8410,
              "src": "139:38:24",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "./interfaces/IPrizeDistributionBuffer.sol",
              "id": 4748,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5773,
              "sourceUnit": 8588,
              "src": "178:51:24",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 4749,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5773,
              "sourceUnit": 8333,
              "src": "230:38:24",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 4751,
                    "name": "IDrawCalculator",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8482,
                    "src": "903:15:24"
                  },
                  "id": 4752,
                  "nodeType": "InheritanceSpecifier",
                  "src": "903:15:24"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 4750,
                "nodeType": "StructuredDocumentation",
                "src": "270:605:24",
                "text": " @title  PoolTogether V4 DrawCalculator\n @author PoolTogether Inc Team\n @notice The DrawCalculator calculates a user's prize by matching a winning random number against\ntheir picks. A users picks are generated deterministically based on their address and balance\nof tickets held. Prize payouts are divided into multiple tiers: grand prize, second place, etc...\nA user with a higher average weighted balance (during each draw period) will be given a large number of\npicks to choose from, and thus a higher chance to match the winning numbers."
              },
              "fullyImplemented": true,
              "id": 5772,
              "linearizedBaseContracts": [
                5772,
                8482
              ],
              "name": "DrawCalculator",
              "nameLocation": "885:14:24",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 4753,
                    "nodeType": "StructuredDocumentation",
                    "src": "926:30:24",
                    "text": "@notice DrawBuffer address"
                  },
                  "functionSelector": "ce343bb6",
                  "id": 4756,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "990:10:24",
                  "nodeType": "VariableDeclaration",
                  "scope": 5772,
                  "src": "961:39:24",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 4755,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4754,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8409,
                      "src": "961:11:24"
                    },
                    "referencedDeclaration": 8409,
                    "src": "961:11:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4757,
                    "nodeType": "StructuredDocumentation",
                    "src": "1007:49:24",
                    "text": "@notice Ticket associated with DrawCalculator"
                  },
                  "functionSelector": "6cc25db7",
                  "id": 4760,
                  "mutability": "immutable",
                  "name": "ticket",
                  "nameLocation": "1086:6:24",
                  "nodeType": "VariableDeclaration",
                  "scope": 5772,
                  "src": "1061:31:24",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$9297",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 4759,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4758,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9297,
                      "src": "1061:7:24"
                    },
                    "referencedDeclaration": 9297,
                    "src": "1061:7:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$9297",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4761,
                    "nodeType": "StructuredDocumentation",
                    "src": "1099:72:24",
                    "text": "@notice The stored history of draw settings.  Stored as ring buffer."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 4764,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1218:23:24",
                  "nodeType": "VariableDeclaration",
                  "scope": 5772,
                  "src": "1176:65:24",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 4763,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4762,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8587,
                      "src": "1176:24:24"
                    },
                    "referencedDeclaration": 8587,
                    "src": "1176:24:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 4765,
                    "nodeType": "StructuredDocumentation",
                    "src": "1248:34:24",
                    "text": "@notice The tiers array length"
                  },
                  "functionSelector": "f8d0ca4c",
                  "id": 4768,
                  "mutability": "constant",
                  "name": "TIERS_LENGTH",
                  "nameLocation": "1309:12:24",
                  "nodeType": "VariableDeclaration",
                  "scope": 5772,
                  "src": "1287:39:24",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 4766,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "1287:5:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "value": {
                    "hexValue": "3136",
                    "id": 4767,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1324:2:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16_by_1",
                      "typeString": "int_const 16"
                    },
                    "value": "16"
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4838,
                    "nodeType": "Block",
                    "src": "1777:445:24",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4790,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4784,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4772,
                                    "src": "1803:7:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 4783,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1795:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4782,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1795:7:24",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4785,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1795:16:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4788,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1823:1:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4787,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1815:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4786,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1815:7:24",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4789,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1815:10:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1795:30:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                              "id": 4791,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1827:26:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017",
                                "typeString": "literal_string \"DrawCalc/ticket-not-zero\""
                              },
                              "value": "DrawCalc/ticket-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017",
                                "typeString": "literal_string \"DrawCalc/ticket-not-zero\""
                              }
                            ],
                            "id": 4781,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1787:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4792,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1787:67:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4793,
                        "nodeType": "ExpressionStatement",
                        "src": "1787:67:24"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4803,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4797,
                                    "name": "_prizeDistributionBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4778,
                                    "src": "1880:24:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  ],
                                  "id": 4796,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1872:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4795,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1872:7:24",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4798,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1872:33:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4801,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1917:1:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4800,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1909:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4799,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1909:7:24",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4802,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1909:10:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1872:47:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                              "id": 4804,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1921:23:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42",
                                "typeString": "literal_string \"DrawCalc/pdb-not-zero\""
                              },
                              "value": "DrawCalc/pdb-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42",
                                "typeString": "literal_string \"DrawCalc/pdb-not-zero\""
                              }
                            ],
                            "id": 4794,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1864:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4805,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1864:81:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4806,
                        "nodeType": "ExpressionStatement",
                        "src": "1864:81:24"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4816,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4810,
                                    "name": "_drawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4775,
                                    "src": "1971:11:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 4809,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1963:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4808,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1963:7:24",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4811,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1963:20:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4814,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1995:1:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 4813,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1987:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4812,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1987:7:24",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4815,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1987:10:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1963:34:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                              "id": 4817,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1999:22:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f",
                                "typeString": "literal_string \"DrawCalc/dh-not-zero\""
                              },
                              "value": "DrawCalc/dh-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f",
                                "typeString": "literal_string \"DrawCalc/dh-not-zero\""
                              }
                            ],
                            "id": 4807,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1955:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4818,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1955:67:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4819,
                        "nodeType": "ExpressionStatement",
                        "src": "1955:67:24"
                      },
                      {
                        "expression": {
                          "id": 4822,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4820,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4760,
                            "src": "2033:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4821,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4772,
                            "src": "2042:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "2033:16:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 4823,
                        "nodeType": "ExpressionStatement",
                        "src": "2033:16:24"
                      },
                      {
                        "expression": {
                          "id": 4826,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4824,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4756,
                            "src": "2059:10:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4825,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4775,
                            "src": "2072:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "2059:24:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 4827,
                        "nodeType": "ExpressionStatement",
                        "src": "2059:24:24"
                      },
                      {
                        "expression": {
                          "id": 4830,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4828,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4764,
                            "src": "2093:23:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4829,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4778,
                            "src": "2119:24:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "2093:50:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 4831,
                        "nodeType": "ExpressionStatement",
                        "src": "2093:50:24"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4833,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4772,
                              "src": "2168:7:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 4834,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4775,
                              "src": "2177:11:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 4835,
                              "name": "_prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4778,
                              "src": "2190:24:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            ],
                            "id": 4832,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8433,
                            "src": "2159:8:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$9297_$_t_contract$_IDrawBuffer_$8409_$_t_contract$_IPrizeDistributionBuffer_$8587_$returns$__$",
                              "typeString": "function (contract ITicket,contract IDrawBuffer,contract IPrizeDistributionBuffer)"
                            }
                          },
                          "id": 4836,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2159:56:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4837,
                        "nodeType": "EmitStatement",
                        "src": "2154:61:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4769,
                    "nodeType": "StructuredDocumentation",
                    "src": "1382:255:24",
                    "text": "@notice Constructor for DrawCalculator\n @param _ticket Ticket associated with this DrawCalculator\n @param _drawBuffer The address of the draw buffer to push draws to\n @param _prizeDistributionBuffer PrizeDistributionBuffer address"
                  },
                  "id": 4839,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4779,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4772,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "1671:7:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4839,
                        "src": "1663:15:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 4771,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4770,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "1663:7:24"
                          },
                          "referencedDeclaration": 9297,
                          "src": "1663:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4775,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "1700:11:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4839,
                        "src": "1688:23:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 4774,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4773,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "1688:11:24"
                          },
                          "referencedDeclaration": 8409,
                          "src": "1688:11:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4778,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "1746:24:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4839,
                        "src": "1721:49:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 4777,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4776,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "1721:24:24"
                          },
                          "referencedDeclaration": 8587,
                          "src": "1721:24:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1653:123:24"
                  },
                  "returnParameters": {
                    "id": 4780,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1777:0:24"
                  },
                  "scope": 5772,
                  "src": "1642:580:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8455
                  ],
                  "body": {
                    "id": 4931,
                    "nodeType": "Block",
                    "src": "2513:1108:24",
                    "statements": [
                      {
                        "assignments": [
                          4861
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4861,
                            "mutability": "mutable",
                            "name": "pickIndices",
                            "nameLocation": "2541:11:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 4931,
                            "src": "2523:29:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint64[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 4858,
                                  "name": "uint64",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2523:6:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "id": 4859,
                                "nodeType": "ArrayTypeName",
                                "src": "2523:8:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                  "typeString": "uint64[]"
                                }
                              },
                              "id": 4860,
                              "nodeType": "ArrayTypeName",
                              "src": "2523:10:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint64[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4871,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4864,
                              "name": "_pickIndicesForDraws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4847,
                              "src": "2566:20:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            },
                            {
                              "components": [
                                {
                                  "baseExpression": {
                                    "baseExpression": {
                                      "id": 4866,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2589:6:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      },
                                      "typeName": {
                                        "id": 4865,
                                        "name": "uint64",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2589:6:24",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 4867,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "2589:9:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_array$_t_uint64_$dyn_memory_ptr_$",
                                      "typeString": "type(uint64[] memory)"
                                    }
                                  },
                                  "id": 4868,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2589:11:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                    "typeString": "type(uint64[] memory[] memory)"
                                  }
                                }
                              ],
                              "id": 4869,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "2588:13:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                "typeString": "type(uint64[] memory[] memory)"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              },
                              {
                                "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                "typeString": "type(uint64[] memory[] memory)"
                              }
                            ],
                            "expression": {
                              "id": 4862,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "2555:3:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 4863,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "decode",
                            "nodeType": "MemberAccess",
                            "src": "2555:10:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                              "typeString": "function () pure"
                            }
                          },
                          "id": 4870,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2555:47:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                            "typeString": "uint64[] memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2523:79:24"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4877,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 4873,
                                  "name": "pickIndices",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4861,
                                  "src": "2620:11:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                    "typeString": "uint64[] memory[] memory"
                                  }
                                },
                                "id": 4874,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2620:18:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 4875,
                                  "name": "_drawIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4845,
                                  "src": "2642:8:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                    "typeString": "uint32[] calldata"
                                  }
                                },
                                "id": 4876,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2642:15:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2620:37:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c656e677468",
                              "id": 4878,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2659:38:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f",
                                "typeString": "literal_string \"DrawCalc/invalid-pick-indices-length\""
                              },
                              "value": "DrawCalc/invalid-pick-indices-length"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f",
                                "typeString": "literal_string \"DrawCalc/invalid-pick-indices-length\""
                              }
                            ],
                            "id": 4872,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2612:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4879,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2612:86:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4880,
                        "nodeType": "ExpressionStatement",
                        "src": "2612:86:24"
                      },
                      {
                        "assignments": [
                          4886
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4886,
                            "mutability": "mutable",
                            "name": "draws",
                            "nameLocation": "2810:5:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 4931,
                            "src": "2784:31:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4884,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 4883,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8176,
                                  "src": "2784:16:24"
                                },
                                "referencedDeclaration": 8176,
                                "src": "2784:16:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 4885,
                              "nodeType": "ArrayTypeName",
                              "src": "2784:18:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4891,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4889,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4845,
                              "src": "2838:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 4887,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4756,
                              "src": "2818:10:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 4888,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8370,
                            "src": "2818:19:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 4890,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2818:29:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2784:63:24"
                      },
                      {
                        "assignments": [
                          4897
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4897,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "2995:19:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 4931,
                            "src": "2943:71:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4895,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 4894,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8506,
                                  "src": "2943:42:24"
                                },
                                "referencedDeclaration": 8506,
                                "src": "2943:42:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                                }
                              },
                              "id": 4896,
                              "nodeType": "ArrayTypeName",
                              "src": "2943:44:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4902,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4900,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4845,
                              "src": "3076:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 4898,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4764,
                              "src": "3017:23:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 4899,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8549,
                            "src": "3017:58:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 4901,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3017:68:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2943:142:24"
                      },
                      {
                        "assignments": [
                          4907
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4907,
                            "mutability": "mutable",
                            "name": "userBalances",
                            "nameLocation": "3211:12:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 4931,
                            "src": "3194:29:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4905,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3194:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4906,
                              "nodeType": "ArrayTypeName",
                              "src": "3194:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4913,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4909,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4842,
                              "src": "3251:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4910,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4886,
                              "src": "3258:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 4911,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4897,
                              "src": "3265:19:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 4908,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5316,
                            "src": "3226:24:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 4912,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3226:59:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3194:91:24"
                      },
                      {
                        "assignments": [
                          4915
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4915,
                            "mutability": "mutable",
                            "name": "_userRandomNumber",
                            "nameLocation": "3349:17:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 4931,
                            "src": "3341:25:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 4914,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3341:7:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4922,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4919,
                                  "name": "_user",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4842,
                                  "src": "3396:5:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 4917,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "3379:3:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 4918,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "3379:16:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 4920,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3379:23:24",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 4916,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "3369:9:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 4921,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3369:34:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3341:62:24"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4924,
                              "name": "userBalances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4907,
                              "src": "3464:12:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            {
                              "id": 4925,
                              "name": "_userRandomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4915,
                              "src": "3494:17:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 4926,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4886,
                              "src": "3529:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 4927,
                              "name": "pickIndices",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4861,
                              "src": "3552:11:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                "typeString": "uint64[] memory[] memory"
                              }
                            },
                            {
                              "id": 4928,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4897,
                              "src": "3581:19:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                "typeString": "uint64[] memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 4923,
                            "name": "_calculatePrizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5130,
                            "src": "3421:25:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes32_$_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256[] memory,bytes32,struct IDrawBeacon.Draw memory[] memory,uint64[] memory[] memory,struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory) view returns (uint256[] memory,bytes memory)"
                            }
                          },
                          "id": 4929,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3421:193:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "functionReturnParameters": 4855,
                        "id": 4930,
                        "nodeType": "Return",
                        "src": "3414:200:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4840,
                    "nodeType": "StructuredDocumentation",
                    "src": "2284:31:24",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "aaca392e",
                  "id": 4932,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "2329:9:24",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4849,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2463:8:24"
                  },
                  "parameters": {
                    "id": 4848,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4842,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2356:5:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4932,
                        "src": "2348:13:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4841,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2348:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4845,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2389:8:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4932,
                        "src": "2371:26:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 4843,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2371:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 4844,
                          "nodeType": "ArrayTypeName",
                          "src": "2371:8:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4847,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "2422:20:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4932,
                        "src": "2407:35:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 4846,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2407:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2338:110:24"
                  },
                  "returnParameters": {
                    "id": 4855,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4852,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4932,
                        "src": "2481:16:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 4850,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2481:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 4851,
                          "nodeType": "ArrayTypeName",
                          "src": "2481:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4854,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4932,
                        "src": "2499:12:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 4853,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2499:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2480:32:24"
                  },
                  "scope": 5772,
                  "src": "2320:1301:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8462
                  ],
                  "body": {
                    "id": 4942,
                    "nodeType": "Block",
                    "src": "3733:34:24",
                    "statements": [
                      {
                        "expression": {
                          "id": 4940,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4756,
                          "src": "3750:10:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 4939,
                        "id": 4941,
                        "nodeType": "Return",
                        "src": "3743:17:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4933,
                    "nodeType": "StructuredDocumentation",
                    "src": "3627:31:24",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "4019f2d6",
                  "id": 4943,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "3672:13:24",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4935,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3702:8:24"
                  },
                  "parameters": {
                    "id": 4934,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3685:2:24"
                  },
                  "returnParameters": {
                    "id": 4939,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4938,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4943,
                        "src": "3720:11:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 4937,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4936,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "3720:11:24"
                          },
                          "referencedDeclaration": 8409,
                          "src": "3720:11:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3719:13:24"
                  },
                  "scope": 5772,
                  "src": "3663:104:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8469
                  ],
                  "body": {
                    "id": 4953,
                    "nodeType": "Block",
                    "src": "3941:47:24",
                    "statements": [
                      {
                        "expression": {
                          "id": 4951,
                          "name": "prizeDistributionBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4764,
                          "src": "3958:23:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "functionReturnParameters": 4950,
                        "id": 4952,
                        "nodeType": "Return",
                        "src": "3951:30:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4944,
                    "nodeType": "StructuredDocumentation",
                    "src": "3773:31:24",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "bd97a252",
                  "id": 4954,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionBuffer",
                  "nameLocation": "3818:26:24",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4946,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3885:8:24"
                  },
                  "parameters": {
                    "id": 4945,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3844:2:24"
                  },
                  "returnParameters": {
                    "id": 4950,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4949,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4954,
                        "src": "3911:24:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 4948,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4947,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "3911:24:24"
                          },
                          "referencedDeclaration": 8587,
                          "src": "3911:24:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3910:26:24"
                  },
                  "scope": 5772,
                  "src": "3809:179:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8481
                  ],
                  "body": {
                    "id": 4995,
                    "nodeType": "Block",
                    "src": "4200:311:24",
                    "statements": [
                      {
                        "assignments": [
                          4972
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4972,
                            "mutability": "mutable",
                            "name": "_draws",
                            "nameLocation": "4236:6:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 4995,
                            "src": "4210:32:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4970,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 4969,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8176,
                                  "src": "4210:16:24"
                                },
                                "referencedDeclaration": 8176,
                                "src": "4210:16:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 4971,
                              "nodeType": "ArrayTypeName",
                              "src": "4210:18:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4977,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4975,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4960,
                              "src": "4265:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 4973,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4756,
                              "src": "4245:10:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 4974,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8370,
                            "src": "4245:19:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 4976,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4245:29:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4210:64:24"
                      },
                      {
                        "assignments": [
                          4983
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4983,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "4336:19:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 4995,
                            "src": "4284:71:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4981,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 4980,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8506,
                                  "src": "4284:42:24"
                                },
                                "referencedDeclaration": 8506,
                                "src": "4284:42:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                                }
                              },
                              "id": 4982,
                              "nodeType": "ArrayTypeName",
                              "src": "4284:44:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4988,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4986,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4960,
                              "src": "4417:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            ],
                            "expression": {
                              "id": 4984,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4764,
                              "src": "4358:23:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 4985,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8549,
                            "src": "4358:58:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 4987,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4358:68:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4284:142:24"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4990,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4957,
                              "src": "4469:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4991,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4972,
                              "src": "4476:6:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 4992,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4983,
                              "src": "4484:19:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 4989,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5316,
                            "src": "4444:24:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 4993,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4444:60:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 4966,
                        "id": 4994,
                        "nodeType": "Return",
                        "src": "4437:67:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4955,
                    "nodeType": "StructuredDocumentation",
                    "src": "3994:31:24",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "8045fbcf",
                  "id": 4996,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNormalizedBalancesForDrawIds",
                  "nameLocation": "4039:31:24",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4962,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4152:8:24"
                  },
                  "parameters": {
                    "id": 4961,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4957,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4079:5:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4996,
                        "src": "4071:13:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4956,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4071:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4960,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "4104:8:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 4996,
                        "src": "4086:26:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 4958,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "4086:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 4959,
                          "nodeType": "ArrayTypeName",
                          "src": "4086:8:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4070:43:24"
                  },
                  "returnParameters": {
                    "id": 4966,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4965,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4996,
                        "src": "4178:16:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 4963,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "4178:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 4964,
                          "nodeType": "ArrayTypeName",
                          "src": "4178:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4177:18:24"
                  },
                  "scope": 5772,
                  "src": "4030:481:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5129,
                    "nodeType": "Block",
                    "src": "5425:1119:24",
                    "statements": [
                      {
                        "assignments": [
                          5026
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5026,
                            "mutability": "mutable",
                            "name": "_prizesAwardable",
                            "nameLocation": "5461:16:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5129,
                            "src": "5444:33:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5024,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5444:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5025,
                              "nodeType": "ArrayTypeName",
                              "src": "5444:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5033,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5030,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5000,
                                "src": "5494:23:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 5031,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "5494:30:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5029,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5480:13:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5027,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5484:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5028,
                              "nodeType": "ArrayTypeName",
                              "src": "5484:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 5032,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5480:45:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5444:81:24"
                      },
                      {
                        "assignments": [
                          5039
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5039,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "5554:12:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5129,
                            "src": "5535:31:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint256[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 5036,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5535:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 5037,
                                "nodeType": "ArrayTypeName",
                                "src": "5535:9:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 5038,
                              "nodeType": "ArrayTypeName",
                              "src": "5535:11:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5047,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5044,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5000,
                                "src": "5585:23:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 5045,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "5585:30:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5043,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5569:15:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 5040,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5573:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 5041,
                                "nodeType": "ArrayTypeName",
                                "src": "5573:9:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 5042,
                              "nodeType": "ArrayTypeName",
                              "src": "5573:11:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            }
                          },
                          "id": 5046,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5569:47:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                            "typeString": "uint256[] memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5535:81:24"
                      },
                      {
                        "assignments": [
                          5049
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5049,
                            "mutability": "mutable",
                            "name": "timeNow",
                            "nameLocation": "5634:7:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5129,
                            "src": "5627:14:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 5048,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5627:6:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5055,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5052,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "5651:5:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 5053,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "5651:15:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5051,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5644:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 5050,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5644:6:24",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 5054,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5644:23:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5627:40:24"
                      },
                      {
                        "body": {
                          "id": 5116,
                          "nodeType": "Block",
                          "src": "5806:640:24",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    },
                                    "id": 5078,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 5068,
                                      "name": "timeNow",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5049,
                                      "src": "5829:7:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 5077,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 5069,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5006,
                                            "src": "5839:6:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 5071,
                                          "indexExpression": {
                                            "id": 5070,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5057,
                                            "src": "5846:9:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5839:17:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 5072,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 8171,
                                        "src": "5839:27:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "+",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 5073,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5014,
                                            "src": "5869:19:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 5075,
                                          "indexExpression": {
                                            "id": 5074,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5057,
                                            "src": "5889:9:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5869:30:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 5076,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "expiryDuration",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 8497,
                                        "src": "5869:45:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "5839:75:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "5829:85:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "id": 5079,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5916:23:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670",
                                      "typeString": "literal_string \"DrawCalc/draw-expired\""
                                    },
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670",
                                      "typeString": "literal_string \"DrawCalc/draw-expired\""
                                    }
                                  ],
                                  "id": 5067,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "5821:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 5080,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5821:119:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 5081,
                              "nodeType": "ExpressionStatement",
                              "src": "5821:119:24"
                            },
                            {
                              "assignments": [
                                5083
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 5083,
                                  "mutability": "mutable",
                                  "name": "totalUserPicks",
                                  "nameLocation": "5962:14:24",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 5116,
                                  "src": "5955:21:24",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  },
                                  "typeName": {
                                    "id": 5082,
                                    "name": "uint64",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5955:6:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 5092,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "baseExpression": {
                                      "id": 5085,
                                      "name": "_prizeDistributions",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5014,
                                      "src": "6024:19:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                                      }
                                    },
                                    "id": 5087,
                                    "indexExpression": {
                                      "id": 5086,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5057,
                                      "src": "6044:9:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "6024:30:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                    }
                                  },
                                  {
                                    "baseExpression": {
                                      "id": 5088,
                                      "name": "_normalizedUserBalances",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5000,
                                      "src": "6072:23:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 5090,
                                    "indexExpression": {
                                      "id": 5089,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5057,
                                      "src": "6096:9:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "6072:34:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 5084,
                                  "name": "_calculateNumberOfUserPicks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5153,
                                  "src": "5979:27:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$8506_memory_ptr_$_t_uint256_$returns$_t_uint64_$",
                                    "typeString": "function (struct IPrizeDistributionBuffer.PrizeDistribution memory,uint256) pure returns (uint64)"
                                  }
                                },
                                "id": 5091,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5979:141:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5955:165:24"
                            },
                            {
                              "expression": {
                                "id": 5114,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "components": [
                                    {
                                      "baseExpression": {
                                        "id": 5093,
                                        "name": "_prizesAwardable",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5026,
                                        "src": "6136:16:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory"
                                        }
                                      },
                                      "id": 5095,
                                      "indexExpression": {
                                        "id": 5094,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5057,
                                        "src": "6153:9:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "6136:27:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 5096,
                                        "name": "_prizeCounts",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5039,
                                        "src": "6165:12:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory[] memory"
                                        }
                                      },
                                      "id": 5098,
                                      "indexExpression": {
                                        "id": 5097,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5057,
                                        "src": "6178:9:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "6165:23:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    }
                                  ],
                                  "id": 5099,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "TupleExpression",
                                  "src": "6135:54:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                    "typeString": "tuple(uint256,uint256[] memory)"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "baseExpression": {
                                          "id": 5101,
                                          "name": "_draws",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5006,
                                          "src": "6220:6:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                          }
                                        },
                                        "id": 5103,
                                        "indexExpression": {
                                          "id": 5102,
                                          "name": "drawIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5057,
                                          "src": "6227:9:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "6220:17:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                          "typeString": "struct IDrawBeacon.Draw memory"
                                        }
                                      },
                                      "id": 5104,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "winningRandomNumber",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 8167,
                                      "src": "6220:37:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "id": 5105,
                                      "name": "totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5083,
                                      "src": "6275:14:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    {
                                      "id": 5106,
                                      "name": "_userRandomNumber",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5002,
                                      "src": "6307:17:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 5107,
                                        "name": "_pickIndicesForDraws",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5010,
                                        "src": "6342:20:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory[] memory"
                                        }
                                      },
                                      "id": 5109,
                                      "indexExpression": {
                                        "id": 5108,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5057,
                                        "src": "6363:9:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "6342:31:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 5110,
                                        "name": "_prizeDistributions",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5014,
                                        "src": "6391:19:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                                        }
                                      },
                                      "id": 5112,
                                      "indexExpression": {
                                        "id": 5111,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5057,
                                        "src": "6411:9:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "6391:30:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                      }
                                    ],
                                    "id": 5100,
                                    "name": "_calculate",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5518,
                                    "src": "6192:10:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_bytes32_$_t_array$_t_uint64_$dyn_memory_ptr_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                      "typeString": "function (uint256,uint256,bytes32,uint64[] memory,struct IPrizeDistributionBuffer.PrizeDistribution memory) pure returns (uint256,uint256[] memory)"
                                    }
                                  },
                                  "id": 5113,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6192:243:24",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                    "typeString": "tuple(uint256,uint256[] memory)"
                                  }
                                },
                                "src": "6135:300:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 5115,
                              "nodeType": "ExpressionStatement",
                              "src": "6135:300:24"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5063,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5060,
                            "name": "drawIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5057,
                            "src": "5766:9:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 5061,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5006,
                              "src": "5778:6:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            "id": 5062,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "5778:13:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5766:25:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5117,
                        "initializationExpression": {
                          "assignments": [
                            5057
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5057,
                              "mutability": "mutable",
                              "name": "drawIndex",
                              "nameLocation": "5751:9:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5117,
                              "src": "5744:16:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 5056,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "5744:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5059,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5058,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5763:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5744:20:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5065,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5793:11:24",
                            "subExpression": {
                              "id": 5064,
                              "name": "drawIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5057,
                              "src": "5793:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 5066,
                          "nodeType": "ExpressionStatement",
                          "src": "5793:11:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "5739:707:24"
                      },
                      {
                        "expression": {
                          "id": 5123,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5118,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5020,
                            "src": "6455:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 5121,
                                "name": "_prizeCounts",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5039,
                                "src": "6480:12:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory[] memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory[] memory"
                                }
                              ],
                              "expression": {
                                "id": 5119,
                                "name": "abi",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -1,
                                "src": "6469:3:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_abi",
                                  "typeString": "abi"
                                }
                              },
                              "id": 5120,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "encode",
                              "nodeType": "MemberAccess",
                              "src": "6469:10:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                "typeString": "function () pure returns (bytes memory)"
                              }
                            },
                            "id": 5122,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6469:24:24",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "src": "6455:38:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "id": 5124,
                        "nodeType": "ExpressionStatement",
                        "src": "6455:38:24"
                      },
                      {
                        "expression": {
                          "id": 5127,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5125,
                            "name": "prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5018,
                            "src": "6503:15:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5126,
                            "name": "_prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5026,
                            "src": "6521:16:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "6503:34:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 5128,
                        "nodeType": "ExpressionStatement",
                        "src": "6503:34:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4997,
                    "nodeType": "StructuredDocumentation",
                    "src": "4573:467:24",
                    "text": " @notice Calculates the prizes awardable for each Draw passed.\n @param _normalizedUserBalances Fractions representing the user's portion of the liquidity for each draw.\n @param _userRandomNumber       Random number of the user to consider over draws\n @param _draws                  List of Draws\n @param _pickIndicesForDraws    Pick indices for each Draw\n @param _prizeDistributions     PrizeDistribution for each Draw"
                  },
                  "id": 5130,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizesAwardable",
                  "nameLocation": "5054:25:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5015,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5000,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalances",
                        "nameLocation": "5106:23:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5130,
                        "src": "5089:40:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 4998,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5089:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 4999,
                          "nodeType": "ArrayTypeName",
                          "src": "5089:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5002,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "5147:17:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5130,
                        "src": "5139:25:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5001,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5139:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5006,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "5200:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5130,
                        "src": "5174:32:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5004,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 5003,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8176,
                              "src": "5174:16:24"
                            },
                            "referencedDeclaration": 8176,
                            "src": "5174:16:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 5005,
                          "nodeType": "ArrayTypeName",
                          "src": "5174:18:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5010,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "5234:20:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5130,
                        "src": "5216:38:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                          "typeString": "uint64[][]"
                        },
                        "typeName": {
                          "baseType": {
                            "baseType": {
                              "id": 5007,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5216:6:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "id": 5008,
                            "nodeType": "ArrayTypeName",
                            "src": "5216:8:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                              "typeString": "uint64[]"
                            }
                          },
                          "id": 5009,
                          "nodeType": "ArrayTypeName",
                          "src": "5216:10:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                            "typeString": "uint64[][]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5014,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "5316:19:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5130,
                        "src": "5264:71:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5012,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 5011,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8506,
                              "src": "5264:42:24"
                            },
                            "referencedDeclaration": 8506,
                            "src": "5264:42:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            }
                          },
                          "id": 5013,
                          "nodeType": "ArrayTypeName",
                          "src": "5264:44:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5079:262:24"
                  },
                  "returnParameters": {
                    "id": 5021,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5018,
                        "mutability": "mutable",
                        "name": "prizesAwardable",
                        "nameLocation": "5382:15:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5130,
                        "src": "5365:32:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5016,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5365:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5017,
                          "nodeType": "ArrayTypeName",
                          "src": "5365:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5020,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "5412:11:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5130,
                        "src": "5399:24:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 5019,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5399:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5364:60:24"
                  },
                  "scope": 5772,
                  "src": "5045:1499:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5152,
                    "nodeType": "Block",
                    "src": "7197:101:24",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 5149,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 5146,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 5143,
                                      "name": "_normalizedUserBalance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5136,
                                      "src": "7222:22:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "*",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 5144,
                                        "name": "_prizeDistribution",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5134,
                                        "src": "7247:18:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                        }
                                      },
                                      "id": 5145,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "numberOfPicks",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 8499,
                                      "src": "7247:32:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint104",
                                        "typeString": "uint104"
                                      }
                                    },
                                    "src": "7222:57:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "id": 5147,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "7221:59:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "/",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 5148,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7283:7:24",
                                "subdenomination": "ether",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                  "typeString": "int_const 1000000000000000000"
                                },
                                "value": "1"
                              },
                              "src": "7221:69:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5142,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7214:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 5141,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7214:6:24",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 5150,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7214:77:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5140,
                        "id": 5151,
                        "nodeType": "Return",
                        "src": "7207:84:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5131,
                    "nodeType": "StructuredDocumentation",
                    "src": "6550:450:24",
                    "text": " @notice Calculates the number of picks a user gets for a Draw, considering the normalized user balance and the PrizeDistribution.\n @dev Divided by 1e18 since the normalized user balance is stored as a fixed point 18 number\n @param _prizeDistribution The PrizeDistribution to consider\n @param _normalizedUserBalance The normalized user balances to consider\n @return The number of picks a user gets for a Draw"
                  },
                  "id": 5153,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateNumberOfUserPicks",
                  "nameLocation": "7014:27:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5137,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5134,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "7101:18:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5153,
                        "src": "7051:68:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5133,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5132,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "7051:42:24"
                          },
                          "referencedDeclaration": 8506,
                          "src": "7051:42:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5136,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalance",
                        "nameLocation": "7137:22:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5153,
                        "src": "7129:30:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5135,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7129:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7041:124:24"
                  },
                  "returnParameters": {
                    "id": 5140,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5139,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5153,
                        "src": "7189:6:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5138,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "7189:6:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7188:8:24"
                  },
                  "scope": 5772,
                  "src": "7005:293:24",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5315,
                    "nodeType": "Block",
                    "src": "7881:1472:24",
                    "statements": [
                      {
                        "assignments": [
                          5171
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5171,
                            "mutability": "mutable",
                            "name": "drawsLength",
                            "nameLocation": "7899:11:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5315,
                            "src": "7891:19:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5170,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7891:7:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5174,
                        "initialValue": {
                          "expression": {
                            "id": 5172,
                            "name": "_draws",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5160,
                            "src": "7913:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                            }
                          },
                          "id": 5173,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "7913:13:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7891:35:24"
                      },
                      {
                        "assignments": [
                          5179
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5179,
                            "mutability": "mutable",
                            "name": "_timestampsWithStartCutoffTimes",
                            "nameLocation": "7952:31:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5315,
                            "src": "7936:47:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5177,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7936:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 5178,
                              "nodeType": "ArrayTypeName",
                              "src": "7936:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5185,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5183,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5171,
                              "src": "7999:11:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5182,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "7986:12:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5180,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7990:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 5181,
                              "nodeType": "ArrayTypeName",
                              "src": "7990:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 5184,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7986:25:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7936:75:24"
                      },
                      {
                        "assignments": [
                          5190
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5190,
                            "mutability": "mutable",
                            "name": "_timestampsWithEndCutoffTimes",
                            "nameLocation": "8037:29:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5315,
                            "src": "8021:45:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5188,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "8021:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 5189,
                              "nodeType": "ArrayTypeName",
                              "src": "8021:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5196,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5194,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5171,
                              "src": "8082:11:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5193,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8069:12:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5191,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "8073:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 5192,
                              "nodeType": "ArrayTypeName",
                              "src": "8073:8:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 5195,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8069:25:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8021:73:24"
                      },
                      {
                        "body": {
                          "id": 5236,
                          "nodeType": "Block",
                          "src": "8211:325:24",
                          "statements": [
                            {
                              "id": 5235,
                              "nodeType": "UncheckedBlock",
                              "src": "8225:301:24",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 5219,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 5207,
                                        "name": "_timestampsWithStartCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5179,
                                        "src": "8253:31:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 5209,
                                      "indexExpression": {
                                        "id": 5208,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5198,
                                        "src": "8285:1:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "8253:34:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 5218,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 5210,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5160,
                                            "src": "8310:6:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 5212,
                                          "indexExpression": {
                                            "id": 5211,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5198,
                                            "src": "8317:1:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8310:9:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 5213,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 8171,
                                        "src": "8310:19:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 5214,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5164,
                                            "src": "8332:19:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 5216,
                                          "indexExpression": {
                                            "id": 5215,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5198,
                                            "src": "8352:1:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8332:22:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 5217,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "startTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 8491,
                                        "src": "8332:43:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "8310:65:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "8253:122:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 5220,
                                  "nodeType": "ExpressionStatement",
                                  "src": "8253:122:24"
                                },
                                {
                                  "expression": {
                                    "id": 5233,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 5221,
                                        "name": "_timestampsWithEndCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5190,
                                        "src": "8393:29:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 5223,
                                      "indexExpression": {
                                        "id": 5222,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5198,
                                        "src": "8423:1:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "8393:32:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 5232,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 5224,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5160,
                                            "src": "8448:6:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 5226,
                                          "indexExpression": {
                                            "id": 5225,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5198,
                                            "src": "8455:1:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8448:9:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 5227,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 8171,
                                        "src": "8448:19:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 5228,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5164,
                                            "src": "8470:19:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 5230,
                                          "indexExpression": {
                                            "id": 5229,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5198,
                                            "src": "8490:1:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8470:22:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 5231,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "endTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 8493,
                                        "src": "8470:41:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "8448:63:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "8393:118:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 5234,
                                  "nodeType": "ExpressionStatement",
                                  "src": "8393:118:24"
                                }
                              ]
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5203,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5201,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5198,
                            "src": "8189:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 5202,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5171,
                            "src": "8193:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8189:15:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5237,
                        "initializationExpression": {
                          "assignments": [
                            5198
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5198,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8182:1:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5237,
                              "src": "8175:8:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 5197,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "8175:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5200,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5199,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8186:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8175:12:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5205,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8206:3:24",
                            "subExpression": {
                              "id": 5204,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5198,
                              "src": "8206:1:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 5206,
                          "nodeType": "ExpressionStatement",
                          "src": "8206:3:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "8170:366:24"
                      },
                      {
                        "assignments": [
                          5242
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5242,
                            "mutability": "mutable",
                            "name": "balances",
                            "nameLocation": "8563:8:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5315,
                            "src": "8546:25:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5240,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8546:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5241,
                              "nodeType": "ArrayTypeName",
                              "src": "8546:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5249,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5245,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5156,
                              "src": "8620:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5246,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5179,
                              "src": "8639:31:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 5247,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5190,
                              "src": "8684:29:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            ],
                            "expression": {
                              "id": 5243,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4760,
                              "src": "8574:6:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 5244,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalancesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9265,
                            "src": "8574:32:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                            }
                          },
                          "id": 5248,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8574:149:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8546:177:24"
                      },
                      {
                        "assignments": [
                          5254
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5254,
                            "mutability": "mutable",
                            "name": "totalSupplies",
                            "nameLocation": "8751:13:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5315,
                            "src": "8734:30:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5252,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8734:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5253,
                              "nodeType": "ArrayTypeName",
                              "src": "8734:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5260,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5257,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5179,
                              "src": "8818:31:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 5258,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5190,
                              "src": "8863:29:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            ],
                            "expression": {
                              "id": 5255,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4760,
                              "src": "8767:6:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 5256,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageTotalSuppliesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9296,
                            "src": "8767:37:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                            }
                          },
                          "id": 5259,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8767:135:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8734:168:24"
                      },
                      {
                        "assignments": [
                          5265
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5265,
                            "mutability": "mutable",
                            "name": "normalizedBalances",
                            "nameLocation": "8930:18:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5315,
                            "src": "8913:35:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5263,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8913:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5264,
                              "nodeType": "ArrayTypeName",
                              "src": "8913:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5271,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5269,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5171,
                              "src": "8965:11:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5268,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8951:13:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5266,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8955:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5267,
                              "nodeType": "ArrayTypeName",
                              "src": "8955:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 5270,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8951:26:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8913:64:24"
                      },
                      {
                        "body": {
                          "id": 5311,
                          "nodeType": "Block",
                          "src": "9087:224:24",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 5286,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 5282,
                                    "name": "totalSupplies",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5254,
                                    "src": "9104:13:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 5284,
                                  "indexExpression": {
                                    "id": 5283,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5273,
                                    "src": "9118:1:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9104:16:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 5285,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9124:1:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "9104:21:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 5309,
                                "nodeType": "Block",
                                "src": "9202:99:24",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 5307,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 5294,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5265,
                                          "src": "9220:18:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 5296,
                                        "indexExpression": {
                                          "id": 5295,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5273,
                                          "src": "9239:1:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "9220:21:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 5306,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 5301,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "baseExpression": {
                                                  "id": 5297,
                                                  "name": "balances",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 5242,
                                                  "src": "9245:8:24",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                    "typeString": "uint256[] memory"
                                                  }
                                                },
                                                "id": 5299,
                                                "indexExpression": {
                                                  "id": 5298,
                                                  "name": "i",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 5273,
                                                  "src": "9254:1:24",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "isConstant": false,
                                                "isLValue": true,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "nodeType": "IndexAccess",
                                                "src": "9245:11:24",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "*",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 5300,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "9259:7:24",
                                                "subdenomination": "ether",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                                  "typeString": "int_const 1000000000000000000"
                                                },
                                                "value": "1"
                                              },
                                              "src": "9245:21:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 5302,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "9244:23:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "/",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 5303,
                                            "name": "totalSupplies",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5254,
                                            "src": "9270:13:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 5305,
                                          "indexExpression": {
                                            "id": 5304,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5273,
                                            "src": "9284:1:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "9270:16:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "9244:42:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "9220:66:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 5308,
                                    "nodeType": "ExpressionStatement",
                                    "src": "9220:66:24"
                                  }
                                ]
                              },
                              "id": 5310,
                              "nodeType": "IfStatement",
                              "src": "9101:200:24",
                              "trueBody": {
                                "id": 5293,
                                "nodeType": "Block",
                                "src": "9126:58:24",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 5291,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 5287,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5265,
                                          "src": "9144:18:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 5289,
                                        "indexExpression": {
                                          "id": 5288,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5273,
                                          "src": "9163:1:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "9144:21:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "hexValue": "30",
                                        "id": 5290,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "9168:1:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      },
                                      "src": "9144:25:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 5292,
                                    "nodeType": "ExpressionStatement",
                                    "src": "9144:25:24"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5278,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5276,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5273,
                            "src": "9065:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 5277,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5171,
                            "src": "9069:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9065:15:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5312,
                        "initializationExpression": {
                          "assignments": [
                            5273
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5273,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "9058:1:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5312,
                              "src": "9050:9:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 5272,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "9050:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5275,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5274,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9062:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "9050:13:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5280,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "9082:3:24",
                            "subExpression": {
                              "id": 5279,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5273,
                              "src": "9082:1:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5281,
                          "nodeType": "ExpressionStatement",
                          "src": "9082:3:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "9045:266:24"
                      },
                      {
                        "expression": {
                          "id": 5313,
                          "name": "normalizedBalances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5265,
                          "src": "9328:18:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 5169,
                        "id": 5314,
                        "nodeType": "Return",
                        "src": "9321:25:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5154,
                    "nodeType": "StructuredDocumentation",
                    "src": "7304:345:24",
                    "text": " @notice Calculates the normalized balance of a user against the total supply for timestamps\n @param _user The user to consider\n @param _draws The draws we are looking at\n @param _prizeDistributions The prize tiers to consider (needed for draw timestamp offsets)\n @return An array of normalized balances"
                  },
                  "id": 5316,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNormalizedBalancesAt",
                  "nameLocation": "7663:24:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5156,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "7705:5:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5316,
                        "src": "7697:13:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5155,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7697:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5160,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "7746:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5316,
                        "src": "7720:32:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5158,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 5157,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8176,
                              "src": "7720:16:24"
                            },
                            "referencedDeclaration": 8176,
                            "src": "7720:16:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 5159,
                          "nodeType": "ArrayTypeName",
                          "src": "7720:18:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5164,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "7814:19:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5316,
                        "src": "7762:71:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5162,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 5161,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8506,
                              "src": "7762:42:24"
                            },
                            "referencedDeclaration": 8506,
                            "src": "7762:42:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            }
                          },
                          "id": 5163,
                          "nodeType": "ArrayTypeName",
                          "src": "7762:44:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7687:152:24"
                  },
                  "returnParameters": {
                    "id": 5169,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5168,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5316,
                        "src": "7863:16:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5166,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7863:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5167,
                          "nodeType": "ArrayTypeName",
                          "src": "7863:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7862:18:24"
                  },
                  "scope": 5772,
                  "src": "7654:1699:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5517,
                    "nodeType": "Block",
                    "src": "10157:2397:24",
                    "statements": [
                      {
                        "assignments": [
                          5341
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5341,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "10246:5:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5517,
                            "src": "10229:22:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5339,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10229:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5340,
                              "nodeType": "ArrayTypeName",
                              "src": "10229:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5345,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5343,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5329,
                              "src": "10270:18:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            ],
                            "id": 5342,
                            "name": "_createBitMasks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5655,
                            "src": "10254:15:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionBuffer.PrizeDistribution memory) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 5344,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10254:35:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10229:60:24"
                      },
                      {
                        "assignments": [
                          5347
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5347,
                            "mutability": "mutable",
                            "name": "picksLength",
                            "nameLocation": "10306:11:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5517,
                            "src": "10299:18:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5346,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10299:6:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5353,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5350,
                                "name": "_picks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5326,
                                "src": "10327:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                  "typeString": "uint64[] memory"
                                }
                              },
                              "id": 5351,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "10327:13:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5349,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "10320:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 5348,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10320:6:24",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 5352,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10320:21:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10299:42:24"
                      },
                      {
                        "assignments": [
                          5358
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5358,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "10368:12:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5517,
                            "src": "10351:29:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5356,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10351:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5357,
                              "nodeType": "ArrayTypeName",
                              "src": "10351:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5366,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 5362,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5329,
                                  "src": "10397:18:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                  }
                                },
                                "id": 5363,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "tiers",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8503,
                                "src": "10397:24:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                                  "typeString": "uint32[16] memory"
                                }
                              },
                              "id": 5364,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "10397:31:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5361,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "10383:13:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5359,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10387:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5360,
                              "nodeType": "ArrayTypeName",
                              "src": "10387:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 5365,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10383:46:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10351:78:24"
                      },
                      {
                        "assignments": [
                          5368
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5368,
                            "mutability": "mutable",
                            "name": "maxWinningTierIndex",
                            "nameLocation": "10446:19:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5517,
                            "src": "10440:25:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 5367,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "10440:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5370,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 5369,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "10468:1:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10440:29:24"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 5375,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5372,
                                "name": "picksLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5347,
                                "src": "10501:11:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "id": 5373,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5329,
                                  "src": "10516:18:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                  }
                                },
                                "id": 5374,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "maxPicksPerUser",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8495,
                                "src": "10516:34:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "10501:49:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                              "id": 5376,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10564:33:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81",
                                "typeString": "literal_string \"DrawCalc/exceeds-max-user-picks\""
                              },
                              "value": "DrawCalc/exceeds-max-user-picks"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81",
                                "typeString": "literal_string \"DrawCalc/exceeds-max-user-picks\""
                              }
                            ],
                            "id": 5371,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10480:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5377,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10480:127:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5378,
                        "nodeType": "ExpressionStatement",
                        "src": "10480:127:24"
                      },
                      {
                        "body": {
                          "id": 5458,
                          "nodeType": "Block",
                          "src": "10769:884:24",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 5394,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "baseExpression": {
                                        "id": 5390,
                                        "name": "_picks",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5326,
                                        "src": "10791:6:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 5392,
                                      "indexExpression": {
                                        "id": 5391,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5380,
                                        "src": "10798:5:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "10791:13:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "id": 5393,
                                      "name": "_totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5321,
                                      "src": "10807:15:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "10791:31:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "id": 5395,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10824:34:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db",
                                      "typeString": "literal_string \"DrawCalc/insufficient-user-picks\""
                                    },
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db",
                                      "typeString": "literal_string \"DrawCalc/insufficient-user-picks\""
                                    }
                                  ],
                                  "id": 5389,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "10783:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 5396,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10783:76:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 5397,
                              "nodeType": "ExpressionStatement",
                              "src": "10783:76:24"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 5400,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 5398,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5380,
                                  "src": "10878:5:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 5399,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10886:1:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "10878:9:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 5415,
                              "nodeType": "IfStatement",
                              "src": "10874:118:24",
                              "trueBody": {
                                "id": 5414,
                                "nodeType": "Block",
                                "src": "10889:103:24",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          },
                                          "id": 5410,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "baseExpression": {
                                              "id": 5402,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5326,
                                              "src": "10915:6:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 5404,
                                            "indexExpression": {
                                              "id": 5403,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5380,
                                              "src": "10922:5:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "10915:13:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": ">",
                                          "rightExpression": {
                                            "baseExpression": {
                                              "id": 5405,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5326,
                                              "src": "10931:6:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 5409,
                                            "indexExpression": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              },
                                              "id": 5408,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 5406,
                                                "name": "index",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 5380,
                                                "src": "10938:5:24",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint32",
                                                  "typeString": "uint32"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 5407,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "10946:1:24",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "10938:9:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "10931:17:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "src": "10915:33:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        {
                                          "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                          "id": 5411,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "10950:26:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3",
                                            "typeString": "literal_string \"DrawCalc/picks-ascending\""
                                          },
                                          "value": "DrawCalc/picks-ascending"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          },
                                          {
                                            "typeIdentifier": "t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3",
                                            "typeString": "literal_string \"DrawCalc/picks-ascending\""
                                          }
                                        ],
                                        "id": 5401,
                                        "name": "require",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -18,
                                          -18
                                        ],
                                        "referencedDeclaration": -18,
                                        "src": "10907:7:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (bool,string memory) pure"
                                        }
                                      },
                                      "id": 5412,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10907:70:24",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 5413,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10907:70:24"
                                  }
                                ]
                              }
                            },
                            {
                              "assignments": [
                                5417
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 5417,
                                  "mutability": "mutable",
                                  "name": "randomNumberThisPick",
                                  "nameLocation": "11077:20:24",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 5458,
                                  "src": "11069:28:24",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 5416,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11069:7:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 5430,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 5423,
                                            "name": "_userRandomNumber",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5323,
                                            "src": "11146:17:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 5424,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5326,
                                              "src": "11165:6:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 5426,
                                            "indexExpression": {
                                              "id": 5425,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5380,
                                              "src": "11172:5:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "11165:13:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            },
                                            {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          ],
                                          "expression": {
                                            "id": 5421,
                                            "name": "abi",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -1,
                                            "src": "11135:3:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_abi",
                                              "typeString": "abi"
                                            }
                                          },
                                          "id": 5422,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "memberName": "encode",
                                          "nodeType": "MemberAccess",
                                          "src": "11135:10:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                            "typeString": "function () pure returns (bytes memory)"
                                          }
                                        },
                                        "id": 5427,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "11135:44:24",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      ],
                                      "id": 5420,
                                      "name": "keccak256",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -8,
                                      "src": "11125:9:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                                        "typeString": "function (bytes memory) pure returns (bytes32)"
                                      }
                                    },
                                    "id": 5428,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "11125:55:24",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 5419,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "11100:7:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 5418,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11100:7:24",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5429,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11100:94:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "11069:125:24"
                            },
                            {
                              "assignments": [
                                5432
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 5432,
                                  "mutability": "mutable",
                                  "name": "tiersIndex",
                                  "nameLocation": "11215:10:24",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 5458,
                                  "src": "11209:16:24",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 5431,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11209:5:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 5438,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 5434,
                                    "name": "randomNumberThisPick",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5417,
                                    "src": "11265:20:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 5435,
                                    "name": "_winningRandomNumber",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5319,
                                    "src": "11303:20:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 5436,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5341,
                                    "src": "11341:5:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  ],
                                  "id": 5433,
                                  "name": "_calculateTierIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5592,
                                  "src": "11228:19:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$_t_uint8_$",
                                    "typeString": "function (uint256,uint256,uint256[] memory) pure returns (uint8)"
                                  }
                                },
                                "id": 5437,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11228:132:24",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "11209:151:24"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                },
                                "id": 5441,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 5439,
                                  "name": "tiersIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5432,
                                  "src": "11429:10:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "id": 5440,
                                  "name": "TIERS_LENGTH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4768,
                                  "src": "11442:12:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "11429:25:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 5457,
                              "nodeType": "IfStatement",
                              "src": "11425:218:24",
                              "trueBody": {
                                "id": 5456,
                                "nodeType": "Block",
                                "src": "11456:187:24",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 5444,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 5442,
                                        "name": "tiersIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5432,
                                        "src": "11478:10:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": ">",
                                      "rightExpression": {
                                        "id": 5443,
                                        "name": "maxWinningTierIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5368,
                                        "src": "11491:19:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "11478:32:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 5450,
                                    "nodeType": "IfStatement",
                                    "src": "11474:111:24",
                                    "trueBody": {
                                      "id": 5449,
                                      "nodeType": "Block",
                                      "src": "11512:73:24",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 5447,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 5445,
                                              "name": "maxWinningTierIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5368,
                                              "src": "11534:19:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 5446,
                                              "name": "tiersIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5432,
                                              "src": "11556:10:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "11534:32:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "id": 5448,
                                          "nodeType": "ExpressionStatement",
                                          "src": "11534:32:24"
                                        }
                                      ]
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 5454,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "UnaryOperation",
                                      "operator": "++",
                                      "prefix": false,
                                      "src": "11602:26:24",
                                      "subExpression": {
                                        "baseExpression": {
                                          "id": 5451,
                                          "name": "_prizeCounts",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5358,
                                          "src": "11602:12:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 5453,
                                        "indexExpression": {
                                          "id": 5452,
                                          "name": "tiersIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5432,
                                          "src": "11615:10:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "11602:24:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 5455,
                                    "nodeType": "ExpressionStatement",
                                    "src": "11602:26:24"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 5385,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5383,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5380,
                            "src": "10739:5:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 5384,
                            "name": "picksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5347,
                            "src": "10747:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10739:19:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5459,
                        "initializationExpression": {
                          "assignments": [
                            5380
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5380,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "10728:5:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5459,
                              "src": "10721:12:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 5379,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "10721:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5382,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5381,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10736:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "10721:16:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5387,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "10760:7:24",
                            "subExpression": {
                              "id": 5386,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5380,
                              "src": "10760:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 5388,
                          "nodeType": "ExpressionStatement",
                          "src": "10760:7:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "10716:937:24"
                      },
                      {
                        "assignments": [
                          5461
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5461,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "11728:13:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5517,
                            "src": "11720:21:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5460,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "11720:7:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5463,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 5462,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "11744:1:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11720:25:24"
                      },
                      {
                        "assignments": [
                          5468
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5468,
                            "mutability": "mutable",
                            "name": "prizeTiersFractions",
                            "nameLocation": "11772:19:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5517,
                            "src": "11755:36:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5466,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11755:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5467,
                              "nodeType": "ArrayTypeName",
                              "src": "11755:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5473,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5470,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5329,
                              "src": "11836:18:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            },
                            {
                              "id": 5471,
                              "name": "maxWinningTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5368,
                              "src": "11868:19:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 5469,
                            "name": "_calculatePrizeTierFractions",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5735,
                            "src": "11794:28:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$8506_memory_ptr_$_t_uint8_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionBuffer.PrizeDistribution memory,uint8) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 5472,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11794:103:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11755:142:24"
                      },
                      {
                        "body": {
                          "id": 5501,
                          "nodeType": "Block",
                          "src": "12116:221:24",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 5488,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 5484,
                                    "name": "_prizeCounts",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5358,
                                    "src": "12134:12:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 5486,
                                  "indexExpression": {
                                    "id": 5485,
                                    "name": "prizeCountIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5475,
                                    "src": "12147:15:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "12134:29:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 5487,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "12166:1:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "12134:33:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 5500,
                              "nodeType": "IfStatement",
                              "src": "12130:197:24",
                              "trueBody": {
                                "id": 5499,
                                "nodeType": "Block",
                                "src": "12169:158:24",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 5497,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 5489,
                                        "name": "prizeFraction",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5461,
                                        "src": "12187:13:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "+=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 5496,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "baseExpression": {
                                            "id": 5490,
                                            "name": "prizeTiersFractions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5468,
                                            "src": "12224:19:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 5492,
                                          "indexExpression": {
                                            "id": 5491,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5475,
                                            "src": "12244:15:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "12224:36:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 5493,
                                            "name": "_prizeCounts",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5358,
                                            "src": "12283:12:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 5495,
                                          "indexExpression": {
                                            "id": 5494,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 5475,
                                            "src": "12296:15:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "12283:29:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "12224:88:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "12187:125:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 5498,
                                    "nodeType": "ExpressionStatement",
                                    "src": "12187:125:24"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5480,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5478,
                            "name": "prizeCountIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5475,
                            "src": "12036:15:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 5479,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5368,
                            "src": "12055:19:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "12036:38:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5502,
                        "initializationExpression": {
                          "assignments": [
                            5475
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5475,
                              "mutability": "mutable",
                              "name": "prizeCountIndex",
                              "nameLocation": "12003:15:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5502,
                              "src": "11995:23:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 5474,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11995:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5477,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5476,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12021:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "11995:27:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5482,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "12088:17:24",
                            "subExpression": {
                              "id": 5481,
                              "name": "prizeCountIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5475,
                              "src": "12088:15:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5483,
                          "nodeType": "ExpressionStatement",
                          "src": "12088:17:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "11977:360:24"
                      },
                      {
                        "expression": {
                          "id": 5511,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5503,
                            "name": "prize",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5332,
                            "src": "12454:5:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 5510,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 5507,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 5504,
                                    "name": "prizeFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5461,
                                    "src": "12463:13:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "*",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 5505,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5329,
                                      "src": "12479:18:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 5506,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "prize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 8505,
                                    "src": "12479:24:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "12463:40:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 5508,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "12462:42:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "/",
                            "rightExpression": {
                              "hexValue": "316539",
                              "id": 5509,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12507:3:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1000000000_by_1",
                                "typeString": "int_const 1000000000"
                              },
                              "value": "1e9"
                            },
                            "src": "12462:48:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12454:56:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 5512,
                        "nodeType": "ExpressionStatement",
                        "src": "12454:56:24"
                      },
                      {
                        "expression": {
                          "id": 5515,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5513,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5335,
                            "src": "12521:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5514,
                            "name": "_prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5358,
                            "src": "12535:12:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "12521:26:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 5516,
                        "nodeType": "ExpressionStatement",
                        "src": "12521:26:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5317,
                    "nodeType": "StructuredDocumentation",
                    "src": "9359:483:24",
                    "text": " @notice Calculates the prize amount for a PrizeDistribution over given picks\n @param _winningRandomNumber Draw's winningRandomNumber\n @param _totalUserPicks      number of picks the user gets for the Draw\n @param _userRandomNumber    users randomNumber for that draw\n @param _picks               users picks for that draw\n @param _prizeDistribution   PrizeDistribution for that draw\n @return prize (if any), prizeCounts (if any)"
                  },
                  "id": 5518,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculate",
                  "nameLocation": "9856:10:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5330,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5319,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "9884:20:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5518,
                        "src": "9876:28:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5318,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9876:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5321,
                        "mutability": "mutable",
                        "name": "_totalUserPicks",
                        "nameLocation": "9922:15:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5518,
                        "src": "9914:23:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5320,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9914:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5323,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "9955:17:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5518,
                        "src": "9947:25:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5322,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9947:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5326,
                        "mutability": "mutable",
                        "name": "_picks",
                        "nameLocation": "9998:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5518,
                        "src": "9982:22:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5324,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "9982:6:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 5325,
                          "nodeType": "ArrayTypeName",
                          "src": "9982:8:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5329,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "10064:18:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5518,
                        "src": "10014:68:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5328,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5327,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "10014:42:24"
                          },
                          "referencedDeclaration": 8506,
                          "src": "10014:42:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9866:222:24"
                  },
                  "returnParameters": {
                    "id": 5336,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5332,
                        "mutability": "mutable",
                        "name": "prize",
                        "nameLocation": "10120:5:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5518,
                        "src": "10112:13:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5331,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10112:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5335,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "10144:11:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5518,
                        "src": "10127:28:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5333,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "10127:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5334,
                          "nodeType": "ArrayTypeName",
                          "src": "10127:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10111:45:24"
                  },
                  "scope": 5772,
                  "src": "9847:2707:24",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5591,
                    "nodeType": "Block",
                    "src": "13122:757:24",
                    "statements": [
                      {
                        "assignments": [
                          5532
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5532,
                            "mutability": "mutable",
                            "name": "numberOfMatches",
                            "nameLocation": "13138:15:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5591,
                            "src": "13132:21:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 5531,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13132:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5534,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 5533,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "13156:1:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13132:25:24"
                      },
                      {
                        "assignments": [
                          5536
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5536,
                            "mutability": "mutable",
                            "name": "masksLength",
                            "nameLocation": "13173:11:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5591,
                            "src": "13167:17:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 5535,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13167:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5542,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5539,
                                "name": "_masks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5526,
                                "src": "13193:6:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 5540,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "13193:13:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5538,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "13187:5:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 5537,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13187:5:24",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 5541,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13187:20:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13167:40:24"
                      },
                      {
                        "body": {
                          "id": 5585,
                          "nodeType": "Block",
                          "src": "13322:504:24",
                          "statements": [
                            {
                              "assignments": [
                                5554
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 5554,
                                  "mutability": "mutable",
                                  "name": "mask",
                                  "nameLocation": "13344:4:24",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 5585,
                                  "src": "13336:12:24",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 5553,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "13336:7:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 5558,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 5555,
                                  "name": "_masks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5526,
                                  "src": "13351:6:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 5557,
                                "indexExpression": {
                                  "id": 5556,
                                  "name": "matchIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5544,
                                  "src": "13358:10:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "13351:18:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "13336:33:24"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 5567,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 5561,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 5559,
                                        "name": "_randomNumberThisPick",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5521,
                                        "src": "13389:21:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 5560,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5554,
                                        "src": "13413:4:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "13389:28:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 5562,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "13388:30:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 5565,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 5563,
                                        "name": "_winningRandomNumber",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5523,
                                        "src": "13423:20:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 5564,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5554,
                                        "src": "13446:4:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "13423:27:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 5566,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "13422:29:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "13388:63:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 5581,
                              "nodeType": "IfStatement",
                              "src": "13384:362:24",
                              "trueBody": {
                                "id": 5580,
                                "nodeType": "Block",
                                "src": "13453:293:24",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 5570,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 5568,
                                        "name": "masksLength",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5536,
                                        "src": "13568:11:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "==",
                                      "rightExpression": {
                                        "id": 5569,
                                        "name": "numberOfMatches",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5532,
                                        "src": "13583:15:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "13568:30:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 5578,
                                      "nodeType": "Block",
                                      "src": "13655:77:24",
                                      "statements": [
                                        {
                                          "expression": {
                                            "commonType": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            },
                                            "id": 5576,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftExpression": {
                                              "id": 5574,
                                              "name": "masksLength",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5536,
                                              "src": "13684:11:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "BinaryOperation",
                                            "operator": "-",
                                            "rightExpression": {
                                              "id": 5575,
                                              "name": "numberOfMatches",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 5532,
                                              "src": "13698:15:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "13684:29:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "functionReturnParameters": 5530,
                                          "id": 5577,
                                          "nodeType": "Return",
                                          "src": "13677:36:24"
                                        }
                                      ]
                                    },
                                    "id": 5579,
                                    "nodeType": "IfStatement",
                                    "src": "13564:168:24",
                                    "trueBody": {
                                      "id": 5573,
                                      "nodeType": "Block",
                                      "src": "13600:49:24",
                                      "statements": [
                                        {
                                          "expression": {
                                            "hexValue": "30",
                                            "id": 5571,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "13629:1:24",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_0_by_1",
                                              "typeString": "int_const 0"
                                            },
                                            "value": "0"
                                          },
                                          "functionReturnParameters": 5530,
                                          "id": 5572,
                                          "nodeType": "Return",
                                          "src": "13622:8:24"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "expression": {
                                "id": 5583,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "13798:17:24",
                                "subExpression": {
                                  "id": 5582,
                                  "name": "numberOfMatches",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5532,
                                  "src": "13798:15:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "id": 5584,
                              "nodeType": "ExpressionStatement",
                              "src": "13798:17:24"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 5549,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5547,
                            "name": "matchIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5544,
                            "src": "13282:10:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 5548,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5536,
                            "src": "13295:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "13282:24:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5586,
                        "initializationExpression": {
                          "assignments": [
                            5544
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5544,
                              "mutability": "mutable",
                              "name": "matchIndex",
                              "nameLocation": "13266:10:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5586,
                              "src": "13260:16:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 5543,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "13260:5:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5546,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5545,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "13279:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "13260:20:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5551,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "13308:12:24",
                            "subExpression": {
                              "id": 5550,
                              "name": "matchIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5544,
                              "src": "13308:10:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 5552,
                          "nodeType": "ExpressionStatement",
                          "src": "13308:12:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "13255:571:24"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 5589,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5587,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5536,
                            "src": "13843:11:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 5588,
                            "name": "numberOfMatches",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5532,
                            "src": "13857:15:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "13843:29:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 5530,
                        "id": 5590,
                        "nodeType": "Return",
                        "src": "13836:36:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5519,
                    "nodeType": "StructuredDocumentation",
                    "src": "12560:382:24",
                    "text": "@notice Calculates the tier index given the random numbers and masks\n@param _randomNumberThisPick users random number for this Pick\n@param _winningRandomNumber The winning number for this draw\n@param _masks The pre-calculate bitmasks for the prizeDistributions\n@return The position within the prize tier array (0 = top prize, 1 = runner-up prize, etc)"
                  },
                  "id": 5592,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateTierIndex",
                  "nameLocation": "12956:19:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5527,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5521,
                        "mutability": "mutable",
                        "name": "_randomNumberThisPick",
                        "nameLocation": "12993:21:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5592,
                        "src": "12985:29:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5520,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12985:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5523,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "13032:20:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5592,
                        "src": "13024:28:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5522,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13024:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5526,
                        "mutability": "mutable",
                        "name": "_masks",
                        "nameLocation": "13079:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5592,
                        "src": "13062:23:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5524,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "13062:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5525,
                          "nodeType": "ArrayTypeName",
                          "src": "13062:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12975:116:24"
                  },
                  "returnParameters": {
                    "id": 5530,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5529,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5592,
                        "src": "13115:5:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5528,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "13115:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13114:7:24"
                  },
                  "scope": 5772,
                  "src": "12947:932:24",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5654,
                    "nodeType": "Block",
                    "src": "14284:457:24",
                    "statements": [
                      {
                        "assignments": [
                          5606
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5606,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "14311:5:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5654,
                            "src": "14294:22:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5604,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "14294:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5605,
                              "nodeType": "ArrayTypeName",
                              "src": "14294:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5613,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5610,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5596,
                                "src": "14333:18:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                }
                              },
                              "id": 5611,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "matchCardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8489,
                              "src": "14333:35:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 5609,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "14319:13:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5607,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "14323:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5608,
                              "nodeType": "ArrayTypeName",
                              "src": "14323:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 5612,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14319:50:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14294:75:24"
                      },
                      {
                        "expression": {
                          "id": 5624,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 5614,
                              "name": "masks",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5606,
                              "src": "14379:5:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            "id": 5616,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 5615,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14385:1:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "14379:8:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 5623,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 5620,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "hexValue": "32",
                                    "id": 5617,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14392:1:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "**",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 5618,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5596,
                                      "src": "14395:18:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 5619,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 8487,
                                    "src": "14395:31:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "14392:34:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 5621,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "14391:36:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 5622,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14430:1:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "14391:40:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "14379:52:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 5625,
                        "nodeType": "ExpressionStatement",
                        "src": "14379:52:24"
                      },
                      {
                        "body": {
                          "id": 5650,
                          "nodeType": "Block",
                          "src": "14530:182:24",
                          "statements": [
                            {
                              "expression": {
                                "id": 5648,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 5637,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5606,
                                    "src": "14627:5:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 5639,
                                  "indexExpression": {
                                    "id": 5638,
                                    "name": "maskIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5627,
                                    "src": "14633:9:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "14627:16:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 5647,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "baseExpression": {
                                      "id": 5640,
                                      "name": "masks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5606,
                                      "src": "14646:5:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 5644,
                                    "indexExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 5643,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 5641,
                                        "name": "maskIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5627,
                                        "src": "14652:9:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "hexValue": "31",
                                        "id": 5642,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "14664:1:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "src": "14652:13:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "14646:20:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "<<",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 5645,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5596,
                                      "src": "14670:18:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 5646,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 8487,
                                    "src": "14670:31:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "14646:55:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "14627:74:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5649,
                              "nodeType": "ExpressionStatement",
                              "src": "14627:74:24"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 5633,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5630,
                            "name": "maskIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5627,
                            "src": "14468:9:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 5631,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5596,
                              "src": "14480:18:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            },
                            "id": 5632,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "matchCardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8489,
                            "src": "14480:35:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "14468:47:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5651,
                        "initializationExpression": {
                          "assignments": [
                            5627
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5627,
                              "mutability": "mutable",
                              "name": "maskIndex",
                              "nameLocation": "14453:9:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5651,
                              "src": "14447:15:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 5626,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "14447:5:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5629,
                          "initialValue": {
                            "hexValue": "31",
                            "id": 5628,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "14465:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "14447:19:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5635,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "14517:11:24",
                            "subExpression": {
                              "id": 5634,
                              "name": "maskIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5627,
                              "src": "14517:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 5636,
                          "nodeType": "ExpressionStatement",
                          "src": "14517:11:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "14442:270:24"
                      },
                      {
                        "expression": {
                          "id": 5652,
                          "name": "masks",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5606,
                          "src": "14729:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 5601,
                        "id": 5653,
                        "nodeType": "Return",
                        "src": "14722:12:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5593,
                    "nodeType": "StructuredDocumentation",
                    "src": "13885:230:24",
                    "text": " @notice Create an array of bitmasks equal to the PrizeDistribution.matchCardinality length\n @param _prizeDistribution The PrizeDistribution to use to calculate the masks\n @return An array of bitmasks"
                  },
                  "id": 5655,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_createBitMasks",
                  "nameLocation": "14129:15:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5597,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5596,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "14195:18:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5655,
                        "src": "14145:68:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5595,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5594,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "14145:42:24"
                          },
                          "referencedDeclaration": 8506,
                          "src": "14145:42:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14144:70:24"
                  },
                  "returnParameters": {
                    "id": 5601,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5600,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5655,
                        "src": "14262:16:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5598,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "14262:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5599,
                          "nodeType": "ArrayTypeName",
                          "src": "14262:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14261:18:24"
                  },
                  "scope": 5772,
                  "src": "14120:621:24",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5685,
                    "nodeType": "Block",
                    "src": "15267:391:24",
                    "statements": [
                      {
                        "assignments": [
                          5667
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5667,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "15334:13:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5685,
                            "src": "15326:21:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5666,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "15326:7:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5672,
                        "initialValue": {
                          "baseExpression": {
                            "expression": {
                              "id": 5668,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5659,
                              "src": "15350:18:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            },
                            "id": 5669,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tiers",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8503,
                            "src": "15350:24:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                              "typeString": "uint32[16] memory"
                            }
                          },
                          "id": 5671,
                          "indexExpression": {
                            "id": 5670,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5661,
                            "src": "15375:15:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "15350:41:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15326:65:24"
                      },
                      {
                        "assignments": [
                          5674
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5674,
                            "mutability": "mutable",
                            "name": "numberOfPrizesForIndex",
                            "nameLocation": "15463:22:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5685,
                            "src": "15455:30:24",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5673,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "15455:7:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5680,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 5676,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5659,
                                "src": "15525:18:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                }
                              },
                              "id": 5677,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8487,
                              "src": "15525:31:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 5678,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5661,
                              "src": "15570:15:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5675,
                            "name": "_numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5771,
                            "src": "15488:23:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint8,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 5679,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15488:107:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15455:140:24"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5683,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5681,
                            "name": "prizeFraction",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5667,
                            "src": "15613:13:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 5682,
                            "name": "numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5674,
                            "src": "15629:22:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "15613:38:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 5665,
                        "id": 5684,
                        "nodeType": "Return",
                        "src": "15606:45:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5656,
                    "nodeType": "StructuredDocumentation",
                    "src": "14747:329:24",
                    "text": " @notice Calculates the expected prize fraction per PrizeDistributions and distributionIndex\n @param _prizeDistribution prizeDistribution struct for Draw\n @param _prizeTierIndex Index of the prize tiers array to calculate\n @return returns the fraction of the total prize (fixed point 9 number)"
                  },
                  "id": 5686,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFraction",
                  "nameLocation": "15090:27:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5662,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5659,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "15177:18:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5686,
                        "src": "15127:68:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5658,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5657,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "15127:42:24"
                          },
                          "referencedDeclaration": 8506,
                          "src": "15127:42:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5661,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "15213:15:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5686,
                        "src": "15205:23:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5660,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15205:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15117:117:24"
                  },
                  "returnParameters": {
                    "id": 5665,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5664,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5686,
                        "src": "15258:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5663,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15258:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15257:9:24"
                  },
                  "scope": 5772,
                  "src": "15081:577:24",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5734,
                    "nodeType": "Block",
                    "src": "16131:379:24",
                    "statements": [
                      {
                        "assignments": [
                          5702
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5702,
                            "mutability": "mutable",
                            "name": "prizeDistributionFractions",
                            "nameLocation": "16158:26:24",
                            "nodeType": "VariableDeclaration",
                            "scope": 5734,
                            "src": "16141:43:24",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5700,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "16141:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5701,
                              "nodeType": "ArrayTypeName",
                              "src": "16141:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5710,
                        "initialValue": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 5708,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5706,
                                "name": "maxWinningTierIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5692,
                                "src": "16214:19:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 5707,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "16236:1:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "16214:23:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 5705,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "16187:13:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5703,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "16191:7:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5704,
                              "nodeType": "ArrayTypeName",
                              "src": "16191:9:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 5709,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "16187:60:24",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "16141:106:24"
                      },
                      {
                        "body": {
                          "id": 5730,
                          "nodeType": "Block",
                          "src": "16307:153:24",
                          "statements": [
                            {
                              "expression": {
                                "id": 5728,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 5721,
                                    "name": "prizeDistributionFractions",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5702,
                                    "src": "16321:26:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 5723,
                                  "indexExpression": {
                                    "id": 5722,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5712,
                                    "src": "16348:1:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "16321:29:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 5725,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5690,
                                      "src": "16398:18:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                      }
                                    },
                                    {
                                      "id": 5726,
                                      "name": "i",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5712,
                                      "src": "16434:1:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 5724,
                                    "name": "_calculatePrizeTierFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5686,
                                    "src": "16353:27:24",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$8506_memory_ptr_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (struct IPrizeDistributionBuffer.PrizeDistribution memory,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 5727,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "16353:96:24",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "16321:128:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 5729,
                              "nodeType": "ExpressionStatement",
                              "src": "16321:128:24"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 5717,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5715,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5712,
                            "src": "16276:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 5716,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5692,
                            "src": "16281:19:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "16276:24:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5731,
                        "initializationExpression": {
                          "assignments": [
                            5712
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5712,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "16269:1:24",
                              "nodeType": "VariableDeclaration",
                              "scope": 5731,
                              "src": "16263:7:24",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 5711,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "16263:5:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5714,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5713,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "16273:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "16263:11:24"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5719,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "16302:3:24",
                            "subExpression": {
                              "id": 5718,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5712,
                              "src": "16302:1:24",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 5720,
                          "nodeType": "ExpressionStatement",
                          "src": "16302:3:24"
                        },
                        "nodeType": "ForStatement",
                        "src": "16258:202:24"
                      },
                      {
                        "expression": {
                          "id": 5732,
                          "name": "prizeDistributionFractions",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5702,
                          "src": "16477:26:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 5697,
                        "id": 5733,
                        "nodeType": "Return",
                        "src": "16470:33:24"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5687,
                    "nodeType": "StructuredDocumentation",
                    "src": "15664:264:24",
                    "text": " @notice Generates an array of prize tiers fractions\n @param _prizeDistribution prizeDistribution struct for Draw\n @param maxWinningTierIndex Max length of the prize tiers array\n @return returns an array of prize tiers fractions"
                  },
                  "id": 5735,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFractions",
                  "nameLocation": "15942:28:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5693,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5690,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "16030:18:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5735,
                        "src": "15980:68:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5689,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5688,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "15980:42:24"
                          },
                          "referencedDeclaration": 8506,
                          "src": "15980:42:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5692,
                        "mutability": "mutable",
                        "name": "maxWinningTierIndex",
                        "nameLocation": "16064:19:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5735,
                        "src": "16058:25:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5691,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "16058:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15970:119:24"
                  },
                  "returnParameters": {
                    "id": 5697,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5696,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5735,
                        "src": "16113:16:24",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5694,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "16113:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5695,
                          "nodeType": "ArrayTypeName",
                          "src": "16113:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16112:18:24"
                  },
                  "scope": 5772,
                  "src": "15933:577:24",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5770,
                    "nodeType": "Block",
                    "src": "16945:201:24",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5747,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5745,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5740,
                            "src": "16959:15:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5746,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "16977:1:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "16959:19:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 5768,
                          "nodeType": "Block",
                          "src": "17107:33:24",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "31",
                                "id": 5766,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "17128:1:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "functionReturnParameters": 5744,
                              "id": 5767,
                              "nodeType": "Return",
                              "src": "17121:8:24"
                            }
                          ]
                        },
                        "id": 5769,
                        "nodeType": "IfStatement",
                        "src": "16955:185:24",
                        "trueBody": {
                          "id": 5765,
                          "nodeType": "Block",
                          "src": "16980:121:24",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 5763,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 5752,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 5748,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "17003:1:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 5751,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 5749,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5738,
                                          "src": "17008:13:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "id": 5750,
                                          "name": "_prizeTierIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5740,
                                          "src": "17024:15:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "17008:31:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "17003:36:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 5753,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "17001:40:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 5761,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 5754,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "17046:1:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 5760,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 5755,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5738,
                                          "src": "17051:13:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 5758,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 5756,
                                                "name": "_prizeTierIndex",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 5740,
                                                "src": "17068:15:24",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 5757,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "17086:1:24",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "17068:19:24",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 5759,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "17067:21:24",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "17051:37:24",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "17046:42:24",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 5762,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "17044:46:24",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "17001:89:24",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 5744,
                              "id": 5764,
                              "nodeType": "Return",
                              "src": "16994:96:24"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5736,
                    "nodeType": "StructuredDocumentation",
                    "src": "16516:285:24",
                    "text": " @notice Calculates the number of prizes for a given prizeDistributionIndex\n @param _bitRangeSize Bit range size for Draw\n @param _prizeTierIndex Index of the prize tier array to calculate\n @return returns the fraction of the total prize (base 1e18)"
                  },
                  "id": 5771,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_numberOfPrizesForIndex",
                  "nameLocation": "16815:23:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5741,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5738,
                        "mutability": "mutable",
                        "name": "_bitRangeSize",
                        "nameLocation": "16845:13:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5771,
                        "src": "16839:19:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5737,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "16839:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5740,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "16868:15:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 5771,
                        "src": "16860:23:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5739,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16860:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16838:46:24"
                  },
                  "returnParameters": {
                    "id": 5744,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5743,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5771,
                        "src": "16932:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5742,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16932:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16931:9:24"
                  },
                  "scope": 5772,
                  "src": "16806:340:24",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 5773,
              "src": "876:16272:24",
              "usedErrors": []
            }
          ],
          "src": "37:17112:24"
        },
        "id": 24
      },
      "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              9438
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "RingBufferLib": [
              9933
            ]
          },
          "id": 6276,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5774,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:25"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 5775,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6276,
              "sourceUnit": 3104,
              "src": "61:72:25",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol",
              "file": "./libraries/DrawRingBufferLib.sol",
              "id": 5776,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6276,
              "sourceUnit": 9439,
              "src": "135:43:25",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "./interfaces/IPrizeDistributionBuffer.sol",
              "id": 5777,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6276,
              "sourceUnit": 8588,
              "src": "179:51:25",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 5779,
                    "name": "IPrizeDistributionBuffer",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8587,
                    "src": "940:24:25"
                  },
                  "id": 5780,
                  "nodeType": "InheritanceSpecifier",
                  "src": "940:24:25"
                },
                {
                  "baseName": {
                    "id": 5781,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "966:10:25"
                  },
                  "id": 5782,
                  "nodeType": "InheritanceSpecifier",
                  "src": "966:10:25"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 5778,
                "nodeType": "StructuredDocumentation",
                "src": "232:671:25",
                "text": " @title  PoolTogether V4 PrizeDistributionBuffer\n @author PoolTogether Inc Team\n @notice The PrizeDistributionBuffer contract provides historical lookups of PrizeDistribution struct parameters (linked with a Draw ID) via a\ncircular ring buffer. Historical PrizeDistribution parameters can be accessed on-chain using a drawId to calculate\nring buffer storage slot. The PrizeDistribution parameters can be created by manager/owner and existing PrizeDistribution\nparameters can only be updated the owner. When adding a new PrizeDistribution basic sanity checks will be used to\nvalidate the incoming parameters."
              },
              "fullyImplemented": true,
              "id": 6275,
              "linearizedBaseContracts": [
                6275,
                3103,
                3258,
                8587
              ],
              "name": "PrizeDistributionBuffer",
              "nameLocation": "913:23:25",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 5786,
                  "libraryName": {
                    "id": 5783,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9438,
                    "src": "989:17:25"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "983:53:25",
                  "typeName": {
                    "id": 5785,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 5784,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9308,
                      "src": "1011:24:25"
                    },
                    "referencedDeclaration": 9308,
                    "src": "1011:24:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 5787,
                    "nodeType": "StructuredDocumentation",
                    "src": "1042:153:25",
                    "text": "@notice The maximum cardinality of the prize distribution ring buffer.\n @dev even with daily draws, 256 will give us over 8 months of history."
                  },
                  "id": 5790,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1226:15:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 6275,
                  "src": "1200:47:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 5788,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1200:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 5789,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1244:3:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 5791,
                    "nodeType": "StructuredDocumentation",
                    "src": "1254:145:25",
                    "text": "@notice The ceiling for prize distributions.  1e9 = 100%.\n @dev It's fixed point 9 because 1e9 is the largest \"1\" that fits into 2**32"
                  },
                  "id": 5794,
                  "mutability": "constant",
                  "name": "TIERS_CEILING",
                  "nameLocation": "1430:13:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 6275,
                  "src": "1404:45:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 5792,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1404:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "316539",
                    "id": 5793,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1446:3:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1000000000_by_1",
                      "typeString": "int_const 1000000000"
                    },
                    "value": "1e9"
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5795,
                    "nodeType": "StructuredDocumentation",
                    "src": "1456:150:25",
                    "text": "@notice Emitted when the contract is deployed.\n @param cardinality The maximum number of records in the buffer before they begin to expire."
                  },
                  "id": 5799,
                  "name": "Deployed",
                  "nameLocation": "1617:8:25",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5798,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5797,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "cardinality",
                        "nameLocation": "1632:11:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 5799,
                        "src": "1626:17:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5796,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1626:5:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1625:19:25"
                  },
                  "src": "1611:34:25"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5800,
                    "nodeType": "StructuredDocumentation",
                    "src": "1651:50:25",
                    "text": "@notice PrizeDistribution ring buffer history."
                  },
                  "id": 5805,
                  "mutability": "mutable",
                  "name": "prizeDistributionRingBuffer",
                  "nameLocation": "1783:27:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 6275,
                  "src": "1706:104:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[256]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 5802,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 5801,
                        "name": "IPrizeDistributionBuffer.PrizeDistribution",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 8506,
                        "src": "1706:42:25"
                      },
                      "referencedDeclaration": 8506,
                      "src": "1706:42:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                      }
                    },
                    "id": 5804,
                    "length": {
                      "id": 5803,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 5790,
                      "src": "1749:15:25",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1706:59:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage_ptr",
                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[256]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5806,
                    "nodeType": "StructuredDocumentation",
                    "src": "1817:65:25",
                    "text": "@notice Ring buffer metadata (nextIndex, lastId, cardinality)"
                  },
                  "id": 5809,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "1921:14:25",
                  "nodeType": "VariableDeclaration",
                  "scope": 6275,
                  "src": "1887:48:25",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 5808,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 5807,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9308,
                      "src": "1887:24:25"
                    },
                    "referencedDeclaration": 9308,
                    "src": "1887:24:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5830,
                    "nodeType": "Block",
                    "src": "2255:95:25",
                    "statements": [
                      {
                        "expression": {
                          "id": 5824,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 5820,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5809,
                              "src": "2265:14:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 5822,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9307,
                            "src": "2265:26:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5823,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5814,
                            "src": "2294:12:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "2265:41:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5825,
                        "nodeType": "ExpressionStatement",
                        "src": "2265:41:25"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5827,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5814,
                              "src": "2330:12:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 5826,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5799,
                            "src": "2321:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint8_$returns$__$",
                              "typeString": "function (uint8)"
                            }
                          },
                          "id": 5828,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2321:22:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5829,
                        "nodeType": "EmitStatement",
                        "src": "2316:27:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5810,
                    "nodeType": "StructuredDocumentation",
                    "src": "1991:195:25",
                    "text": " @notice Constructor for PrizeDistributionBuffer\n @param _owner Address of the PrizeDistributionBuffer owner\n @param _cardinality Cardinality of the `bufferMetadata`"
                  },
                  "id": 5831,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 5817,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5812,
                          "src": "2247:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 5818,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5816,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "2239:7:25"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2239:15:25"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5815,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5812,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2211:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 5831,
                        "src": "2203:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5811,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2203:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5814,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2225:12:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 5831,
                        "src": "2219:18:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5813,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2219:5:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2202:36:25"
                  },
                  "returnParameters": {
                    "id": 5819,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2255:0:25"
                  },
                  "scope": 6275,
                  "src": "2191:159:25",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8520
                  ],
                  "body": {
                    "id": 5841,
                    "nodeType": "Block",
                    "src": "2529:50:25",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 5838,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5809,
                            "src": "2546:14:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "id": 5839,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "cardinality",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9307,
                          "src": "2546:26:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 5837,
                        "id": 5840,
                        "nodeType": "Return",
                        "src": "2539:33:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5832,
                    "nodeType": "StructuredDocumentation",
                    "src": "2412:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 5842,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "2466:20:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5834,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2503:8:25"
                  },
                  "parameters": {
                    "id": 5833,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2486:2:25"
                  },
                  "returnParameters": {
                    "id": 5837,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5836,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5842,
                        "src": "2521:6:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5835,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2521:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2520:8:25"
                  },
                  "scope": 6275,
                  "src": "2457:122:25",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8558
                  ],
                  "body": {
                    "id": 5857,
                    "nodeType": "Block",
                    "src": "2795:70:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5853,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5809,
                              "src": "2834:14:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            {
                              "id": 5854,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5845,
                              "src": "2850:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 5852,
                            "name": "_getPrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6144,
                            "src": "2812:21:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_struct$_PrizeDistribution_$8506_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) view returns (struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 5855,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2812:46:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 5851,
                        "id": 5856,
                        "nodeType": "Return",
                        "src": "2805:53:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5843,
                    "nodeType": "StructuredDocumentation",
                    "src": "2585:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "3cd8e2d5",
                  "id": 5858,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistribution",
                  "nameLocation": "2639:20:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5847,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2714:8:25"
                  },
                  "parameters": {
                    "id": 5846,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5845,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "2667:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 5858,
                        "src": "2660:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5844,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2660:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2659:16:25"
                  },
                  "returnParameters": {
                    "id": 5851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5850,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5858,
                        "src": "2740:49:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5849,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5848,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "2740:42:25"
                          },
                          "referencedDeclaration": 8506,
                          "src": "2740:42:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2739:51:25"
                  },
                  "scope": 6275,
                  "src": "2630:235:25",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8549
                  ],
                  "body": {
                    "id": 5920,
                    "nodeType": "Block",
                    "src": "3096:493:25",
                    "statements": [
                      {
                        "assignments": [
                          5871
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5871,
                            "mutability": "mutable",
                            "name": "drawIdsLength",
                            "nameLocation": "3114:13:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 5920,
                            "src": "3106:21:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5870,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3106:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5874,
                        "initialValue": {
                          "expression": {
                            "id": 5872,
                            "name": "_drawIds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5862,
                            "src": "3130:8:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                              "typeString": "uint32[] calldata"
                            }
                          },
                          "id": 5873,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "3130:15:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3106:39:25"
                      },
                      {
                        "assignments": [
                          5879
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5879,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3187:6:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 5920,
                            "src": "3155:38:25",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 5878,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 5877,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "3155:24:25"
                              },
                              "referencedDeclaration": 9308,
                              "src": "3155:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5881,
                        "initialValue": {
                          "id": 5880,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5809,
                          "src": "3196:14:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3155:55:25"
                      },
                      {
                        "assignments": [
                          5887
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5887,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "3284:19:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 5920,
                            "src": "3220:83:25",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5885,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 5884,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8506,
                                  "src": "3220:42:25"
                                },
                                "referencedDeclaration": 8506,
                                "src": "3220:42:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                                }
                              },
                              "id": 5886,
                              "nodeType": "ArrayTypeName",
                              "src": "3220:44:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5894,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5892,
                              "name": "drawIdsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5871,
                              "src": "3372:13:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5891,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "3306:48:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 5889,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 5888,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 8506,
                                  "src": "3310:42:25"
                                },
                                "referencedDeclaration": 8506,
                                "src": "3310:42:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                                }
                              },
                              "id": 5890,
                              "nodeType": "ArrayTypeName",
                              "src": "3310:44:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                              }
                            }
                          },
                          "id": 5893,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3306:93:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3220:179:25"
                      },
                      {
                        "body": {
                          "id": 5916,
                          "nodeType": "Block",
                          "src": "3454:92:25",
                          "statements": [
                            {
                              "expression": {
                                "id": 5914,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 5905,
                                    "name": "_prizeDistributions",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5887,
                                    "src": "3468:19:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                                    }
                                  },
                                  "id": 5907,
                                  "indexExpression": {
                                    "id": 5906,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5896,
                                    "src": "3488:1:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "3468:22:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 5909,
                                      "name": "buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5879,
                                      "src": "3515:6:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 5910,
                                        "name": "_drawIds",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5862,
                                        "src": "3523:8:25",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                          "typeString": "uint32[] calldata"
                                        }
                                      },
                                      "id": 5912,
                                      "indexExpression": {
                                        "id": 5911,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 5896,
                                        "src": "3532:1:25",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "3523:11:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "id": 5908,
                                    "name": "_getPrizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6144,
                                    "src": "3493:21:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_struct$_PrizeDistribution_$8506_memory_ptr_$",
                                      "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) view returns (struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                                    }
                                  },
                                  "id": 5913,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3493:42:25",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                  }
                                },
                                "src": "3468:67:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                }
                              },
                              "id": 5915,
                              "nodeType": "ExpressionStatement",
                              "src": "3468:67:25"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5901,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5899,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5896,
                            "src": "3430:1:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 5900,
                            "name": "drawIdsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5871,
                            "src": "3434:13:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3430:17:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5917,
                        "initializationExpression": {
                          "assignments": [
                            5896
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 5896,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "3423:1:25",
                              "nodeType": "VariableDeclaration",
                              "scope": 5917,
                              "src": "3415:9:25",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 5895,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3415:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 5898,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 5897,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3427:1:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "3415:13:25"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 5903,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "3449:3:25",
                            "subExpression": {
                              "id": 5902,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5896,
                              "src": "3449:1:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5904,
                          "nodeType": "ExpressionStatement",
                          "src": "3449:3:25"
                        },
                        "nodeType": "ForStatement",
                        "src": "3410:136:25"
                      },
                      {
                        "expression": {
                          "id": 5918,
                          "name": "_prizeDistributions",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5887,
                          "src": "3563:19:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory[] memory"
                          }
                        },
                        "functionReturnParameters": 5869,
                        "id": 5919,
                        "nodeType": "Return",
                        "src": "3556:26:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5859,
                    "nodeType": "StructuredDocumentation",
                    "src": "2871:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "d30a5daf",
                  "id": 5921,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributions",
                  "nameLocation": "2925:21:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5864,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3013:8:25"
                  },
                  "parameters": {
                    "id": 5863,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5862,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2965:8:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 5921,
                        "src": "2947:26:25",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5860,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2947:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 5861,
                          "nodeType": "ArrayTypeName",
                          "src": "2947:8:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2946:28:25"
                  },
                  "returnParameters": {
                    "id": 5869,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5868,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5921,
                        "src": "3039:51:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5866,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 5865,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8506,
                              "src": "3039:42:25"
                            },
                            "referencedDeclaration": 8506,
                            "src": "3039:42:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            }
                          },
                          "id": 5867,
                          "nodeType": "ArrayTypeName",
                          "src": "3039:44:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3038:53:25"
                  },
                  "scope": 6275,
                  "src": "2916:673:25",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8564
                  ],
                  "body": {
                    "id": 5962,
                    "nodeType": "Block",
                    "src": "3717:462:25",
                    "statements": [
                      {
                        "assignments": [
                          5932
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5932,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3759:6:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 5962,
                            "src": "3727:38:25",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 5931,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 5930,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "3727:24:25"
                              },
                              "referencedDeclaration": 9308,
                              "src": "3727:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5934,
                        "initialValue": {
                          "id": 5933,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5809,
                          "src": "3768:14:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3727:55:25"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 5938,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 5935,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5932,
                              "src": "3797:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 5936,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9303,
                            "src": "3797:17:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5937,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3818:1:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3797:22:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5942,
                        "nodeType": "IfStatement",
                        "src": "3793:61:25",
                        "trueBody": {
                          "id": 5941,
                          "nodeType": "Block",
                          "src": "3821:33:25",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 5939,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3842:1:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 5927,
                              "id": 5940,
                              "nodeType": "Return",
                              "src": "3835:8:25"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          5944
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5944,
                            "mutability": "mutable",
                            "name": "bufferNextIndex",
                            "nameLocation": "3871:15:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 5962,
                            "src": "3864:22:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5943,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3864:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5947,
                        "initialValue": {
                          "expression": {
                            "id": 5945,
                            "name": "buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5932,
                            "src": "3889:6:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "id": 5946,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "nextIndex",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9305,
                          "src": "3889:16:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3864:41:25"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 5953,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 5948,
                                "name": "prizeDistributionRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5805,
                                "src": "4002:27:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref[256] storage ref"
                                }
                              },
                              "id": 5950,
                              "indexExpression": {
                                "id": 5949,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5944,
                                "src": "4030:15:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "4002:44:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                              }
                            },
                            "id": 5951,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "matchCardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8489,
                            "src": "4002:61:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5952,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4067:1:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4002:66:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 5960,
                          "nodeType": "Block",
                          "src": "4126:47:25",
                          "statements": [
                            {
                              "expression": {
                                "id": 5958,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5944,
                                "src": "4147:15:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 5927,
                              "id": 5959,
                              "nodeType": "Return",
                              "src": "4140:22:25"
                            }
                          ]
                        },
                        "id": 5961,
                        "nodeType": "IfStatement",
                        "src": "3998:175:25",
                        "trueBody": {
                          "id": 5957,
                          "nodeType": "Block",
                          "src": "4070:50:25",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 5954,
                                  "name": "buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5932,
                                  "src": "4091:6:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 5955,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9307,
                                "src": "4091:18:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 5927,
                              "id": 5956,
                              "nodeType": "Return",
                              "src": "4084:25:25"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5922,
                    "nodeType": "StructuredDocumentation",
                    "src": "3595:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "21e98ad9",
                  "id": 5963,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionCount",
                  "nameLocation": "3649:25:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5924,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3691:8:25"
                  },
                  "parameters": {
                    "id": 5923,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3674:2:25"
                  },
                  "returnParameters": {
                    "id": 5927,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5926,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5963,
                        "src": "3709:6:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5925,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3709:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3708:8:25"
                  },
                  "scope": 6275,
                  "src": "3640:539:25",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8529
                  ],
                  "body": {
                    "id": 5991,
                    "nodeType": "Block",
                    "src": "4420:174:25",
                    "statements": [
                      {
                        "assignments": [
                          5977
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5977,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4462:6:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 5991,
                            "src": "4430:38:25",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 5976,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 5975,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "4430:24:25"
                              },
                              "referencedDeclaration": 9308,
                              "src": "4430:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5979,
                        "initialValue": {
                          "id": 5978,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5809,
                          "src": "4471:14:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4430:55:25"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "baseExpression": {
                                "id": 5980,
                                "name": "prizeDistributionRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5805,
                                "src": "4504:27:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref[256] storage ref"
                                }
                              },
                              "id": 5986,
                              "indexExpression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 5983,
                                      "name": "buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5977,
                                      "src": "4548:6:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 5984,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9303,
                                    "src": "4548:17:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 5981,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5977,
                                    "src": "4532:6:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 5982,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "getIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9437,
                                  "src": "4532:15:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                                    "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                                  }
                                },
                                "id": 5985,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4532:34:25",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "4504:63:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 5987,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5977,
                                "src": "4569:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 5988,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "lastDrawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9303,
                              "src": "4569:17:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "id": 5989,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "4503:84:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_PrizeDistribution_$8506_storage_$_t_uint32_$",
                            "typeString": "tuple(struct IPrizeDistributionBuffer.PrizeDistribution storage ref,uint32)"
                          }
                        },
                        "functionReturnParameters": 5972,
                        "id": 5990,
                        "nodeType": "Return",
                        "src": "4496:91:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5964,
                    "nodeType": "StructuredDocumentation",
                    "src": "4185:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "24c21446",
                  "id": 5992,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestPrizeDistribution",
                  "nameLocation": "4239:26:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5966,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4306:8:25"
                  },
                  "parameters": {
                    "id": 5965,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4265:2:25"
                  },
                  "returnParameters": {
                    "id": 5972,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5969,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "4382:17:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 5992,
                        "src": "4332:67:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5968,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5967,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "4332:42:25"
                          },
                          "referencedDeclaration": 8506,
                          "src": "4332:42:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5971,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4408:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 5992,
                        "src": "4401:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5970,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4401:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4331:84:25"
                  },
                  "scope": 6275,
                  "src": "4230:364:25",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8538
                  ],
                  "body": {
                    "id": 6061,
                    "nodeType": "Block",
                    "src": "4835:998:25",
                    "statements": [
                      {
                        "assignments": [
                          6006
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6006,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4877:6:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 6061,
                            "src": "4845:38:25",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6005,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6004,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "4845:24:25"
                              },
                              "referencedDeclaration": 9308,
                              "src": "4845:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6008,
                        "initialValue": {
                          "id": 6007,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5809,
                          "src": "4886:14:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4845:55:25"
                      },
                      {
                        "expression": {
                          "id": 6014,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6009,
                            "name": "prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5998,
                            "src": "4981:17:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 6010,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5805,
                              "src": "5001:27:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 6013,
                            "indexExpression": {
                              "expression": {
                                "id": 6011,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6006,
                                "src": "5029:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 6012,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9305,
                              "src": "5029:16:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5001:45:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                            }
                          },
                          "src": "4981:65:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "id": 6015,
                        "nodeType": "ExpressionStatement",
                        "src": "4981:65:25"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 6019,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6016,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6006,
                              "src": "5149:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 6017,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9303,
                            "src": "5149:17:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 6018,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5170:1:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5149:22:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 6028,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 6025,
                                "name": "prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5998,
                                "src": "5283:17:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                }
                              },
                              "id": 6026,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8487,
                              "src": "5283:30:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "hexValue": "30",
                              "id": 6027,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5317:1:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "src": "5283:35:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "id": 6058,
                            "nodeType": "Block",
                            "src": "5601:226:25",
                            "statements": [
                              {
                                "expression": {
                                  "id": 6056,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 6047,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6000,
                                    "src": "5763:6:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    "id": 6055,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "components": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          "id": 6051,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "expression": {
                                              "id": 6048,
                                              "name": "buffer",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 6006,
                                              "src": "5773:6:25",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                                              }
                                            },
                                            "id": 6049,
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "lastDrawId",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 9303,
                                            "src": "5773:17:25",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "hexValue": "31",
                                            "id": 6050,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "5793:1:25",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_1_by_1",
                                              "typeString": "int_const 1"
                                            },
                                            "value": "1"
                                          },
                                          "src": "5773:21:25",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "id": 6052,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "5772:23:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 6053,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6006,
                                        "src": "5798:6:25",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 6054,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "cardinality",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9307,
                                      "src": "5798:18:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "src": "5772:44:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "src": "5763:53:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "id": 6057,
                                "nodeType": "ExpressionStatement",
                                "src": "5763:53:25"
                              }
                            ]
                          },
                          "id": 6059,
                          "nodeType": "IfStatement",
                          "src": "5279:548:25",
                          "trueBody": {
                            "id": 6046,
                            "nodeType": "Block",
                            "src": "5320:275:25",
                            "statements": [
                              {
                                "expression": {
                                  "id": 6033,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 6029,
                                    "name": "prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5998,
                                    "src": "5469:17:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "baseExpression": {
                                      "id": 6030,
                                      "name": "prizeDistributionRingBuffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5805,
                                      "src": "5489:27:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                                        "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref[256] storage ref"
                                      }
                                    },
                                    "id": 6032,
                                    "indexExpression": {
                                      "hexValue": "30",
                                      "id": 6031,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "5517:1:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "5489:30:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                                    }
                                  },
                                  "src": "5469:50:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                  }
                                },
                                "id": 6034,
                                "nodeType": "ExpressionStatement",
                                "src": "5469:50:25"
                              },
                              {
                                "expression": {
                                  "id": 6044,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 6035,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6000,
                                    "src": "5533:6:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    "id": 6043,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "components": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          "id": 6039,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "expression": {
                                              "id": 6036,
                                              "name": "buffer",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 6006,
                                              "src": "5543:6:25",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                                              }
                                            },
                                            "id": 6037,
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "lastDrawId",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 9303,
                                            "src": "5543:17:25",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "hexValue": "31",
                                            "id": 6038,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "5563:1:25",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_1_by_1",
                                              "typeString": "int_const 1"
                                            },
                                            "value": "1"
                                          },
                                          "src": "5543:21:25",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "id": 6040,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "5542:23:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 6041,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6006,
                                        "src": "5568:6:25",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 6042,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "nextIndex",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9305,
                                      "src": "5568:16:25",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "src": "5542:42:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "src": "5533:51:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "id": 6045,
                                "nodeType": "ExpressionStatement",
                                "src": "5533:51:25"
                              }
                            ]
                          }
                        },
                        "id": 6060,
                        "nodeType": "IfStatement",
                        "src": "5145:682:25",
                        "trueBody": {
                          "id": 6024,
                          "nodeType": "Block",
                          "src": "5173:100:25",
                          "statements": [
                            {
                              "expression": {
                                "id": 6022,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 6020,
                                  "name": "drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6000,
                                  "src": "5187:6:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 6021,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "5196:1:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "5187:10:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "id": 6023,
                              "nodeType": "ExpressionStatement",
                              "src": "5187:10:25"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5993,
                    "nodeType": "StructuredDocumentation",
                    "src": "4600:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "2439093a",
                  "id": 6062,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestPrizeDistribution",
                  "nameLocation": "4654:26:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5995,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4721:8:25"
                  },
                  "parameters": {
                    "id": 5994,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4680:2:25"
                  },
                  "returnParameters": {
                    "id": 6001,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5998,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "4797:17:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6062,
                        "src": "4747:67:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 5997,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5996,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "4747:42:25"
                          },
                          "referencedDeclaration": 8506,
                          "src": "4747:42:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6000,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4823:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6062,
                        "src": "4816:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5999,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4816:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4746:84:25"
                  },
                  "scope": 6275,
                  "src": "4645:1188:25",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8575
                  ],
                  "body": {
                    "id": 6081,
                    "nodeType": "Block",
                    "src": "6077:75:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6077,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6065,
                              "src": "6117:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6078,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6068,
                              "src": "6126:18:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                              }
                            ],
                            "id": 6076,
                            "name": "_pushPrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6274,
                            "src": "6094:22:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_calldata_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution calldata) returns (bool)"
                            }
                          },
                          "id": 6079,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6094:51:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6075,
                        "id": 6080,
                        "nodeType": "Return",
                        "src": "6087:58:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6063,
                    "nodeType": "StructuredDocumentation",
                    "src": "5839:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "1124e1dc",
                  "id": 6082,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6072,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6071,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "6043:18:25"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6043:18:25"
                    }
                  ],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "5893:21:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6070,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6034:8:25"
                  },
                  "parameters": {
                    "id": 6069,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6065,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "5931:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6082,
                        "src": "5924:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6064,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5924:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6068,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "6000:18:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6082,
                        "src": "5948:70:25",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 6067,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6066,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "5948:42:25"
                          },
                          "referencedDeclaration": 8506,
                          "src": "5948:42:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5914:110:25"
                  },
                  "returnParameters": {
                    "id": 6075,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6074,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6082,
                        "src": "6071:4:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6073,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6071:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6070:6:25"
                  },
                  "scope": 6275,
                  "src": "5884:268:25",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8586
                  ],
                  "body": {
                    "id": 6123,
                    "nodeType": "Block",
                    "src": "6388:276:25",
                    "statements": [
                      {
                        "assignments": [
                          6100
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6100,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "6430:6:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 6123,
                            "src": "6398:38:25",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6099,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6098,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "6398:24:25"
                              },
                              "referencedDeclaration": 9308,
                              "src": "6398:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6102,
                        "initialValue": {
                          "id": 6101,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5809,
                          "src": "6439:14:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6398:55:25"
                      },
                      {
                        "assignments": [
                          6104
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6104,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "6470:5:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 6123,
                            "src": "6463:12:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6103,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6463:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6109,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6107,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6085,
                              "src": "6494:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 6105,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6100,
                              "src": "6478:6:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 6106,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9437,
                            "src": "6478:15:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 6108,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6478:24:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6463:39:25"
                      },
                      {
                        "expression": {
                          "id": 6114,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 6110,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5805,
                              "src": "6512:27:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 6112,
                            "indexExpression": {
                              "id": 6111,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6104,
                              "src": "6540:5:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "6512:34:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6113,
                            "name": "_prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6088,
                            "src": "6549:18:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                            }
                          },
                          "src": "6512:55:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                          }
                        },
                        "id": 6115,
                        "nodeType": "ExpressionStatement",
                        "src": "6512:55:25"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6117,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6085,
                              "src": "6604:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6118,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6088,
                              "src": "6613:18:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                              }
                            ],
                            "id": 6116,
                            "name": "PrizeDistributionSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8514,
                            "src": "6583:20:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 6119,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6583:49:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6120,
                        "nodeType": "EmitStatement",
                        "src": "6578:54:25"
                      },
                      {
                        "expression": {
                          "id": 6121,
                          "name": "_drawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6085,
                          "src": "6650:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6095,
                        "id": 6122,
                        "nodeType": "Return",
                        "src": "6643:14:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6083,
                    "nodeType": "StructuredDocumentation",
                    "src": "6158:40:25",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "ce336ce9",
                  "id": 6124,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6092,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6091,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "6361:9:25"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6361:9:25"
                    }
                  ],
                  "name": "setPrizeDistribution",
                  "nameLocation": "6212:20:25",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6090,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6352:8:25"
                  },
                  "parameters": {
                    "id": 6089,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6085,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "6249:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6124,
                        "src": "6242:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6084,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6242:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6088,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "6318:18:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6124,
                        "src": "6266:70:25",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 6087,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6086,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "6266:42:25"
                          },
                          "referencedDeclaration": 8506,
                          "src": "6266:42:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6232:110:25"
                  },
                  "returnParameters": {
                    "id": 6095,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6094,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6124,
                        "src": "6380:6:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6093,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6380:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6379:8:25"
                  },
                  "scope": 6275,
                  "src": "6203:461:25",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6143,
                    "nodeType": "Block",
                    "src": "7069:78:25",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 6136,
                            "name": "prizeDistributionRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5805,
                            "src": "7086:27:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref[256] storage ref"
                            }
                          },
                          "id": 6141,
                          "indexExpression": {
                            "arguments": [
                              {
                                "id": 6139,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6130,
                                "src": "7131:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 6137,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6128,
                                "src": "7114:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 6138,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "getIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9437,
                              "src": "7114:16:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 6140,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7114:25:25",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7086:54:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                          }
                        },
                        "functionReturnParameters": 6135,
                        "id": 6142,
                        "nodeType": "Return",
                        "src": "7079:61:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6125,
                    "nodeType": "StructuredDocumentation",
                    "src": "6726:148:25",
                    "text": " @notice Gets the PrizeDistributionBuffer for a drawId\n @param _buffer DrawRingBufferLib.Buffer\n @param _drawId drawId"
                  },
                  "id": 6144,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getPrizeDistribution",
                  "nameLocation": "6888:21:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6131,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6128,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "6942:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6144,
                        "src": "6910:39:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 6127,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6126,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9308,
                            "src": "6910:24:25"
                          },
                          "referencedDeclaration": 9308,
                          "src": "6910:24:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6130,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "6958:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6144,
                        "src": "6951:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6129,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6951:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6909:57:25"
                  },
                  "returnParameters": {
                    "id": 6135,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6134,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6144,
                        "src": "7014:49:25",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 6133,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6132,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "7014:42:25"
                          },
                          "referencedDeclaration": 8506,
                          "src": "7014:42:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7013:51:25"
                  },
                  "scope": 6275,
                  "src": "6879:268:25",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6273,
                    "nodeType": "Block",
                    "src": "7508:1432:25",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6158,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6156,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6147,
                                "src": "7526:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6157,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7536:1:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7526:11:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f647261772d69642d67742d30",
                              "id": 6159,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7539:23:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03",
                                "typeString": "literal_string \"DrawCalc/draw-id-gt-0\""
                              },
                              "value": "DrawCalc/draw-id-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03",
                                "typeString": "literal_string \"DrawCalc/draw-id-gt-0\""
                              }
                            ],
                            "id": 6155,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7518:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6160,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7518:45:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6161,
                        "nodeType": "ExpressionStatement",
                        "src": "7518:45:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 6166,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 6163,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6150,
                                  "src": "7581:18:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                                  }
                                },
                                "id": 6164,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "matchCardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8489,
                                "src": "7581:35:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6165,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7619:1:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7581:39:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6d6174636843617264696e616c6974792d67742d30",
                              "id": 6167,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7622:32:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac",
                                "typeString": "literal_string \"DrawCalc/matchCardinality-gt-0\""
                              },
                              "value": "DrawCalc/matchCardinality-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac",
                                "typeString": "literal_string \"DrawCalc/matchCardinality-gt-0\""
                              }
                            ],
                            "id": 6162,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7573:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6168,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7573:82:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6169,
                        "nodeType": "ExpressionStatement",
                        "src": "7573:82:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              },
                              "id": 6177,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 6171,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6150,
                                  "src": "7686:18:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                                  }
                                },
                                "id": 6172,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "bitRangeSize",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8487,
                                "src": "7686:31:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                },
                                "id": 6176,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "hexValue": "323536",
                                  "id": 6173,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7721:3:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_256_by_1",
                                    "typeString": "int_const 256"
                                  },
                                  "value": "256"
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "expression": {
                                    "id": 6174,
                                    "name": "_prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6150,
                                    "src": "7727:18:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                                    }
                                  },
                                  "id": 6175,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "matchCardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 8489,
                                  "src": "7727:35:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "7721:41:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "7686:76:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f62697452616e676553697a652d746f6f2d6c61726765",
                              "id": 6178,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7776:33:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-too-large\""
                              },
                              "value": "DrawCalc/bitRangeSize-too-large"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-too-large\""
                              }
                            ],
                            "id": 6170,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7665:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6179,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7665:154:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6180,
                        "nodeType": "ExpressionStatement",
                        "src": "7665:154:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 6185,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 6182,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6150,
                                  "src": "7838:18:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                                  }
                                },
                                "id": 6183,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "bitRangeSize",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8487,
                                "src": "7838:31:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6184,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7872:1:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7838:35:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f62697452616e676553697a652d67742d30",
                              "id": 6186,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7875:28:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-gt-0\""
                              },
                              "value": "DrawCalc/bitRangeSize-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377",
                                "typeString": "literal_string \"DrawCalc/bitRangeSize-gt-0\""
                              }
                            ],
                            "id": 6181,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7830:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6187,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7830:74:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6188,
                        "nodeType": "ExpressionStatement",
                        "src": "7830:74:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6193,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 6190,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6150,
                                  "src": "7922:18:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                                  }
                                },
                                "id": 6191,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "maxPicksPerUser",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8495,
                                "src": "7922:34:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6192,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7959:1:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7922:38:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6d61785069636b73506572557365722d67742d30",
                              "id": 6194,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7962:31:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742",
                                "typeString": "literal_string \"DrawCalc/maxPicksPerUser-gt-0\""
                              },
                              "value": "DrawCalc/maxPicksPerUser-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742",
                                "typeString": "literal_string \"DrawCalc/maxPicksPerUser-gt-0\""
                              }
                            ],
                            "id": 6189,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7914:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6195,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7914:80:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6196,
                        "nodeType": "ExpressionStatement",
                        "src": "7914:80:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6201,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 6198,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6150,
                                  "src": "8012:18:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                                  }
                                },
                                "id": 6199,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "expiryDuration",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8497,
                                "src": "8012:33:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6200,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "8048:1:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "8012:37:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6578706972794475726174696f6e2d67742d30",
                              "id": 6202,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8051:30:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38",
                                "typeString": "literal_string \"DrawCalc/expiryDuration-gt-0\""
                              },
                              "value": "DrawCalc/expiryDuration-gt-0"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38",
                                "typeString": "literal_string \"DrawCalc/expiryDuration-gt-0\""
                              }
                            ],
                            "id": 6197,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8004:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6203,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8004:78:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6204,
                        "nodeType": "ExpressionStatement",
                        "src": "8004:78:25"
                      },
                      {
                        "assignments": [
                          6206
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6206,
                            "mutability": "mutable",
                            "name": "sumTotalTiers",
                            "nameLocation": "8161:13:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 6273,
                            "src": "8153:21:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6205,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8153:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6208,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 6207,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "8177:1:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8153:25:25"
                      },
                      {
                        "assignments": [
                          6210
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6210,
                            "mutability": "mutable",
                            "name": "tiersLength",
                            "nameLocation": "8196:11:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 6273,
                            "src": "8188:19:25",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6209,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8188:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6214,
                        "initialValue": {
                          "expression": {
                            "expression": {
                              "id": 6211,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6150,
                              "src": "8210:18:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                              }
                            },
                            "id": 6212,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tiers",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8503,
                            "src": "8210:24:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$16_calldata_ptr",
                              "typeString": "uint32[16] calldata"
                            }
                          },
                          "id": 6213,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "8210:31:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8188:53:25"
                      },
                      {
                        "body": {
                          "id": 6236,
                          "nodeType": "Block",
                          "src": "8306:106:25",
                          "statements": [
                            {
                              "assignments": [
                                6226
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6226,
                                  "mutability": "mutable",
                                  "name": "tier",
                                  "nameLocation": "8328:4:25",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 6236,
                                  "src": "8320:12:25",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 6225,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8320:7:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6231,
                              "initialValue": {
                                "baseExpression": {
                                  "expression": {
                                    "id": 6227,
                                    "name": "_prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6150,
                                    "src": "8335:18:25",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                                    }
                                  },
                                  "id": 6228,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "tiers",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 8503,
                                  "src": "8335:24:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$16_calldata_ptr",
                                    "typeString": "uint32[16] calldata"
                                  }
                                },
                                "id": 6230,
                                "indexExpression": {
                                  "id": 6229,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6216,
                                  "src": "8360:5:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "8335:31:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "8320:46:25"
                            },
                            {
                              "expression": {
                                "id": 6234,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 6232,
                                  "name": "sumTotalTiers",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6206,
                                  "src": "8380:13:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "id": 6233,
                                  "name": "tier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6226,
                                  "src": "8397:4:25",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8380:21:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 6235,
                              "nodeType": "ExpressionStatement",
                              "src": "8380:21:25"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6221,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6219,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6216,
                            "src": "8276:5:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 6220,
                            "name": "tiersLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6210,
                            "src": "8284:11:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8276:19:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6237,
                        "initializationExpression": {
                          "assignments": [
                            6216
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 6216,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "8265:5:25",
                              "nodeType": "VariableDeclaration",
                              "scope": 6237,
                              "src": "8257:13:25",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 6215,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8257:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 6218,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 6217,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8273:1:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8257:17:25"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 6223,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8297:7:25",
                            "subExpression": {
                              "id": 6222,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6216,
                              "src": "8297:5:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6224,
                          "nodeType": "ExpressionStatement",
                          "src": "8297:7:25"
                        },
                        "nodeType": "ForStatement",
                        "src": "8252:160:25"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 6241,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6239,
                                "name": "sumTotalTiers",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6206,
                                "src": "8501:13:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 6240,
                                "name": "TIERS_CEILING",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5794,
                                "src": "8518:13:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8501:30:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f74696572732d67742d31303025",
                              "id": 6242,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8533:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08",
                                "typeString": "literal_string \"DrawCalc/tiers-gt-100%\""
                              },
                              "value": "DrawCalc/tiers-gt-100%"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08",
                                "typeString": "literal_string \"DrawCalc/tiers-gt-100%\""
                              }
                            ],
                            "id": 6238,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8493:7:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6243,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8493:65:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6244,
                        "nodeType": "ExpressionStatement",
                        "src": "8493:65:25"
                      },
                      {
                        "assignments": [
                          6249
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6249,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "8601:6:25",
                            "nodeType": "VariableDeclaration",
                            "scope": 6273,
                            "src": "8569:38:25",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6248,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6247,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9308,
                                "src": "8569:24:25"
                              },
                              "referencedDeclaration": 9308,
                              "src": "8569:24:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6251,
                        "initialValue": {
                          "id": 6250,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5809,
                          "src": "8610:14:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8569:55:25"
                      },
                      {
                        "expression": {
                          "id": 6257,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 6252,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5805,
                              "src": "8693:27:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 6255,
                            "indexExpression": {
                              "expression": {
                                "id": 6253,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6249,
                                "src": "8721:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 6254,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9305,
                              "src": "8721:16:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8693:45:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6256,
                            "name": "_prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6150,
                            "src": "8741:18:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                            }
                          },
                          "src": "8693:66:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution storage ref"
                          }
                        },
                        "id": 6258,
                        "nodeType": "ExpressionStatement",
                        "src": "8693:66:25"
                      },
                      {
                        "expression": {
                          "id": 6264,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6259,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5809,
                            "src": "8809:14:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 6262,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6147,
                                "src": "8838:7:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 6260,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6249,
                                "src": "8826:6:25",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 6261,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "push",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9374,
                              "src": "8826:11:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$9308_memory_ptr_$bound_to$_t_struct$_Buffer_$9308_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                              }
                            },
                            "id": 6263,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "8826:20:25",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "src": "8809:37:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "id": 6265,
                        "nodeType": "ExpressionStatement",
                        "src": "8809:37:25"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6267,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6147,
                              "src": "8883:7:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6268,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6150,
                              "src": "8892:18:25",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution calldata"
                              }
                            ],
                            "id": 6266,
                            "name": "PrizeDistributionSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8514,
                            "src": "8862:20:25",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 6269,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8862:49:25",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6270,
                        "nodeType": "EmitStatement",
                        "src": "8857:54:25"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 6271,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "8929:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 6154,
                        "id": 6272,
                        "nodeType": "Return",
                        "src": "8922:11:25"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6145,
                    "nodeType": "StructuredDocumentation",
                    "src": "7153:184:25",
                    "text": " @notice Set newest PrizeDistributionBuffer in ring buffer storage.\n @param _drawId       drawId\n @param _prizeDistribution PrizeDistributionBuffer struct"
                  },
                  "id": 6274,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_pushPrizeDistribution",
                  "nameLocation": "7351:22:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6151,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6147,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "7390:7:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6274,
                        "src": "7383:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6146,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7383:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6150,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "7459:18:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 6274,
                        "src": "7407:70:25",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 6149,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6148,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "7407:42:25"
                          },
                          "referencedDeclaration": 8506,
                          "src": "7407:42:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7373:110:25"
                  },
                  "returnParameters": {
                    "id": 6154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6153,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6274,
                        "src": "7502:4:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6152,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7502:4:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7501:6:25"
                  },
                  "scope": 6275,
                  "src": "7342:1598:25",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 6276,
              "src": "904:8038:25",
              "usedErrors": []
            }
          ],
          "src": "37:8906:25"
        },
        "id": 25
      },
      "@pooltogether/v4-core/contracts/PrizeDistributor.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributor": [
              8685
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributor": [
              6648
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 6649,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 6277,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:26"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 6278,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6649,
              "sourceUnit": 664,
              "src": "61:56:26",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 6279,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6649,
              "sourceUnit": 1118,
              "src": "118:65:26",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 6280,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6649,
              "sourceUnit": 3259,
              "src": "184:69:26",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol",
              "file": "./interfaces/IPrizeDistributor.sol",
              "id": 6281,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6649,
              "sourceUnit": 8686,
              "src": "255:44:26",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "./interfaces/IDrawCalculator.sol",
              "id": 6282,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6649,
              "sourceUnit": 8483,
              "src": "300:42:26",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 6284,
                    "name": "IPrizeDistributor",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8685,
                    "src": "1063:17:26"
                  },
                  "id": 6285,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1063:17:26"
                },
                {
                  "baseName": {
                    "id": 6286,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3258,
                    "src": "1082:7:26"
                  },
                  "id": 6287,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1082:7:26"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 6283,
                "nodeType": "StructuredDocumentation",
                "src": "344:689:26",
                "text": " @title  PoolTogether V4 PrizeDistributor\n @author PoolTogether Inc Team\n @notice The PrizeDistributor contract holds Tickets (captured interest) and distributes tickets to users with winning draw claims.\nPrizeDistributor uses an external IDrawCalculator to validate a users draw claim, before awarding payouts. To prevent users \nfrom reclaiming prizes, a payout history for each draw claim is mapped to user accounts. Reclaiming a draw can occur\nif an \"optimal\" prize was not included in previous claim pick indices and the new claims updated payout is greater then\nthe previous prize distributor claim payout."
              },
              "fullyImplemented": true,
              "id": 6648,
              "linearizedBaseContracts": [
                6648,
                3258,
                8685
              ],
              "name": "PrizeDistributor",
              "nameLocation": "1043:16:26",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 6291,
                  "libraryName": {
                    "id": 6288,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1102:9:26"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1096:27:26",
                  "typeName": {
                    "id": 6290,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6289,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1116:6:26"
                    },
                    "referencedDeclaration": 663,
                    "src": "1116:6:26",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6292,
                    "nodeType": "StructuredDocumentation",
                    "src": "1183:34:26",
                    "text": "@notice DrawCalculator address"
                  },
                  "id": 6295,
                  "mutability": "mutable",
                  "name": "drawCalculator",
                  "nameLocation": "1247:14:26",
                  "nodeType": "VariableDeclaration",
                  "scope": 6648,
                  "src": "1222:39:26",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                    "typeString": "contract IDrawCalculator"
                  },
                  "typeName": {
                    "id": 6294,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6293,
                      "name": "IDrawCalculator",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8482,
                      "src": "1222:15:26"
                    },
                    "referencedDeclaration": 8482,
                    "src": "1222:15:26",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                      "typeString": "contract IDrawCalculator"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6296,
                    "nodeType": "StructuredDocumentation",
                    "src": "1268:25:26",
                    "text": "@notice Token address"
                  },
                  "id": 6299,
                  "mutability": "immutable",
                  "name": "token",
                  "nameLocation": "1324:5:26",
                  "nodeType": "VariableDeclaration",
                  "scope": 6648,
                  "src": "1298:31:26",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IERC20_$663",
                    "typeString": "contract IERC20"
                  },
                  "typeName": {
                    "id": 6298,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6297,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1298:6:26"
                    },
                    "referencedDeclaration": 663,
                    "src": "1298:6:26",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6300,
                    "nodeType": "StructuredDocumentation",
                    "src": "1336:52:26",
                    "text": "@notice Maps users => drawId => paid out balance"
                  },
                  "id": 6306,
                  "mutability": "mutable",
                  "name": "userDrawPayouts",
                  "nameLocation": "1450:15:26",
                  "nodeType": "VariableDeclaration",
                  "scope": 6648,
                  "src": "1393:72:26",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(uint256 => uint256))"
                  },
                  "typeName": {
                    "id": 6305,
                    "keyType": {
                      "id": 6301,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1401:7:26",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1393:47:26",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(uint256 => uint256))"
                    },
                    "valueType": {
                      "id": 6304,
                      "keyType": {
                        "id": 6302,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1420:7:26",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1412:27:26",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                        "typeString": "mapping(uint256 => uint256)"
                      },
                      "valueType": {
                        "id": 6303,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1431:7:26",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6346,
                    "nodeType": "Block",
                    "src": "1858:198:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6322,
                              "name": "_drawCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6315,
                              "src": "1887:15:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 6321,
                            "name": "_setDrawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6631,
                            "src": "1868:18:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawCalculator_$8482_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 6323,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1868:35:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6324,
                        "nodeType": "ExpressionStatement",
                        "src": "1868:35:26"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6334,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6328,
                                    "name": "_token",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6312,
                                    "src": "1929:6:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 6327,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1921:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6326,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1921:7:26",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6329,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1921:15:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6332,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1948:1:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6331,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1940:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6330,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1940:7:26",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6333,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1940:10:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1921:29:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d61646472657373",
                              "id": 6335,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1952:41:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd",
                                "typeString": "literal_string \"PrizeDistributor/token-not-zero-address\""
                              },
                              "value": "PrizeDistributor/token-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd",
                                "typeString": "literal_string \"PrizeDistributor/token-not-zero-address\""
                              }
                            ],
                            "id": 6325,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1913:7:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6336,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1913:81:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6337,
                        "nodeType": "ExpressionStatement",
                        "src": "1913:81:26"
                      },
                      {
                        "expression": {
                          "id": 6340,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6338,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6299,
                            "src": "2004:5:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6339,
                            "name": "_token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6312,
                            "src": "2012:6:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "src": "2004:14:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "id": 6341,
                        "nodeType": "ExpressionStatement",
                        "src": "2004:14:26"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6343,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6312,
                              "src": "2042:6:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 6342,
                            "name": "TokenSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8614,
                            "src": "2033:8:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$663_$returns$__$",
                              "typeString": "function (contract IERC20)"
                            }
                          },
                          "id": 6344,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2033:16:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6345,
                        "nodeType": "EmitStatement",
                        "src": "2028:21:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6307,
                    "nodeType": "StructuredDocumentation",
                    "src": "1520:211:26",
                    "text": " @notice Initialize PrizeDistributor smart contract.\n @param _owner          Owner address\n @param _token          Token address\n @param _drawCalculator DrawCalculator address"
                  },
                  "id": 6347,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 6318,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6309,
                          "src": "1850:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 6319,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 6317,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "1842:7:26"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1842:15:26"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6316,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6309,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1765:6:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6347,
                        "src": "1757:14:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6308,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1757:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6312,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "1788:6:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6347,
                        "src": "1781:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 6311,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6310,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1781:6:26"
                          },
                          "referencedDeclaration": 663,
                          "src": "1781:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6315,
                        "mutability": "mutable",
                        "name": "_drawCalculator",
                        "nameLocation": "1820:15:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6347,
                        "src": "1804:31:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 6314,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6313,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "1804:15:26"
                          },
                          "referencedDeclaration": 8482,
                          "src": "1804:15:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1747:94:26"
                  },
                  "returnParameters": {
                    "id": 6320,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1858:0:26"
                  },
                  "scope": 6648,
                  "src": "1736:320:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    8637
                  ],
                  "body": {
                    "id": 6453,
                    "nodeType": "Block",
                    "src": "2302:1056:26",
                    "statements": [
                      {
                        "assignments": [
                          6362
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6362,
                            "mutability": "mutable",
                            "name": "totalPayout",
                            "nameLocation": "2329:11:26",
                            "nodeType": "VariableDeclaration",
                            "scope": 6453,
                            "src": "2321:19:26",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6361,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2321:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6363,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2321:19:26"
                      },
                      {
                        "assignments": [
                          6368,
                          null
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6368,
                            "mutability": "mutable",
                            "name": "drawPayouts",
                            "nameLocation": "2377:11:26",
                            "nodeType": "VariableDeclaration",
                            "scope": 6453,
                            "src": "2360:28:26",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6366,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2360:7:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 6367,
                              "nodeType": "ArrayTypeName",
                              "src": "2360:9:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          },
                          null
                        ],
                        "id": 6375,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6371,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6350,
                              "src": "2419:5:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6372,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6353,
                              "src": "2426:8:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            {
                              "id": 6373,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6355,
                              "src": "2436:5:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              },
                              {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            ],
                            "expression": {
                              "id": 6369,
                              "name": "drawCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6295,
                              "src": "2394:14:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            },
                            "id": 6370,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "calculate",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8455,
                            "src": "2394:24:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$_t_array$_t_uint32_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,uint32[] memory,bytes memory) view external returns (uint256[] memory,bytes memory)"
                            }
                          },
                          "id": 6374,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2394:48:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2359:83:26"
                      },
                      {
                        "assignments": [
                          6377
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6377,
                            "mutability": "mutable",
                            "name": "drawPayoutsLength",
                            "nameLocation": "2529:17:26",
                            "nodeType": "VariableDeclaration",
                            "scope": 6453,
                            "src": "2521:25:26",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6376,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2521:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6380,
                        "initialValue": {
                          "expression": {
                            "id": 6378,
                            "name": "drawPayouts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6368,
                            "src": "2549:11:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "id": 6379,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "2549:18:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2521:46:26"
                      },
                      {
                        "body": {
                          "id": 6444,
                          "nodeType": "Block",
                          "src": "2655:625:26",
                          "statements": [
                            {
                              "assignments": [
                                6392
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6392,
                                  "mutability": "mutable",
                                  "name": "drawId",
                                  "nameLocation": "2676:6:26",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 6444,
                                  "src": "2669:13:26",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 6391,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2669:6:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6396,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 6393,
                                  "name": "_drawIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6353,
                                  "src": "2685:8:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                    "typeString": "uint32[] calldata"
                                  }
                                },
                                "id": 6395,
                                "indexExpression": {
                                  "id": 6394,
                                  "name": "payoutIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6382,
                                  "src": "2694:11:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "2685:21:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2669:37:26"
                            },
                            {
                              "assignments": [
                                6398
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6398,
                                  "mutability": "mutable",
                                  "name": "payout",
                                  "nameLocation": "2728:6:26",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 6444,
                                  "src": "2720:14:26",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 6397,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2720:7:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6402,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 6399,
                                  "name": "drawPayouts",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6368,
                                  "src": "2737:11:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 6401,
                                "indexExpression": {
                                  "id": 6400,
                                  "name": "payoutIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6382,
                                  "src": "2749:11:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "2737:24:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2720:41:26"
                            },
                            {
                              "assignments": [
                                6404
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6404,
                                  "mutability": "mutable",
                                  "name": "oldPayout",
                                  "nameLocation": "2783:9:26",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 6444,
                                  "src": "2775:17:26",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 6403,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2775:7:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6409,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 6406,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6350,
                                    "src": "2819:5:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 6407,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6392,
                                    "src": "2826:6:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "id": 6405,
                                  "name": "_getDrawPayoutBalanceOf",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6584,
                                  "src": "2795:23:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint32_$returns$_t_uint256_$",
                                    "typeString": "function (address,uint32) view returns (uint256)"
                                  }
                                },
                                "id": 6408,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2795:38:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2775:58:26"
                            },
                            {
                              "assignments": [
                                6411
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6411,
                                  "mutability": "mutable",
                                  "name": "payoutDiff",
                                  "nameLocation": "2855:10:26",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 6444,
                                  "src": "2847:18:26",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 6410,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2847:7:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6413,
                              "initialValue": {
                                "hexValue": "30",
                                "id": 6412,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2868:1:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2847:22:26"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 6417,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 6415,
                                      "name": "payout",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6398,
                                      "src": "2971:6:26",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": ">",
                                    "rightExpression": {
                                      "id": 6416,
                                      "name": "oldPayout",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6404,
                                      "src": "2980:9:26",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "2971:18:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f7a65726f2d7061796f7574",
                                    "id": 6418,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2991:30:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113",
                                      "typeString": "literal_string \"PrizeDistributor/zero-payout\""
                                    },
                                    "value": "PrizeDistributor/zero-payout"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113",
                                      "typeString": "literal_string \"PrizeDistributor/zero-payout\""
                                    }
                                  ],
                                  "id": 6414,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "2963:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 6419,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2963:59:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 6420,
                              "nodeType": "ExpressionStatement",
                              "src": "2963:59:26"
                            },
                            {
                              "id": 6427,
                              "nodeType": "UncheckedBlock",
                              "src": "3037:74:26",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 6425,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "id": 6421,
                                      "name": "payoutDiff",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6411,
                                      "src": "3065:10:26",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 6424,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 6422,
                                        "name": "payout",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6398,
                                        "src": "3078:6:26",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "id": 6423,
                                        "name": "oldPayout",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6404,
                                        "src": "3087:9:26",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3078:18:26",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "3065:31:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "id": 6426,
                                  "nodeType": "ExpressionStatement",
                                  "src": "3065:31:26"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 6429,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6350,
                                    "src": "3149:5:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 6430,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6392,
                                    "src": "3156:6:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 6431,
                                    "name": "payout",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6398,
                                    "src": "3164:6:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 6428,
                                  "name": "_setDrawPayoutBalanceOf",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6602,
                                  "src": "3125:23:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint32,uint256)"
                                  }
                                },
                                "id": 6432,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3125:46:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 6433,
                              "nodeType": "ExpressionStatement",
                              "src": "3125:46:26"
                            },
                            {
                              "expression": {
                                "id": 6436,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 6434,
                                  "name": "totalPayout",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6362,
                                  "src": "3186:11:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "id": 6435,
                                  "name": "payoutDiff",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6411,
                                  "src": "3201:10:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3186:25:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 6437,
                              "nodeType": "ExpressionStatement",
                              "src": "3186:25:26"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 6439,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6350,
                                    "src": "3243:5:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 6440,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6392,
                                    "src": "3250:6:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 6441,
                                    "name": "payoutDiff",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6411,
                                    "src": "3258:10:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 6438,
                                  "name": "ClaimedDraw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8602,
                                  "src": "3231:11:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint32,uint256)"
                                  }
                                },
                                "id": 6442,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3231:38:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 6443,
                              "nodeType": "EmitStatement",
                              "src": "3226:43:26"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6387,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6385,
                            "name": "payoutIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6382,
                            "src": "2607:11:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 6386,
                            "name": "drawPayoutsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6377,
                            "src": "2621:17:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2607:31:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6445,
                        "initializationExpression": {
                          "assignments": [
                            6382
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 6382,
                              "mutability": "mutable",
                              "name": "payoutIndex",
                              "nameLocation": "2590:11:26",
                              "nodeType": "VariableDeclaration",
                              "scope": 6445,
                              "src": "2582:19:26",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 6381,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2582:7:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 6384,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 6383,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2604:1:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2582:23:26"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 6389,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2640:13:26",
                            "subExpression": {
                              "id": 6388,
                              "name": "payoutIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6382,
                              "src": "2640:11:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 6390,
                          "nodeType": "ExpressionStatement",
                          "src": "2640:13:26"
                        },
                        "nodeType": "ForStatement",
                        "src": "2577:703:26"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6447,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6350,
                              "src": "3303:5:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6448,
                              "name": "totalPayout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6362,
                              "src": "3310:11:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6446,
                            "name": "_awardPayout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6647,
                            "src": "3290:12:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 6449,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3290:32:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6450,
                        "nodeType": "ExpressionStatement",
                        "src": "3290:32:26"
                      },
                      {
                        "expression": {
                          "id": 6451,
                          "name": "totalPayout",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6362,
                          "src": "3340:11:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 6360,
                        "id": 6452,
                        "nodeType": "Return",
                        "src": "3333:18:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6348,
                    "nodeType": "StructuredDocumentation",
                    "src": "2118:33:26",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "bb7d4e2d",
                  "id": 6454,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claim",
                  "nameLocation": "2165:5:26",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6357,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2275:8:26"
                  },
                  "parameters": {
                    "id": 6356,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6350,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2188:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6454,
                        "src": "2180:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6349,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2180:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6353,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2221:8:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6454,
                        "src": "2203:26:26",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6351,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2203:6:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 6352,
                          "nodeType": "ArrayTypeName",
                          "src": "2203:8:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6355,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "2254:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6454,
                        "src": "2239:20:26",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 6354,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2239:5:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2170:95:26"
                  },
                  "returnParameters": {
                    "id": 6360,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6359,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6454,
                        "src": "2293:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6358,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2293:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2292:9:26"
                  },
                  "scope": 6648,
                  "src": "2156:1202:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8684
                  ],
                  "body": {
                    "id": 6508,
                    "nodeType": "Block",
                    "src": "3548:314:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6476,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6471,
                                "name": "_to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6460,
                                "src": "3566:3:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6474,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3581:1:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6473,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3573:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6472,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3573:7:26",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6475,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3573:10:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3566:17:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a65726f2d61646472657373",
                              "id": 6477,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3585:45:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473",
                                "typeString": "literal_string \"PrizeDistributor/recipient-not-zero-address\""
                              },
                              "value": "PrizeDistributor/recipient-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473",
                                "typeString": "literal_string \"PrizeDistributor/recipient-not-zero-address\""
                              }
                            ],
                            "id": 6470,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3558:7:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6478,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3558:73:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6479,
                        "nodeType": "ExpressionStatement",
                        "src": "3558:73:26"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6489,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6483,
                                    "name": "_erc20Token",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6458,
                                    "src": "3657:11:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$663",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 6482,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3649:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6481,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3649:7:26",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6484,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3649:20:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6487,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3681:1:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6486,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3673:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6485,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3673:7:26",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6488,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3673:10:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3649:34:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d61646472657373",
                              "id": 6490,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3685:41:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3",
                                "typeString": "literal_string \"PrizeDistributor/ERC20-not-zero-address\""
                              },
                              "value": "PrizeDistributor/ERC20-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3",
                                "typeString": "literal_string \"PrizeDistributor/ERC20-not-zero-address\""
                              }
                            ],
                            "id": 6480,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3641:7:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6491,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3641:86:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6492,
                        "nodeType": "ExpressionStatement",
                        "src": "3641:86:26"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6496,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6460,
                              "src": "3763:3:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6497,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6462,
                              "src": "3768:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 6493,
                              "name": "_erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6458,
                              "src": "3738:11:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 6495,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "3738:24:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 6498,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3738:38:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6499,
                        "nodeType": "ExpressionStatement",
                        "src": "3738:38:26"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6501,
                              "name": "_erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6458,
                              "src": "3807:11:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "id": 6502,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6460,
                              "src": "3820:3:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6503,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6462,
                              "src": "3825:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6500,
                            "name": "ERC20Withdrawn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8624,
                            "src": "3792:14:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 6504,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3792:41:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6505,
                        "nodeType": "EmitStatement",
                        "src": "3787:46:26"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 6506,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3851:4:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 6469,
                        "id": 6507,
                        "nodeType": "Return",
                        "src": "3844:11:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6455,
                    "nodeType": "StructuredDocumentation",
                    "src": "3364:33:26",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "44004cc1",
                  "id": 6509,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6466,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6465,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "3523:9:26"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3523:9:26"
                    }
                  ],
                  "name": "withdrawERC20",
                  "nameLocation": "3411:13:26",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6464,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3514:8:26"
                  },
                  "parameters": {
                    "id": 6463,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6458,
                        "mutability": "mutable",
                        "name": "_erc20Token",
                        "nameLocation": "3441:11:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6509,
                        "src": "3434:18:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 6457,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6456,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3434:6:26"
                          },
                          "referencedDeclaration": 663,
                          "src": "3434:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6460,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "3470:3:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6509,
                        "src": "3462:11:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6459,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3462:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6462,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3491:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6509,
                        "src": "3483:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6461,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3483:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3424:80:26"
                  },
                  "returnParameters": {
                    "id": 6469,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6468,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6509,
                        "src": "3542:4:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6467,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3542:4:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3541:6:26"
                  },
                  "scope": 6648,
                  "src": "3402:460:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8644
                  ],
                  "body": {
                    "id": 6519,
                    "nodeType": "Block",
                    "src": "3984:38:26",
                    "statements": [
                      {
                        "expression": {
                          "id": 6517,
                          "name": "drawCalculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6295,
                          "src": "4001:14:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 6516,
                        "id": 6518,
                        "nodeType": "Return",
                        "src": "3994:21:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6510,
                    "nodeType": "StructuredDocumentation",
                    "src": "3868:33:26",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 6520,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "3915:17:26",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6512,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3949:8:26"
                  },
                  "parameters": {
                    "id": 6511,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3932:2:26"
                  },
                  "returnParameters": {
                    "id": 6516,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6515,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6520,
                        "src": "3967:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 6514,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6513,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "3967:15:26"
                          },
                          "referencedDeclaration": 8482,
                          "src": "3967:15:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3966:17:26"
                  },
                  "scope": 6648,
                  "src": "3906:116:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8654
                  ],
                  "body": {
                    "id": 6536,
                    "nodeType": "Block",
                    "src": "4206:63:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6532,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6523,
                              "src": "4247:5:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6533,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6525,
                              "src": "4254:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6531,
                            "name": "_getDrawPayoutBalanceOf",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6584,
                            "src": "4223:23:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (address,uint32) view returns (uint256)"
                            }
                          },
                          "id": 6534,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4223:39:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 6530,
                        "id": 6535,
                        "nodeType": "Return",
                        "src": "4216:46:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6521,
                    "nodeType": "StructuredDocumentation",
                    "src": "4028:33:26",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "b7f892d1",
                  "id": 6537,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawPayoutBalanceOf",
                  "nameLocation": "4075:22:26",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6527,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4167:8:26"
                  },
                  "parameters": {
                    "id": 6526,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6523,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4106:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6537,
                        "src": "4098:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6522,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4098:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6525,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4120:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6537,
                        "src": "4113:14:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6524,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4113:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4097:31:26"
                  },
                  "returnParameters": {
                    "id": 6530,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6529,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6537,
                        "src": "4193:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6528,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4193:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4192:9:26"
                  },
                  "scope": 6648,
                  "src": "4066:203:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8661
                  ],
                  "body": {
                    "id": 6547,
                    "nodeType": "Block",
                    "src": "4373:29:26",
                    "statements": [
                      {
                        "expression": {
                          "id": 6545,
                          "name": "token",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6299,
                          "src": "4390:5:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 6544,
                        "id": 6546,
                        "nodeType": "Return",
                        "src": "4383:12:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6538,
                    "nodeType": "StructuredDocumentation",
                    "src": "4275:33:26",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "21df0da7",
                  "id": 6548,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4322:8:26",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6540,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4347:8:26"
                  },
                  "parameters": {
                    "id": 6539,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4330:2:26"
                  },
                  "returnParameters": {
                    "id": 6544,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6543,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6548,
                        "src": "4365:6:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 6542,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6541,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "4365:6:26"
                          },
                          "referencedDeclaration": 663,
                          "src": "4365:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4364:8:26"
                  },
                  "scope": 6648,
                  "src": "4313:89:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8671
                  ],
                  "body": {
                    "id": 6567,
                    "nodeType": "Block",
                    "src": "4595:82:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6562,
                              "name": "_newCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6552,
                              "src": "4624:14:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 6561,
                            "name": "_setDrawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6631,
                            "src": "4605:18:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawCalculator_$8482_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 6563,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4605:34:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6564,
                        "nodeType": "ExpressionStatement",
                        "src": "4605:34:26"
                      },
                      {
                        "expression": {
                          "id": 6565,
                          "name": "_newCalculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6552,
                          "src": "4656:14:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 6560,
                        "id": 6566,
                        "nodeType": "Return",
                        "src": "4649:21:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6549,
                    "nodeType": "StructuredDocumentation",
                    "src": "4408:33:26",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "454a8140",
                  "id": 6568,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6556,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6555,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "4547:9:26"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4547:9:26"
                    }
                  ],
                  "name": "setDrawCalculator",
                  "nameLocation": "4455:17:26",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6554,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4530:8:26"
                  },
                  "parameters": {
                    "id": 6553,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6552,
                        "mutability": "mutable",
                        "name": "_newCalculator",
                        "nameLocation": "4489:14:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6568,
                        "src": "4473:30:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 6551,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6550,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "4473:15:26"
                          },
                          "referencedDeclaration": 8482,
                          "src": "4473:15:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4472:32:26"
                  },
                  "returnParameters": {
                    "id": 6560,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6559,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6568,
                        "src": "4574:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 6558,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6557,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "4574:15:26"
                          },
                          "referencedDeclaration": 8482,
                          "src": "4574:15:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4573:17:26"
                  },
                  "scope": 6648,
                  "src": "4446:231:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6583,
                    "nodeType": "Block",
                    "src": "4863:55:26",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 6577,
                              "name": "userDrawPayouts",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6306,
                              "src": "4880:15:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(uint256 => uint256))"
                              }
                            },
                            "id": 6579,
                            "indexExpression": {
                              "id": 6578,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6570,
                              "src": "4896:5:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4880:22:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                              "typeString": "mapping(uint256 => uint256)"
                            }
                          },
                          "id": 6581,
                          "indexExpression": {
                            "id": 6580,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6572,
                            "src": "4903:7:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4880:31:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 6576,
                        "id": 6582,
                        "nodeType": "Return",
                        "src": "4873:38:26"
                      }
                    ]
                  },
                  "id": 6584,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getDrawPayoutBalanceOf",
                  "nameLocation": "4748:23:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6573,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6570,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4780:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6584,
                        "src": "4772:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6569,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4772:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6572,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4794:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6584,
                        "src": "4787:14:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6571,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4787:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4771:31:26"
                  },
                  "returnParameters": {
                    "id": 6576,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6575,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6584,
                        "src": "4850:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6574,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4850:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4849:9:26"
                  },
                  "scope": 6648,
                  "src": "4739:179:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6601,
                    "nodeType": "Block",
                    "src": "5044:58:26",
                    "statements": [
                      {
                        "expression": {
                          "id": 6599,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 6593,
                                "name": "userDrawPayouts",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6306,
                                "src": "5054:15:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(uint256 => uint256))"
                                }
                              },
                              "id": 6596,
                              "indexExpression": {
                                "id": 6594,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6586,
                                "src": "5070:5:26",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "5054:22:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                                "typeString": "mapping(uint256 => uint256)"
                              }
                            },
                            "id": 6597,
                            "indexExpression": {
                              "id": 6595,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6588,
                              "src": "5077:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "5054:31:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6598,
                            "name": "_payout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6590,
                            "src": "5088:7:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5054:41:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 6600,
                        "nodeType": "ExpressionStatement",
                        "src": "5054:41:26"
                      }
                    ]
                  },
                  "id": 6602,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawPayoutBalanceOf",
                  "nameLocation": "4933:23:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6591,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6586,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4974:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6602,
                        "src": "4966:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6585,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4966:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6588,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4996:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6602,
                        "src": "4989:14:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6587,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4989:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6590,
                        "mutability": "mutable",
                        "name": "_payout",
                        "nameLocation": "5021:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6602,
                        "src": "5013:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6589,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5013:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4956:78:26"
                  },
                  "returnParameters": {
                    "id": 6592,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5044:0:26"
                  },
                  "scope": 6648,
                  "src": "4924:178:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6630,
                    "nodeType": "Block",
                    "src": "5315:187:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6618,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6612,
                                    "name": "_newCalculator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6606,
                                    "src": "5341:14:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                      "typeString": "contract IDrawCalculator"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                      "typeString": "contract IDrawCalculator"
                                    }
                                  ],
                                  "id": 6611,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5333:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6610,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5333:7:26",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6613,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5333:23:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6616,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5368:1:26",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 6615,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5360:7:26",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6614,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5360:7:26",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6617,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5360:10:26",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "5333:37:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                              "id": 6619,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5372:32:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a",
                                "typeString": "literal_string \"PrizeDistributor/calc-not-zero\""
                              },
                              "value": "PrizeDistributor/calc-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a",
                                "typeString": "literal_string \"PrizeDistributor/calc-not-zero\""
                              }
                            ],
                            "id": 6609,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5325:7:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6620,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5325:80:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6621,
                        "nodeType": "ExpressionStatement",
                        "src": "5325:80:26"
                      },
                      {
                        "expression": {
                          "id": 6624,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6622,
                            "name": "drawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6295,
                            "src": "5415:14:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6623,
                            "name": "_newCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6606,
                            "src": "5432:14:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "src": "5415:31:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "id": 6625,
                        "nodeType": "ExpressionStatement",
                        "src": "5415:31:26"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6627,
                              "name": "_newCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6606,
                              "src": "5480:14:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 6626,
                            "name": "DrawCalculatorSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8608,
                            "src": "5462:17:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawCalculator_$8482_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 6628,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5462:33:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6629,
                        "nodeType": "EmitStatement",
                        "src": "5457:38:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6603,
                    "nodeType": "StructuredDocumentation",
                    "src": "5108:133:26",
                    "text": " @notice Sets DrawCalculator reference for individual draw id.\n @param _newCalculator  DrawCalculator address"
                  },
                  "id": 6631,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawCalculator",
                  "nameLocation": "5255:18:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6607,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6606,
                        "mutability": "mutable",
                        "name": "_newCalculator",
                        "nameLocation": "5290:14:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6631,
                        "src": "5274:30:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 6605,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6604,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "5274:15:26"
                          },
                          "referencedDeclaration": 8482,
                          "src": "5274:15:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5273:32:26"
                  },
                  "returnParameters": {
                    "id": 6608,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5315:0:26"
                  },
                  "scope": 6648,
                  "src": "5246:256:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6646,
                    "nodeType": "Block",
                    "src": "5722:49:26",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6642,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6634,
                              "src": "5751:3:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6643,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6636,
                              "src": "5756:7:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 6639,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6299,
                              "src": "5732:5:26",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 6641,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "5732:18:26",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 6644,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5732:32:26",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6645,
                        "nodeType": "ExpressionStatement",
                        "src": "5732:32:26"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6632,
                    "nodeType": "StructuredDocumentation",
                    "src": "5508:148:26",
                    "text": " @notice Transfer claimed draw(s) total payout to user.\n @param _to      User address\n @param _amount  Transfer amount"
                  },
                  "id": 6647,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPayout",
                  "nameLocation": "5670:12:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6637,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6634,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5691:3:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6647,
                        "src": "5683:11:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6633,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5683:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6636,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5704:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 6647,
                        "src": "5696:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6635,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5696:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5682:30:26"
                  },
                  "returnParameters": {
                    "id": 6638,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5722:0:26"
                  },
                  "scope": 6648,
                  "src": "5661:110:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 6649,
              "src": "1034:4740:26",
              "usedErrors": []
            }
          ],
          "src": "37:5738:26"
        },
        "id": 26
      },
      "@pooltogether/v4-core/contracts/Reserve.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/Reserve.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "IERC20": [
              663
            ],
            "IReserve": [
              9090
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "Reserve": [
              7104
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 7105,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 6650,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:27"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 6651,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7105,
              "sourceUnit": 3104,
              "src": "61:72:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 6652,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7105,
              "sourceUnit": 664,
              "src": "134:56:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 6653,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7105,
              "sourceUnit": 1118,
              "src": "191:65:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IReserve.sol",
              "file": "./interfaces/IReserve.sol",
              "id": 6654,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7105,
              "sourceUnit": 9091,
              "src": "258:35:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol",
              "file": "./libraries/ObservationLib.sol",
              "id": 6655,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7105,
              "sourceUnit": 9677,
              "src": "294:40:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./libraries/RingBufferLib.sol",
              "id": 6656,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7105,
              "sourceUnit": 9934,
              "src": "335:39:27",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 6658,
                    "name": "IReserve",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9090,
                    "src": "1319:8:27"
                  },
                  "id": 6659,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1319:8:27"
                },
                {
                  "baseName": {
                    "id": 6660,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "1329:10:27"
                  },
                  "id": 6661,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1329:10:27"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 6657,
                "nodeType": "StructuredDocumentation",
                "src": "376:922:27",
                "text": " @title  PoolTogether V4 Reserve\n @author PoolTogether Inc Team\n @notice The Reserve contract provides historical lookups of a token balance increase during a target timerange.\nAs the Reserve contract transfers OUT tokens, the withdraw accumulator is increased. When tokens are\ntransfered IN new checkpoint *can* be created if checkpoint() is called after transfering tokens.\nBy using the reserve and withdraw accumulators to create a new checkpoint, any contract or account\ncan lookup the balance increase of the reserve for a target timerange.   \n @dev    By calculating the total held tokens in a specific time range, contracts that require knowledge \nof captured interest during a draw period, can easily call into the Reserve and deterministically\ndetermine the newly aqcuired tokens for that time range. "
              },
              "fullyImplemented": true,
              "id": 7104,
              "linearizedBaseContracts": [
                7104,
                3103,
                3258,
                9090
              ],
              "name": "Reserve",
              "nameLocation": "1308:7:27",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 6665,
                  "libraryName": {
                    "id": 6662,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1352:9:27"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1346:27:27",
                  "typeName": {
                    "id": 6664,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6663,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1366:6:27"
                    },
                    "referencedDeclaration": 663,
                    "src": "1366:6:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6666,
                    "nodeType": "StructuredDocumentation",
                    "src": "1379:23:27",
                    "text": "@notice ERC20 token"
                  },
                  "functionSelector": "fc0c546a",
                  "id": 6669,
                  "mutability": "immutable",
                  "name": "token",
                  "nameLocation": "1431:5:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 7104,
                  "src": "1407:29:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IERC20_$663",
                    "typeString": "contract IERC20"
                  },
                  "typeName": {
                    "id": 6668,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6667,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1407:6:27"
                    },
                    "referencedDeclaration": 663,
                    "src": "1407:6:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6670,
                    "nodeType": "StructuredDocumentation",
                    "src": "1443:46:27",
                    "text": "@notice Total withdraw amount from reserve"
                  },
                  "functionSelector": "2d00ddda",
                  "id": 6672,
                  "mutability": "mutable",
                  "name": "withdrawAccumulator",
                  "nameLocation": "1509:19:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 7104,
                  "src": "1494:34:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint224",
                    "typeString": "uint224"
                  },
                  "typeName": {
                    "id": 6671,
                    "name": "uint224",
                    "nodeType": "ElementaryTypeName",
                    "src": "1494:7:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 6674,
                  "mutability": "mutable",
                  "name": "_gap",
                  "nameLocation": "1549:4:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 7104,
                  "src": "1534:19:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 6673,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1534:6:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 6676,
                  "mutability": "mutable",
                  "name": "nextIndex",
                  "nameLocation": "1576:9:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 7104,
                  "src": "1560:25:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 6675,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1560:6:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6678,
                  "mutability": "mutable",
                  "name": "cardinality",
                  "nameLocation": "1607:11:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 7104,
                  "src": "1591:27:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 6677,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1591:6:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 6679,
                    "nodeType": "StructuredDocumentation",
                    "src": "1625:46:27",
                    "text": "@notice The maximum number of twab entries"
                  },
                  "id": 6682,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1701:15:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 7104,
                  "src": "1676:51:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 6680,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1676:6:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 6681,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1719:8:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6687,
                  "mutability": "mutable",
                  "name": "reserveAccumulators",
                  "nameLocation": "1800:19:27",
                  "nodeType": "VariableDeclaration",
                  "scope": 7104,
                  "src": "1747:72:27",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                    "typeString": "struct ObservationLib.Observation[16777215]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 6684,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 6683,
                        "name": "ObservationLib.Observation",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 9538,
                        "src": "1747:26:27"
                      },
                      "referencedDeclaration": 9538,
                      "src": "1747:26:27",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                        "typeString": "struct ObservationLib.Observation"
                      }
                    },
                    "id": 6686,
                    "length": {
                      "id": 6685,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6682,
                      "src": "1774:15:27",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1747:43:27",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                      "typeString": "struct ObservationLib.Observation[16777215]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "id": 6692,
                  "name": "Deployed",
                  "nameLocation": "1876:8:27",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 6691,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6690,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1900:5:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6692,
                        "src": "1885:20:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 6689,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6688,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1885:6:27"
                          },
                          "referencedDeclaration": 663,
                          "src": "1885:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1884:22:27"
                  },
                  "src": "1870:37:27"
                },
                {
                  "body": {
                    "id": 6712,
                    "nodeType": "Block",
                    "src": "2164:62:27",
                    "statements": [
                      {
                        "expression": {
                          "id": 6706,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6704,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6669,
                            "src": "2174:5:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6705,
                            "name": "_token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6698,
                            "src": "2182:6:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            }
                          },
                          "src": "2174:14:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "id": 6707,
                        "nodeType": "ExpressionStatement",
                        "src": "2174:14:27"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6709,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6698,
                              "src": "2212:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 6708,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6692,
                            "src": "2203:8:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$663_$returns$__$",
                              "typeString": "function (contract IERC20)"
                            }
                          },
                          "id": 6710,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2203:16:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6711,
                        "nodeType": "EmitStatement",
                        "src": "2198:21:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6693,
                    "nodeType": "StructuredDocumentation",
                    "src": "1962:138:27",
                    "text": " @notice Constructs Ticket with passed parameters.\n @param _owner Owner address\n @param _token ERC20 address"
                  },
                  "id": 6713,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 6701,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6695,
                          "src": "2156:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 6702,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 6700,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "2148:7:27"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2148:15:27"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6699,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6695,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2125:6:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6713,
                        "src": "2117:14:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6694,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2117:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6698,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "2140:6:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6713,
                        "src": "2133:13:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 6697,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6696,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2133:6:27"
                          },
                          "referencedDeclaration": 663,
                          "src": "2133:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2116:31:27"
                  },
                  "returnParameters": {
                    "id": 6703,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2164:0:27"
                  },
                  "scope": 7104,
                  "src": "2105:121:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    9064
                  ],
                  "body": {
                    "id": 6721,
                    "nodeType": "Block",
                    "src": "2357:30:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6718,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7036,
                            "src": "2367:11:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 6719,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2367:13:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6720,
                        "nodeType": "ExpressionStatement",
                        "src": "2367:13:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6714,
                    "nodeType": "StructuredDocumentation",
                    "src": "2288:24:27",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "c2c4c5c1",
                  "id": 6722,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkpoint",
                  "nameLocation": "2326:10:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6716,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2348:8:27"
                  },
                  "parameters": {
                    "id": 6715,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2336:2:27"
                  },
                  "returnParameters": {
                    "id": 6717,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2357:0:27"
                  },
                  "scope": 7104,
                  "src": "2317:70:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9071
                  ],
                  "body": {
                    "id": 6732,
                    "nodeType": "Block",
                    "src": "2482:29:27",
                    "statements": [
                      {
                        "expression": {
                          "id": 6730,
                          "name": "token",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6669,
                          "src": "2499:5:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 6729,
                        "id": 6731,
                        "nodeType": "Return",
                        "src": "2492:12:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6723,
                    "nodeType": "StructuredDocumentation",
                    "src": "2393:24:27",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "21df0da7",
                  "id": 6733,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "2431:8:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6725,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2456:8:27"
                  },
                  "parameters": {
                    "id": 6724,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2439:2:27"
                  },
                  "returnParameters": {
                    "id": 6729,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6728,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6733,
                        "src": "2474:6:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 6727,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6726,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2474:6:27"
                          },
                          "referencedDeclaration": 663,
                          "src": "2474:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2473:8:27"
                  },
                  "scope": 7104,
                  "src": "2422:89:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9081
                  ],
                  "body": {
                    "id": 6803,
                    "nodeType": "Block",
                    "src": "2707:906:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6747,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6745,
                                "name": "_startTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6736,
                                "src": "2725:15:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "id": 6746,
                                "name": "_endTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6738,
                                "src": "2743:13:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2725:31:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "526573657276652f73746172742d6c6573732d7468656e2d656e64",
                              "id": 6748,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2758:29:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5a0b81ddbcbbb758aeb43ab9237e227525b750aa7da0afb4fe2a9d7dc5a2d702",
                                "typeString": "literal_string \"Reserve/start-less-then-end\""
                              },
                              "value": "Reserve/start-less-then-end"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5a0b81ddbcbbb758aeb43ab9237e227525b750aa7da0afb4fe2a9d7dc5a2d702",
                                "typeString": "literal_string \"Reserve/start-less-then-end\""
                              }
                            ],
                            "id": 6744,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2717:7:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6749,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2717:71:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6750,
                        "nodeType": "ExpressionStatement",
                        "src": "2717:71:27"
                      },
                      {
                        "assignments": [
                          6752
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6752,
                            "mutability": "mutable",
                            "name": "_cardinality",
                            "nameLocation": "2805:12:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "2798:19:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 6751,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2798:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6754,
                        "initialValue": {
                          "id": 6753,
                          "name": "cardinality",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6678,
                          "src": "2820:11:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2798:33:27"
                      },
                      {
                        "assignments": [
                          6756
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6756,
                            "mutability": "mutable",
                            "name": "_nextIndex",
                            "nameLocation": "2848:10:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "2841:17:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 6755,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2841:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6758,
                        "initialValue": {
                          "id": 6757,
                          "name": "nextIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6676,
                          "src": "2861:9:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2841:29:27"
                      },
                      {
                        "assignments": [
                          6760,
                          6763
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6760,
                            "mutability": "mutable",
                            "name": "_newestIndex",
                            "nameLocation": "2889:12:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "2882:19:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 6759,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2882:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 6763,
                            "mutability": "mutable",
                            "name": "_newestObservation",
                            "nameLocation": "2937:18:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "2903:52:27",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 6762,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6761,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "2903:26:27"
                              },
                              "referencedDeclaration": 9538,
                              "src": "2903:26:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6767,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6765,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6756,
                              "src": "2981:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 6764,
                            "name": "_getNewestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7103,
                            "src": "2959:21:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 6766,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2959:33:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2881:111:27"
                      },
                      {
                        "assignments": [
                          6769,
                          6772
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6769,
                            "mutability": "mutable",
                            "name": "_oldestIndex",
                            "nameLocation": "3010:12:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "3003:19:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 6768,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "3003:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 6772,
                            "mutability": "mutable",
                            "name": "_oldestObservation",
                            "nameLocation": "3058:18:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "3024:52:27",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 6771,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6770,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "3024:26:27"
                              },
                              "referencedDeclaration": 9538,
                              "src": "3024:26:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6776,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6774,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6756,
                              "src": "3102:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 6773,
                            "name": "_getOldestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7074,
                            "src": "3080:21:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 6775,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3080:33:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3002:111:27"
                      },
                      {
                        "assignments": [
                          6778
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6778,
                            "mutability": "mutable",
                            "name": "_start",
                            "nameLocation": "3132:6:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "3124:14:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 6777,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "3124:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6787,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6780,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6763,
                              "src": "3179:18:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 6781,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6772,
                              "src": "3211:18:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 6782,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6760,
                              "src": "3243:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6783,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6769,
                              "src": "3269:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6784,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6752,
                              "src": "3295:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6785,
                              "name": "_startTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6736,
                              "src": "3321:15:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6779,
                            "name": "_getReserveAccumulatedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6921,
                            "src": "3141:24:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint24_$_t_uint32_$returns$_t_uint224_$",
                              "typeString": "function (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint24,uint32) view returns (uint224)"
                            }
                          },
                          "id": 6786,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3141:205:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3124:222:27"
                      },
                      {
                        "assignments": [
                          6789
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6789,
                            "mutability": "mutable",
                            "name": "_end",
                            "nameLocation": "3365:4:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6803,
                            "src": "3357:12:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 6788,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "3357:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6798,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6791,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6763,
                              "src": "3410:18:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 6792,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6772,
                              "src": "3442:18:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 6793,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6760,
                              "src": "3474:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6794,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6769,
                              "src": "3500:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6795,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6752,
                              "src": "3526:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6796,
                              "name": "_endTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6738,
                              "src": "3552:13:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6790,
                            "name": "_getReserveAccumulatedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6921,
                            "src": "3372:24:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint24_$_t_uint32_$returns$_t_uint224_$",
                              "typeString": "function (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint24,uint32) view returns (uint224)"
                            }
                          },
                          "id": 6797,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3372:203:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3357:218:27"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 6801,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6799,
                            "name": "_end",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6789,
                            "src": "3593:4:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 6800,
                            "name": "_start",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6778,
                            "src": "3600:6:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "3593:13:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 6743,
                        "id": 6802,
                        "nodeType": "Return",
                        "src": "3586:20:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6734,
                    "nodeType": "StructuredDocumentation",
                    "src": "2517:24:27",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "af6a9400",
                  "id": 6804,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserveAccumulatedBetween",
                  "nameLocation": "2555:28:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6740,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2668:8:27"
                  },
                  "parameters": {
                    "id": 6739,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6736,
                        "mutability": "mutable",
                        "name": "_startTimestamp",
                        "nameLocation": "2591:15:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6804,
                        "src": "2584:22:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6735,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2584:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6738,
                        "mutability": "mutable",
                        "name": "_endTimestamp",
                        "nameLocation": "2615:13:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6804,
                        "src": "2608:20:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6737,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2608:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2583:46:27"
                  },
                  "returnParameters": {
                    "id": 6743,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6742,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6804,
                        "src": "2694:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 6741,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2694:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2693:9:27"
                  },
                  "scope": 7104,
                  "src": "2546:1067:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9089
                  ],
                  "body": {
                    "id": 6837,
                    "nodeType": "Block",
                    "src": "3742:184:27",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6815,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7036,
                            "src": "3752:11:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 6816,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3752:13:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6817,
                        "nodeType": "ExpressionStatement",
                        "src": "3752:13:27"
                      },
                      {
                        "expression": {
                          "id": 6823,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6818,
                            "name": "withdrawAccumulator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6672,
                            "src": "3776:19:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 6821,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6809,
                                "src": "3807:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 6820,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3799:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint224_$",
                                "typeString": "type(uint224)"
                              },
                              "typeName": {
                                "id": 6819,
                                "name": "uint224",
                                "nodeType": "ElementaryTypeName",
                                "src": "3799:7:27",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 6822,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3799:16:27",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "3776:39:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "id": 6824,
                        "nodeType": "ExpressionStatement",
                        "src": "3776:39:27"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6828,
                              "name": "_recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6807,
                              "src": "3853:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6829,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6809,
                              "src": "3865:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 6825,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6669,
                              "src": "3834:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 6827,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "3834:18:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 6830,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3834:39:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6831,
                        "nodeType": "ExpressionStatement",
                        "src": "3834:39:27"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6833,
                              "name": "_recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6807,
                              "src": "3899:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 6834,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6809,
                              "src": "3911:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6832,
                            "name": "Withdrawn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9060,
                            "src": "3889:9:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 6835,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3889:30:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6836,
                        "nodeType": "EmitStatement",
                        "src": "3884:35:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6805,
                    "nodeType": "StructuredDocumentation",
                    "src": "3619:24:27",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "205c2878",
                  "id": 6838,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6813,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6812,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "3723:18:27"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3723:18:27"
                    }
                  ],
                  "name": "withdrawTo",
                  "nameLocation": "3657:10:27",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6811,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3714:8:27"
                  },
                  "parameters": {
                    "id": 6810,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6807,
                        "mutability": "mutable",
                        "name": "_recipient",
                        "nameLocation": "3676:10:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6838,
                        "src": "3668:18:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6806,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3668:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6809,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3696:7:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6838,
                        "src": "3688:15:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6808,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3688:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3667:37:27"
                  },
                  "returnParameters": {
                    "id": 6814,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3742:0:27"
                  },
                  "scope": 7104,
                  "src": "3648:278:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6920,
                    "nodeType": "Block",
                    "src": "4881:2221:27",
                    "statements": [
                      {
                        "assignments": [
                          6859
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6859,
                            "mutability": "mutable",
                            "name": "timeNow",
                            "nameLocation": "4898:7:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6920,
                            "src": "4891:14:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6858,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4891:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6865,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6862,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "4915:5:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 6863,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "4915:15:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6861,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4908:6:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 6860,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4908:6:27",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 6864,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4908:23:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4891:40:27"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          },
                          "id": 6868,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6866,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6851,
                            "src": "4990:12:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 6867,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5006:1:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4990:17:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6871,
                        "nodeType": "IfStatement",
                        "src": "4986:31:27",
                        "trueBody": {
                          "expression": {
                            "hexValue": "30",
                            "id": 6869,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5016:1:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "functionReturnParameters": 6857,
                          "id": 6870,
                          "nodeType": "Return",
                          "src": "5009:8:27"
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 6875,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6872,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6845,
                              "src": "5689:18:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 6873,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "5689:28:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "id": 6874,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6853,
                            "src": "5720:10:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "5689:41:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "documentation": " IF oldestObservation.timestamp is after timestamp: T[old ]\n the Reserve did NOT have a balance or the ring buffer\n no longer contains that timestamp checkpoint.",
                        "id": 6879,
                        "nodeType": "IfStatement",
                        "src": "5685:80:27",
                        "trueBody": {
                          "id": 6878,
                          "nodeType": "Block",
                          "src": "5732:33:27",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 6876,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5753:1:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 6857,
                              "id": 6877,
                              "nodeType": "Return",
                              "src": "5746:8:27"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 6883,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6880,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6842,
                              "src": "6001:18:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 6881,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "6001:28:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 6882,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6853,
                            "src": "6033:10:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "6001:42:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "documentation": " IF newestObservation.timestamp is before timestamp: [ new]T\n return _newestObservation.amount since observation\n contains the highest checkpointed reserveAccumulator.",
                        "id": 6888,
                        "nodeType": "IfStatement",
                        "src": "5997:105:27",
                        "trueBody": {
                          "id": 6887,
                          "nodeType": "Block",
                          "src": "6045:57:27",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 6884,
                                  "name": "_newestObservation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6842,
                                  "src": "6066:18:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 6885,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9535,
                                "src": "6066:25:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 6857,
                              "id": 6886,
                              "nodeType": "Return",
                              "src": "6059:32:27"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          6893,
                          6896
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6893,
                            "mutability": "mutable",
                            "name": "beforeOrAt",
                            "nameLocation": "6323:10:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6920,
                            "src": "6289:44:27",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 6892,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6891,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "6289:26:27"
                              },
                              "referencedDeclaration": 9538,
                              "src": "6289:26:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 6896,
                            "mutability": "mutable",
                            "name": "atOrAfter",
                            "nameLocation": "6381:9:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 6920,
                            "src": "6347:43:27",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 6895,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6894,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "6347:26:27"
                              },
                              "referencedDeclaration": 9538,
                              "src": "6347:26:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6906,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6899,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6687,
                              "src": "6448:19:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "id": 6900,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6847,
                              "src": "6485:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6901,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6849,
                              "src": "6515:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6902,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6853,
                              "src": "6545:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6903,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6851,
                              "src": "6573:12:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 6904,
                              "name": "timeNow",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6859,
                              "src": "6603:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 6897,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9676,
                              "src": "6403:14:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$9676_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 6898,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "binarySearch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9675,
                            "src": "6403:27:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32) view returns (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 6905,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6403:221:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6275:349:27"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 6910,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6907,
                              "name": "atOrAfter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6896,
                              "src": "6958:9:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 6908,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "6958:19:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 6909,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6853,
                            "src": "6981:10:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "6958:33:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 6918,
                          "nodeType": "Block",
                          "src": "7047:49:27",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 6915,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6893,
                                  "src": "7068:10:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 6916,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9535,
                                "src": "7068:17:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 6857,
                              "id": 6917,
                              "nodeType": "Return",
                              "src": "7061:24:27"
                            }
                          ]
                        },
                        "id": 6919,
                        "nodeType": "IfStatement",
                        "src": "6954:142:27",
                        "trueBody": {
                          "id": 6914,
                          "nodeType": "Block",
                          "src": "6993:48:27",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 6911,
                                  "name": "atOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6896,
                                  "src": "7014:9:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 6912,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9535,
                                "src": "7014:16:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 6857,
                              "id": 6913,
                              "nodeType": "Return",
                              "src": "7007:23:27"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6839,
                    "nodeType": "StructuredDocumentation",
                    "src": "3988:578:27",
                    "text": " @notice Find optimal observation checkpoint using target timestamp\n @dev    Uses binary search if target timestamp is within ring buffer range.\n @param _newestObservation ObservationLib.Observation\n @param _oldestObservation ObservationLib.Observation\n @param _newestIndex The index of the newest observation\n @param _oldestIndex The index of the oldest observation\n @param _cardinality       RingBuffer Range\n @param _timestamp          Timestamp target\n @return Optimal reserveAccumlator for timestamp."
                  },
                  "id": 6921,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getReserveAccumulatedAt",
                  "nameLocation": "4580:24:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6854,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6842,
                        "mutability": "mutable",
                        "name": "_newestObservation",
                        "nameLocation": "4648:18:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6921,
                        "src": "4614:52:27",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 6841,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6840,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "4614:26:27"
                          },
                          "referencedDeclaration": 9538,
                          "src": "4614:26:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6845,
                        "mutability": "mutable",
                        "name": "_oldestObservation",
                        "nameLocation": "4710:18:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6921,
                        "src": "4676:52:27",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 6844,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6843,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "4676:26:27"
                          },
                          "referencedDeclaration": 9538,
                          "src": "4676:26:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6847,
                        "mutability": "mutable",
                        "name": "_newestIndex",
                        "nameLocation": "4745:12:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6921,
                        "src": "4738:19:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 6846,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4738:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6849,
                        "mutability": "mutable",
                        "name": "_oldestIndex",
                        "nameLocation": "4774:12:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6921,
                        "src": "4767:19:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 6848,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4767:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6851,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "4803:12:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6921,
                        "src": "4796:19:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 6850,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4796:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6853,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "4832:10:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 6921,
                        "src": "4825:17:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6852,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4825:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4604:244:27"
                  },
                  "returnParameters": {
                    "id": 6857,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6856,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6921,
                        "src": "4872:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 6855,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "4872:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4871:9:27"
                  },
                  "scope": 7104,
                  "src": "4571:2531:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7035,
                    "nodeType": "Block",
                    "src": "7202:1925:27",
                    "statements": [
                      {
                        "assignments": [
                          6926
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6926,
                            "mutability": "mutable",
                            "name": "_cardinality",
                            "nameLocation": "7219:12:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 7035,
                            "src": "7212:19:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 6925,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7212:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6928,
                        "initialValue": {
                          "id": 6927,
                          "name": "cardinality",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6678,
                          "src": "7234:11:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7212:33:27"
                      },
                      {
                        "assignments": [
                          6930
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6930,
                            "mutability": "mutable",
                            "name": "_nextIndex",
                            "nameLocation": "7262:10:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 7035,
                            "src": "7255:17:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 6929,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7255:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6932,
                        "initialValue": {
                          "id": 6931,
                          "name": "nextIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6676,
                          "src": "7275:9:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7255:29:27"
                      },
                      {
                        "assignments": [
                          6934
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6934,
                            "mutability": "mutable",
                            "name": "_balanceOfReserve",
                            "nameLocation": "7302:17:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 7035,
                            "src": "7294:25:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6933,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7294:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6942,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 6939,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "7346:4:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_Reserve_$7104",
                                    "typeString": "contract Reserve"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_Reserve_$7104",
                                    "typeString": "contract Reserve"
                                  }
                                ],
                                "id": 6938,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "7338:7:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 6937,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "7338:7:27",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 6940,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7338:13:27",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 6935,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6669,
                              "src": "7322:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 6936,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "7322:15:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 6941,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7322:30:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7294:58:27"
                      },
                      {
                        "assignments": [
                          6944
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6944,
                            "mutability": "mutable",
                            "name": "_withdrawAccumulator",
                            "nameLocation": "7370:20:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 7035,
                            "src": "7362:28:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 6943,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "7362:7:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6946,
                        "initialValue": {
                          "id": 6945,
                          "name": "withdrawAccumulator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6672,
                          "src": "7393:19:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7362:50:27"
                      },
                      {
                        "assignments": [
                          6948,
                          6951
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6948,
                            "mutability": "mutable",
                            "name": "newestIndex",
                            "nameLocation": "7438:11:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 7035,
                            "src": "7431:18:27",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 6947,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7431:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 6951,
                            "mutability": "mutable",
                            "name": "newestObservation",
                            "nameLocation": "7485:17:27",
                            "nodeType": "VariableDeclaration",
                            "scope": 7035,
                            "src": "7451:51:27",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 6950,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6949,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "7451:26:27"
                              },
                              "referencedDeclaration": 9538,
                              "src": "7451:26:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6955,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6953,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6930,
                              "src": "7528:10:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 6952,
                            "name": "_getNewestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7103,
                            "src": "7506:21:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 6954,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7506:33:27",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7430:109:27"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6961,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 6958,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 6956,
                              "name": "_balanceOfReserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6934,
                              "src": "7774:17:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "id": 6957,
                              "name": "_withdrawAccumulator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6944,
                              "src": "7794:20:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "src": "7774:40:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "expression": {
                              "id": 6959,
                              "name": "newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6951,
                              "src": "7817:17:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 6960,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "amount",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9535,
                            "src": "7817:24:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "7774:67:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "documentation": " IF tokens have been deposited into Reserve contract since the last checkpoint\n create a new Reserve balance checkpoint. The will will update multiple times in a single block.",
                        "id": 7034,
                        "nodeType": "IfStatement",
                        "src": "7770:1351:27",
                        "trueBody": {
                          "id": 7033,
                          "nodeType": "Block",
                          "src": "7843:1278:27",
                          "statements": [
                            {
                              "assignments": [
                                6963
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6963,
                                  "mutability": "mutable",
                                  "name": "nowTime",
                                  "nameLocation": "7864:7:27",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7033,
                                  "src": "7857:14:27",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 6962,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7857:6:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6969,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 6966,
                                      "name": "block",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -4,
                                      "src": "7881:5:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_block",
                                        "typeString": "block"
                                      }
                                    },
                                    "id": 6967,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "timestamp",
                                    "nodeType": "MemberAccess",
                                    "src": "7881:15:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 6965,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7874:6:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint32_$",
                                    "typeString": "type(uint32)"
                                  },
                                  "typeName": {
                                    "id": 6964,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7874:6:27",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6968,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7874:23:27",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7857:40:27"
                            },
                            {
                              "assignments": [
                                6971
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 6971,
                                  "mutability": "mutable",
                                  "name": "newReserveAccumulator",
                                  "nameLocation": "7991:21:27",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7033,
                                  "src": "7983:29:27",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  },
                                  "typeName": {
                                    "id": 6970,
                                    "name": "uint224",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7983:7:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 6978,
                              "initialValue": {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 6977,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "id": 6974,
                                      "name": "_balanceOfReserve",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6934,
                                      "src": "8023:17:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 6973,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "8015:7:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint224_$",
                                      "typeString": "type(uint224)"
                                    },
                                    "typeName": {
                                      "id": 6972,
                                      "name": "uint224",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "8015:7:27",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 6975,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8015:26:27",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 6976,
                                  "name": "_withdrawAccumulator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6944,
                                  "src": "8044:20:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "8015:49:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7983:81:27"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 6982,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 6979,
                                    "name": "newestObservation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6951,
                                    "src": "8215:17:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 6980,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9537,
                                  "src": "8215:27:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "id": 6981,
                                  "name": "nowTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6963,
                                  "src": "8246:7:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "8215:38:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 7026,
                                "nodeType": "Block",
                                "src": "8831:205:27",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 7024,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 7016,
                                          "name": "reserveAccumulators",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6687,
                                          "src": "8849:19:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                            "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                          }
                                        },
                                        "id": 7018,
                                        "indexExpression": {
                                          "id": 7017,
                                          "name": "newestIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6948,
                                          "src": "8869:11:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint24",
                                            "typeString": "uint24"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "8849:32:27",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                          "typeString": "struct ObservationLib.Observation storage ref"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 7021,
                                            "name": "newReserveAccumulator",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6971,
                                            "src": "8941:21:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          },
                                          {
                                            "id": 7022,
                                            "name": "nowTime",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6963,
                                            "src": "8995:7:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            },
                                            {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          ],
                                          "expression": {
                                            "id": 7019,
                                            "name": "ObservationLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9676,
                                            "src": "8884:14:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_ObservationLib_$9676_$",
                                              "typeString": "type(library ObservationLib)"
                                            }
                                          },
                                          "id": 7020,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "Observation",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 9538,
                                          "src": "8884:26:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_struct$_Observation_$9538_storage_ptr_$",
                                            "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                          }
                                        },
                                        "id": 7023,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "structConstructorCall",
                                        "lValueRequested": false,
                                        "names": [
                                          "amount",
                                          "timestamp"
                                        ],
                                        "nodeType": "FunctionCall",
                                        "src": "8884:137:27",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "src": "8849:172:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref"
                                      }
                                    },
                                    "id": 7025,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8849:172:27"
                                  }
                                ]
                              },
                              "id": 7027,
                              "nodeType": "IfStatement",
                              "src": "8211:825:27",
                              "trueBody": {
                                "id": 7015,
                                "nodeType": "Block",
                                "src": "8255:418:27",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 6991,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 6983,
                                          "name": "reserveAccumulators",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6687,
                                          "src": "8273:19:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                            "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                          }
                                        },
                                        "id": 6985,
                                        "indexExpression": {
                                          "id": 6984,
                                          "name": "_nextIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6930,
                                          "src": "8293:10:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint24",
                                            "typeString": "uint24"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "8273:31:27",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                          "typeString": "struct ObservationLib.Observation storage ref"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 6988,
                                            "name": "newReserveAccumulator",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6971,
                                            "src": "8364:21:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          },
                                          {
                                            "id": 6989,
                                            "name": "nowTime",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6963,
                                            "src": "8418:7:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            },
                                            {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          ],
                                          "expression": {
                                            "id": 6986,
                                            "name": "ObservationLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9676,
                                            "src": "8307:14:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_ObservationLib_$9676_$",
                                              "typeString": "type(library ObservationLib)"
                                            }
                                          },
                                          "id": 6987,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "Observation",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 9538,
                                          "src": "8307:26:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_struct$_Observation_$9538_storage_ptr_$",
                                            "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                          }
                                        },
                                        "id": 6990,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "structConstructorCall",
                                        "lValueRequested": false,
                                        "names": [
                                          "amount",
                                          "timestamp"
                                        ],
                                        "nodeType": "FunctionCall",
                                        "src": "8307:137:27",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "src": "8273:171:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref"
                                      }
                                    },
                                    "id": 6992,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8273:171:27"
                                  },
                                  {
                                    "expression": {
                                      "id": 7002,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 6993,
                                        "name": "nextIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6676,
                                        "src": "8462:9:27",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "id": 6998,
                                                "name": "_nextIndex",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 6930,
                                                "src": "8505:10:27",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              },
                                              {
                                                "id": 6999,
                                                "name": "MAX_CARDINALITY",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 6682,
                                                "src": "8517:15:27",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                },
                                                {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              ],
                                              "expression": {
                                                "id": 6996,
                                                "name": "RingBufferLib",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 9933,
                                                "src": "8481:13:27",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                                  "typeString": "type(library RingBufferLib)"
                                                }
                                              },
                                              "id": 6997,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "memberName": "nextIndex",
                                              "nodeType": "MemberAccess",
                                              "referencedDeclaration": 9932,
                                              "src": "8481:23:27",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                                "typeString": "function (uint256,uint256) pure returns (uint256)"
                                              }
                                            },
                                            "id": 7000,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "functionCall",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "8481:52:27",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "id": 6995,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "8474:6:27",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_uint24_$",
                                            "typeString": "type(uint24)"
                                          },
                                          "typeName": {
                                            "id": 6994,
                                            "name": "uint24",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "8474:6:27",
                                            "typeDescriptions": {}
                                          }
                                        },
                                        "id": 7001,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "typeConversion",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "8474:60:27",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "src": "8462:72:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint24",
                                        "typeString": "uint24"
                                      }
                                    },
                                    "id": 7003,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8462:72:27"
                                  },
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint24",
                                        "typeString": "uint24"
                                      },
                                      "id": 7006,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 7004,
                                        "name": "_cardinality",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6926,
                                        "src": "8556:12:27",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<",
                                      "rightExpression": {
                                        "id": 7005,
                                        "name": "MAX_CARDINALITY",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6682,
                                        "src": "8571:15:27",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "src": "8556:30:27",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 7014,
                                    "nodeType": "IfStatement",
                                    "src": "8552:107:27",
                                    "trueBody": {
                                      "id": 7013,
                                      "nodeType": "Block",
                                      "src": "8588:71:27",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 7011,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 7007,
                                              "name": "cardinality",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 6678,
                                              "src": "8610:11:27",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              },
                                              "id": 7010,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 7008,
                                                "name": "_cardinality",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 6926,
                                                "src": "8624:12:27",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "+",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 7009,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "8639:1:27",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "8624:16:27",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              }
                                            },
                                            "src": "8610:30:27",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          },
                                          "id": 7012,
                                          "nodeType": "ExpressionStatement",
                                          "src": "8610:30:27"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 7029,
                                    "name": "newReserveAccumulator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6971,
                                    "src": "9066:21:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  },
                                  {
                                    "id": 7030,
                                    "name": "_withdrawAccumulator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6944,
                                    "src": "9089:20:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    },
                                    {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  ],
                                  "id": 7028,
                                  "name": "Checkpoint",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9053,
                                  "src": "9055:10:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256,uint256)"
                                  }
                                },
                                "id": 7031,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9055:55:27",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7032,
                              "nodeType": "EmitStatement",
                              "src": "9050:60:27"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6922,
                    "nodeType": "StructuredDocumentation",
                    "src": "7108:57:27",
                    "text": "@notice Records the currently accrued reserve amount."
                  },
                  "id": 7036,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_checkpoint",
                  "nameLocation": "7179:11:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6923,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7190:2:27"
                  },
                  "returnParameters": {
                    "id": 6924,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7202:0:27"
                  },
                  "scope": 7104,
                  "src": "7170:1957:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7073,
                    "nodeType": "Block",
                    "src": "9413:315:27",
                    "statements": [
                      {
                        "expression": {
                          "id": 7049,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7047,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7042,
                            "src": "9423:5:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7048,
                            "name": "_nextIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7039,
                            "src": "9431:10:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "9423:18:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 7050,
                        "nodeType": "ExpressionStatement",
                        "src": "9423:18:27"
                      },
                      {
                        "expression": {
                          "id": 7055,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7051,
                            "name": "observation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7045,
                            "src": "9451:11:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 7052,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6687,
                              "src": "9465:19:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            "id": 7054,
                            "indexExpression": {
                              "id": 7053,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7042,
                              "src": "9485:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "9465:26:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "9451:40:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 7056,
                        "nodeType": "ExpressionStatement",
                        "src": "9451:40:27"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 7060,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 7057,
                              "name": "observation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7045,
                              "src": "9610:11:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 7058,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "9610:21:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 7059,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9635:1:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "9610:26:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7072,
                        "nodeType": "IfStatement",
                        "src": "9606:116:27",
                        "trueBody": {
                          "id": 7071,
                          "nodeType": "Block",
                          "src": "9638:84:27",
                          "statements": [
                            {
                              "expression": {
                                "id": 7063,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 7061,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7042,
                                  "src": "9652:5:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 7062,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9660:1:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "9652:9:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 7064,
                              "nodeType": "ExpressionStatement",
                              "src": "9652:9:27"
                            },
                            {
                              "expression": {
                                "id": 7069,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 7065,
                                  "name": "observation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7045,
                                  "src": "9675:11:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 7066,
                                    "name": "reserveAccumulators",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6687,
                                    "src": "9689:19:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                    }
                                  },
                                  "id": 7068,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 7067,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9709:1:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9689:22:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "9675:36:27",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 7070,
                              "nodeType": "ExpressionStatement",
                              "src": "9675:36:27"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7037,
                    "nodeType": "StructuredDocumentation",
                    "src": "9133:113:27",
                    "text": "@notice Retrieves the oldest observation\n @param _nextIndex The next index of the Reserve observations"
                  },
                  "id": 7074,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getOldestObservation",
                  "nameLocation": "9260:21:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7040,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7039,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "9289:10:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 7074,
                        "src": "9282:17:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 7038,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9282:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9281:19:27"
                  },
                  "returnParameters": {
                    "id": 7046,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7042,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "9355:5:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 7074,
                        "src": "9348:12:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 7041,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9348:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7045,
                        "mutability": "mutable",
                        "name": "observation",
                        "nameLocation": "9396:11:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 7074,
                        "src": "9362:45:27",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 7044,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7043,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "9362:26:27"
                          },
                          "referencedDeclaration": 9538,
                          "src": "9362:26:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9347:61:27"
                  },
                  "scope": 7104,
                  "src": "9251:477:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7102,
                    "nodeType": "Block",
                    "src": "10014:137:27",
                    "statements": [
                      {
                        "expression": {
                          "id": 7094,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7085,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7080,
                            "src": "10024:5:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 7090,
                                    "name": "_nextIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7077,
                                    "src": "10065:10:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 7091,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6682,
                                    "src": "10077:15:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 7088,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9933,
                                    "src": "10039:13:27",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 7089,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "newestIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9914,
                                  "src": "10039:25:27",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 7092,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10039:54:27",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 7087,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "10032:6:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 7086,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "10032:6:27",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 7093,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10032:62:27",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "10024:70:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 7095,
                        "nodeType": "ExpressionStatement",
                        "src": "10024:70:27"
                      },
                      {
                        "expression": {
                          "id": 7100,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7096,
                            "name": "observation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7083,
                            "src": "10104:11:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 7097,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6687,
                              "src": "10118:19:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            "id": 7099,
                            "indexExpression": {
                              "id": 7098,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7080,
                              "src": "10138:5:27",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "10118:26:27",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "10104:40:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 7101,
                        "nodeType": "ExpressionStatement",
                        "src": "10104:40:27"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7075,
                    "nodeType": "StructuredDocumentation",
                    "src": "9734:113:27",
                    "text": "@notice Retrieves the newest observation\n @param _nextIndex The next index of the Reserve observations"
                  },
                  "id": 7103,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNewestObservation",
                  "nameLocation": "9861:21:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7078,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7077,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "9890:10:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 7103,
                        "src": "9883:17:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 7076,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9883:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9882:19:27"
                  },
                  "returnParameters": {
                    "id": 7084,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7080,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "9956:5:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 7103,
                        "src": "9949:12:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 7079,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9949:6:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7083,
                        "mutability": "mutable",
                        "name": "observation",
                        "nameLocation": "9997:11:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 7103,
                        "src": "9963:45:27",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 7082,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7081,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "9963:26:27"
                          },
                          "referencedDeclaration": 9538,
                          "src": "9963:26:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9948:61:27"
                  },
                  "scope": 7104,
                  "src": "9852:299:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 7105,
              "src": "1299:8854:27",
              "usedErrors": []
            }
          ],
          "src": "37:10117:27"
        },
        "id": 27
      },
      "@pooltogether/v4-core/contracts/Ticket.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/Ticket.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "Context": [
              1570
            ],
            "ControlledToken": [
              3492
            ],
            "Counters": [
              1644
            ],
            "ECDSA": [
              2237
            ],
            "EIP712": [
              2391
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "Strings": [
              1847
            ],
            "Ticket": [
              8103
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 8104,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 7106,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:28"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 7107,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8104,
              "sourceUnit": 664,
              "src": "61:56:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 7108,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8104,
              "sourceUnit": 1118,
              "src": "118:65:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol",
              "file": "./libraries/ExtendedSafeCastLib.sol",
              "id": 7109,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8104,
              "sourceUnit": 9518,
              "src": "185:45:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/TwabLib.sol",
              "file": "./libraries/TwabLib.sol",
              "id": 7110,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8104,
              "sourceUnit": 10684,
              "src": "231:33:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "./interfaces/ITicket.sol",
              "id": 7111,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8104,
              "sourceUnit": 9298,
              "src": "265:34:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/ControlledToken.sol",
              "file": "./ControlledToken.sol",
              "id": 7112,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8104,
              "sourceUnit": 3493,
              "src": "300:31:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 7114,
                    "name": "ControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3492,
                    "src": "916:15:28"
                  },
                  "id": 7115,
                  "nodeType": "InheritanceSpecifier",
                  "src": "916:15:28"
                },
                {
                  "baseName": {
                    "id": 7116,
                    "name": "ITicket",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9297,
                    "src": "933:7:28"
                  },
                  "id": 7117,
                  "nodeType": "InheritanceSpecifier",
                  "src": "933:7:28"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 7113,
                "nodeType": "StructuredDocumentation",
                "src": "333:563:28",
                "text": " @title  PoolTogether V4 Ticket\n @author PoolTogether Inc Team\n @notice The Ticket extends the standard ERC20 and ControlledToken interfaces with time-weighted average balance functionality.\nThe average balance held by a user between two timestamps can be calculated, as well as the historic balance.  The\nhistoric total supply is available as well as the average total supply between two timestamps.\nA user may \"delegate\" their balance; increasing another user's historic balance while retaining their tokens."
              },
              "fullyImplemented": true,
              "id": 8103,
              "linearizedBaseContracts": [
                8103,
                9297,
                3492,
                8160,
                857,
                2391,
                893,
                585,
                688,
                663,
                1570
              ],
              "name": "Ticket",
              "nameLocation": "906:6:28",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 7121,
                  "libraryName": {
                    "id": 7118,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "953:9:28"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "947:27:28",
                  "typeName": {
                    "id": 7120,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7119,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "967:6:28"
                    },
                    "referencedDeclaration": 663,
                    "src": "967:6:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 7124,
                  "libraryName": {
                    "id": 7122,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9517,
                    "src": "985:19:28"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "979:38:28",
                  "typeName": {
                    "id": 7123,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1009:7:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 7129,
                  "mutability": "immutable",
                  "name": "_DELEGATE_TYPEHASH",
                  "nameLocation": "1101:18:28",
                  "nodeType": "VariableDeclaration",
                  "scope": 8103,
                  "src": "1075:138:28",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 7125,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1075:7:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "44656c6567617465286164647265737320757365722c616464726573732064656c65676174652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529",
                        "id": 7127,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "1140:72:28",
                        "typeDescriptions": {
                          "typeIdentifier": "t_stringliteral_94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c",
                          "typeString": "literal_string \"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\""
                        },
                        "value": "Delegate(address user,address delegate,uint256 nonce,uint256 deadline)"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_stringliteral_94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c",
                          "typeString": "literal_string \"Delegate(address user,address delegate,uint256 nonce,uint256 deadline)\""
                        }
                      ],
                      "id": 7126,
                      "name": "keccak256",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": -8,
                      "src": "1130:9:28",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                        "typeString": "function (bytes memory) pure returns (bytes32)"
                      }
                    },
                    "id": 7128,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1130:83:28",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 7130,
                    "nodeType": "StructuredDocumentation",
                    "src": "1220:59:28",
                    "text": "@notice Record of token holders TWABs for each account."
                  },
                  "id": 7135,
                  "mutability": "mutable",
                  "name": "userTwabs",
                  "nameLocation": "1329:9:28",
                  "nodeType": "VariableDeclaration",
                  "scope": 8103,
                  "src": "1284:54:28",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                    "typeString": "mapping(address => struct TwabLib.Account)"
                  },
                  "typeName": {
                    "id": 7134,
                    "keyType": {
                      "id": 7131,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1292:7:28",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1284:35:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                      "typeString": "mapping(address => struct TwabLib.Account)"
                    },
                    "valueType": {
                      "id": 7133,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 7132,
                        "name": "TwabLib.Account",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 9966,
                        "src": "1303:15:28"
                      },
                      "referencedDeclaration": 9966,
                      "src": "1303:15:28",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                        "typeString": "struct TwabLib.Account"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 7136,
                    "nodeType": "StructuredDocumentation",
                    "src": "1345:89:28",
                    "text": "@notice Record of tickets total supply and ring buff parameters used for observation."
                  },
                  "id": 7139,
                  "mutability": "mutable",
                  "name": "totalSupplyTwab",
                  "nameLocation": "1464:15:28",
                  "nodeType": "VariableDeclaration",
                  "scope": 8103,
                  "src": "1439:40:28",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Account_$9966_storage",
                    "typeString": "struct TwabLib.Account"
                  },
                  "typeName": {
                    "id": 7138,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7137,
                      "name": "TwabLib.Account",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9966,
                      "src": "1439:15:28"
                    },
                    "referencedDeclaration": 9966,
                    "src": "1439:15:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                      "typeString": "struct TwabLib.Account"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 7140,
                    "nodeType": "StructuredDocumentation",
                    "src": "1486:91:28",
                    "text": "@notice Mapping of delegates.  Each address can delegate their ticket power to another."
                  },
                  "id": 7144,
                  "mutability": "mutable",
                  "name": "delegates",
                  "nameLocation": "1619:9:28",
                  "nodeType": "VariableDeclaration",
                  "scope": 8103,
                  "src": "1582:46:28",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                    "typeString": "mapping(address => address)"
                  },
                  "typeName": {
                    "id": 7143,
                    "keyType": {
                      "id": 7141,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1590:7:28",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1582:27:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                      "typeString": "mapping(address => address)"
                    },
                    "valueType": {
                      "id": 7142,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1601:7:28",
                      "stateMutability": "nonpayable",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7162,
                    "nodeType": "Block",
                    "src": "2176:2:28",
                    "statements": []
                  },
                  "documentation": {
                    "id": 7145,
                    "nodeType": "StructuredDocumentation",
                    "src": "1684:299:28",
                    "text": " @notice Constructs Ticket with passed parameters.\n @param _name ERC20 ticket token name.\n @param _symbol ERC20 ticket token symbol.\n @param decimals_ ERC20 ticket token decimals.\n @param _controller ERC20 ticket controller address (ie: Prize Pool address)."
                  },
                  "id": 7163,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 7156,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7147,
                          "src": "2136:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 7157,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7149,
                          "src": "2143:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 7158,
                          "name": "decimals_",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7151,
                          "src": "2152:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        {
                          "id": 7159,
                          "name": "_controller",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7153,
                          "src": "2163:11:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 7160,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 7155,
                        "name": "ControlledToken",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3492,
                        "src": "2120:15:28"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2120:55:28"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7147,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "2023:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7163,
                        "src": "2009:19:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 7146,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2009:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7149,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "2052:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7163,
                        "src": "2038:21:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 7148,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2038:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7151,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "2075:9:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7163,
                        "src": "2069:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 7150,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2069:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7153,
                        "mutability": "mutable",
                        "name": "_controller",
                        "nameLocation": "2102:11:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7163,
                        "src": "2094:19:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7152,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2094:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1999:120:28"
                  },
                  "returnParameters": {
                    "id": 7161,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2176:0:28"
                  },
                  "scope": 8103,
                  "src": "1988:190:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    9205
                  ],
                  "body": {
                    "id": 7178,
                    "nodeType": "Block",
                    "src": "2409:48:28",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "baseExpression": {
                              "id": 7173,
                              "name": "userTwabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7135,
                              "src": "2426:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                                "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                              }
                            },
                            "id": 7175,
                            "indexExpression": {
                              "id": 7174,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7166,
                              "src": "2436:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "2426:16:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage",
                              "typeString": "struct TwabLib.Account storage ref"
                            }
                          },
                          "id": 7176,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9960,
                          "src": "2426:24:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "functionReturnParameters": 7172,
                        "id": 7177,
                        "nodeType": "Return",
                        "src": "2419:31:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7164,
                    "nodeType": "StructuredDocumentation",
                    "src": "2240:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "2aceb534",
                  "id": 7179,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountDetails",
                  "nameLocation": "2277:17:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7168,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2348:8:28"
                  },
                  "parameters": {
                    "id": 7167,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7166,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2303:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7179,
                        "src": "2295:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7165,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2295:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2294:15:28"
                  },
                  "returnParameters": {
                    "id": 7172,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7171,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7179,
                        "src": "2374:29:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 7170,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7169,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "2374:22:28"
                          },
                          "referencedDeclaration": 9957,
                          "src": "2374:22:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2373:31:28"
                  },
                  "scope": 8103,
                  "src": "2268:189:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9216
                  ],
                  "body": {
                    "id": 7198,
                    "nodeType": "Block",
                    "src": "2641:54:28",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 7191,
                                "name": "userTwabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7135,
                                "src": "2658:9:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                                  "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                                }
                              },
                              "id": 7193,
                              "indexExpression": {
                                "id": 7192,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7182,
                                "src": "2668:5:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "2658:16:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 7194,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "twabs",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9965,
                            "src": "2658:22:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                              "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                            }
                          },
                          "id": 7196,
                          "indexExpression": {
                            "id": 7195,
                            "name": "_index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7184,
                            "src": "2681:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint16",
                              "typeString": "uint16"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2658:30:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage",
                            "typeString": "struct ObservationLib.Observation storage ref"
                          }
                        },
                        "functionReturnParameters": 7190,
                        "id": 7197,
                        "nodeType": "Return",
                        "src": "2651:37:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7180,
                    "nodeType": "StructuredDocumentation",
                    "src": "2463:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "36bb2a38",
                  "id": 7199,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTwab",
                  "nameLocation": "2500:7:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7186,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2576:8:28"
                  },
                  "parameters": {
                    "id": 7185,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7182,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2516:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7199,
                        "src": "2508:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7181,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2508:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7184,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "2530:6:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7199,
                        "src": "2523:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 7183,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "2523:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2507:30:28"
                  },
                  "returnParameters": {
                    "id": 7190,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7189,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7199,
                        "src": "2602:33:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 7188,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7187,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "2602:26:28"
                          },
                          "referencedDeclaration": 9538,
                          "src": "2602:26:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2601:35:28"
                  },
                  "scope": 8103,
                  "src": "2491:204:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9226
                  ],
                  "body": {
                    "id": 7236,
                    "nodeType": "Block",
                    "src": "2823:269:28",
                    "statements": [
                      {
                        "assignments": [
                          7214
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7214,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "2857:7:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7236,
                            "src": "2833:31:28",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 7213,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7212,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9966,
                                "src": "2833:15:28"
                              },
                              "referencedDeclaration": 9966,
                              "src": "2833:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7218,
                        "initialValue": {
                          "baseExpression": {
                            "id": 7215,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7135,
                            "src": "2867:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 7217,
                          "indexExpression": {
                            "id": 7216,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7202,
                            "src": "2877:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2867:16:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2833:50:28"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7221,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7214,
                                "src": "2951:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 7222,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9965,
                              "src": "2951:13:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 7223,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7214,
                                "src": "2982:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 7224,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9960,
                              "src": "2982:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 7227,
                                  "name": "_target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7204,
                                  "src": "3022:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 7226,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3015:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7225,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3015:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7228,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3015:15:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 7231,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "3055:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 7232,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "3055:15:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7230,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3048:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7229,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3048:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7233,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3048:23:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 7219,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10683,
                              "src": "2913:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 7220,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10222,
                            "src": "2913:20:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 7234,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2913:172:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 7209,
                        "id": 7235,
                        "nodeType": "Return",
                        "src": "2894:191:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7200,
                    "nodeType": "StructuredDocumentation",
                    "src": "2701:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "9ecb0370",
                  "id": 7237,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "2738:12:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7206,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2796:8:28"
                  },
                  "parameters": {
                    "id": 7205,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7202,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2759:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7237,
                        "src": "2751:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7201,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2751:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7204,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "2773:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7237,
                        "src": "2766:14:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 7203,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2766:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2750:31:28"
                  },
                  "returnParameters": {
                    "id": 7209,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7208,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7237,
                        "src": "2814:7:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7207,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2814:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2813:9:28"
                  },
                  "scope": 8103,
                  "src": "2729:363:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9265
                  ],
                  "body": {
                    "id": 7261,
                    "nodeType": "Block",
                    "src": "3316:92:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "baseExpression": {
                                "id": 7254,
                                "name": "userTwabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7135,
                                "src": "3360:9:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                                  "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                                }
                              },
                              "id": 7256,
                              "indexExpression": {
                                "id": 7255,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7240,
                                "src": "3370:5:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "3360:16:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "id": 7257,
                              "name": "_startTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7243,
                              "src": "3378:11:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            },
                            {
                              "id": 7258,
                              "name": "_endTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7246,
                              "src": "3391:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            ],
                            "id": 7253,
                            "name": "_getAverageBalancesBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7762,
                            "src": "3333:26:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Account_$9966_storage_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint64[] calldata,uint64[] calldata) view returns (uint256[] memory)"
                            }
                          },
                          "id": 7259,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3333:68:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7252,
                        "id": 7260,
                        "nodeType": "Return",
                        "src": "3326:75:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7238,
                    "nodeType": "StructuredDocumentation",
                    "src": "3098:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "68c7fd57",
                  "id": 7262,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalancesBetween",
                  "nameLocation": "3135:25:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7248,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3280:8:28"
                  },
                  "parameters": {
                    "id": 7247,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7240,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3178:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7262,
                        "src": "3170:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7239,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3170:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7243,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "3211:11:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7262,
                        "src": "3193:29:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7241,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3193:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7242,
                          "nodeType": "ArrayTypeName",
                          "src": "3193:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7246,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "3250:9:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7262,
                        "src": "3232:27:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7244,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3232:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7245,
                          "nodeType": "ArrayTypeName",
                          "src": "3232:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3160:105:28"
                  },
                  "returnParameters": {
                    "id": 7252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7251,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7262,
                        "src": "3298:16:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7249,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "3298:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7250,
                          "nodeType": "ArrayTypeName",
                          "src": "3298:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3297:18:28"
                  },
                  "scope": 8103,
                  "src": "3126:282:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9296
                  ],
                  "body": {
                    "id": 7282,
                    "nodeType": "Block",
                    "src": "3614:91:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7277,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7139,
                              "src": "3658:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "id": 7278,
                              "name": "_startTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7266,
                              "src": "3675:11:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            },
                            {
                              "id": 7279,
                              "name": "_endTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7269,
                              "src": "3688:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            ],
                            "id": 7276,
                            "name": "_getAverageBalancesBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7762,
                            "src": "3631:26:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Account_$9966_storage_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$_t_array$_t_uint64_$dyn_calldata_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint64[] calldata,uint64[] calldata) view returns (uint256[] memory)"
                            }
                          },
                          "id": 7280,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3631:67:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7275,
                        "id": 7281,
                        "nodeType": "Return",
                        "src": "3624:74:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7263,
                    "nodeType": "StructuredDocumentation",
                    "src": "3414:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "8e6d536a",
                  "id": 7283,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageTotalSuppliesBetween",
                  "nameLocation": "3451:30:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7271,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3578:8:28"
                  },
                  "parameters": {
                    "id": 7270,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7266,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "3509:11:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7283,
                        "src": "3491:29:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7264,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3491:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7265,
                          "nodeType": "ArrayTypeName",
                          "src": "3491:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7269,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "3548:9:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7283,
                        "src": "3530:27:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7267,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3530:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7268,
                          "nodeType": "ArrayTypeName",
                          "src": "3530:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3481:82:28"
                  },
                  "returnParameters": {
                    "id": 7275,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7274,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7283,
                        "src": "3596:16:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7272,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "3596:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7273,
                          "nodeType": "ArrayTypeName",
                          "src": "3596:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3595:18:28"
                  },
                  "scope": 8103,
                  "src": "3442:263:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9250
                  ],
                  "body": {
                    "id": 7326,
                    "nodeType": "Block",
                    "src": "3895:318:28",
                    "statements": [
                      {
                        "assignments": [
                          7300
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7300,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "3929:7:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7326,
                            "src": "3905:31:28",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 7299,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7298,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9966,
                                "src": "3905:15:28"
                              },
                              "referencedDeclaration": 9966,
                              "src": "3905:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7304,
                        "initialValue": {
                          "baseExpression": {
                            "id": 7301,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7135,
                            "src": "3939:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 7303,
                          "indexExpression": {
                            "id": 7302,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7286,
                            "src": "3949:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3939:16:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3905:50:28"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7307,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7300,
                                "src": "4035:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 7308,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9965,
                              "src": "4035:13:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 7309,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7300,
                                "src": "4066:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 7310,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9960,
                              "src": "4066:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 7313,
                                  "name": "_startTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7288,
                                  "src": "4106:10:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 7312,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4099:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7311,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4099:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7314,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4099:18:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 7317,
                                  "name": "_endTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7290,
                                  "src": "4142:8:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 7316,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4135:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7315,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4135:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7318,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4135:16:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 7321,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "4176:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 7322,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "4176:15:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7320,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4169:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7319,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4169:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7323,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4169:23:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 7305,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10683,
                              "src": "3985:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 7306,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalanceBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10106,
                            "src": "3985:32:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 7324,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3985:221:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 7295,
                        "id": 7325,
                        "nodeType": "Return",
                        "src": "3966:240:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7284,
                    "nodeType": "StructuredDocumentation",
                    "src": "3711:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "98b16f36",
                  "id": 7327,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "3748:24:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7292,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3868:8:28"
                  },
                  "parameters": {
                    "id": 7291,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7286,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3790:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7327,
                        "src": "3782:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7285,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3782:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7288,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "3812:10:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7327,
                        "src": "3805:17:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 7287,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3805:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7290,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "3839:8:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7327,
                        "src": "3832:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 7289,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3832:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3772:81:28"
                  },
                  "returnParameters": {
                    "id": 7295,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7294,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7327,
                        "src": "3886:7:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7293,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3886:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3885:9:28"
                  },
                  "scope": 8103,
                  "src": "3739:474:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9238
                  ],
                  "body": {
                    "id": 7409,
                    "nodeType": "Block",
                    "src": "4399:529:28",
                    "statements": [
                      {
                        "assignments": [
                          7341
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7341,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "4417:6:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7409,
                            "src": "4409:14:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7340,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4409:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7344,
                        "initialValue": {
                          "expression": {
                            "id": 7342,
                            "name": "_targets",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7333,
                            "src": "4426:8:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 7343,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "4426:15:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4409:32:28"
                      },
                      {
                        "assignments": [
                          7349
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7349,
                            "mutability": "mutable",
                            "name": "_balances",
                            "nameLocation": "4468:9:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7409,
                            "src": "4451:26:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7347,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4451:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7348,
                              "nodeType": "ArrayTypeName",
                              "src": "4451:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7355,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7353,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7341,
                              "src": "4494:6:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7352,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "4480:13:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7350,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4484:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7351,
                              "nodeType": "ArrayTypeName",
                              "src": "4484:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7354,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4480:21:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4451:50:28"
                      },
                      {
                        "assignments": [
                          7360
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7360,
                            "mutability": "mutable",
                            "name": "twabContext",
                            "nameLocation": "4536:11:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7409,
                            "src": "4512:35:28",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 7359,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7358,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9966,
                                "src": "4512:15:28"
                              },
                              "referencedDeclaration": 9966,
                              "src": "4512:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7364,
                        "initialValue": {
                          "baseExpression": {
                            "id": 7361,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7135,
                            "src": "4550:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 7363,
                          "indexExpression": {
                            "id": 7362,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7330,
                            "src": "4560:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4550:16:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4512:54:28"
                      },
                      {
                        "assignments": [
                          7369
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7369,
                            "mutability": "mutable",
                            "name": "details",
                            "nameLocation": "4606:7:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7409,
                            "src": "4576:37:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 7368,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7367,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "4576:22:28"
                              },
                              "referencedDeclaration": 9957,
                              "src": "4576:22:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7372,
                        "initialValue": {
                          "expression": {
                            "id": 7370,
                            "name": "twabContext",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7360,
                            "src": "4616:11:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 7371,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9960,
                          "src": "4616:19:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4576:59:28"
                      },
                      {
                        "body": {
                          "id": 7405,
                          "nodeType": "Block",
                          "src": "4683:212:28",
                          "statements": [
                            {
                              "expression": {
                                "id": 7403,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 7383,
                                    "name": "_balances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7349,
                                    "src": "4697:9:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7385,
                                  "indexExpression": {
                                    "id": 7384,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7374,
                                    "src": "4707:1:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "4697:12:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 7388,
                                        "name": "twabContext",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7360,
                                        "src": "4750:11:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                          "typeString": "struct TwabLib.Account storage pointer"
                                        }
                                      },
                                      "id": 7389,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9965,
                                      "src": "4750:17:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 7390,
                                      "name": "details",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7369,
                                      "src": "4785:7:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 7393,
                                            "name": "_targets",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7333,
                                            "src": "4817:8:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 7395,
                                          "indexExpression": {
                                            "id": 7394,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7374,
                                            "src": "4826:1:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "4817:11:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 7392,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4810:6:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 7391,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4810:6:28",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 7396,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "4810:19:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 7399,
                                            "name": "block",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -4,
                                            "src": "4854:5:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_block",
                                              "typeString": "block"
                                            }
                                          },
                                          "id": 7400,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "src": "4854:15:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 7398,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4847:6:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 7397,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4847:6:28",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 7401,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "4847:23:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 7386,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10683,
                                      "src": "4712:7:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 7387,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getBalanceAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 10222,
                                    "src": "4712:20:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                                      "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                                    }
                                  },
                                  "id": 7402,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4712:172:28",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4697:187:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7404,
                              "nodeType": "ExpressionStatement",
                              "src": "4697:187:28"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7379,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7377,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7374,
                            "src": "4666:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7378,
                            "name": "length",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7341,
                            "src": "4670:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4666:10:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7406,
                        "initializationExpression": {
                          "assignments": [
                            7374
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7374,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "4659:1:28",
                              "nodeType": "VariableDeclaration",
                              "scope": 7406,
                              "src": "4651:9:28",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7373,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4651:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7376,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7375,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4663:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "4651:13:28"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7381,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "4678:3:28",
                            "subExpression": {
                              "id": 7380,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7374,
                              "src": "4678:1:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7382,
                          "nodeType": "ExpressionStatement",
                          "src": "4678:3:28"
                        },
                        "nodeType": "ForStatement",
                        "src": "4646:249:28"
                      },
                      {
                        "expression": {
                          "id": 7407,
                          "name": "_balances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7349,
                          "src": "4912:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7339,
                        "id": 7408,
                        "nodeType": "Return",
                        "src": "4905:16:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7328,
                    "nodeType": "StructuredDocumentation",
                    "src": "4219:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "613ed6bd",
                  "id": 7410,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalancesAt",
                  "nameLocation": "4256:13:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7335,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4351:8:28"
                  },
                  "parameters": {
                    "id": 7334,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7330,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4278:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7410,
                        "src": "4270:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7329,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4270:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7333,
                        "mutability": "mutable",
                        "name": "_targets",
                        "nameLocation": "4303:8:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7410,
                        "src": "4285:26:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7331,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "4285:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7332,
                          "nodeType": "ArrayTypeName",
                          "src": "4285:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4269:43:28"
                  },
                  "returnParameters": {
                    "id": 7339,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7338,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7410,
                        "src": "4377:16:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7336,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "4377:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7337,
                          "nodeType": "ArrayTypeName",
                          "src": "4377:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4376:18:28"
                  },
                  "scope": 8103,
                  "src": "4247:681:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9273
                  ],
                  "body": {
                    "id": 7436,
                    "nodeType": "Block",
                    "src": "5045:224:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7421,
                                "name": "totalSupplyTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7139,
                                "src": "5112:15:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$9966_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 7422,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9965,
                              "src": "5112:21:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 7423,
                                "name": "totalSupplyTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7139,
                                "src": "5151:15:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$9966_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 7424,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9960,
                              "src": "5151:23:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 7427,
                                  "name": "_target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7413,
                                  "src": "5199:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 7426,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5192:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7425,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5192:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7428,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5192:15:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 7431,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "5232:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 7432,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "5232:15:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7430,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5225:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7429,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5225:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7433,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5225:23:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 7419,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10683,
                              "src": "5074:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 7420,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10222,
                            "src": "5074:20:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 7434,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5074:188:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 7418,
                        "id": 7435,
                        "nodeType": "Return",
                        "src": "5055:207:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7411,
                    "nodeType": "StructuredDocumentation",
                    "src": "4934:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "2d0dd686",
                  "id": 7437,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSupplyAt",
                  "nameLocation": "4971:16:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7415,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5018:8:28"
                  },
                  "parameters": {
                    "id": 7414,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7413,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "4995:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7437,
                        "src": "4988:14:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 7412,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4988:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4987:16:28"
                  },
                  "returnParameters": {
                    "id": 7418,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7417,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7437,
                        "src": "5036:7:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7416,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5036:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5035:9:28"
                  },
                  "scope": 8103,
                  "src": "4962:307:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9283
                  ],
                  "body": {
                    "id": 7508,
                    "nodeType": "Block",
                    "src": "5445:485:28",
                    "statements": [
                      {
                        "assignments": [
                          7449
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7449,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "5463:6:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7508,
                            "src": "5455:14:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7448,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5455:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7452,
                        "initialValue": {
                          "expression": {
                            "id": 7450,
                            "name": "_targets",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7441,
                            "src": "5472:8:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 7451,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "5472:15:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5455:32:28"
                      },
                      {
                        "assignments": [
                          7457
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7457,
                            "mutability": "mutable",
                            "name": "totalSupplies",
                            "nameLocation": "5514:13:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7508,
                            "src": "5497:30:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7455,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5497:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7456,
                              "nodeType": "ArrayTypeName",
                              "src": "5497:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7463,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7461,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7449,
                              "src": "5544:6:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7460,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5530:13:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7458,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5534:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7459,
                              "nodeType": "ArrayTypeName",
                              "src": "5534:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7462,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5530:21:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5497:54:28"
                      },
                      {
                        "assignments": [
                          7468
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7468,
                            "mutability": "mutable",
                            "name": "details",
                            "nameLocation": "5592:7:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7508,
                            "src": "5562:37:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 7467,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7466,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "5562:22:28"
                              },
                              "referencedDeclaration": 9957,
                              "src": "5562:22:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7471,
                        "initialValue": {
                          "expression": {
                            "id": 7469,
                            "name": "totalSupplyTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7139,
                            "src": "5602:15:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage",
                              "typeString": "struct TwabLib.Account storage ref"
                            }
                          },
                          "id": 7470,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9960,
                          "src": "5602:23:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5562:63:28"
                      },
                      {
                        "body": {
                          "id": 7504,
                          "nodeType": "Block",
                          "src": "5673:220:28",
                          "statements": [
                            {
                              "expression": {
                                "id": 7502,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 7482,
                                    "name": "totalSupplies",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7457,
                                    "src": "5687:13:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7484,
                                  "indexExpression": {
                                    "id": 7483,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7473,
                                    "src": "5701:1:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "5687:16:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 7487,
                                        "name": "totalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7139,
                                        "src": "5744:15:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$9966_storage",
                                          "typeString": "struct TwabLib.Account storage ref"
                                        }
                                      },
                                      "id": 7488,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9965,
                                      "src": "5744:21:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 7489,
                                      "name": "details",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7468,
                                      "src": "5783:7:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 7492,
                                            "name": "_targets",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7441,
                                            "src": "5815:8:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 7494,
                                          "indexExpression": {
                                            "id": 7493,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7473,
                                            "src": "5824:1:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5815:11:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 7491,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5808:6:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 7490,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5808:6:28",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 7495,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "5808:19:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 7498,
                                            "name": "block",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -4,
                                            "src": "5852:5:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_block",
                                              "typeString": "block"
                                            }
                                          },
                                          "id": 7499,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "src": "5852:15:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 7497,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5845:6:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 7496,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5845:6:28",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 7500,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "5845:23:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 7485,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10683,
                                      "src": "5706:7:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 7486,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getBalanceAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 10222,
                                    "src": "5706:20:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                                      "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                                    }
                                  },
                                  "id": 7501,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5706:176:28",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5687:195:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7503,
                              "nodeType": "ExpressionStatement",
                              "src": "5687:195:28"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7478,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7476,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7473,
                            "src": "5656:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7477,
                            "name": "length",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7449,
                            "src": "5660:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5656:10:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7505,
                        "initializationExpression": {
                          "assignments": [
                            7473
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7473,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "5649:1:28",
                              "nodeType": "VariableDeclaration",
                              "scope": 7505,
                              "src": "5641:9:28",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7472,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5641:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7475,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7474,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5653:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5641:13:28"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7480,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5668:3:28",
                            "subExpression": {
                              "id": 7479,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7473,
                              "src": "5668:1:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7481,
                          "nodeType": "ExpressionStatement",
                          "src": "5668:3:28"
                        },
                        "nodeType": "ForStatement",
                        "src": "5636:257:28"
                      },
                      {
                        "expression": {
                          "id": 7506,
                          "name": "totalSupplies",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7457,
                          "src": "5910:13:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7447,
                        "id": 7507,
                        "nodeType": "Return",
                        "src": "5903:20:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7438,
                    "nodeType": "StructuredDocumentation",
                    "src": "5275:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "85beb5f1",
                  "id": 7509,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSuppliesAt",
                  "nameLocation": "5312:18:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7443,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5397:8:28"
                  },
                  "parameters": {
                    "id": 7442,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7441,
                        "mutability": "mutable",
                        "name": "_targets",
                        "nameLocation": "5349:8:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7509,
                        "src": "5331:26:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7439,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "5331:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7440,
                          "nodeType": "ArrayTypeName",
                          "src": "5331:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5330:28:28"
                  },
                  "returnParameters": {
                    "id": 7447,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7446,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7509,
                        "src": "5423:16:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7444,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5423:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7445,
                          "nodeType": "ArrayTypeName",
                          "src": "5423:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5422:18:28"
                  },
                  "scope": 8103,
                  "src": "5303:627:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9166
                  ],
                  "body": {
                    "id": 7522,
                    "nodeType": "Block",
                    "src": "6040:40:28",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 7518,
                            "name": "delegates",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7144,
                            "src": "6057:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                              "typeString": "mapping(address => address)"
                            }
                          },
                          "id": 7520,
                          "indexExpression": {
                            "id": 7519,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7512,
                            "src": "6067:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6057:16:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 7517,
                        "id": 7521,
                        "nodeType": "Return",
                        "src": "6050:23:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7510,
                    "nodeType": "StructuredDocumentation",
                    "src": "5936:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "8d22ea2a",
                  "id": 7523,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateOf",
                  "nameLocation": "5973:10:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7514,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6013:8:28"
                  },
                  "parameters": {
                    "id": 7513,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7512,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "5992:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7523,
                        "src": "5984:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7511,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5984:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5983:15:28"
                  },
                  "returnParameters": {
                    "id": 7517,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7516,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7523,
                        "src": "6031:7:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7515,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6031:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6030:9:28"
                  },
                  "scope": 8103,
                  "src": "5964:116:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9180
                  ],
                  "body": {
                    "id": 7539,
                    "nodeType": "Block",
                    "src": "6206:38:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7535,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7526,
                              "src": "6226:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7536,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7528,
                              "src": "6233:3:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 7534,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7667,
                            "src": "6216:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 7537,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6216:21:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7538,
                        "nodeType": "ExpressionStatement",
                        "src": "6216:21:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7524,
                    "nodeType": "StructuredDocumentation",
                    "src": "6086:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "33e39b61",
                  "id": 7540,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 7532,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 7531,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3357,
                        "src": "6191:14:28"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6191:14:28"
                    }
                  ],
                  "name": "controllerDelegateFor",
                  "nameLocation": "6123:21:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7530,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6182:8:28"
                  },
                  "parameters": {
                    "id": 7529,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7526,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "6153:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7540,
                        "src": "6145:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7525,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6145:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7528,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6168:3:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7540,
                        "src": "6160:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7527,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6160:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6144:28:28"
                  },
                  "returnParameters": {
                    "id": 7533,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6206:0:28"
                  },
                  "scope": 8103,
                  "src": "6114:130:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9196
                  ],
                  "body": {
                    "id": 7608,
                    "nodeType": "Block",
                    "src": "6479:438:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7561,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 7558,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "6497:5:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 7559,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "6497:15:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 7560,
                                "name": "_deadline",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7547,
                                "src": "6516:9:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6497:28:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f64656c65676174652d657870697265642d646561646c696e65",
                              "id": 7562,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6527:34:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09",
                                "typeString": "literal_string \"Ticket/delegate-expired-deadline\""
                              },
                              "value": "Ticket/delegate-expired-deadline"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09",
                                "typeString": "literal_string \"Ticket/delegate-expired-deadline\""
                              }
                            ],
                            "id": 7557,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6489:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7563,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6489:73:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7564,
                        "nodeType": "ExpressionStatement",
                        "src": "6489:73:28"
                      },
                      {
                        "assignments": [
                          7566
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7566,
                            "mutability": "mutable",
                            "name": "structHash",
                            "nameLocation": "6581:10:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7608,
                            "src": "6573:18:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 7565,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6573:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7579,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 7570,
                                  "name": "_DELEGATE_TYPEHASH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7129,
                                  "src": "6615:18:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 7571,
                                  "name": "_user",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7543,
                                  "src": "6635:5:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 7572,
                                  "name": "_newDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7545,
                                  "src": "6642:12:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 7574,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7543,
                                      "src": "6666:5:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "id": 7573,
                                    "name": "_useNonce",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 856,
                                    "src": "6656:9:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) returns (uint256)"
                                    }
                                  },
                                  "id": 7575,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6656:16:28",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 7576,
                                  "name": "_deadline",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7547,
                                  "src": "6674:9:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "id": 7568,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "6604:3:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 7569,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "6604:10:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 7577,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6604:80:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 7567,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "6594:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 7578,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6594:91:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6573:112:28"
                      },
                      {
                        "assignments": [
                          7581
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7581,
                            "mutability": "mutable",
                            "name": "hash",
                            "nameLocation": "6704:4:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7608,
                            "src": "6696:12:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 7580,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6696:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7585,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7583,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7566,
                              "src": "6728:10:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 7582,
                            "name": "_hashTypedDataV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2390,
                            "src": "6711:16:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32) view returns (bytes32)"
                            }
                          },
                          "id": 7584,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6711:28:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6696:43:28"
                      },
                      {
                        "assignments": [
                          7587
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7587,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "6758:6:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7608,
                            "src": "6750:14:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 7586,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "6750:7:28",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7595,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7590,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7581,
                              "src": "6781:4:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 7591,
                              "name": "_v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7549,
                              "src": "6787:2:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 7592,
                              "name": "_r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7551,
                              "src": "6791:2:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 7593,
                              "name": "_s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7553,
                              "src": "6795:2:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 7588,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2237,
                              "src": "6767:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$2237_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 7589,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "recover",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2177,
                            "src": "6767:13:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address)"
                            }
                          },
                          "id": 7594,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6767:31:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6750:48:28"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 7599,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 7597,
                                "name": "signer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7587,
                                "src": "6816:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 7598,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7543,
                                "src": "6826:5:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "6816:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757265",
                              "id": 7600,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6833:35:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53",
                                "typeString": "literal_string \"Ticket/delegate-invalid-signature\""
                              },
                              "value": "Ticket/delegate-invalid-signature"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53",
                                "typeString": "literal_string \"Ticket/delegate-invalid-signature\""
                              }
                            ],
                            "id": 7596,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6808:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7601,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6808:61:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7602,
                        "nodeType": "ExpressionStatement",
                        "src": "6808:61:28"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7604,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7543,
                              "src": "6890:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7605,
                              "name": "_newDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7545,
                              "src": "6897:12:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 7603,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7667,
                            "src": "6880:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 7606,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6880:30:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7607,
                        "nodeType": "ExpressionStatement",
                        "src": "6880:30:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7541,
                    "nodeType": "StructuredDocumentation",
                    "src": "6250:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "919974dc",
                  "id": 7609,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateWithSignature",
                  "nameLocation": "6287:21:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7555,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6470:8:28"
                  },
                  "parameters": {
                    "id": 7554,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7543,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "6326:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7609,
                        "src": "6318:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7542,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6318:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7545,
                        "mutability": "mutable",
                        "name": "_newDelegate",
                        "nameLocation": "6349:12:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7609,
                        "src": "6341:20:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7544,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6341:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7547,
                        "mutability": "mutable",
                        "name": "_deadline",
                        "nameLocation": "6379:9:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7609,
                        "src": "6371:17:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7546,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6371:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7549,
                        "mutability": "mutable",
                        "name": "_v",
                        "nameLocation": "6404:2:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7609,
                        "src": "6398:8:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 7548,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "6398:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7551,
                        "mutability": "mutable",
                        "name": "_r",
                        "nameLocation": "6424:2:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7609,
                        "src": "6416:10:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 7550,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6416:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7553,
                        "mutability": "mutable",
                        "name": "_s",
                        "nameLocation": "6444:2:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7609,
                        "src": "6436:10:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 7552,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6436:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6308:144:28"
                  },
                  "returnParameters": {
                    "id": 7556,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6479:0:28"
                  },
                  "scope": 8103,
                  "src": "6278:639:28",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9172
                  ],
                  "body": {
                    "id": 7622,
                    "nodeType": "Block",
                    "src": "7008:43:28",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7617,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "7028:3:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 7618,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "7028:10:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7619,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7612,
                              "src": "7040:3:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 7616,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7667,
                            "src": "7018:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 7620,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7018:26:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7621,
                        "nodeType": "ExpressionStatement",
                        "src": "7018:26:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7610,
                    "nodeType": "StructuredDocumentation",
                    "src": "6923:23:28",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "5c19a95c",
                  "id": 7623,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "6960:8:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7614,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6999:8:28"
                  },
                  "parameters": {
                    "id": 7613,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7612,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6977:3:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7623,
                        "src": "6969:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7611,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6969:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6968:13:28"
                  },
                  "returnParameters": {
                    "id": 7615,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7008:0:28"
                  },
                  "scope": 8103,
                  "src": "6951:100:28",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 7666,
                    "nodeType": "Block",
                    "src": "7261:297:28",
                    "statements": [
                      {
                        "assignments": [
                          7632
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7632,
                            "mutability": "mutable",
                            "name": "balance",
                            "nameLocation": "7279:7:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7666,
                            "src": "7271:15:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7631,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7271:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7636,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7634,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7626,
                              "src": "7299:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 7633,
                            "name": "balanceOf",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 138,
                            "src": "7289:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view returns (uint256)"
                            }
                          },
                          "id": 7635,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7289:16:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7271:34:28"
                      },
                      {
                        "assignments": [
                          7638
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7638,
                            "mutability": "mutable",
                            "name": "currentDelegate",
                            "nameLocation": "7323:15:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7666,
                            "src": "7315:23:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 7637,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7315:7:28",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7642,
                        "initialValue": {
                          "baseExpression": {
                            "id": 7639,
                            "name": "delegates",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7144,
                            "src": "7341:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                              "typeString": "mapping(address => address)"
                            }
                          },
                          "id": 7641,
                          "indexExpression": {
                            "id": 7640,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7626,
                            "src": "7351:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7341:16:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7315:42:28"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 7645,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7643,
                            "name": "currentDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7638,
                            "src": "7372:15:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 7644,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7628,
                            "src": "7391:3:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7372:22:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7648,
                        "nodeType": "IfStatement",
                        "src": "7368:59:28",
                        "trueBody": {
                          "id": 7647,
                          "nodeType": "Block",
                          "src": "7396:31:28",
                          "statements": [
                            {
                              "functionReturnParameters": 7630,
                              "id": 7646,
                              "nodeType": "Return",
                              "src": "7410:7:28"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 7653,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 7649,
                              "name": "delegates",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7144,
                              "src": "7437:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                "typeString": "mapping(address => address)"
                              }
                            },
                            "id": 7651,
                            "indexExpression": {
                              "id": 7650,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7626,
                              "src": "7447:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7437:16:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7652,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7628,
                            "src": "7456:3:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7437:22:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 7654,
                        "nodeType": "ExpressionStatement",
                        "src": "7437:22:28"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7656,
                              "name": "currentDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7638,
                              "src": "7484:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7657,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7628,
                              "src": "7501:3:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7658,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7632,
                              "src": "7506:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7655,
                            "name": "_transferTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7880,
                            "src": "7470:13:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 7659,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7470:44:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7660,
                        "nodeType": "ExpressionStatement",
                        "src": "7470:44:28"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 7662,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7626,
                              "src": "7540:5:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7663,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7628,
                              "src": "7547:3:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 7661,
                            "name": "Delegated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9133,
                            "src": "7530:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 7664,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7530:21:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7665,
                        "nodeType": "EmitStatement",
                        "src": "7525:26:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7624,
                    "nodeType": "StructuredDocumentation",
                    "src": "7057:143:28",
                    "text": "@notice Delegates a users chance to another\n @param _user The user whose balance should be delegated\n @param _to The delegate"
                  },
                  "id": 7667,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_delegate",
                  "nameLocation": "7214:9:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7629,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7626,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "7232:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7667,
                        "src": "7224:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7625,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7224:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7628,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7247:3:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7667,
                        "src": "7239:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7627,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7239:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7223:28:28"
                  },
                  "returnParameters": {
                    "id": 7630,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7261:0:28"
                  },
                  "scope": 8103,
                  "src": "7205:353:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7761,
                    "nodeType": "Block",
                    "src": "8173:724:28",
                    "statements": [
                      {
                        "assignments": [
                          7684
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7684,
                            "mutability": "mutable",
                            "name": "startTimesLength",
                            "nameLocation": "8191:16:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7761,
                            "src": "8183:24:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7683,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8183:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7687,
                        "initialValue": {
                          "expression": {
                            "id": 7685,
                            "name": "_startTimes",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7674,
                            "src": "8210:11:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 7686,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "8210:18:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8183:45:28"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7692,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 7689,
                                "name": "startTimesLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7684,
                                "src": "8246:16:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 7690,
                                  "name": "_endTimes",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7677,
                                  "src": "8266:9:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                    "typeString": "uint64[] calldata"
                                  }
                                },
                                "id": 7691,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "8266:16:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8246:36:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d61746368",
                              "id": 7693,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8284:37:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7",
                                "typeString": "literal_string \"Ticket/start-end-times-length-match\""
                              },
                              "value": "Ticket/start-end-times-length-match"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7",
                                "typeString": "literal_string \"Ticket/start-end-times-length-match\""
                              }
                            ],
                            "id": 7688,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8238:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7694,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8238:84:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7695,
                        "nodeType": "ExpressionStatement",
                        "src": "8238:84:28"
                      },
                      {
                        "assignments": [
                          7700
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7700,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "8363:14:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7761,
                            "src": "8333:44:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 7699,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7698,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "8333:22:28"
                              },
                              "referencedDeclaration": 9957,
                              "src": "8333:22:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7703,
                        "initialValue": {
                          "expression": {
                            "id": 7701,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7671,
                            "src": "8380:8:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 7702,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9960,
                          "src": "8380:16:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8333:63:28"
                      },
                      {
                        "assignments": [
                          7708
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7708,
                            "mutability": "mutable",
                            "name": "averageBalances",
                            "nameLocation": "8424:15:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7761,
                            "src": "8407:32:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7706,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8407:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7707,
                              "nodeType": "ArrayTypeName",
                              "src": "8407:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7714,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7712,
                              "name": "startTimesLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7684,
                              "src": "8456:16:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7711,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8442:13:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7709,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8446:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7710,
                              "nodeType": "ArrayTypeName",
                              "src": "8446:9:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7713,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8442:31:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8407:66:28"
                      },
                      {
                        "assignments": [
                          7716
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7716,
                            "mutability": "mutable",
                            "name": "currentTimestamp",
                            "nameLocation": "8490:16:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7761,
                            "src": "8483:23:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 7715,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8483:6:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7722,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7719,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "8516:5:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 7720,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "8516:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7718,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "8509:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 7717,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8509:6:28",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7721,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8509:23:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8483:49:28"
                      },
                      {
                        "body": {
                          "id": 7757,
                          "nodeType": "Block",
                          "src": "8590:268:28",
                          "statements": [
                            {
                              "expression": {
                                "id": 7755,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 7733,
                                    "name": "averageBalances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7708,
                                    "src": "8604:15:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7735,
                                  "indexExpression": {
                                    "id": 7734,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7724,
                                    "src": "8620:1:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "8604:18:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 7738,
                                        "name": "_account",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7671,
                                        "src": "8675:8:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                          "typeString": "struct TwabLib.Account storage pointer"
                                        }
                                      },
                                      "id": 7739,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9965,
                                      "src": "8675:14:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 7740,
                                      "name": "accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7700,
                                      "src": "8707:14:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 7743,
                                            "name": "_startTimes",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7674,
                                            "src": "8746:11:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 7745,
                                          "indexExpression": {
                                            "id": 7744,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7724,
                                            "src": "8758:1:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8746:14:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 7742,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "8739:6:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 7741,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8739:6:28",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 7746,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8739:22:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 7749,
                                            "name": "_endTimes",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7677,
                                            "src": "8786:9:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 7751,
                                          "indexExpression": {
                                            "id": 7750,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7724,
                                            "src": "8796:1:28",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8786:12:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 7748,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "8779:6:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 7747,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8779:6:28",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 7752,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8779:20:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "id": 7753,
                                      "name": "currentTimestamp",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7716,
                                      "src": "8817:16:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 7736,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10683,
                                      "src": "8625:7:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 7737,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getAverageBalanceBetween",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 10106,
                                    "src": "8625:32:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                                      "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                                    }
                                  },
                                  "id": 7754,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8625:222:28",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8604:243:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7756,
                              "nodeType": "ExpressionStatement",
                              "src": "8604:243:28"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7729,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7727,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7724,
                            "src": "8563:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7728,
                            "name": "startTimesLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7684,
                            "src": "8567:16:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8563:20:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7758,
                        "initializationExpression": {
                          "assignments": [
                            7724
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7724,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8556:1:28",
                              "nodeType": "VariableDeclaration",
                              "scope": 7758,
                              "src": "8548:9:28",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7723,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8548:7:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7726,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7725,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8560:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8548:13:28"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7731,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8585:3:28",
                            "subExpression": {
                              "id": 7730,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7724,
                              "src": "8585:1:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7732,
                          "nodeType": "ExpressionStatement",
                          "src": "8585:3:28"
                        },
                        "nodeType": "ForStatement",
                        "src": "8543:315:28"
                      },
                      {
                        "expression": {
                          "id": 7759,
                          "name": "averageBalances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7708,
                          "src": "8875:15:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7682,
                        "id": 7760,
                        "nodeType": "Return",
                        "src": "8868:22:28"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7668,
                    "nodeType": "StructuredDocumentation",
                    "src": "7620:347:28",
                    "text": " @notice Retrieves the average balances held by a user for a given time frame.\n @param _account The user whose balance is checked.\n @param _startTimes The start time of the time frame.\n @param _endTimes The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "id": 7762,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getAverageBalancesBetween",
                  "nameLocation": "7981:26:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7678,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7671,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "8041:8:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7762,
                        "src": "8017:32:28",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 7670,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7669,
                            "name": "TwabLib.Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9966,
                            "src": "8017:15:28"
                          },
                          "referencedDeclaration": 9966,
                          "src": "8017:15:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7674,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "8077:11:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7762,
                        "src": "8059:29:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7672,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "8059:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7673,
                          "nodeType": "ArrayTypeName",
                          "src": "8059:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7677,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "8116:9:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7762,
                        "src": "8098:27:28",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7675,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "8098:6:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7676,
                          "nodeType": "ArrayTypeName",
                          "src": "8098:8:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8007:124:28"
                  },
                  "returnParameters": {
                    "id": 7682,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7681,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7762,
                        "src": "8155:16:28",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7679,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "8155:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7680,
                          "nodeType": "ArrayTypeName",
                          "src": "8155:9:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8154:18:28"
                  },
                  "scope": 8103,
                  "src": "7972:925:28",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    573
                  ],
                  "body": {
                    "id": 7818,
                    "nodeType": "Block",
                    "src": "9021:364:28",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 7774,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7772,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7764,
                            "src": "9035:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 7773,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7766,
                            "src": "9044:3:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9035:12:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7777,
                        "nodeType": "IfStatement",
                        "src": "9031:49:28",
                        "trueBody": {
                          "id": 7776,
                          "nodeType": "Block",
                          "src": "9049:31:28",
                          "statements": [
                            {
                              "functionReturnParameters": 7771,
                              "id": 7775,
                              "nodeType": "Return",
                              "src": "9063:7:28"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          7779
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7779,
                            "mutability": "mutable",
                            "name": "_fromDelegate",
                            "nameLocation": "9098:13:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7818,
                            "src": "9090:21:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 7778,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "9090:7:28",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7780,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9090:21:28"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 7786,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7781,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7764,
                            "src": "9125:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 7784,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9142:1:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 7783,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9134:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 7782,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9134:7:28",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 7785,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9134:10:28",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9125:19:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7794,
                        "nodeType": "IfStatement",
                        "src": "9121:82:28",
                        "trueBody": {
                          "id": 7793,
                          "nodeType": "Block",
                          "src": "9146:57:28",
                          "statements": [
                            {
                              "expression": {
                                "id": 7791,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 7787,
                                  "name": "_fromDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7779,
                                  "src": "9160:13:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 7788,
                                    "name": "delegates",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7144,
                                    "src": "9176:9:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                      "typeString": "mapping(address => address)"
                                    }
                                  },
                                  "id": 7790,
                                  "indexExpression": {
                                    "id": 7789,
                                    "name": "_from",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7764,
                                    "src": "9186:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9176:16:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9160:32:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 7792,
                              "nodeType": "ExpressionStatement",
                              "src": "9160:32:28"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          7796
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7796,
                            "mutability": "mutable",
                            "name": "_toDelegate",
                            "nameLocation": "9221:11:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7818,
                            "src": "9213:19:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 7795,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "9213:7:28",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7797,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9213:19:28"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 7803,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7798,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7766,
                            "src": "9246:3:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 7801,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9261:1:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 7800,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9253:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 7799,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9253:7:28",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 7802,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9253:10:28",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9246:17:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7811,
                        "nodeType": "IfStatement",
                        "src": "9242:76:28",
                        "trueBody": {
                          "id": 7810,
                          "nodeType": "Block",
                          "src": "9265:53:28",
                          "statements": [
                            {
                              "expression": {
                                "id": 7808,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 7804,
                                  "name": "_toDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7796,
                                  "src": "9279:11:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 7805,
                                    "name": "delegates",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7144,
                                    "src": "9293:9:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                      "typeString": "mapping(address => address)"
                                    }
                                  },
                                  "id": 7807,
                                  "indexExpression": {
                                    "id": 7806,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7766,
                                    "src": "9303:3:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9293:14:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9279:28:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 7809,
                              "nodeType": "ExpressionStatement",
                              "src": "9279:28:28"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7813,
                              "name": "_fromDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7779,
                              "src": "9342:13:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7814,
                              "name": "_toDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7796,
                              "src": "9357:11:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7815,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7768,
                              "src": "9370:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7812,
                            "name": "_transferTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7880,
                            "src": "9328:13:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 7816,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9328:50:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7817,
                        "nodeType": "ExpressionStatement",
                        "src": "9328:50:28"
                      }
                    ]
                  },
                  "id": 7819,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "8937:20:28",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7770,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9012:8:28"
                  },
                  "parameters": {
                    "id": 7769,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7764,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "8966:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7819,
                        "src": "8958:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7763,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8958:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7766,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "8981:3:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7819,
                        "src": "8973:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7765,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8973:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7768,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "8994:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7819,
                        "src": "8986:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7767,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8986:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8957:45:28"
                  },
                  "returnParameters": {
                    "id": 7771,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9021:0:28"
                  },
                  "scope": 8103,
                  "src": "8928:457:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7879,
                    "nodeType": "Block",
                    "src": "9794:580:28",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 7834,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7829,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7822,
                            "src": "9900:5:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 7832,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9917:1:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 7831,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9909:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 7830,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9909:7:28",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 7833,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9909:10:28",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9900:19:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7853,
                        "nodeType": "IfStatement",
                        "src": "9896:186:28",
                        "trueBody": {
                          "id": 7852,
                          "nodeType": "Block",
                          "src": "9921:161:28",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 7836,
                                    "name": "_from",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7822,
                                    "src": "9953:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 7837,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7826,
                                    "src": "9960:7:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 7835,
                                  "name": "_decreaseUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8003,
                                  "src": "9935:17:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 7838,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9935:33:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7839,
                              "nodeType": "ExpressionStatement",
                              "src": "9935:33:28"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 7845,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 7840,
                                  "name": "_to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7824,
                                  "src": "9987:3:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 7843,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "10002:1:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 7842,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "9994:7:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 7841,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "9994:7:28",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 7844,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "9994:10:28",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9987:17:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7851,
                              "nodeType": "IfStatement",
                              "src": "9983:89:28",
                              "trueBody": {
                                "id": 7850,
                                "nodeType": "Block",
                                "src": "10006:66:28",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 7847,
                                          "name": "_amount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7826,
                                          "src": "10049:7:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 7846,
                                        "name": "_decreaseTotalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8053,
                                        "src": "10024:24:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                                          "typeString": "function (uint256)"
                                        }
                                      },
                                      "id": 7848,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10024:33:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 7849,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10024:33:28"
                                  }
                                ]
                              }
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 7859,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7854,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7824,
                            "src": "10188:3:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 7857,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "10203:1:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                }
                              ],
                              "id": 7856,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "10195:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 7855,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "10195:7:28",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 7858,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10195:10:28",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "10188:17:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7878,
                        "nodeType": "IfStatement",
                        "src": "10184:184:28",
                        "trueBody": {
                          "id": 7877,
                          "nodeType": "Block",
                          "src": "10207:161:28",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 7861,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7824,
                                    "src": "10239:3:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 7862,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7826,
                                    "src": "10244:7:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 7860,
                                  "name": "_increaseUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7941,
                                  "src": "10221:17:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 7863,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10221:31:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7864,
                              "nodeType": "ExpressionStatement",
                              "src": "10221:31:28"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 7870,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 7865,
                                  "name": "_from",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7822,
                                  "src": "10271:5:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 7868,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "10288:1:28",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 7867,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "10280:7:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 7866,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "10280:7:28",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 7869,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "10280:10:28",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "10271:19:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7876,
                              "nodeType": "IfStatement",
                              "src": "10267:91:28",
                              "trueBody": {
                                "id": 7875,
                                "nodeType": "Block",
                                "src": "10292:66:28",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 7872,
                                          "name": "_amount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7826,
                                          "src": "10335:7:28",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 7871,
                                        "name": "_increaseTotalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8102,
                                        "src": "10310:24:28",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                                          "typeString": "function (uint256)"
                                        }
                                      },
                                      "id": 7873,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10310:33:28",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 7874,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10310:33:28"
                                  }
                                ]
                              }
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7820,
                    "nodeType": "StructuredDocumentation",
                    "src": "9391:321:28",
                    "text": "@notice Transfers the given TWAB balance from one user to another\n @param _from The user to transfer the balance from.  May be zero in the event of a mint.\n @param _to The user to transfer the balance to.  May be zero in the event of a burn.\n @param _amount The balance that is being transferred."
                  },
                  "id": 7880,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transferTwab",
                  "nameLocation": "9726:13:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7827,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7822,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "9748:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7880,
                        "src": "9740:13:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7821,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9740:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7824,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "9763:3:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7880,
                        "src": "9755:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7823,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9755:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7826,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "9776:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7880,
                        "src": "9768:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7825,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9768:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9739:45:28"
                  },
                  "returnParameters": {
                    "id": 7828,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9794:0:28"
                  },
                  "scope": 8103,
                  "src": "9717:657:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7940,
                    "nodeType": "Block",
                    "src": "10645:479:28",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7890,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7888,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7885,
                            "src": "10659:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 7889,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10670:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "10659:12:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7893,
                        "nodeType": "IfStatement",
                        "src": "10655:49:28",
                        "trueBody": {
                          "id": 7892,
                          "nodeType": "Block",
                          "src": "10673:31:28",
                          "statements": [
                            {
                              "functionReturnParameters": 7887,
                              "id": 7891,
                              "nodeType": "Return",
                              "src": "10687:7:28"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          7898
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7898,
                            "mutability": "mutable",
                            "name": "_account",
                            "nameLocation": "10738:8:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7940,
                            "src": "10714:32:28",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 7897,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7896,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9966,
                                "src": "10714:15:28"
                              },
                              "referencedDeclaration": 9966,
                              "src": "10714:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7902,
                        "initialValue": {
                          "baseExpression": {
                            "id": 7899,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7135,
                            "src": "10749:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 7901,
                          "indexExpression": {
                            "id": 7900,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7883,
                            "src": "10759:3:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "10749:14:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10714:49:28"
                      },
                      {
                        "assignments": [
                          7907,
                          7910,
                          7912
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7907,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "10818:14:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7940,
                            "src": "10788:44:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 7906,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7905,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "10788:22:28"
                              },
                              "referencedDeclaration": 9957,
                              "src": "10788:22:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 7910,
                            "mutability": "mutable",
                            "name": "twab",
                            "nameLocation": "10880:4:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7940,
                            "src": "10846:38:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 7909,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7908,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "10846:26:28"
                              },
                              "referencedDeclaration": 9538,
                              "src": "10846:26:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 7912,
                            "mutability": "mutable",
                            "name": "isNew",
                            "nameLocation": "10903:5:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 7940,
                            "src": "10898:10:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 7911,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "10898:4:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7925,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7915,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7898,
                              "src": "10945:8:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 7916,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7885,
                                  "src": "10955:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 7917,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9491,
                                "src": "10955:17:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 7918,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10955:19:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 7921,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "10983:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 7922,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "10983:15:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7920,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10976:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7919,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10976:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7923,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10976:23:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 7913,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10683,
                              "src": "10921:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 7914,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10013,
                            "src": "10921:23:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$9966_storage_ptr_$_t_uint208_$_t_uint32_$returns$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 7924,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10921:79:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10774:226:28"
                      },
                      {
                        "expression": {
                          "id": 7930,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 7926,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7898,
                              "src": "11011:8:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            "id": 7928,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9960,
                            "src": "11011:16:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7929,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7907,
                            "src": "11030:14:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "11011:33:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 7931,
                        "nodeType": "ExpressionStatement",
                        "src": "11011:33:28"
                      },
                      {
                        "condition": {
                          "id": 7932,
                          "name": "isNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7912,
                          "src": "11059:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7939,
                        "nodeType": "IfStatement",
                        "src": "11055:63:28",
                        "trueBody": {
                          "id": 7938,
                          "nodeType": "Block",
                          "src": "11066:52:28",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 7934,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7883,
                                    "src": "11097:3:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 7935,
                                    "name": "twab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7910,
                                    "src": "11102:4:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 7933,
                                  "name": "NewUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9152,
                                  "src": "11085:11:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_struct$_Observation_$9538_memory_ptr_$returns$__$",
                                    "typeString": "function (address,struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 7936,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11085:22:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7937,
                              "nodeType": "EmitStatement",
                              "src": "11080:27:28"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7881,
                    "nodeType": "StructuredDocumentation",
                    "src": "10380:172:28",
                    "text": " @notice Increase `_to` TWAB balance.\n @param _to Address of the delegate.\n @param _amount Amount of tokens to be added to `_to` TWAB balance."
                  },
                  "id": 7941,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_increaseUserTwab",
                  "nameLocation": "10566:17:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7886,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7883,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10601:3:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7941,
                        "src": "10593:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7882,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10593:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7885,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "10622:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 7941,
                        "src": "10614:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7884,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10614:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10583:52:28"
                  },
                  "returnParameters": {
                    "id": 7887,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10645:0:28"
                  },
                  "scope": 8103,
                  "src": "10557:567:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8002,
                    "nodeType": "Block",
                    "src": "11395:588:28",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7951,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7949,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7946,
                            "src": "11409:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 7950,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "11420:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "11409:12:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7954,
                        "nodeType": "IfStatement",
                        "src": "11405:49:28",
                        "trueBody": {
                          "id": 7953,
                          "nodeType": "Block",
                          "src": "11423:31:28",
                          "statements": [
                            {
                              "functionReturnParameters": 7948,
                              "id": 7952,
                              "nodeType": "Return",
                              "src": "11437:7:28"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          7959
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7959,
                            "mutability": "mutable",
                            "name": "_account",
                            "nameLocation": "11488:8:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8002,
                            "src": "11464:32:28",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 7958,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7957,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9966,
                                "src": "11464:15:28"
                              },
                              "referencedDeclaration": 9966,
                              "src": "11464:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7963,
                        "initialValue": {
                          "baseExpression": {
                            "id": 7960,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7135,
                            "src": "11499:9:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$9966_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 7962,
                          "indexExpression": {
                            "id": 7961,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7944,
                            "src": "11509:3:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "11499:14:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11464:49:28"
                      },
                      {
                        "assignments": [
                          7968,
                          7971,
                          7973
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7968,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "11568:14:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8002,
                            "src": "11538:44:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 7967,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7966,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "11538:22:28"
                              },
                              "referencedDeclaration": 9957,
                              "src": "11538:22:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 7971,
                            "mutability": "mutable",
                            "name": "twab",
                            "nameLocation": "11630:4:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8002,
                            "src": "11596:38:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 7970,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7969,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "11596:26:28"
                              },
                              "referencedDeclaration": 9538,
                              "src": "11596:26:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 7973,
                            "mutability": "mutable",
                            "name": "isNew",
                            "nameLocation": "11653:5:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8002,
                            "src": "11648:10:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 7972,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "11648:4:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7987,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7976,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7959,
                              "src": "11712:8:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 7977,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7946,
                                  "src": "11738:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 7978,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9491,
                                "src": "11738:17:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 7979,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11738:19:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f747761622d6275726e2d6c742d62616c616e6365",
                              "id": 7980,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11775:29:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_bdc232da2cacdfc6bb12a6c9925b488f3596a88d72bc540ce4482e6bcaf53c9c",
                                "typeString": "literal_string \"Ticket/twab-burn-lt-balance\""
                              },
                              "value": "Ticket/twab-burn-lt-balance"
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 7983,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "11829:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 7984,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "11829:15:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 7982,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "11822:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 7981,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "11822:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 7985,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11822:23:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_bdc232da2cacdfc6bb12a6c9925b488f3596a88d72bc540ce4482e6bcaf53c9c",
                                "typeString": "literal_string \"Ticket/twab-burn-lt-balance\""
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 7974,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10683,
                              "src": "11671:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 7975,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "decreaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10068,
                            "src": "11671:23:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$9966_storage_ptr_$_t_uint208_$_t_string_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,string memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 7986,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11671:188:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11524:335:28"
                      },
                      {
                        "expression": {
                          "id": 7992,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 7988,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7959,
                              "src": "11870:8:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            "id": 7990,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9960,
                            "src": "11870:16:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7991,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7968,
                            "src": "11889:14:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "11870:33:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 7993,
                        "nodeType": "ExpressionStatement",
                        "src": "11870:33:28"
                      },
                      {
                        "condition": {
                          "id": 7994,
                          "name": "isNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7973,
                          "src": "11918:5:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8001,
                        "nodeType": "IfStatement",
                        "src": "11914:63:28",
                        "trueBody": {
                          "id": 8000,
                          "nodeType": "Block",
                          "src": "11925:52:28",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 7996,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7944,
                                    "src": "11956:3:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 7997,
                                    "name": "twab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7971,
                                    "src": "11961:4:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 7995,
                                  "name": "NewUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9152,
                                  "src": "11944:11:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_struct$_Observation_$9538_memory_ptr_$returns$__$",
                                    "typeString": "function (address,struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 7998,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11944:22:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7999,
                              "nodeType": "EmitStatement",
                              "src": "11939:27:28"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7942,
                    "nodeType": "StructuredDocumentation",
                    "src": "11130:172:28",
                    "text": " @notice Decrease `_to` TWAB balance.\n @param _to Address of the delegate.\n @param _amount Amount of tokens to be added to `_to` TWAB balance."
                  },
                  "id": 8003,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_decreaseUserTwab",
                  "nameLocation": "11316:17:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7947,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7944,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "11351:3:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 8003,
                        "src": "11343:11:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7943,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11343:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7946,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11372:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 8003,
                        "src": "11364:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7945,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11364:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11333:52:28"
                  },
                  "returnParameters": {
                    "id": 7948,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11395:0:28"
                  },
                  "scope": 8103,
                  "src": "11307:676:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8052,
                    "nodeType": "Block",
                    "src": "12229:569:28",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8011,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8009,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8006,
                            "src": "12243:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8010,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12254:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "12243:12:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8014,
                        "nodeType": "IfStatement",
                        "src": "12239:49:28",
                        "trueBody": {
                          "id": 8013,
                          "nodeType": "Block",
                          "src": "12257:31:28",
                          "statements": [
                            {
                              "functionReturnParameters": 8008,
                              "id": 8012,
                              "nodeType": "Return",
                              "src": "12271:7:28"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          8019,
                          8022,
                          8024
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8019,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "12342:14:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8052,
                            "src": "12312:44:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 8018,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8017,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "12312:22:28"
                              },
                              "referencedDeclaration": 9957,
                              "src": "12312:22:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 8022,
                            "mutability": "mutable",
                            "name": "tsTwab",
                            "nameLocation": "12404:6:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8052,
                            "src": "12370:40:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 8021,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8020,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "12370:26:28"
                              },
                              "referencedDeclaration": 9538,
                              "src": "12370:26:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 8024,
                            "mutability": "mutable",
                            "name": "tsIsNew",
                            "nameLocation": "12429:7:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8052,
                            "src": "12424:12:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 8023,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "12424:4:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8038,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8027,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7139,
                              "src": "12490:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 8028,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8006,
                                  "src": "12523:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 8029,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9491,
                                "src": "12523:17:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 8030,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12523:19:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162",
                              "id": 8031,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12560:46:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_78422de710a5c7368b965356ae5e694cedabab088e4b0c64f49927ccb64c8b50",
                                "typeString": "literal_string \"Ticket/burn-amount-exceeds-total-supply-twab\""
                              },
                              "value": "Ticket/burn-amount-exceeds-total-supply-twab"
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 8034,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "12631:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 8035,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "12631:15:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 8033,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "12624:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 8032,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "12624:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 8036,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12624:23:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_78422de710a5c7368b965356ae5e694cedabab088e4b0c64f49927ccb64c8b50",
                                "typeString": "literal_string \"Ticket/burn-amount-exceeds-total-supply-twab\""
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 8025,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10683,
                              "src": "12449:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 8026,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "decreaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10068,
                            "src": "12449:23:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$9966_storage_ptr_$_t_uint208_$_t_string_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,string memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 8037,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12449:212:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12298:363:28"
                      },
                      {
                        "expression": {
                          "id": 8043,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 8039,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7139,
                              "src": "12672:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 8041,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9960,
                            "src": "12672:23:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8042,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8019,
                            "src": "12698:14:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "12672:40:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 8044,
                        "nodeType": "ExpressionStatement",
                        "src": "12672:40:28"
                      },
                      {
                        "condition": {
                          "id": 8045,
                          "name": "tsIsNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8024,
                          "src": "12727:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8051,
                        "nodeType": "IfStatement",
                        "src": "12723:69:28",
                        "trueBody": {
                          "id": 8050,
                          "nodeType": "Block",
                          "src": "12736:56:28",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 8047,
                                    "name": "tsTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8022,
                                    "src": "12774:6:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 8046,
                                  "name": "NewTotalSupplyTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9158,
                                  "src": "12755:18:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Observation_$9538_memory_ptr_$returns$__$",
                                    "typeString": "function (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 8048,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12755:26:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 8049,
                              "nodeType": "EmitStatement",
                              "src": "12750:31:28"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8004,
                    "nodeType": "StructuredDocumentation",
                    "src": "11989:175:28",
                    "text": "@notice Decreases the total supply twab.  Should be called anytime a balance moves from delegated to undelegated\n @param _amount The amount to decrease the total by"
                  },
                  "id": 8053,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_decreaseTotalSupplyTwab",
                  "nameLocation": "12178:24:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8007,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8006,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12211:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 8053,
                        "src": "12203:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8005,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12203:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12202:17:28"
                  },
                  "returnParameters": {
                    "id": 8008,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12229:0:28"
                  },
                  "scope": 8103,
                  "src": "12169:629:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8101,
                    "nodeType": "Block",
                    "src": "13044:455:28",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8061,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8059,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8056,
                            "src": "13058:7:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8060,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "13069:1:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "13058:12:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8064,
                        "nodeType": "IfStatement",
                        "src": "13054:49:28",
                        "trueBody": {
                          "id": 8063,
                          "nodeType": "Block",
                          "src": "13072:31:28",
                          "statements": [
                            {
                              "functionReturnParameters": 8058,
                              "id": 8062,
                              "nodeType": "Return",
                              "src": "13086:7:28"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          8069,
                          8072,
                          8074
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8069,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "13157:14:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8101,
                            "src": "13127:44:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 8068,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8067,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "13127:22:28"
                              },
                              "referencedDeclaration": 9957,
                              "src": "13127:22:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 8072,
                            "mutability": "mutable",
                            "name": "_totalSupply",
                            "nameLocation": "13219:12:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8101,
                            "src": "13185:46:28",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 8071,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8070,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "13185:26:28"
                              },
                              "referencedDeclaration": 9538,
                              "src": "13185:26:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 8074,
                            "mutability": "mutable",
                            "name": "tsIsNew",
                            "nameLocation": "13250:7:28",
                            "nodeType": "VariableDeclaration",
                            "scope": 8101,
                            "src": "13245:12:28",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 8073,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "13245:4:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8087,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8077,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7139,
                              "src": "13294:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 8078,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8056,
                                  "src": "13311:7:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 8079,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9491,
                                "src": "13311:17:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 8080,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "13311:19:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 8083,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "13339:5:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 8084,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "13339:15:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 8082,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "13332:6:28",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 8081,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "13332:6:28",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 8085,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "13332:23:28",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 8075,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10683,
                              "src": "13270:7:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$10683_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 8076,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10013,
                            "src": "13270:23:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$9966_storage_ptr_$_t_uint208_$_t_uint32_$returns$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 8086,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13270:86:28",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13113:243:28"
                      },
                      {
                        "expression": {
                          "id": 8092,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 8088,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7139,
                              "src": "13367:15:28",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$9966_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 8090,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9960,
                            "src": "13367:23:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8091,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8069,
                            "src": "13393:14:28",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "13367:40:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 8093,
                        "nodeType": "ExpressionStatement",
                        "src": "13367:40:28"
                      },
                      {
                        "condition": {
                          "id": 8094,
                          "name": "tsIsNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8074,
                          "src": "13422:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8100,
                        "nodeType": "IfStatement",
                        "src": "13418:75:28",
                        "trueBody": {
                          "id": 8099,
                          "nodeType": "Block",
                          "src": "13431:62:28",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 8096,
                                    "name": "_totalSupply",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8072,
                                    "src": "13469:12:28",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 8095,
                                  "name": "NewTotalSupplyTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9158,
                                  "src": "13450:18:28",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Observation_$9538_memory_ptr_$returns$__$",
                                    "typeString": "function (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 8097,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "13450:32:28",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 8098,
                              "nodeType": "EmitStatement",
                              "src": "13445:37:28"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8054,
                    "nodeType": "StructuredDocumentation",
                    "src": "12804:175:28",
                    "text": "@notice Increases the total supply twab.  Should be called anytime a balance moves from undelegated to delegated\n @param _amount The amount to increase the total by"
                  },
                  "id": 8102,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_increaseTotalSupplyTwab",
                  "nameLocation": "12993:24:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8057,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8056,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "13026:7:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 8102,
                        "src": "13018:15:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8055,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13018:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13017:17:28"
                  },
                  "returnParameters": {
                    "id": 8058,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13044:0:28"
                  },
                  "scope": 8103,
                  "src": "12984:515:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 8104,
              "src": "897:12604:28",
              "usedErrors": []
            }
          ],
          "src": "37:13465:28"
        },
        "id": 28
      },
      "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol",
          "exportedSymbols": {
            "ICompLike": [
              8121
            ],
            "IERC20": [
              663
            ]
          },
          "id": 8122,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8105,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:29"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 8106,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8122,
              "sourceUnit": 664,
              "src": "61:56:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 8107,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "142:6:29"
                  },
                  "id": 8108,
                  "nodeType": "InheritanceSpecifier",
                  "src": "142:6:29"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 8121,
              "linearizedBaseContracts": [
                8121,
                663
              ],
              "name": "ICompLike",
              "nameLocation": "129:9:29",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "functionSelector": "b4b5ea57",
                  "id": 8115,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getCurrentVotes",
                  "nameLocation": "164:15:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8111,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8110,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "188:7:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 8115,
                        "src": "180:15:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8109,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "180:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "179:17:29"
                  },
                  "returnParameters": {
                    "id": 8114,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8113,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8115,
                        "src": "220:6:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 8112,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "220:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "219:8:29"
                  },
                  "scope": 8121,
                  "src": "155:73:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "5c19a95c",
                  "id": 8120,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "243:8:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8118,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8117,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "260:8:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 8120,
                        "src": "252:16:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8116,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "252:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "251:18:29"
                  },
                  "returnParameters": {
                    "id": 8119,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "278:0:29"
                  },
                  "scope": 8121,
                  "src": "234:45:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8122,
              "src": "119:162:29",
              "usedErrors": []
            }
          ],
          "src": "37:245:29"
        },
        "id": 29
      },
      "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
          "exportedSymbols": {
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ]
          },
          "id": 8161,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8123,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:30"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 8124,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8161,
              "sourceUnit": 664,
              "src": "61:56:30",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 8126,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 663,
                    "src": "280:6:30"
                  },
                  "id": 8127,
                  "nodeType": "InheritanceSpecifier",
                  "src": "280:6:30"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 8125,
                "nodeType": "StructuredDocumentation",
                "src": "119:130:30",
                "text": "@title IControlledToken\n @author PoolTogether Inc Team\n @notice ERC20 Tokens with a controller for minting & burning."
              },
              "fullyImplemented": false,
              "id": 8160,
              "linearizedBaseContracts": [
                8160,
                663
              ],
              "name": "IControlledToken",
              "nameLocation": "260:16:30",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 8128,
                    "nodeType": "StructuredDocumentation",
                    "src": "294:91:30",
                    "text": "@notice Interface to the contract responsible for controlling mint/burn"
                  },
                  "functionSelector": "f77c4791",
                  "id": 8133,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controller",
                  "nameLocation": "399:10:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8129,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "409:2:30"
                  },
                  "returnParameters": {
                    "id": 8132,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8131,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8133,
                        "src": "435:7:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8130,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "435:7:30",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "434:9:30"
                  },
                  "scope": 8160,
                  "src": "390:54:30",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8134,
                    "nodeType": "StructuredDocumentation",
                    "src": "450:272:30",
                    "text": " @notice Allows the controller to mint tokens for a user account\n @dev May be overridden to provide more granular control over minting\n @param user Address of the receiver of the minted tokens\n @param amount Amount of tokens to mint"
                  },
                  "functionSelector": "5d7b0758",
                  "id": 8141,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerMint",
                  "nameLocation": "736:14:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8139,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8136,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "759:4:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 8141,
                        "src": "751:12:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8135,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "751:7:30",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8138,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "773:6:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 8141,
                        "src": "765:14:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8137,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "765:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "750:30:30"
                  },
                  "returnParameters": {
                    "id": 8140,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "789:0:30"
                  },
                  "scope": 8160,
                  "src": "727:63:30",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8142,
                    "nodeType": "StructuredDocumentation",
                    "src": "796:278:30",
                    "text": " @notice Allows the controller to burn tokens from a user account\n @dev May be overridden to provide more granular control over burning\n @param user Address of the holder account to burn tokens from\n @param amount Amount of tokens to burn"
                  },
                  "functionSelector": "90596dd1",
                  "id": 8149,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerBurn",
                  "nameLocation": "1088:14:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8147,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8144,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1111:4:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 8149,
                        "src": "1103:12:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8143,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1103:7:30",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8146,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1125:6:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 8149,
                        "src": "1117:14:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8145,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1117:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1102:30:30"
                  },
                  "returnParameters": {
                    "id": 8148,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1141:0:30"
                  },
                  "scope": 8160,
                  "src": "1079:63:30",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8150,
                    "nodeType": "StructuredDocumentation",
                    "src": "1148:414:30",
                    "text": " @notice Allows an operator via the controller to burn tokens on behalf of a user account\n @dev May be overridden to provide more granular control over operator-burning\n @param operator Address of the operator performing the burn action via the controller contract\n @param user Address of the holder account to burn tokens from\n @param amount Amount of tokens to burn"
                  },
                  "functionSelector": "631b5dfb",
                  "id": 8159,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerBurnFrom",
                  "nameLocation": "1576:18:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8157,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8152,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "1612:8:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 8159,
                        "src": "1604:16:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8151,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1604:7:30",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8154,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1638:4:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 8159,
                        "src": "1630:12:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8153,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1630:7:30",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8156,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1660:6:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 8159,
                        "src": "1652:14:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8155,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1652:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1594:78:30"
                  },
                  "returnParameters": {
                    "id": 8158,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1681:0:30"
                  },
                  "scope": 8160,
                  "src": "1567:115:30",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8161,
              "src": "250:1434:30",
              "usedErrors": []
            }
          ],
          "src": "37:1648:30"
        },
        "id": 30
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "RNGInterface": [
              3314
            ]
          },
          "id": 8333,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8162,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:31"
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 8163,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8333,
              "sourceUnit": 3315,
              "src": "61:77:31",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 8164,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8333,
              "sourceUnit": 8410,
              "src": "139:27:31",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 8165,
                "nodeType": "StructuredDocumentation",
                "src": "168:98:31",
                "text": "@title  IDrawBeacon\n @author PoolTogether Inc Team\n @notice The DrawBeacon interface."
              },
              "fullyImplemented": false,
              "id": 8332,
              "linearizedBaseContracts": [
                8332
              ],
              "name": "IDrawBeacon",
              "nameLocation": "277:11:31",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawBeacon.Draw",
                  "id": 8176,
                  "members": [
                    {
                      "constant": false,
                      "id": 8167,
                      "mutability": "mutable",
                      "name": "winningRandomNumber",
                      "nameLocation": "802:19:31",
                      "nodeType": "VariableDeclaration",
                      "scope": 8176,
                      "src": "794:27:31",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 8166,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "794:7:31",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8169,
                      "mutability": "mutable",
                      "name": "drawId",
                      "nameLocation": "838:6:31",
                      "nodeType": "VariableDeclaration",
                      "scope": 8176,
                      "src": "831:13:31",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 8168,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "831:6:31",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8171,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "861:9:31",
                      "nodeType": "VariableDeclaration",
                      "scope": 8176,
                      "src": "854:16:31",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 8170,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "854:6:31",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8173,
                      "mutability": "mutable",
                      "name": "beaconPeriodStartedAt",
                      "nameLocation": "887:21:31",
                      "nodeType": "VariableDeclaration",
                      "scope": 8176,
                      "src": "880:28:31",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 8172,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "880:6:31",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8175,
                      "mutability": "mutable",
                      "name": "beaconPeriodSeconds",
                      "nameLocation": "925:19:31",
                      "nodeType": "VariableDeclaration",
                      "scope": 8176,
                      "src": "918:26:31",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 8174,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "918:6:31",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Draw",
                  "nameLocation": "779:4:31",
                  "nodeType": "StructDefinition",
                  "scope": 8332,
                  "src": "772:179:31",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8177,
                    "nodeType": "StructuredDocumentation",
                    "src": "957:128:31",
                    "text": " @notice Emit when a new DrawBuffer has been set.\n @param newDrawBuffer       The new DrawBuffer address"
                  },
                  "id": 8182,
                  "name": "DrawBufferUpdated",
                  "nameLocation": "1096:17:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8181,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8180,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "1134:13:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8182,
                        "src": "1114:33:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 8179,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8178,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "1114:11:31"
                          },
                          "referencedDeclaration": 8409,
                          "src": "1114:11:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1113:35:31"
                  },
                  "src": "1090:59:31"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8183,
                    "nodeType": "StructuredDocumentation",
                    "src": "1155:95:31",
                    "text": " @notice Emit when a draw has opened.\n @param startedAt Start timestamp"
                  },
                  "id": 8187,
                  "name": "BeaconPeriodStarted",
                  "nameLocation": "1261:19:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8186,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8185,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "startedAt",
                        "nameLocation": "1296:9:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8187,
                        "src": "1281:24:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 8184,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1281:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1280:26:31"
                  },
                  "src": "1255:52:31"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8188,
                    "nodeType": "StructuredDocumentation",
                    "src": "1313:152:31",
                    "text": " @notice Emit when a draw has started.\n @param rngRequestId  draw id\n @param rngLockBlock  Block when draw becomes invalid"
                  },
                  "id": 8194,
                  "name": "DrawStarted",
                  "nameLocation": "1476:11:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8193,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8190,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngRequestId",
                        "nameLocation": "1503:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8194,
                        "src": "1488:27:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8189,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1488:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8192,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngLockBlock",
                        "nameLocation": "1524:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8194,
                        "src": "1517:19:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8191,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1517:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1487:50:31"
                  },
                  "src": "1470:68:31"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8195,
                    "nodeType": "StructuredDocumentation",
                    "src": "1544:159:31",
                    "text": " @notice Emit when a draw has been cancelled.\n @param rngRequestId  draw id\n @param rngLockBlock  Block when draw becomes invalid"
                  },
                  "id": 8201,
                  "name": "DrawCancelled",
                  "nameLocation": "1714:13:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8200,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8197,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngRequestId",
                        "nameLocation": "1743:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8201,
                        "src": "1728:27:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8196,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1728:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8199,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngLockBlock",
                        "nameLocation": "1764:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8201,
                        "src": "1757:19:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8198,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1757:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1727:50:31"
                  },
                  "src": "1708:70:31"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8202,
                    "nodeType": "StructuredDocumentation",
                    "src": "1784:125:31",
                    "text": " @notice Emit when a draw has been completed.\n @param randomNumber  Random number generated from draw"
                  },
                  "id": 8206,
                  "name": "DrawCompleted",
                  "nameLocation": "1920:13:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8205,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8204,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "randomNumber",
                        "nameLocation": "1942:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8206,
                        "src": "1934:20:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8203,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1934:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1933:22:31"
                  },
                  "src": "1914:42:31"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8207,
                    "nodeType": "StructuredDocumentation",
                    "src": "1962:112:31",
                    "text": " @notice Emit when a RNG service address is set.\n @param rngService  RNG service address"
                  },
                  "id": 8212,
                  "name": "RngServiceUpdated",
                  "nameLocation": "2085:17:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8210,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngService",
                        "nameLocation": "2124:10:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8212,
                        "src": "2103:31:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 8209,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8208,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3314,
                            "src": "2103:12:31"
                          },
                          "referencedDeclaration": 3314,
                          "src": "2103:12:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2102:33:31"
                  },
                  "src": "2079:57:31"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8213,
                    "nodeType": "StructuredDocumentation",
                    "src": "2142:121:31",
                    "text": " @notice Emit when a draw timeout param is set.\n @param rngTimeout  draw timeout param in seconds"
                  },
                  "id": 8217,
                  "name": "RngTimeoutSet",
                  "nameLocation": "2274:13:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8216,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8215,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngTimeout",
                        "nameLocation": "2295:10:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8217,
                        "src": "2288:17:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8214,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2288:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2287:19:31"
                  },
                  "src": "2268:39:31"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8218,
                    "nodeType": "StructuredDocumentation",
                    "src": "2313:116:31",
                    "text": " @notice Emit when the drawPeriodSeconds is set.\n @param drawPeriodSeconds Time between draw"
                  },
                  "id": 8222,
                  "name": "BeaconPeriodSecondsUpdated",
                  "nameLocation": "2440:26:31",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8221,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8220,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "drawPeriodSeconds",
                        "nameLocation": "2474:17:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8222,
                        "src": "2467:24:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8219,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2467:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2466:26:31"
                  },
                  "src": "2434:59:31"
                },
                {
                  "documentation": {
                    "id": 8223,
                    "nodeType": "StructuredDocumentation",
                    "src": "2499:195:31",
                    "text": " @notice Returns the number of seconds remaining until the beacon period can be complete.\n @return The number of seconds remaining until the beacon period can be complete."
                  },
                  "functionSelector": "75e38f16",
                  "id": 8228,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodRemainingSeconds",
                  "nameLocation": "2708:28:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8224,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2736:2:31"
                  },
                  "returnParameters": {
                    "id": 8227,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8226,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8228,
                        "src": "2762:6:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 8225,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2762:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2761:8:31"
                  },
                  "scope": 8332,
                  "src": "2699:71:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8229,
                    "nodeType": "StructuredDocumentation",
                    "src": "2776:142:31",
                    "text": " @notice Returns the timestamp at which the beacon period ends\n @return The timestamp at which the beacon period ends."
                  },
                  "functionSelector": "a104fd79",
                  "id": 8234,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodEndAt",
                  "nameLocation": "2932:17:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8230,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2949:2:31"
                  },
                  "returnParameters": {
                    "id": 8233,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8232,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8234,
                        "src": "2975:6:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 8231,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2975:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2974:8:31"
                  },
                  "scope": 8332,
                  "src": "2923:60:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8235,
                    "nodeType": "StructuredDocumentation",
                    "src": "2989:128:31",
                    "text": " @notice Returns whether a Draw can be started.\n @return True if a Draw can be started, false otherwise."
                  },
                  "functionSelector": "0996f6e1",
                  "id": 8240,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canStartDraw",
                  "nameLocation": "3131:12:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8236,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3143:2:31"
                  },
                  "returnParameters": {
                    "id": 8239,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8238,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8240,
                        "src": "3169:4:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8237,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3169:4:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3168:6:31"
                  },
                  "scope": 8332,
                  "src": "3122:53:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8241,
                    "nodeType": "StructuredDocumentation",
                    "src": "3181:132:31",
                    "text": " @notice Returns whether a Draw can be completed.\n @return True if a Draw can be completed, false otherwise."
                  },
                  "functionSelector": "e4a75bb8",
                  "id": 8246,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canCompleteDraw",
                  "nameLocation": "3327:15:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8242,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3342:2:31"
                  },
                  "returnParameters": {
                    "id": 8245,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8244,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8246,
                        "src": "3368:4:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8243,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3368:4:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3367:6:31"
                  },
                  "scope": 8332,
                  "src": "3318:56:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8247,
                    "nodeType": "StructuredDocumentation",
                    "src": "3380:210:31",
                    "text": " @notice Calculates when the next beacon period will start.\n @param time The timestamp to use as the current time\n @return The timestamp at which the next beacon period would start"
                  },
                  "functionSelector": "a3ae35ab",
                  "id": 8254,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTime",
                  "nameLocation": "3604:34:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8250,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8249,
                        "mutability": "mutable",
                        "name": "time",
                        "nameLocation": "3646:4:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8254,
                        "src": "3639:11:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 8248,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3639:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3638:13:31"
                  },
                  "returnParameters": {
                    "id": 8253,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8252,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8254,
                        "src": "3675:6:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 8251,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3675:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3674:8:31"
                  },
                  "scope": 8332,
                  "src": "3595:88:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8255,
                    "nodeType": "StructuredDocumentation",
                    "src": "3689:103:31",
                    "text": " @notice Can be called by anyone to cancel the draw request if the RNG has timed out."
                  },
                  "functionSelector": "412a616a",
                  "id": 8258,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cancelDraw",
                  "nameLocation": "3806:10:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8256,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3816:2:31"
                  },
                  "returnParameters": {
                    "id": 8257,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3827:0:31"
                  },
                  "scope": 8332,
                  "src": "3797:31:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8259,
                    "nodeType": "StructuredDocumentation",
                    "src": "3834:94:31",
                    "text": " @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
                  },
                  "functionSelector": "0bdeecbd",
                  "id": 8262,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "completeDraw",
                  "nameLocation": "3942:12:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8260,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3954:2:31"
                  },
                  "returnParameters": {
                    "id": 8261,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3965:0:31"
                  },
                  "scope": 8332,
                  "src": "3933:33:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8263,
                    "nodeType": "StructuredDocumentation",
                    "src": "3972:166:31",
                    "text": " @notice Returns the block number that the current RNG request has been locked to.\n @return The block number that the RNG request is locked to"
                  },
                  "functionSelector": "6bea5344",
                  "id": 8268,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngLockBlock",
                  "nameLocation": "4152:19:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8264,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4171:2:31"
                  },
                  "returnParameters": {
                    "id": 8267,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8266,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8268,
                        "src": "4197:6:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8265,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4197:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4196:8:31"
                  },
                  "scope": 8332,
                  "src": "4143:62:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8269,
                    "nodeType": "StructuredDocumentation",
                    "src": "4211:100:31",
                    "text": " @notice Returns the current RNG Request ID.\n @return The current Request ID"
                  },
                  "functionSelector": "2a7ad609",
                  "id": 8274,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngRequestId",
                  "nameLocation": "4325:19:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8270,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4344:2:31"
                  },
                  "returnParameters": {
                    "id": 8273,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8272,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8274,
                        "src": "4370:6:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8271,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4370:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4369:8:31"
                  },
                  "scope": 8332,
                  "src": "4316:62:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8275,
                    "nodeType": "StructuredDocumentation",
                    "src": "4384:134:31",
                    "text": " @notice Returns whether the beacon period is over\n @return True if the beacon period is over, false otherwise"
                  },
                  "functionSelector": "d1e77657",
                  "id": 8280,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isBeaconPeriodOver",
                  "nameLocation": "4532:18:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8276,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4550:2:31"
                  },
                  "returnParameters": {
                    "id": 8279,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8278,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8280,
                        "src": "4576:4:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8277,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4576:4:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4575:6:31"
                  },
                  "scope": 8332,
                  "src": "4523:59:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8281,
                    "nodeType": "StructuredDocumentation",
                    "src": "4588:162:31",
                    "text": " @notice Returns whether the random number request has completed.\n @return True if a random number request has completed, false otherwise."
                  },
                  "functionSelector": "4aba4f6b",
                  "id": 8286,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngCompleted",
                  "nameLocation": "4764:14:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8282,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4778:2:31"
                  },
                  "returnParameters": {
                    "id": 8285,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8284,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8286,
                        "src": "4804:4:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8283,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4804:4:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4803:6:31"
                  },
                  "scope": 8332,
                  "src": "4755:55:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8287,
                    "nodeType": "StructuredDocumentation",
                    "src": "4816:153:31",
                    "text": " @notice Returns whether a random number has been requested\n @return True if a random number has been requested, false otherwise."
                  },
                  "functionSelector": "111070e4",
                  "id": 8292,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngRequested",
                  "nameLocation": "4983:14:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8288,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4997:2:31"
                  },
                  "returnParameters": {
                    "id": 8291,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8290,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8292,
                        "src": "5023:4:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8289,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5023:4:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5022:6:31"
                  },
                  "scope": 8332,
                  "src": "4974:55:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8293,
                    "nodeType": "StructuredDocumentation",
                    "src": "5035:162:31",
                    "text": " @notice Returns whether the random number request has timed out.\n @return True if a random number request has timed out, false otherwise."
                  },
                  "functionSelector": "738bbea8",
                  "id": 8298,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngTimedOut",
                  "nameLocation": "5211:13:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8294,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5224:2:31"
                  },
                  "returnParameters": {
                    "id": 8297,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8296,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8298,
                        "src": "5250:4:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8295,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5250:4:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5249:6:31"
                  },
                  "scope": 8332,
                  "src": "5202:54:31",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8299,
                    "nodeType": "StructuredDocumentation",
                    "src": "5262:176:31",
                    "text": " @notice Allows the owner to set the beacon period in seconds.\n @param beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero."
                  },
                  "functionSelector": "919bead0",
                  "id": 8304,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setBeaconPeriodSeconds",
                  "nameLocation": "5452:22:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8302,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8301,
                        "mutability": "mutable",
                        "name": "beaconPeriodSeconds",
                        "nameLocation": "5482:19:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8304,
                        "src": "5475:26:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8300,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5475:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5474:28:31"
                  },
                  "returnParameters": {
                    "id": 8303,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5511:0:31"
                  },
                  "scope": 8332,
                  "src": "5443:69:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8305,
                    "nodeType": "StructuredDocumentation",
                    "src": "5518:245:31",
                    "text": " @notice Allows the owner to set the RNG request timeout in seconds. This is the time that must elapsed before the RNG request can be cancelled and the pool unlocked.\n @param rngTimeout The RNG request timeout in seconds."
                  },
                  "functionSelector": "5020ea56",
                  "id": 8310,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRngTimeout",
                  "nameLocation": "5777:13:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8308,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8307,
                        "mutability": "mutable",
                        "name": "rngTimeout",
                        "nameLocation": "5798:10:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8310,
                        "src": "5791:17:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8306,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5791:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5790:19:31"
                  },
                  "returnParameters": {
                    "id": 8309,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5818:0:31"
                  },
                  "scope": 8332,
                  "src": "5768:51:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8311,
                    "nodeType": "StructuredDocumentation",
                    "src": "5825:157:31",
                    "text": " @notice Sets the RNG service that the Prize Strategy is connected to\n @param rngService The address of the new RNG service interface"
                  },
                  "functionSelector": "7f4296d7",
                  "id": 8317,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRngService",
                  "nameLocation": "5996:13:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8315,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8314,
                        "mutability": "mutable",
                        "name": "rngService",
                        "nameLocation": "6023:10:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8317,
                        "src": "6010:23:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$3314",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 8313,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8312,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3314,
                            "src": "6010:12:31"
                          },
                          "referencedDeclaration": 3314,
                          "src": "6010:12:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$3314",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6009:25:31"
                  },
                  "returnParameters": {
                    "id": 8316,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6043:0:31"
                  },
                  "scope": 8332,
                  "src": "5987:57:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8318,
                    "nodeType": "StructuredDocumentation",
                    "src": "6050:234:31",
                    "text": " @notice Starts the Draw process by starting random number request. The previous beacon period must have ended.\n @dev The RNG-Request-Fee is expected to be held within this contract before calling this function"
                  },
                  "functionSelector": "2ae168a6",
                  "id": 8321,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "startDraw",
                  "nameLocation": "6298:9:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8319,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6307:2:31"
                  },
                  "returnParameters": {
                    "id": 8320,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6318:0:31"
                  },
                  "scope": 8332,
                  "src": "6289:30:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8322,
                    "nodeType": "StructuredDocumentation",
                    "src": "6325:225:31",
                    "text": " @notice Set global DrawBuffer variable.\n @dev    All subsequent Draw requests/completions will be pushed to the new DrawBuffer.\n @param newDrawBuffer DrawBuffer address\n @return DrawBuffer"
                  },
                  "functionSelector": "ab70d49c",
                  "id": 8331,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDrawBuffer",
                  "nameLocation": "6564:13:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8326,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8325,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "6590:13:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 8331,
                        "src": "6578:25:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 8324,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8323,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "6578:11:31"
                          },
                          "referencedDeclaration": 8409,
                          "src": "6578:11:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6577:27:31"
                  },
                  "returnParameters": {
                    "id": 8330,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8329,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8331,
                        "src": "6623:11:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 8328,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8327,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "6623:11:31"
                          },
                          "referencedDeclaration": 8409,
                          "src": "6623:11:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6622:13:31"
                  },
                  "scope": 8332,
                  "src": "6555:81:31",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8333,
              "src": "267:6371:31",
              "usedErrors": []
            }
          ],
          "src": "37:6602:31"
        },
        "id": 31
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ]
          },
          "id": 8410,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8334,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:32"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "../interfaces/IDrawBeacon.sol",
              "id": 8335,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8410,
              "sourceUnit": 8333,
              "src": "61:39:32",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 8336,
                "nodeType": "StructuredDocumentation",
                "src": "102:98:32",
                "text": "@title  IDrawBuffer\n @author PoolTogether Inc Team\n @notice The DrawBuffer interface."
              },
              "fullyImplemented": false,
              "id": 8409,
              "linearizedBaseContracts": [
                8409
              ],
              "name": "IDrawBuffer",
              "nameLocation": "211:11:32",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8337,
                    "nodeType": "StructuredDocumentation",
                    "src": "229:129:32",
                    "text": " @notice Emit when a new draw has been created.\n @param drawId Draw id\n @param draw The Draw struct"
                  },
                  "id": 8344,
                  "name": "DrawSet",
                  "nameLocation": "369:7:32",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8343,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8339,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "392:6:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8344,
                        "src": "377:21:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8338,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "377:6:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8342,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "417:4:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8344,
                        "src": "400:21:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 8341,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8340,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "400:16:32"
                          },
                          "referencedDeclaration": 8176,
                          "src": "400:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "376:46:32"
                  },
                  "src": "363:60:32"
                },
                {
                  "documentation": {
                    "id": 8345,
                    "nodeType": "StructuredDocumentation",
                    "src": "429:96:32",
                    "text": " @notice Read a ring buffer cardinality\n @return Ring buffer cardinality"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 8350,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "539:20:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8346,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "559:2:32"
                  },
                  "returnParameters": {
                    "id": 8349,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8348,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8350,
                        "src": "585:6:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8347,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "585:6:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "584:8:32"
                  },
                  "scope": 8409,
                  "src": "530:63:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8351,
                    "nodeType": "StructuredDocumentation",
                    "src": "599:228:32",
                    "text": " @notice Read a Draw from the draws ring buffer.\n @dev    Read a Draw using the Draw.drawId to calculate position in the draws ring buffer.\n @param drawId Draw.drawId\n @return IDrawBeacon.Draw"
                  },
                  "functionSelector": "83c34aaf",
                  "id": 8359,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraw",
                  "nameLocation": "841:7:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8354,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8353,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "856:6:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8359,
                        "src": "849:13:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8352,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "849:6:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "848:15:32"
                  },
                  "returnParameters": {
                    "id": 8358,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8357,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8359,
                        "src": "887:23:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 8356,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8355,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "887:16:32"
                          },
                          "referencedDeclaration": 8176,
                          "src": "887:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "886:25:32"
                  },
                  "scope": 8409,
                  "src": "832:80:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8360,
                    "nodeType": "StructuredDocumentation",
                    "src": "918:248:32",
                    "text": " @notice Read multiple Draws from the draws ring buffer.\n @dev    Read multiple Draws using each drawId to calculate position in the draws ring buffer.\n @param drawIds Array of drawIds\n @return IDrawBeacon.Draw[]"
                  },
                  "functionSelector": "d0bb78f3",
                  "id": 8370,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraws",
                  "nameLocation": "1180:8:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8364,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8363,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1207:7:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8370,
                        "src": "1189:25:32",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8361,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1189:6:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8362,
                          "nodeType": "ArrayTypeName",
                          "src": "1189:8:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1188:27:32"
                  },
                  "returnParameters": {
                    "id": 8369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8368,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8370,
                        "src": "1239:25:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$8176_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8366,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 8365,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8176,
                              "src": "1239:16:32"
                            },
                            "referencedDeclaration": 8176,
                            "src": "1239:16:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 8367,
                          "nodeType": "ArrayTypeName",
                          "src": "1239:18:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$8176_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1238:27:32"
                  },
                  "scope": 8409,
                  "src": "1171:95:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8371,
                    "nodeType": "StructuredDocumentation",
                    "src": "1272:338:32",
                    "text": " @notice Gets the number of Draws held in the draw ring buffer.\n @dev If no Draws have been pushed, it will return 0.\n @dev If the ring buffer is full, it will return the cardinality.\n @dev Otherwise, it will return the NewestDraw index + 1.\n @return Number of Draws held in the draw ring buffer."
                  },
                  "functionSelector": "c4df5fed",
                  "id": 8376,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCount",
                  "nameLocation": "1624:12:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8372,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1636:2:32"
                  },
                  "returnParameters": {
                    "id": 8375,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8374,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8376,
                        "src": "1662:6:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8373,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1662:6:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1661:8:32"
                  },
                  "scope": 8409,
                  "src": "1615:55:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8377,
                    "nodeType": "StructuredDocumentation",
                    "src": "1676:180:32",
                    "text": " @notice Read newest Draw from draws ring buffer.\n @dev    Uses the nextDrawIndex to calculate the most recently added Draw.\n @return IDrawBeacon.Draw"
                  },
                  "functionSelector": "0edb1d2e",
                  "id": 8383,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDraw",
                  "nameLocation": "1870:13:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8378,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1883:2:32"
                  },
                  "returnParameters": {
                    "id": 8382,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8381,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8383,
                        "src": "1909:23:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 8380,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8379,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "1909:16:32"
                          },
                          "referencedDeclaration": 8176,
                          "src": "1909:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1908:25:32"
                  },
                  "scope": 8409,
                  "src": "1861:73:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8384,
                    "nodeType": "StructuredDocumentation",
                    "src": "1940:197:32",
                    "text": " @notice Read oldest Draw from draws ring buffer.\n @dev    Finds the oldest Draw by comparing and/or diffing totalDraws with the cardinality.\n @return IDrawBeacon.Draw"
                  },
                  "functionSelector": "648b1b4f",
                  "id": 8390,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDraw",
                  "nameLocation": "2151:13:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8385,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2164:2:32"
                  },
                  "returnParameters": {
                    "id": 8389,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8388,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8390,
                        "src": "2190:23:32",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 8387,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8386,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "2190:16:32"
                          },
                          "referencedDeclaration": 8176,
                          "src": "2190:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2189:25:32"
                  },
                  "scope": 8409,
                  "src": "2142:73:32",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8391,
                    "nodeType": "StructuredDocumentation",
                    "src": "2221:212:32",
                    "text": " @notice Push Draw onto draws ring buffer history.\n @dev    Push new draw onto draws history via authorized manager or owner.\n @param draw IDrawBeacon.Draw\n @return Draw.drawId"
                  },
                  "functionSelector": "089eb925",
                  "id": 8399,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushDraw",
                  "nameLocation": "2447:8:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8395,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8394,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "2482:4:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8399,
                        "src": "2456:30:32",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 8393,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8392,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "2456:16:32"
                          },
                          "referencedDeclaration": 8176,
                          "src": "2456:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2455:32:32"
                  },
                  "returnParameters": {
                    "id": 8398,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8397,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8399,
                        "src": "2506:6:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8396,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2506:6:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2505:8:32"
                  },
                  "scope": 8409,
                  "src": "2438:76:32",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8400,
                    "nodeType": "StructuredDocumentation",
                    "src": "2520:275:32",
                    "text": " @notice Set existing Draw in draws ring buffer with new parameters.\n @dev    Updating a Draw should be used sparingly and only in the event an incorrect Draw parameter has been stored.\n @param newDraw IDrawBeacon.Draw\n @return Draw.drawId"
                  },
                  "functionSelector": "d7bcb86b",
                  "id": 8408,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDraw",
                  "nameLocation": "2809:7:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8404,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8403,
                        "mutability": "mutable",
                        "name": "newDraw",
                        "nameLocation": "2843:7:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 8408,
                        "src": "2817:33:32",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 8402,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8401,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "2817:16:32"
                          },
                          "referencedDeclaration": 8176,
                          "src": "2817:16:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2816:35:32"
                  },
                  "returnParameters": {
                    "id": 8407,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8406,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8408,
                        "src": "2870:6:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8405,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2870:6:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2869:8:32"
                  },
                  "scope": 8409,
                  "src": "2800:78:32",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8410,
              "src": "201:2679:32",
              "usedErrors": []
            }
          ],
          "src": "37:2844:32"
        },
        "id": 32
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 8483,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8411,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:33"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "./ITicket.sol",
              "id": 8412,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8483,
              "sourceUnit": 9298,
              "src": "61:23:33",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 8413,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8483,
              "sourceUnit": 8410,
              "src": "85:27:33",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
              "file": "../PrizeDistributionBuffer.sol",
              "id": 8414,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8483,
              "sourceUnit": 6276,
              "src": "113:40:33",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
              "file": "../PrizeDistributor.sol",
              "id": 8415,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8483,
              "sourceUnit": 6649,
              "src": "154:33:33",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 8416,
                "nodeType": "StructuredDocumentation",
                "src": "189:124:33",
                "text": " @title  PoolTogether V4 IDrawCalculator\n @author PoolTogether Inc Team\n @notice The DrawCalculator interface."
              },
              "fullyImplemented": false,
              "id": 8482,
              "linearizedBaseContracts": [
                8482
              ],
              "name": "IDrawCalculator",
              "nameLocation": "324:15:33",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawCalculator.PickPrize",
                  "id": 8421,
                  "members": [
                    {
                      "constant": false,
                      "id": 8418,
                      "mutability": "mutable",
                      "name": "won",
                      "nameLocation": "378:3:33",
                      "nodeType": "VariableDeclaration",
                      "scope": 8421,
                      "src": "373:8:33",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      },
                      "typeName": {
                        "id": 8417,
                        "name": "bool",
                        "nodeType": "ElementaryTypeName",
                        "src": "373:4:33",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8420,
                      "mutability": "mutable",
                      "name": "tierIndex",
                      "nameLocation": "397:9:33",
                      "nodeType": "VariableDeclaration",
                      "scope": 8421,
                      "src": "391:15:33",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 8419,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "391:5:33",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PickPrize",
                  "nameLocation": "353:9:33",
                  "nodeType": "StructDefinition",
                  "scope": 8482,
                  "src": "346:67:33",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8422,
                    "nodeType": "StructuredDocumentation",
                    "src": "419:51:33",
                    "text": "@notice Emitted when the contract is initialized"
                  },
                  "id": 8433,
                  "name": "Deployed",
                  "nameLocation": "481:8:33",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8432,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8425,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "515:6:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8433,
                        "src": "499:22:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8424,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8423,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "499:7:33"
                          },
                          "referencedDeclaration": 9297,
                          "src": "499:7:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8428,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "551:10:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8433,
                        "src": "531:30:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 8427,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8426,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "531:11:33"
                          },
                          "referencedDeclaration": 8409,
                          "src": "531:11:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8431,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionBuffer",
                        "nameLocation": "604:23:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8433,
                        "src": "571:56:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 8430,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8429,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "571:24:33"
                          },
                          "referencedDeclaration": 8587,
                          "src": "571:24:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "489:144:33"
                  },
                  "src": "475:159:33"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8434,
                    "nodeType": "StructuredDocumentation",
                    "src": "640:59:33",
                    "text": "@notice Emitted when the prizeDistributor is set/updated"
                  },
                  "id": 8439,
                  "name": "PrizeDistributorSet",
                  "nameLocation": "710:19:33",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8438,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8437,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributor",
                        "nameLocation": "755:16:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8439,
                        "src": "730:41:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_PrizeDistributor_$6648",
                          "typeString": "contract PrizeDistributor"
                        },
                        "typeName": {
                          "id": 8436,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8435,
                            "name": "PrizeDistributor",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 6648,
                            "src": "730:16:33"
                          },
                          "referencedDeclaration": 6648,
                          "src": "730:16:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_PrizeDistributor_$6648",
                            "typeString": "contract PrizeDistributor"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "729:43:33"
                  },
                  "src": "704:69:33"
                },
                {
                  "documentation": {
                    "id": 8440,
                    "nodeType": "StructuredDocumentation",
                    "src": "779:473:33",
                    "text": " @notice Calculates the prize amount for a user for Multiple Draws. Typically called by a PrizeDistributor.\n @param user User for which to calculate prize amount.\n @param drawIds drawId array for which to calculate prize amounts for.\n @param data The ABI encoded pick indices for all Draws. Expected to be winning picks. Pick indices must be less than the totalUserPicks.\n @return List of awardable prize amounts ordered by drawId."
                  },
                  "functionSelector": "aaca392e",
                  "id": 8455,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "1266:9:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8448,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8442,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1293:4:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8455,
                        "src": "1285:12:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8441,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1285:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8445,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1325:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8455,
                        "src": "1307:25:33",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8443,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1307:6:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8444,
                          "nodeType": "ArrayTypeName",
                          "src": "1307:8:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8447,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "1357:4:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8455,
                        "src": "1342:19:33",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 8446,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1342:5:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1275:92:33"
                  },
                  "returnParameters": {
                    "id": 8454,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8451,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8455,
                        "src": "1391:16:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8449,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1391:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8450,
                          "nodeType": "ArrayTypeName",
                          "src": "1391:9:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8453,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8455,
                        "src": "1409:12:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 8452,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1409:5:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1390:32:33"
                  },
                  "scope": 8482,
                  "src": "1257:166:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8456,
                    "nodeType": "StructuredDocumentation",
                    "src": "1429:86:33",
                    "text": " @notice Read global DrawBuffer variable.\n @return IDrawBuffer"
                  },
                  "functionSelector": "4019f2d6",
                  "id": 8462,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "1529:13:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8457,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1542:2:33"
                  },
                  "returnParameters": {
                    "id": 8461,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8460,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8462,
                        "src": "1568:11:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 8459,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8458,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "1568:11:33"
                          },
                          "referencedDeclaration": 8409,
                          "src": "1568:11:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1567:13:33"
                  },
                  "scope": 8482,
                  "src": "1520:61:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8463,
                    "nodeType": "StructuredDocumentation",
                    "src": "1587:86:33",
                    "text": " @notice Read global DrawBuffer variable.\n @return IDrawBuffer"
                  },
                  "functionSelector": "bd97a252",
                  "id": 8469,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionBuffer",
                  "nameLocation": "1687:26:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8464,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1713:2:33"
                  },
                  "returnParameters": {
                    "id": 8468,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8467,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8469,
                        "src": "1739:24:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 8466,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8465,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "1739:24:33"
                          },
                          "referencedDeclaration": 8587,
                          "src": "1739:24:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1738:26:33"
                  },
                  "scope": 8482,
                  "src": "1678:87:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8470,
                    "nodeType": "StructuredDocumentation",
                    "src": "1771:222:33",
                    "text": " @notice Returns a users balances expressed as a fraction of the total supply over time.\n @param user The users address\n @param drawIds The drawsId to consider\n @return Array of balances"
                  },
                  "functionSelector": "8045fbcf",
                  "id": 8481,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNormalizedBalancesForDrawIds",
                  "nameLocation": "2007:31:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8476,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8472,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2047:4:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8481,
                        "src": "2039:12:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8471,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2039:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8475,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "2071:7:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 8481,
                        "src": "2053:25:33",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8473,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2053:6:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8474,
                          "nodeType": "ArrayTypeName",
                          "src": "2053:8:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2038:41:33"
                  },
                  "returnParameters": {
                    "id": 8480,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8479,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8481,
                        "src": "2127:16:33",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8477,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2127:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8478,
                          "nodeType": "ArrayTypeName",
                          "src": "2127:9:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2126:18:33"
                  },
                  "scope": 8482,
                  "src": "1998:147:33",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8483,
              "src": "314:1834:33",
              "usedErrors": []
            }
          ],
          "src": "37:2112:33"
        },
        "id": 33
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "IPrizeDistributionBuffer": [
              8587
            ]
          },
          "id": 8588,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8484,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:34"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 8485,
                "nodeType": "StructuredDocumentation",
                "src": "61:124:34",
                "text": "@title  IPrizeDistributionBuffer\n @author PoolTogether Inc Team\n @notice The PrizeDistributionBuffer interface."
              },
              "fullyImplemented": false,
              "id": 8587,
              "linearizedBaseContracts": [
                8587
              ],
              "name": "IPrizeDistributionBuffer",
              "nameLocation": "196:24:34",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IPrizeDistributionBuffer.PrizeDistribution",
                  "id": 8506,
                  "members": [
                    {
                      "constant": false,
                      "id": 8487,
                      "mutability": "mutable",
                      "name": "bitRangeSize",
                      "nameLocation": "1370:12:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1364:18:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 8486,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "1364:5:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8489,
                      "mutability": "mutable",
                      "name": "matchCardinality",
                      "nameLocation": "1398:16:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1392:22:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 8488,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "1392:5:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8491,
                      "mutability": "mutable",
                      "name": "startTimestampOffset",
                      "nameLocation": "1431:20:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1424:27:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 8490,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1424:6:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8493,
                      "mutability": "mutable",
                      "name": "endTimestampOffset",
                      "nameLocation": "1468:18:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1461:25:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 8492,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1461:6:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8495,
                      "mutability": "mutable",
                      "name": "maxPicksPerUser",
                      "nameLocation": "1503:15:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1496:22:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 8494,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1496:6:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8497,
                      "mutability": "mutable",
                      "name": "expiryDuration",
                      "nameLocation": "1535:14:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1528:21:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 8496,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1528:6:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8499,
                      "mutability": "mutable",
                      "name": "numberOfPicks",
                      "nameLocation": "1567:13:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1559:21:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint104",
                        "typeString": "uint104"
                      },
                      "typeName": {
                        "id": 8498,
                        "name": "uint104",
                        "nodeType": "ElementaryTypeName",
                        "src": "1559:7:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint104",
                          "typeString": "uint104"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8503,
                      "mutability": "mutable",
                      "name": "tiers",
                      "nameLocation": "1601:5:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1590:16:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                        "typeString": "uint32[16]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 8500,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1590:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 8502,
                        "length": {
                          "hexValue": "3136",
                          "id": 8501,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1597:2:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_16_by_1",
                            "typeString": "int_const 16"
                          },
                          "value": "16"
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "1590:10:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                          "typeString": "uint32[16]"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8505,
                      "mutability": "mutable",
                      "name": "prize",
                      "nameLocation": "1624:5:34",
                      "nodeType": "VariableDeclaration",
                      "scope": 8506,
                      "src": "1616:13:34",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 8504,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1616:7:34",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PrizeDistribution",
                  "nameLocation": "1336:17:34",
                  "nodeType": "StructDefinition",
                  "scope": 8587,
                  "src": "1329:307:34",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8507,
                    "nodeType": "StructuredDocumentation",
                    "src": "1642:172:34",
                    "text": " @notice Emit when PrizeDistribution is set.\n @param drawId       Draw id\n @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution"
                  },
                  "id": 8514,
                  "name": "PrizeDistributionSet",
                  "nameLocation": "1825:20:34",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8513,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8509,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1870:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8514,
                        "src": "1855:21:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8508,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1855:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8512,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1929:17:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8514,
                        "src": "1886:60:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8511,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8510,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "1886:42:34"
                          },
                          "referencedDeclaration": 8506,
                          "src": "1886:42:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1845:107:34"
                  },
                  "src": "1819:134:34"
                },
                {
                  "documentation": {
                    "id": 8515,
                    "nodeType": "StructuredDocumentation",
                    "src": "1959:96:34",
                    "text": " @notice Read a ring buffer cardinality\n @return Ring buffer cardinality"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 8520,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "2069:20:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8516,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2089:2:34"
                  },
                  "returnParameters": {
                    "id": 8519,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8518,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8520,
                        "src": "2115:6:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8517,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2115:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2114:8:34"
                  },
                  "scope": 8587,
                  "src": "2060:63:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8521,
                    "nodeType": "StructuredDocumentation",
                    "src": "2129:239:34",
                    "text": " @notice Read newest PrizeDistribution from prize distributions ring buffer.\n @dev    Uses nextDrawIndex to calculate the most recently added PrizeDistribution.\n @return prizeDistribution\n @return drawId"
                  },
                  "functionSelector": "24c21446",
                  "id": 8529,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestPrizeDistribution",
                  "nameLocation": "2382:26:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8522,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2408:2:34"
                  },
                  "returnParameters": {
                    "id": 8528,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8525,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "2508:17:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8529,
                        "src": "2458:67:34",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8524,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8523,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "2458:42:34"
                          },
                          "referencedDeclaration": 8506,
                          "src": "2458:42:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8527,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2534:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8529,
                        "src": "2527:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8526,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2527:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2457:84:34"
                  },
                  "scope": 8587,
                  "src": "2373:169:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8530,
                    "nodeType": "StructuredDocumentation",
                    "src": "2548:228:34",
                    "text": " @notice Read oldest PrizeDistribution from prize distributions ring buffer.\n @dev    Finds the oldest Draw by buffer.nextIndex and buffer.lastDrawId\n @return prizeDistribution\n @return drawId"
                  },
                  "functionSelector": "2439093a",
                  "id": 8538,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestPrizeDistribution",
                  "nameLocation": "2790:26:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8531,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2816:2:34"
                  },
                  "returnParameters": {
                    "id": 8537,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8534,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "2916:17:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8538,
                        "src": "2866:67:34",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8533,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8532,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "2866:42:34"
                          },
                          "referencedDeclaration": 8506,
                          "src": "2866:42:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8536,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2942:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8538,
                        "src": "2935:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8535,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2935:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2865:84:34"
                  },
                  "scope": 8587,
                  "src": "2781:169:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8539,
                    "nodeType": "StructuredDocumentation",
                    "src": "2956:172:34",
                    "text": " @notice Gets PrizeDistribution list from array of drawIds\n @param drawIds drawIds to get PrizeDistribution for\n @return prizeDistributionList"
                  },
                  "functionSelector": "d30a5daf",
                  "id": 8549,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributions",
                  "nameLocation": "3142:21:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8543,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8542,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "3182:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8549,
                        "src": "3164:25:34",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8540,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "3164:6:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8541,
                          "nodeType": "ArrayTypeName",
                          "src": "3164:8:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3163:27:34"
                  },
                  "returnParameters": {
                    "id": 8548,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8547,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8549,
                        "src": "3238:51:34",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8545,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 8544,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8506,
                              "src": "3238:42:34"
                            },
                            "referencedDeclaration": 8506,
                            "src": "3238:42:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            }
                          },
                          "id": 8546,
                          "nodeType": "ArrayTypeName",
                          "src": "3238:44:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$8506_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3237:53:34"
                  },
                  "scope": 8587,
                  "src": "3133:158:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8550,
                    "nodeType": "StructuredDocumentation",
                    "src": "3297:133:34",
                    "text": " @notice Gets the PrizeDistributionBuffer for a drawId\n @param drawId drawId\n @return prizeDistribution"
                  },
                  "functionSelector": "3cd8e2d5",
                  "id": 8558,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistribution",
                  "nameLocation": "3444:20:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8553,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8552,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "3472:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8558,
                        "src": "3465:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8551,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3465:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3464:15:34"
                  },
                  "returnParameters": {
                    "id": 8557,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8556,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8558,
                        "src": "3527:49:34",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8555,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8554,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "3527:42:34"
                          },
                          "referencedDeclaration": 8506,
                          "src": "3527:42:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3526:51:34"
                  },
                  "scope": 8587,
                  "src": "3435:143:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8559,
                    "nodeType": "StructuredDocumentation",
                    "src": "3584:411:34",
                    "text": " @notice Gets the number of PrizeDistributions stored in the prize distributions ring buffer.\n @dev If no Draws have been pushed, it will return 0.\n @dev If the ring buffer is full, it will return the cardinality.\n @dev Otherwise, it will return the NewestPrizeDistribution index + 1.\n @return Number of PrizeDistributions stored in the prize distributions ring buffer."
                  },
                  "functionSelector": "21e98ad9",
                  "id": 8564,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionCount",
                  "nameLocation": "4009:25:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8560,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4034:2:34"
                  },
                  "returnParameters": {
                    "id": 8563,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8562,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8564,
                        "src": "4060:6:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8561,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4060:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4059:8:34"
                  },
                  "scope": 8587,
                  "src": "4000:68:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8565,
                    "nodeType": "StructuredDocumentation",
                    "src": "4074:284:34",
                    "text": " @notice Adds new PrizeDistribution record to ring buffer storage.\n @dev    Only callable by the owner or manager\n @param drawId            Draw ID linked to PrizeDistribution parameters\n @param prizeDistribution PrizeDistribution parameters struct"
                  },
                  "functionSelector": "1124e1dc",
                  "id": 8575,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "4372:21:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8571,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8567,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4410:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8575,
                        "src": "4403:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8566,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4403:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8570,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "4478:17:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8575,
                        "src": "4426:69:34",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8569,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8568,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "4426:42:34"
                          },
                          "referencedDeclaration": 8506,
                          "src": "4426:42:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4393:108:34"
                  },
                  "returnParameters": {
                    "id": 8574,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8573,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8575,
                        "src": "4520:4:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8572,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4520:4:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4519:6:34"
                  },
                  "scope": 8587,
                  "src": "4363:163:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8576,
                    "nodeType": "StructuredDocumentation",
                    "src": "4532:420:34",
                    "text": " @notice Sets existing PrizeDistribution with new PrizeDistribution parameters in ring buffer storage.\n @dev    Retroactively updates an existing PrizeDistribution and should be thought of as a \"safety\"\nfallback. If the manager is setting invalid PrizeDistribution parameters the Owner can update\nthe invalid parameters with correct parameters.\n @return drawId"
                  },
                  "functionSelector": "ce336ce9",
                  "id": 8586,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeDistribution",
                  "nameLocation": "4966:20:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8582,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8578,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4994:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8586,
                        "src": "4987:13:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8577,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4987:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8581,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "5054:4:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 8586,
                        "src": "5002:56:34",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_calldata_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8580,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8579,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "5002:42:34"
                          },
                          "referencedDeclaration": 8506,
                          "src": "5002:42:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4986:73:34"
                  },
                  "returnParameters": {
                    "id": 8585,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8584,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8586,
                        "src": "5094:6:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8583,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5094:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5093:8:34"
                  },
                  "scope": 8587,
                  "src": "4957:145:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8588,
              "src": "186:4918:34",
              "usedErrors": []
            }
          ],
          "src": "37:5068:34"
        },
        "id": 34
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributor": [
              8685
            ]
          },
          "id": 8686,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8589,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:35"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 8590,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8686,
              "sourceUnit": 664,
              "src": "60:56:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 8591,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8686,
              "sourceUnit": 8410,
              "src": "118:27:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "./IDrawCalculator.sol",
              "id": 8592,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8686,
              "sourceUnit": 8483,
              "src": "146:31:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 8593,
                "nodeType": "StructuredDocumentation",
                "src": "179:110:35",
                "text": "@title  IPrizeDistributor\n @author PoolTogether Inc Team\n @notice The PrizeDistributor interface."
              },
              "fullyImplemented": false,
              "id": 8685,
              "linearizedBaseContracts": [
                8685
              ],
              "name": "IPrizeDistributor",
              "nameLocation": "300:17:35",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8594,
                    "nodeType": "StructuredDocumentation",
                    "src": "325:233:35",
                    "text": " @notice Emit when user has claimed token from the PrizeDistributor.\n @param user   User address receiving draw claim payouts\n @param drawId Draw id that was paid out\n @param payout Payout for draw"
                  },
                  "id": 8602,
                  "name": "ClaimedDraw",
                  "nameLocation": "569:11:35",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8601,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8596,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "597:4:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8602,
                        "src": "581:20:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8595,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "581:7:35",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8598,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "618:6:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8602,
                        "src": "603:21:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8597,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "603:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8600,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "payout",
                        "nameLocation": "634:6:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8602,
                        "src": "626:14:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8599,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "626:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "580:61:35"
                  },
                  "src": "563:79:35"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8603,
                    "nodeType": "StructuredDocumentation",
                    "src": "648:107:35",
                    "text": " @notice Emit when DrawCalculator is set.\n @param calculator DrawCalculator address"
                  },
                  "id": 8608,
                  "name": "DrawCalculatorSet",
                  "nameLocation": "766:17:35",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8607,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8606,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "calculator",
                        "nameLocation": "808:10:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8608,
                        "src": "784:34:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 8605,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8604,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "784:15:35"
                          },
                          "referencedDeclaration": 8482,
                          "src": "784:15:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "783:36:35"
                  },
                  "src": "760:60:35"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8609,
                    "nodeType": "StructuredDocumentation",
                    "src": "826:84:35",
                    "text": " @notice Emit when Token is set.\n @param token Token address"
                  },
                  "id": 8614,
                  "name": "TokenSet",
                  "nameLocation": "921:8:35",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8613,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8612,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "945:5:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8614,
                        "src": "930:20:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 8611,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8610,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "930:6:35"
                          },
                          "referencedDeclaration": 663,
                          "src": "930:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "929:22:35"
                  },
                  "src": "915:37:35"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8615,
                    "nodeType": "StructuredDocumentation",
                    "src": "958:211:35",
                    "text": " @notice Emit when ERC20 tokens are withdrawn.\n @param token  ERC20 token transferred.\n @param to     Address that received funds.\n @param amount Amount of tokens transferred."
                  },
                  "id": 8624,
                  "name": "ERC20Withdrawn",
                  "nameLocation": "1180:14:35",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8623,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8618,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1210:5:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8624,
                        "src": "1195:20:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 8617,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8616,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "1195:6:35"
                          },
                          "referencedDeclaration": 663,
                          "src": "1195:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8620,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1233:2:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8624,
                        "src": "1217:18:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8619,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1217:7:35",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8622,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1245:6:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8624,
                        "src": "1237:14:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8621,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1237:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1194:58:35"
                  },
                  "src": "1174:79:35"
                },
                {
                  "documentation": {
                    "id": 8625,
                    "nodeType": "StructuredDocumentation",
                    "src": "1259:1019:35",
                    "text": " @notice Claim prize payout(s) by submitting valud drawId(s) and winning pick indice(s). The user address\nis used as the \"seed\" phrase to generate random numbers.\n @dev    The claim function is public and any wallet may execute claim on behalf of another user.\nPrizes are always paid out to the designated user account and not the caller (msg.sender).\nClaiming prizes is not limited to a single transaction. Reclaiming can be executed\nsubsequentially if an \"optimal\" prize was not included in previous claim pick indices. The\npayout difference for the new claim is calculated during the award process and transfered to user.\n @param user    Address of user to claim awards for. Does NOT need to be msg.sender\n @param drawIds Draw IDs from global DrawBuffer reference\n @param data    The data to pass to the draw calculator\n @return Total claim payout. May include calcuations from multiple draws."
                  },
                  "functionSelector": "bb7d4e2d",
                  "id": 8637,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claim",
                  "nameLocation": "2292:5:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8633,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8627,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2315:4:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8637,
                        "src": "2307:12:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8626,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2307:7:35",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8630,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "2347:7:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8637,
                        "src": "2329:25:35",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8628,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2329:6:35",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8629,
                          "nodeType": "ArrayTypeName",
                          "src": "2329:8:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8632,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "2379:4:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8637,
                        "src": "2364:19:35",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 8631,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2364:5:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2297:92:35"
                  },
                  "returnParameters": {
                    "id": 8636,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8635,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8637,
                        "src": "2408:7:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8634,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2408:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2407:9:35"
                  },
                  "scope": 8685,
                  "src": "2283:134:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8638,
                    "nodeType": "StructuredDocumentation",
                    "src": "2423:99:35",
                    "text": " @notice Read global DrawCalculator address.\n @return IDrawCalculator"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 8644,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "2536:17:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8639,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2553:2:35"
                  },
                  "returnParameters": {
                    "id": 8643,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8642,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8644,
                        "src": "2579:15:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 8641,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8640,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "2579:15:35"
                          },
                          "referencedDeclaration": 8482,
                          "src": "2579:15:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2578:17:35"
                  },
                  "scope": 8685,
                  "src": "2527:69:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8645,
                    "nodeType": "StructuredDocumentation",
                    "src": "2602:162:35",
                    "text": " @notice Get the amount that a user has already been paid out for a draw\n @param user   User address\n @param drawId Draw ID"
                  },
                  "functionSelector": "b7f892d1",
                  "id": 8654,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawPayoutBalanceOf",
                  "nameLocation": "2778:22:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8650,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8647,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2809:4:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8654,
                        "src": "2801:12:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8646,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2801:7:35",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8649,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2822:6:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8654,
                        "src": "2815:13:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8648,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2815:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2800:29:35"
                  },
                  "returnParameters": {
                    "id": 8653,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8652,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8654,
                        "src": "2853:7:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8651,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2853:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2852:9:35"
                  },
                  "scope": 8685,
                  "src": "2769:93:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8655,
                    "nodeType": "StructuredDocumentation",
                    "src": "2868:82:35",
                    "text": " @notice Read global Ticket address.\n @return IERC20"
                  },
                  "functionSelector": "21df0da7",
                  "id": 8661,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "2964:8:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8656,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2972:2:35"
                  },
                  "returnParameters": {
                    "id": 8660,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8659,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8661,
                        "src": "2998:6:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 8658,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8657,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2998:6:35"
                          },
                          "referencedDeclaration": 663,
                          "src": "2998:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2997:8:35"
                  },
                  "scope": 8685,
                  "src": "2955:51:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8662,
                    "nodeType": "StructuredDocumentation",
                    "src": "3012:168:35",
                    "text": " @notice Sets DrawCalculator reference contract.\n @param newCalculator DrawCalculator address\n @return New DrawCalculator address"
                  },
                  "functionSelector": "454a8140",
                  "id": 8671,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDrawCalculator",
                  "nameLocation": "3194:17:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8666,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8665,
                        "mutability": "mutable",
                        "name": "newCalculator",
                        "nameLocation": "3228:13:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8671,
                        "src": "3212:29:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 8664,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8663,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "3212:15:35"
                          },
                          "referencedDeclaration": 8482,
                          "src": "3212:15:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3211:31:35"
                  },
                  "returnParameters": {
                    "id": 8670,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8669,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8671,
                        "src": "3261:15:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 8668,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8667,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "3261:15:35"
                          },
                          "referencedDeclaration": 8482,
                          "src": "3261:15:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3260:17:35"
                  },
                  "scope": 8685,
                  "src": "3185:93:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8672,
                    "nodeType": "StructuredDocumentation",
                    "src": "3284:342:35",
                    "text": " @notice Transfer ERC20 tokens out of contract to recipient address.\n @dev    Only callable by contract owner.\n @param token  ERC20 token to transfer.\n @param to     Recipient of the tokens.\n @param amount Amount of tokens to transfer.\n @return true if operation is successful."
                  },
                  "functionSelector": "44004cc1",
                  "id": 8684,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawERC20",
                  "nameLocation": "3640:13:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8680,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8675,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "3670:5:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8684,
                        "src": "3663:12:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 8674,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8673,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3663:6:35"
                          },
                          "referencedDeclaration": 663,
                          "src": "3663:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8677,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3693:2:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8684,
                        "src": "3685:10:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8676,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3685:7:35",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8679,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3713:6:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 8684,
                        "src": "3705:14:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8678,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3705:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3653:72:35"
                  },
                  "returnParameters": {
                    "id": 8683,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8682,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8684,
                        "src": "3744:4:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8681,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3744:4:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3743:6:35"
                  },
                  "scope": 8685,
                  "src": "3631:119:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8686,
              "src": "290:3462:35",
              "usedErrors": []
            }
          ],
          "src": "36:3717:35"
        },
        "id": 35
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              8967
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 8968,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8687,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:36"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol",
              "file": "../external/compound/ICompLike.sol",
              "id": 8688,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8968,
              "sourceUnit": 8122,
              "src": "61:44:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 8689,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8968,
              "sourceUnit": 9298,
              "src": "106:35:36",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 8967,
              "linearizedBaseContracts": [
                8967
              ],
              "name": "IPrizePool",
              "nameLocation": "153:10:36",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8690,
                    "nodeType": "StructuredDocumentation",
                    "src": "170:53:36",
                    "text": "@dev Event emitted when controlled token is added"
                  },
                  "id": 8695,
                  "name": "ControlledTokenAdded",
                  "nameLocation": "234:20:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8694,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8693,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "271:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8695,
                        "src": "255:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8692,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8691,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "255:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "255:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "254:23:36"
                  },
                  "src": "228:50:36"
                },
                {
                  "anonymous": false,
                  "id": 8699,
                  "name": "AwardCaptured",
                  "nameLocation": "290:13:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8698,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8697,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "312:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8699,
                        "src": "304:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8696,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "304:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "303:16:36"
                  },
                  "src": "284:36:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8700,
                    "nodeType": "StructuredDocumentation",
                    "src": "326:48:36",
                    "text": "@dev Event emitted when assets are deposited"
                  },
                  "id": 8711,
                  "name": "Deposited",
                  "nameLocation": "385:9:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8710,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8702,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "420:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8711,
                        "src": "404:24:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8701,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "404:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8704,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "454:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8711,
                        "src": "438:18:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8703,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "438:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8707,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "482:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8711,
                        "src": "466:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8706,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8705,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "466:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "466:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8709,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "505:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8711,
                        "src": "497:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8708,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "497:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "394:123:36"
                  },
                  "src": "379:139:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8712,
                    "nodeType": "StructuredDocumentation",
                    "src": "524:59:36",
                    "text": "@dev Event emitted when interest is awarded to a winner"
                  },
                  "id": 8721,
                  "name": "Awarded",
                  "nameLocation": "594:7:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8720,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8714,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "618:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8721,
                        "src": "602:22:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8713,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "602:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8717,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "642:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8721,
                        "src": "626:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8716,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8715,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "626:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "626:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8719,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "657:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8721,
                        "src": "649:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8718,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "649:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "601:63:36"
                  },
                  "src": "588:77:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8722,
                    "nodeType": "StructuredDocumentation",
                    "src": "671:67:36",
                    "text": "@dev Event emitted when external ERC20s are awarded to a winner"
                  },
                  "id": 8730,
                  "name": "AwardedExternalERC20",
                  "nameLocation": "749:20:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8729,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8724,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "786:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8730,
                        "src": "770:22:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8723,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "770:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8726,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "810:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8730,
                        "src": "794:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8725,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "794:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8728,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "825:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8730,
                        "src": "817:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8727,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "817:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "769:63:36"
                  },
                  "src": "743:90:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8731,
                    "nodeType": "StructuredDocumentation",
                    "src": "839:63:36",
                    "text": "@dev Event emitted when external ERC20s are transferred out"
                  },
                  "id": 8739,
                  "name": "TransferredExternalERC20",
                  "nameLocation": "913:24:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8738,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8733,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "954:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8739,
                        "src": "938:18:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8732,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "938:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8735,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "974:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8739,
                        "src": "958:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8734,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "958:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8737,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "989:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8739,
                        "src": "981:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8736,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "981:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "937:59:36"
                  },
                  "src": "907:90:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8740,
                    "nodeType": "StructuredDocumentation",
                    "src": "1003:68:36",
                    "text": "@dev Event emitted when external ERC721s are awarded to a winner"
                  },
                  "id": 8749,
                  "name": "AwardedExternalERC721",
                  "nameLocation": "1082:21:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8748,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8742,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "1120:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8749,
                        "src": "1104:22:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8741,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1104:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8744,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1144:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8749,
                        "src": "1128:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8743,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1128:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8747,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "tokenIds",
                        "nameLocation": "1161:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8749,
                        "src": "1151:18:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8745,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1151:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8746,
                          "nodeType": "ArrayTypeName",
                          "src": "1151:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1103:67:36"
                  },
                  "src": "1076:95:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8750,
                    "nodeType": "StructuredDocumentation",
                    "src": "1177:48:36",
                    "text": "@dev Event emitted when assets are withdrawn"
                  },
                  "id": 8763,
                  "name": "Withdrawal",
                  "nameLocation": "1236:10:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8762,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8752,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "1272:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8763,
                        "src": "1256:24:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8751,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1256:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8754,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1306:4:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8763,
                        "src": "1290:20:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8753,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1290:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8757,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1336:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8763,
                        "src": "1320:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8756,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8755,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "1320:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "1320:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8759,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1359:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8763,
                        "src": "1351:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8758,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1351:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8761,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "redeemed",
                        "nameLocation": "1383:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8763,
                        "src": "1375:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8760,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1375:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1246:151:36"
                  },
                  "src": "1230:168:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8764,
                    "nodeType": "StructuredDocumentation",
                    "src": "1404:50:36",
                    "text": "@dev Event emitted when the Balance Cap is set"
                  },
                  "id": 8768,
                  "name": "BalanceCapSet",
                  "nameLocation": "1465:13:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8767,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8766,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "balanceCap",
                        "nameLocation": "1487:10:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8768,
                        "src": "1479:18:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8765,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1479:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1478:20:36"
                  },
                  "src": "1459:40:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8769,
                    "nodeType": "StructuredDocumentation",
                    "src": "1505:52:36",
                    "text": "@dev Event emitted when the Liquidity Cap is set"
                  },
                  "id": 8773,
                  "name": "LiquidityCapSet",
                  "nameLocation": "1568:15:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8772,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8771,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "liquidityCap",
                        "nameLocation": "1592:12:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8773,
                        "src": "1584:20:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8770,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1584:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1583:22:36"
                  },
                  "src": "1562:44:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8774,
                    "nodeType": "StructuredDocumentation",
                    "src": "1612:53:36",
                    "text": "@dev Event emitted when the Prize Strategy is set"
                  },
                  "id": 8778,
                  "name": "PrizeStrategySet",
                  "nameLocation": "1676:16:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8777,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8776,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeStrategy",
                        "nameLocation": "1709:13:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8778,
                        "src": "1693:29:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8775,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1693:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1692:31:36"
                  },
                  "src": "1670:54:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8779,
                    "nodeType": "StructuredDocumentation",
                    "src": "1730:45:36",
                    "text": "@dev Event emitted when the Ticket is set"
                  },
                  "id": 8784,
                  "name": "TicketSet",
                  "nameLocation": "1786:9:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8783,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8782,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "1812:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8784,
                        "src": "1796:22:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8781,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8780,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "1796:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "1796:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1795:24:36"
                  },
                  "src": "1780:40:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8785,
                    "nodeType": "StructuredDocumentation",
                    "src": "1826:75:36",
                    "text": "@dev Emitted when there was an error thrown awarding an External ERC721"
                  },
                  "id": 8789,
                  "name": "ErrorAwardingExternalERC721",
                  "nameLocation": "1912:27:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8788,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8787,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "error",
                        "nameLocation": "1946:5:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8789,
                        "src": "1940:11:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 8786,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1940:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1939:13:36"
                  },
                  "src": "1906:47:36"
                },
                {
                  "documentation": {
                    "id": 8790,
                    "nodeType": "StructuredDocumentation",
                    "src": "1959:187:36",
                    "text": "@notice Deposit assets into the Prize Pool in exchange for tokens\n @param to The address receiving the newly minted tokens\n @param amount The amount of assets to deposit"
                  },
                  "functionSelector": "ffaad6a5",
                  "id": 8797,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositTo",
                  "nameLocation": "2160:9:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8795,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8792,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2178:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8797,
                        "src": "2170:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8791,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2170:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8794,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2190:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8797,
                        "src": "2182:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8793,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2182:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2169:28:36"
                  },
                  "returnParameters": {
                    "id": 8796,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2206:0:36"
                  },
                  "scope": 8967,
                  "src": "2151:56:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8798,
                    "nodeType": "StructuredDocumentation",
                    "src": "2213:310:36",
                    "text": "@notice Deposit assets into the Prize Pool in exchange for tokens,\n then sets the delegate on behalf of the caller.\n @param to The address receiving the newly minted tokens\n @param amount The amount of assets to deposit\n @param delegate The address to delegate to for the caller"
                  },
                  "functionSelector": "d7a169eb",
                  "id": 8807,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToAndDelegate",
                  "nameLocation": "2537:20:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8805,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8800,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2566:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8807,
                        "src": "2558:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8799,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2558:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8802,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2578:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8807,
                        "src": "2570:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8801,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2570:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8804,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "2594:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8807,
                        "src": "2586:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8803,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2586:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2557:46:36"
                  },
                  "returnParameters": {
                    "id": 8806,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2612:0:36"
                  },
                  "scope": 8967,
                  "src": "2528:85:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8808,
                    "nodeType": "StructuredDocumentation",
                    "src": "2619:272:36",
                    "text": "@notice Withdraw assets from the Prize Pool instantly.  A fairness fee may be charged for an early exit.\n @param from The address to redeem tokens from.\n @param amount The amount of tokens to redeem for assets.\n @return The actual amount withdrawn"
                  },
                  "functionSelector": "9470b0bd",
                  "id": 8817,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawFrom",
                  "nameLocation": "2905:12:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8813,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8810,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2926:4:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8817,
                        "src": "2918:12:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8809,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2918:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8812,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2940:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8817,
                        "src": "2932:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8811,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2932:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2917:30:36"
                  },
                  "returnParameters": {
                    "id": 8816,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8815,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8817,
                        "src": "2966:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8814,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2966:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2965:9:36"
                  },
                  "scope": 8967,
                  "src": "2896:79:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8818,
                    "nodeType": "StructuredDocumentation",
                    "src": "2981:251:36",
                    "text": "@notice Called by the prize strategy to award prizes.\n @dev The amount awarded must be less than the awardBalance()\n @param to The address of the winner that receives the award\n @param amount The amount of assets to be awarded"
                  },
                  "functionSelector": "5d8a776e",
                  "id": 8825,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "award",
                  "nameLocation": "3246:5:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8823,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8820,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3260:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8825,
                        "src": "3252:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8819,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3252:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8822,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3272:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8825,
                        "src": "3264:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8821,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3264:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3251:28:36"
                  },
                  "returnParameters": {
                    "id": 8824,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3288:0:36"
                  },
                  "scope": 8967,
                  "src": "3237:52:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8826,
                    "nodeType": "StructuredDocumentation",
                    "src": "3295:196:36",
                    "text": "@notice Returns the balance that is available to award.\n @dev captureAwardBalance() should be called first\n @return The total amount of assets to be awarded for the current prize"
                  },
                  "functionSelector": "630665b4",
                  "id": 8831,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardBalance",
                  "nameLocation": "3505:12:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8827,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3517:2:36"
                  },
                  "returnParameters": {
                    "id": 8830,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8829,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8831,
                        "src": "3543:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8828,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3543:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3542:9:36"
                  },
                  "scope": 8967,
                  "src": "3496:56:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8832,
                    "nodeType": "StructuredDocumentation",
                    "src": "3558:199:36",
                    "text": "@notice Captures any available interest as award balance.\n @dev This function also captures the reserve fees.\n @return The total amount of assets to be awarded for the current prize"
                  },
                  "functionSelector": "e6d8a94b",
                  "id": 8837,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "captureAwardBalance",
                  "nameLocation": "3771:19:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8833,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3790:2:36"
                  },
                  "returnParameters": {
                    "id": 8836,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8835,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8837,
                        "src": "3811:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8834,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3811:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3810:9:36"
                  },
                  "scope": 8967,
                  "src": "3762:58:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8838,
                    "nodeType": "StructuredDocumentation",
                    "src": "3826:225:36",
                    "text": "@dev Checks with the Prize Pool if a specific token type may be awarded as an external prize\n @param externalToken The address of the token to check\n @return True if the token may be awarded, false otherwise"
                  },
                  "functionSelector": "6a3fd4f9",
                  "id": 8845,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canAwardExternal",
                  "nameLocation": "4065:16:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8841,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8840,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "4090:13:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8845,
                        "src": "4082:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8839,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4082:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4081:23:36"
                  },
                  "returnParameters": {
                    "id": 8844,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8843,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8845,
                        "src": "4128:4:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8842,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4128:4:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4127:6:36"
                  },
                  "scope": 8967,
                  "src": "4056:78:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8846,
                    "nodeType": "StructuredDocumentation",
                    "src": "4247:44:36",
                    "text": "@return The underlying balance of assets"
                  },
                  "functionSelector": "b69ef8a8",
                  "id": 8851,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balance",
                  "nameLocation": "4305:7:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8847,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4312:2:36"
                  },
                  "returnParameters": {
                    "id": 8850,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8849,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8851,
                        "src": "4333:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8848,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4333:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4332:9:36"
                  },
                  "scope": 8967,
                  "src": "4296:46:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8852,
                    "nodeType": "StructuredDocumentation",
                    "src": "4348:104:36",
                    "text": " @notice Read internal Ticket accounted balance.\n @return uint256 accountBalance"
                  },
                  "functionSelector": "33e5761f",
                  "id": 8857,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountedBalance",
                  "nameLocation": "4466:19:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8853,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4485:2:36"
                  },
                  "returnParameters": {
                    "id": 8856,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8855,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8857,
                        "src": "4511:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8854,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4511:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4510:9:36"
                  },
                  "scope": 8967,
                  "src": "4457:63:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8858,
                    "nodeType": "StructuredDocumentation",
                    "src": "4526:60:36",
                    "text": " @notice Read internal balanceCap variable"
                  },
                  "functionSelector": "08234319",
                  "id": 8863,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceCap",
                  "nameLocation": "4600:13:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8859,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4613:2:36"
                  },
                  "returnParameters": {
                    "id": 8862,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8861,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8863,
                        "src": "4639:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8860,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4639:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4638:9:36"
                  },
                  "scope": 8967,
                  "src": "4591:57:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8864,
                    "nodeType": "StructuredDocumentation",
                    "src": "4654:62:36",
                    "text": " @notice Read internal liquidityCap variable"
                  },
                  "functionSelector": "b15a49c1",
                  "id": 8869,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLiquidityCap",
                  "nameLocation": "4730:15:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8865,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4745:2:36"
                  },
                  "returnParameters": {
                    "id": 8868,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8867,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8869,
                        "src": "4771:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8866,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4771:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4770:9:36"
                  },
                  "scope": 8967,
                  "src": "4721:59:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8870,
                    "nodeType": "StructuredDocumentation",
                    "src": "4786:47:36",
                    "text": " @notice Read ticket variable"
                  },
                  "functionSelector": "c002c4d6",
                  "id": 8876,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTicket",
                  "nameLocation": "4847:9:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8871,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4856:2:36"
                  },
                  "returnParameters": {
                    "id": 8875,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8874,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8876,
                        "src": "4882:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8873,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8872,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "4882:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "4882:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4881:9:36"
                  },
                  "scope": 8967,
                  "src": "4838:53:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8877,
                    "nodeType": "StructuredDocumentation",
                    "src": "4897:46:36",
                    "text": " @notice Read token variable"
                  },
                  "functionSelector": "21df0da7",
                  "id": 8882,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4957:8:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8878,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4965:2:36"
                  },
                  "returnParameters": {
                    "id": 8881,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8880,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8882,
                        "src": "4991:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8879,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4991:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4990:9:36"
                  },
                  "scope": 8967,
                  "src": "4948:52:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8883,
                    "nodeType": "StructuredDocumentation",
                    "src": "5006:54:36",
                    "text": " @notice Read prizeStrategy variable"
                  },
                  "functionSelector": "d804abaf",
                  "id": 8888,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeStrategy",
                  "nameLocation": "5074:16:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8884,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5090:2:36"
                  },
                  "returnParameters": {
                    "id": 8887,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8886,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8888,
                        "src": "5116:7:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8885,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5116:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5115:9:36"
                  },
                  "scope": 8967,
                  "src": "5065:60:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8889,
                    "nodeType": "StructuredDocumentation",
                    "src": "5131:205:36",
                    "text": "@dev Checks if a specific token is controlled by the Prize Pool\n @param controlledToken The address of the token to check\n @return True if the token is a controlled token, false otherwise"
                  },
                  "functionSelector": "78b3d327",
                  "id": 8897,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isControlled",
                  "nameLocation": "5350:12:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8893,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8892,
                        "mutability": "mutable",
                        "name": "controlledToken",
                        "nameLocation": "5371:15:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8897,
                        "src": "5363:23:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8891,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8890,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "5363:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "5363:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5362:25:36"
                  },
                  "returnParameters": {
                    "id": 8896,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8895,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8897,
                        "src": "5411:4:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8894,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5411:4:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5410:6:36"
                  },
                  "scope": 8967,
                  "src": "5341:76:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8898,
                    "nodeType": "StructuredDocumentation",
                    "src": "5423:395:36",
                    "text": "@notice Called by the Prize-Strategy to transfer out external ERC20 tokens\n @dev Used to transfer out tokens held by the Prize Pool.  Could be liquidated, or anything.\n @param to The address of the winner that receives the award\n @param externalToken The address of the external asset token being awarded\n @param amount The amount of external assets to be awarded"
                  },
                  "functionSelector": "13f55e39",
                  "id": 8907,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferExternalERC20",
                  "nameLocation": "5832:21:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8905,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8900,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "5871:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8907,
                        "src": "5863:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8899,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5863:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8902,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "5891:13:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8907,
                        "src": "5883:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8901,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5883:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8904,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "5922:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8907,
                        "src": "5914:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8903,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5914:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5853:81:36"
                  },
                  "returnParameters": {
                    "id": 8906,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5943:0:36"
                  },
                  "scope": 8967,
                  "src": "5823:121:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8908,
                    "nodeType": "StructuredDocumentation",
                    "src": "5950:359:36",
                    "text": "@notice Called by the Prize-Strategy to award external ERC20 prizes\n @dev Used to award any arbitrary tokens held by the Prize Pool\n @param to The address of the winner that receives the award\n @param amount The amount of external assets to be awarded\n @param externalToken The address of the external asset token being awarded"
                  },
                  "functionSelector": "2b0ab144",
                  "id": 8917,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardExternalERC20",
                  "nameLocation": "6323:18:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8915,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8910,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "6359:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8917,
                        "src": "6351:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8909,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6351:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8912,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "6379:13:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8917,
                        "src": "6371:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8911,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6371:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8914,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "6410:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8917,
                        "src": "6402:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8913,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6402:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6341:81:36"
                  },
                  "returnParameters": {
                    "id": 8916,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6431:0:36"
                  },
                  "scope": 8967,
                  "src": "6314:118:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8918,
                    "nodeType": "StructuredDocumentation",
                    "src": "6438:358:36",
                    "text": "@notice Called by the prize strategy to award external ERC721 prizes\n @dev Used to award any arbitrary NFTs held by the Prize Pool\n @param to The address of the winner that receives the award\n @param externalToken The address of the external NFT token being awarded\n @param tokenIds An array of NFT Token IDs to be transferred"
                  },
                  "functionSelector": "16960d55",
                  "id": 8928,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardExternalERC721",
                  "nameLocation": "6810:19:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8926,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8920,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "6847:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8928,
                        "src": "6839:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8919,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6839:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8922,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "6867:13:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8928,
                        "src": "6859:21:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8921,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6859:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8925,
                        "mutability": "mutable",
                        "name": "tokenIds",
                        "nameLocation": "6909:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8928,
                        "src": "6890:27:36",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8923,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6890:7:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8924,
                          "nodeType": "ArrayTypeName",
                          "src": "6890:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6829:94:36"
                  },
                  "returnParameters": {
                    "id": 8927,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6932:0:36"
                  },
                  "scope": 8967,
                  "src": "6801:132:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8929,
                    "nodeType": "StructuredDocumentation",
                    "src": "6939:395:36",
                    "text": "@notice Allows the owner to set a balance cap per `token` for the pool.\n @dev If a user wins, his balance can go over the cap. He will be able to withdraw the excess but not deposit.\n @dev Needs to be called after deploying a prize pool to be able to deposit into it.\n @param balanceCap New balance cap.\n @return True if new balance cap has been successfully set."
                  },
                  "functionSelector": "aec9c307",
                  "id": 8936,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setBalanceCap",
                  "nameLocation": "7348:13:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8932,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8931,
                        "mutability": "mutable",
                        "name": "balanceCap",
                        "nameLocation": "7370:10:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8936,
                        "src": "7362:18:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8930,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7362:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7361:20:36"
                  },
                  "returnParameters": {
                    "id": 8935,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8934,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8936,
                        "src": "7400:4:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8933,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7400:4:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7399:6:36"
                  },
                  "scope": 8967,
                  "src": "7339:67:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8937,
                    "nodeType": "StructuredDocumentation",
                    "src": "7412:162:36",
                    "text": "@notice Allows the Governor to set a cap on the amount of liquidity that he pool can hold\n @param liquidityCap The new liquidity cap for the prize pool"
                  },
                  "functionSelector": "7b99adb1",
                  "id": 8942,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setLiquidityCap",
                  "nameLocation": "7588:15:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8940,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8939,
                        "mutability": "mutable",
                        "name": "liquidityCap",
                        "nameLocation": "7612:12:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8942,
                        "src": "7604:20:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8938,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7604:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7603:22:36"
                  },
                  "returnParameters": {
                    "id": 8941,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7634:0:36"
                  },
                  "scope": 8967,
                  "src": "7579:56:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8943,
                    "nodeType": "StructuredDocumentation",
                    "src": "7641:137:36",
                    "text": "@notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n @param _prizeStrategy The new prize strategy."
                  },
                  "functionSelector": "91ca480e",
                  "id": 8948,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeStrategy",
                  "nameLocation": "7792:16:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8946,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8945,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "7817:14:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8948,
                        "src": "7809:22:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8944,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7809:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7808:24:36"
                  },
                  "returnParameters": {
                    "id": 8947,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7841:0:36"
                  },
                  "scope": 8967,
                  "src": "7783:59:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8949,
                    "nodeType": "StructuredDocumentation",
                    "src": "7848:144:36",
                    "text": "@notice Set prize pool ticket.\n @param ticket Address of the ticket to set.\n @return True if ticket has been successfully set."
                  },
                  "functionSelector": "1c65c78b",
                  "id": 8957,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setTicket",
                  "nameLocation": "8006:9:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8953,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8952,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "8024:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8957,
                        "src": "8016:14:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 8951,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8950,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "8016:7:36"
                          },
                          "referencedDeclaration": 9297,
                          "src": "8016:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8015:16:36"
                  },
                  "returnParameters": {
                    "id": 8956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8955,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8957,
                        "src": "8050:4:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8954,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "8050:4:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8049:6:36"
                  },
                  "scope": 8967,
                  "src": "7997:59:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 8958,
                    "nodeType": "StructuredDocumentation",
                    "src": "8062:221:36",
                    "text": "@notice Delegate the votes for a Compound COMP-like token held by the prize pool\n @param compLike The COMP-like token held by the prize pool that should be delegated\n @param to The address to delegate to"
                  },
                  "functionSelector": "2f7627e3",
                  "id": 8966,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "compLikeDelegate",
                  "nameLocation": "8297:16:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8964,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8961,
                        "mutability": "mutable",
                        "name": "compLike",
                        "nameLocation": "8324:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8966,
                        "src": "8314:18:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ICompLike_$8121",
                          "typeString": "contract ICompLike"
                        },
                        "typeName": {
                          "id": 8960,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8959,
                            "name": "ICompLike",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8121,
                            "src": "8314:9:36"
                          },
                          "referencedDeclaration": 8121,
                          "src": "8314:9:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ICompLike_$8121",
                            "typeString": "contract ICompLike"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8963,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "8342:2:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 8966,
                        "src": "8334:10:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8962,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8334:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8313:32:36"
                  },
                  "returnParameters": {
                    "id": 8965,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8354:0:36"
                  },
                  "scope": 8967,
                  "src": "8288:67:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 8968,
              "src": "143:8214:36",
              "usedErrors": []
            }
          ],
          "src": "37:8321:36"
        },
        "id": 36
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              8967
            ],
            "IPrizeSplit": [
              9043
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 9044,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8969,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:37"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
              "file": "./IControlledToken.sol",
              "id": 8970,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9044,
              "sourceUnit": 8161,
              "src": "61:32:37",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "./IPrizePool.sol",
              "id": 8971,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9044,
              "sourceUnit": 8968,
              "src": "94:26:37",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 8972,
                "nodeType": "StructuredDocumentation",
                "src": "122:138:37",
                "text": " @title Abstract prize split contract for adding unique award distribution to static addresses.\n @author PoolTogether Inc Team"
              },
              "fullyImplemented": false,
              "id": 9043,
              "linearizedBaseContracts": [
                9043
              ],
              "name": "IPrizeSplit",
              "nameLocation": "271:11:37",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8973,
                    "nodeType": "StructuredDocumentation",
                    "src": "289:220:37",
                    "text": " @notice Emit when an individual prize split is awarded.\n @param user          User address being awarded\n @param prizeAwarded  Awarded prize amount\n @param token         Token address"
                  },
                  "id": 8982,
                  "name": "PrizeSplitAwarded",
                  "nameLocation": "520:17:37",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8981,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8975,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "563:4:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 8982,
                        "src": "547:20:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8974,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "547:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8977,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeAwarded",
                        "nameLocation": "585:12:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 8982,
                        "src": "577:20:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8976,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "577:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8980,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "632:5:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 8982,
                        "src": "607:30:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IControlledToken_$8160",
                          "typeString": "contract IControlledToken"
                        },
                        "typeName": {
                          "id": 8979,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8978,
                            "name": "IControlledToken",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8160,
                            "src": "607:16:37"
                          },
                          "referencedDeclaration": 8160,
                          "src": "607:16:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IControlledToken_$8160",
                            "typeString": "contract IControlledToken"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "537:106:37"
                  },
                  "src": "514:130:37"
                },
                {
                  "canonicalName": "IPrizeSplit.PrizeSplitConfig",
                  "id": 8987,
                  "members": [
                    {
                      "constant": false,
                      "id": 8984,
                      "mutability": "mutable",
                      "name": "target",
                      "nameLocation": "1064:6:37",
                      "nodeType": "VariableDeclaration",
                      "scope": 8987,
                      "src": "1056:14:37",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      },
                      "typeName": {
                        "id": 8983,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1056:7:37",
                        "stateMutability": "nonpayable",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 8986,
                      "mutability": "mutable",
                      "name": "percentage",
                      "nameLocation": "1087:10:37",
                      "nodeType": "VariableDeclaration",
                      "scope": 8987,
                      "src": "1080:17:37",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 8985,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "1080:6:37",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PrizeSplitConfig",
                  "nameLocation": "1029:16:37",
                  "nodeType": "StructDefinition",
                  "scope": 9043,
                  "src": "1022:82:37",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8988,
                    "nodeType": "StructuredDocumentation",
                    "src": "1110:432:37",
                    "text": " @notice Emitted when a PrizeSplitConfig config is added or updated.\n @dev    Emitted when a PrizeSplitConfig config is added or updated in setPrizeSplits or setPrizeSplit.\n @param target     Address of prize split recipient\n @param percentage Percentage of prize split. Must be between 0 and 1000 for single decimal precision\n @param index      Index of prize split in the prizeSplts array"
                  },
                  "id": 8996,
                  "name": "PrizeSplitSet",
                  "nameLocation": "1553:13:37",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8995,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8990,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "1583:6:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 8996,
                        "src": "1567:22:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8989,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1567:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8992,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "percentage",
                        "nameLocation": "1598:10:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 8996,
                        "src": "1591:17:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 8991,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "1591:6:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8994,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "1618:5:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 8996,
                        "src": "1610:13:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8993,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1610:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1566:58:37"
                  },
                  "src": "1547:78:37"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8997,
                    "nodeType": "StructuredDocumentation",
                    "src": "1631:239:37",
                    "text": " @notice Emitted when a PrizeSplitConfig config is removed.\n @dev    Emitted when a PrizeSplitConfig config is removed from the prizeSplits array.\n @param target Index of a previously active prize split config"
                  },
                  "id": 9001,
                  "name": "PrizeSplitRemoved",
                  "nameLocation": "1881:17:37",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9000,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8999,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "1915:6:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 9001,
                        "src": "1899:22:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8998,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1899:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1898:24:37"
                  },
                  "src": "1875:48:37"
                },
                {
                  "documentation": {
                    "id": 9002,
                    "nodeType": "StructuredDocumentation",
                    "src": "1929:266:37",
                    "text": " @notice Read prize split config from active PrizeSplits.\n @dev    Read PrizeSplitConfig struct from prizeSplits array.\n @param prizeSplitIndex Index position of PrizeSplitConfig\n @return PrizeSplitConfig Single prize split config"
                  },
                  "functionSelector": "cf713d6e",
                  "id": 9010,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplit",
                  "nameLocation": "2209:13:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9005,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9004,
                        "mutability": "mutable",
                        "name": "prizeSplitIndex",
                        "nameLocation": "2231:15:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 9010,
                        "src": "2223:23:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9003,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2223:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2222:25:37"
                  },
                  "returnParameters": {
                    "id": 9009,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9008,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9010,
                        "src": "2271:23:37",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 9007,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9006,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8987,
                            "src": "2271:16:37"
                          },
                          "referencedDeclaration": 8987,
                          "src": "2271:16:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2270:25:37"
                  },
                  "scope": 9043,
                  "src": "2200:96:37",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9011,
                    "nodeType": "StructuredDocumentation",
                    "src": "2302:178:37",
                    "text": " @notice Read all prize splits configs.\n @dev    Read all PrizeSplitConfig structs stored in prizeSplits.\n @return Array of PrizeSplitConfig structs"
                  },
                  "functionSelector": "cf1e3b59",
                  "id": 9018,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplits",
                  "nameLocation": "2494:14:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9012,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2508:2:37"
                  },
                  "returnParameters": {
                    "id": 9017,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9016,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9018,
                        "src": "2534:25:37",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9014,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 9013,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8987,
                              "src": "2534:16:37"
                            },
                            "referencedDeclaration": 8987,
                            "src": "2534:16:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 9015,
                          "nodeType": "ArrayTypeName",
                          "src": "2534:18:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2533:27:37"
                  },
                  "scope": 9043,
                  "src": "2485:76:37",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9019,
                    "nodeType": "StructuredDocumentation",
                    "src": "2567:74:37",
                    "text": " @notice Get PrizePool address\n @return IPrizePool"
                  },
                  "functionSelector": "884bf67c",
                  "id": 9025,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizePool",
                  "nameLocation": "2655:12:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9020,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2667:2:37"
                  },
                  "returnParameters": {
                    "id": 9024,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9023,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9025,
                        "src": "2693:10:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$8967",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 9022,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9021,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8967,
                            "src": "2693:10:37"
                          },
                          "referencedDeclaration": 8967,
                          "src": "2693:10:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2692:12:37"
                  },
                  "scope": 9043,
                  "src": "2646:59:37",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9026,
                    "nodeType": "StructuredDocumentation",
                    "src": "2711:354:37",
                    "text": " @notice Set and remove prize split(s) configs. Only callable by owner.\n @dev Set and remove prize split configs by passing a new PrizeSplitConfig structs array. Will remove existing PrizeSplitConfig(s) if passed array length is less than existing prizeSplits length.\n @param newPrizeSplits Array of PrizeSplitConfig structs"
                  },
                  "functionSelector": "063a2298",
                  "id": 9033,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeSplits",
                  "nameLocation": "3079:14:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9031,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9030,
                        "mutability": "mutable",
                        "name": "newPrizeSplits",
                        "nameLocation": "3122:14:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 9033,
                        "src": "3094:42:37",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9028,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 9027,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8987,
                              "src": "3094:16:37"
                            },
                            "referencedDeclaration": 8987,
                            "src": "3094:16:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 9029,
                          "nodeType": "ArrayTypeName",
                          "src": "3094:18:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3093:44:37"
                  },
                  "returnParameters": {
                    "id": 9032,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3146:0:37"
                  },
                  "scope": 9043,
                  "src": "3070:77:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9034,
                    "nodeType": "StructuredDocumentation",
                    "src": "3153:347:37",
                    "text": " @notice Updates a previously set prize split config.\n @dev Updates a prize split config by passing a new PrizeSplitConfig struct and current index position. Limited to contract owner.\n @param prizeStrategySplit PrizeSplitConfig config struct\n @param prizeSplitIndex Index position of PrizeSplitConfig to update"
                  },
                  "functionSelector": "056ea84f",
                  "id": 9042,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeSplit",
                  "nameLocation": "3514:13:37",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9040,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9037,
                        "mutability": "mutable",
                        "name": "prizeStrategySplit",
                        "nameLocation": "3552:18:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 9042,
                        "src": "3528:42:37",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 9036,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9035,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8987,
                            "src": "3528:16:37"
                          },
                          "referencedDeclaration": 8987,
                          "src": "3528:16:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9039,
                        "mutability": "mutable",
                        "name": "prizeSplitIndex",
                        "nameLocation": "3578:15:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 9042,
                        "src": "3572:21:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 9038,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3572:5:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3527:67:37"
                  },
                  "returnParameters": {
                    "id": 9041,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3611:0:37"
                  },
                  "scope": 9043,
                  "src": "3505:107:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 9044,
              "src": "261:3353:37",
              "usedErrors": []
            }
          ],
          "src": "37:3578:37"
        },
        "id": 37
      },
      "@pooltogether/v4-core/contracts/interfaces/IReserve.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IReserve.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "IReserve": [
              9090
            ]
          },
          "id": 9091,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9045,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:38"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 9046,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9091,
              "sourceUnit": 664,
              "src": "61:56:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 9090,
              "linearizedBaseContracts": [
                9090
              ],
              "name": "IReserve",
              "nameLocation": "129:8:38",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 9047,
                    "nodeType": "StructuredDocumentation",
                    "src": "144:160:38",
                    "text": " @notice Emit when checkpoint is created.\n @param reserveAccumulated  Total depsosited\n @param withdrawAccumulated Total withdrawn"
                  },
                  "id": 9053,
                  "name": "Checkpoint",
                  "nameLocation": "316:10:38",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9052,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9049,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "reserveAccumulated",
                        "nameLocation": "335:18:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9053,
                        "src": "327:26:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9048,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "327:7:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9051,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "withdrawAccumulated",
                        "nameLocation": "363:19:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9053,
                        "src": "355:27:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9050,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "355:7:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "326:57:38"
                  },
                  "src": "310:74:38"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 9054,
                    "nodeType": "StructuredDocumentation",
                    "src": "389:175:38",
                    "text": " @notice Emit when the withdrawTo function has executed.\n @param recipient Address receiving funds\n @param amount    Amount of tokens transfered."
                  },
                  "id": 9060,
                  "name": "Withdrawn",
                  "nameLocation": "575:9:38",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9059,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9056,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "601:9:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9060,
                        "src": "585:25:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9055,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "585:7:38",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9058,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "620:6:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9060,
                        "src": "612:14:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9057,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "612:7:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "584:43:38"
                  },
                  "src": "569:59:38"
                },
                {
                  "documentation": {
                    "id": 9061,
                    "nodeType": "StructuredDocumentation",
                    "src": "634:185:38",
                    "text": " @notice Create observation checkpoint in ring bufferr.\n @dev    Calculates total desposited tokens since last checkpoint and creates new accumulator checkpoint."
                  },
                  "functionSelector": "c2c4c5c1",
                  "id": 9064,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkpoint",
                  "nameLocation": "833:10:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9062,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "843:2:38"
                  },
                  "returnParameters": {
                    "id": 9063,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "854:0:38"
                  },
                  "scope": 9090,
                  "src": "824:31:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9065,
                    "nodeType": "StructuredDocumentation",
                    "src": "861:73:38",
                    "text": " @notice Read global token value.\n @return IERC20"
                  },
                  "functionSelector": "21df0da7",
                  "id": 9071,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "948:8:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9066,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "956:2:38"
                  },
                  "returnParameters": {
                    "id": 9070,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9069,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9071,
                        "src": "982:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9068,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9067,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "982:6:38"
                          },
                          "referencedDeclaration": 663,
                          "src": "982:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "981:8:38"
                  },
                  "scope": 9090,
                  "src": "939:51:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9072,
                    "nodeType": "StructuredDocumentation",
                    "src": "996:269:38",
                    "text": " @notice Calculate token accumulation beween timestamp range.\n @dev    Search the ring buffer for two checkpoint observations and diffs accumulator amount.\n @param startTimestamp Account address\n @param endTimestamp   Transfer amount"
                  },
                  "functionSelector": "af6a9400",
                  "id": 9081,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserveAccumulatedBetween",
                  "nameLocation": "1279:28:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9077,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9074,
                        "mutability": "mutable",
                        "name": "startTimestamp",
                        "nameLocation": "1315:14:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9081,
                        "src": "1308:21:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9073,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1308:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9076,
                        "mutability": "mutable",
                        "name": "endTimestamp",
                        "nameLocation": "1338:12:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9081,
                        "src": "1331:19:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9075,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1331:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1307:44:38"
                  },
                  "returnParameters": {
                    "id": 9080,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9079,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9081,
                        "src": "1386:7:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 9078,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "1386:7:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1385:9:38"
                  },
                  "scope": 9090,
                  "src": "1270:125:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9082,
                    "nodeType": "StructuredDocumentation",
                    "src": "1401:260:38",
                    "text": " @notice Transfer Reserve token balance to recipient address.\n @dev    Creates checkpoint before token transfer. Increments withdrawAccumulator with amount.\n @param recipient Account address\n @param amount    Transfer amount"
                  },
                  "functionSelector": "205c2878",
                  "id": 9089,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawTo",
                  "nameLocation": "1675:10:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9087,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9084,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "1694:9:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9089,
                        "src": "1686:17:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9083,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1686:7:38",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9086,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1713:6:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 9089,
                        "src": "1705:14:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9085,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1705:7:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1685:35:38"
                  },
                  "returnParameters": {
                    "id": 9088,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1729:0:38"
                  },
                  "scope": 9090,
                  "src": "1666:64:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 9091,
              "src": "119:1613:38",
              "usedErrors": []
            }
          ],
          "src": "37:1696:38"
        },
        "id": 38
      },
      "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol",
          "exportedSymbols": {
            "IStrategy": [
              9104
            ]
          },
          "id": 9105,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9092,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:39"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 9104,
              "linearizedBaseContracts": [
                9104
              ],
              "name": "IStrategy",
              "nameLocation": "71:9:39",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 9093,
                    "nodeType": "StructuredDocumentation",
                    "src": "87:159:39",
                    "text": " @notice Emit when a strategy captures award amount from PrizePool.\n @param totalPrizeCaptured  Total prize captured from the PrizePool"
                  },
                  "id": 9097,
                  "name": "Distributed",
                  "nameLocation": "257:11:39",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9096,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9095,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalPrizeCaptured",
                        "nameLocation": "277:18:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 9097,
                        "src": "269:26:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9094,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "269:7:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "268:28:39"
                  },
                  "src": "251:46:39"
                },
                {
                  "documentation": {
                    "id": 9098,
                    "nodeType": "StructuredDocumentation",
                    "src": "303:206:39",
                    "text": " @notice Capture the award balance and distribute to prize splits.\n @dev    Permissionless function to initialize distribution of interst\n @return Prize captured from PrizePool"
                  },
                  "functionSelector": "e4fc6b6d",
                  "id": 9103,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "distribute",
                  "nameLocation": "523:10:39",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9099,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "533:2:39"
                  },
                  "returnParameters": {
                    "id": 9102,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9101,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9103,
                        "src": "554:7:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9100,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "554:7:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "553:9:39"
                  },
                  "scope": 9104,
                  "src": "514:49:39",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 9105,
              "src": "61:504:39",
              "usedErrors": []
            }
          ],
          "src": "37:529:39"
        },
        "id": 39
      },
      "@pooltogether/v4-core/contracts/interfaces/ITicket.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 9298,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9106,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:40"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/TwabLib.sol",
              "file": "../libraries/TwabLib.sol",
              "id": 9107,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9298,
              "sourceUnit": 10684,
              "src": "61:34:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
              "file": "./IControlledToken.sol",
              "id": 9108,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9298,
              "sourceUnit": 8161,
              "src": "96:32:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 9109,
                    "name": "IControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8160,
                    "src": "151:16:40"
                  },
                  "id": 9110,
                  "nodeType": "InheritanceSpecifier",
                  "src": "151:16:40"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 9297,
              "linearizedBaseContracts": [
                9297,
                8160,
                663
              ],
              "name": "ITicket",
              "nameLocation": "140:7:40",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "ITicket.AccountDetails",
                  "id": 9117,
                  "members": [
                    {
                      "constant": false,
                      "id": 9112,
                      "mutability": "mutable",
                      "name": "balance",
                      "nameLocation": "489:7:40",
                      "nodeType": "VariableDeclaration",
                      "scope": 9117,
                      "src": "481:15:40",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 9111,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "481:7:40",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9114,
                      "mutability": "mutable",
                      "name": "nextTwabIndex",
                      "nameLocation": "513:13:40",
                      "nodeType": "VariableDeclaration",
                      "scope": 9117,
                      "src": "506:20:40",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 9113,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "506:6:40",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9116,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "543:11:40",
                      "nodeType": "VariableDeclaration",
                      "scope": 9117,
                      "src": "536:18:40",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 9115,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "536:6:40",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "AccountDetails",
                  "nameLocation": "456:14:40",
                  "nodeType": "StructDefinition",
                  "scope": 9297,
                  "src": "449:112:40",
                  "visibility": "public"
                },
                {
                  "canonicalName": "ITicket.Account",
                  "id": 9126,
                  "members": [
                    {
                      "constant": false,
                      "id": 9120,
                      "mutability": "mutable",
                      "name": "details",
                      "nameLocation": "790:7:40",
                      "nodeType": "VariableDeclaration",
                      "scope": 9126,
                      "src": "775:22:40",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_AccountDetails_$9117_storage_ptr",
                        "typeString": "struct ITicket.AccountDetails"
                      },
                      "typeName": {
                        "id": 9119,
                        "nodeType": "UserDefinedTypeName",
                        "pathNode": {
                          "id": 9118,
                          "name": "AccountDetails",
                          "nodeType": "IdentifierPath",
                          "referencedDeclaration": 9117,
                          "src": "775:14:40"
                        },
                        "referencedDeclaration": 9117,
                        "src": "775:14:40",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9117_storage_ptr",
                          "typeString": "struct ITicket.AccountDetails"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9125,
                      "mutability": "mutable",
                      "name": "twabs",
                      "nameLocation": "841:5:40",
                      "nodeType": "VariableDeclaration",
                      "scope": 9126,
                      "src": "807:39:40",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$65535_storage_ptr",
                        "typeString": "struct ObservationLib.Observation[65535]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 9122,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9121,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "807:26:40"
                          },
                          "referencedDeclaration": 9538,
                          "src": "807:26:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "id": 9124,
                        "length": {
                          "hexValue": "3635353335",
                          "id": 9123,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "834:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_65535_by_1",
                            "typeString": "int_const 65535"
                          },
                          "value": "65535"
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "807:33:40",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$65535_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[65535]"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Account",
                  "nameLocation": "757:7:40",
                  "nodeType": "StructDefinition",
                  "scope": 9297,
                  "src": "750:103:40",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 9127,
                    "nodeType": "StructuredDocumentation",
                    "src": "859:186:40",
                    "text": " @notice Emitted when TWAB balance has been delegated to another user.\n @param delegator Address of the delegator.\n @param delegate Address of the delegate."
                  },
                  "id": 9133,
                  "name": "Delegated",
                  "nameLocation": "1056:9:40",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9132,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9129,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "1082:9:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9133,
                        "src": "1066:25:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9128,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1066:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9131,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "1109:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9133,
                        "src": "1093:24:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9130,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1093:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1065:53:40"
                  },
                  "src": "1050:69:40"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 9134,
                    "nodeType": "StructuredDocumentation",
                    "src": "1125:274:40",
                    "text": " @notice Emitted when ticket is initialized.\n @param name Ticket name (eg: PoolTogether Dai Ticket (Compound)).\n @param symbol Ticket symbol (eg: PcDAI).\n @param decimals Ticket decimals.\n @param controller Token controller address."
                  },
                  "id": 9144,
                  "name": "TicketInitialized",
                  "nameLocation": "1410:17:40",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9143,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9136,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "1435:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9144,
                        "src": "1428:11:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 9135,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1428:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9138,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "symbol",
                        "nameLocation": "1448:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9144,
                        "src": "1441:13:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 9137,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1441:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9140,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "decimals",
                        "nameLocation": "1462:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9144,
                        "src": "1456:14:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 9139,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1456:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9142,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "controller",
                        "nameLocation": "1488:10:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9144,
                        "src": "1472:26:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9141,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1472:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1427:72:40"
                  },
                  "src": "1404:96:40"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 9145,
                    "nodeType": "StructuredDocumentation",
                    "src": "1506:246:40",
                    "text": " @notice Emitted when a new TWAB has been recorded.\n @param delegate The recipient of the ticket power (may be the same as the user).\n @param newTwab Updated TWAB of a ticket holder after a successful TWAB recording."
                  },
                  "id": 9152,
                  "name": "NewUserTwab",
                  "nameLocation": "1763:11:40",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9151,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9147,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "1800:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9152,
                        "src": "1784:24:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9146,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1784:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9150,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "newTwab",
                        "nameLocation": "1845:7:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9152,
                        "src": "1818:34:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9149,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9148,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "1818:26:40"
                          },
                          "referencedDeclaration": 9538,
                          "src": "1818:26:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1774:84:40"
                  },
                  "src": "1757:102:40"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 9153,
                    "nodeType": "StructuredDocumentation",
                    "src": "1865:200:40",
                    "text": " @notice Emitted when a new total supply TWAB has been recorded.\n @param newTotalSupplyTwab Updated TWAB of tickets total supply after a successful total supply TWAB recording."
                  },
                  "id": 9158,
                  "name": "NewTotalSupplyTwab",
                  "nameLocation": "2076:18:40",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9157,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9156,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "newTotalSupplyTwab",
                        "nameLocation": "2122:18:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9158,
                        "src": "2095:45:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9155,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9154,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "2095:26:40"
                          },
                          "referencedDeclaration": 9538,
                          "src": "2095:26:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2094:47:40"
                  },
                  "src": "2070:72:40"
                },
                {
                  "documentation": {
                    "id": 9159,
                    "nodeType": "StructuredDocumentation",
                    "src": "2148:297:40",
                    "text": " @notice Retrieves the address of the delegate to whom `user` has delegated their tickets.\n @dev Address of the delegate will be the zero address if `user` has not delegated their tickets.\n @param user Address of the delegator.\n @return Address of the delegate."
                  },
                  "functionSelector": "8d22ea2a",
                  "id": 9166,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateOf",
                  "nameLocation": "2459:10:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9162,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9161,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2478:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9166,
                        "src": "2470:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9160,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2470:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2469:14:40"
                  },
                  "returnParameters": {
                    "id": 9165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9164,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9166,
                        "src": "2507:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9163,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2507:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2506:9:40"
                  },
                  "scope": 9297,
                  "src": "2450:66:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9167,
                    "nodeType": "StructuredDocumentation",
                    "src": "2522:490:40",
                    "text": " @notice Delegate time-weighted average balances to an alternative address.\n @dev    Transfers (including mints) trigger the storage of a TWAB in delegate(s) account, instead of the\ntargetted sender and/or recipient address(s).\n @dev    To reset the delegate, pass the zero address (0x000.000) as `to` parameter.\n @dev Current delegate address should be different from the new delegate address `to`.\n @param  to Recipient of delegated TWAB."
                  },
                  "functionSelector": "5c19a95c",
                  "id": 9172,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "3026:8:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9170,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9169,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3043:2:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9172,
                        "src": "3035:10:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9168,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3035:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3034:12:40"
                  },
                  "returnParameters": {
                    "id": 9171,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3055:0:40"
                  },
                  "scope": 9297,
                  "src": "3017:39:40",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9173,
                    "nodeType": "StructuredDocumentation",
                    "src": "3062:168:40",
                    "text": " @notice Allows the controller to delegate on a users behalf.\n @param user The user for whom to delegate\n @param delegate The new delegate"
                  },
                  "functionSelector": "33e39b61",
                  "id": 9180,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerDelegateFor",
                  "nameLocation": "3244:21:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9178,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9175,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3274:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9180,
                        "src": "3266:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9174,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3266:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9177,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "3288:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9180,
                        "src": "3280:16:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9176,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3280:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3265:32:40"
                  },
                  "returnParameters": {
                    "id": 9179,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3306:0:40"
                  },
                  "scope": 9297,
                  "src": "3235:72:40",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9181,
                    "nodeType": "StructuredDocumentation",
                    "src": "3313:362:40",
                    "text": " @notice Allows a user to delegate via signature\n @param user The user who is delegating\n @param delegate The new delegate\n @param deadline The timestamp by which this must be submitted\n @param v The v portion of the ECDSA sig\n @param r The r portion of the ECDSA sig\n @param s The s portion of the ECDSA sig"
                  },
                  "functionSelector": "919974dc",
                  "id": 9196,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateWithSignature",
                  "nameLocation": "3689:21:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9194,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9183,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3728:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9196,
                        "src": "3720:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9182,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3720:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9185,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "3750:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9196,
                        "src": "3742:16:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9184,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3742:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9187,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "3776:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9196,
                        "src": "3768:16:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9186,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3768:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9189,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "3800:1:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9196,
                        "src": "3794:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 9188,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3794:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9191,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "3819:1:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9196,
                        "src": "3811:9:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 9190,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3811:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9193,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "3838:1:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9196,
                        "src": "3830:9:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 9192,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3830:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3710:135:40"
                  },
                  "returnParameters": {
                    "id": 9195,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3854:0:40"
                  },
                  "scope": 9297,
                  "src": "3680:175:40",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9197,
                    "nodeType": "StructuredDocumentation",
                    "src": "3861:277:40",
                    "text": " @notice Gets a users twab context.  This is a struct with their balance, next twab index, and cardinality.\n @param user The user for whom to fetch the TWAB context.\n @return The TWAB context, which includes { balance, nextTwabIndex, cardinality }"
                  },
                  "functionSelector": "2aceb534",
                  "id": 9205,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountDetails",
                  "nameLocation": "4152:17:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9200,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9199,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4178:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9205,
                        "src": "4170:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9198,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4170:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4169:14:40"
                  },
                  "returnParameters": {
                    "id": 9204,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9203,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9205,
                        "src": "4207:29:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 9202,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9201,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "4207:22:40"
                          },
                          "referencedDeclaration": 9957,
                          "src": "4207:22:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4206:31:40"
                  },
                  "scope": 9297,
                  "src": "4143:95:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9206,
                    "nodeType": "StructuredDocumentation",
                    "src": "4244:255:40",
                    "text": " @notice Gets the TWAB at a specific index for a user.\n @param user The user for whom to fetch the TWAB.\n @param index The index of the TWAB to fetch.\n @return The TWAB, which includes the twab amount and the timestamp."
                  },
                  "functionSelector": "36bb2a38",
                  "id": 9216,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTwab",
                  "nameLocation": "4513:7:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9208,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4529:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9216,
                        "src": "4521:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9207,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4521:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9210,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "4542:5:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9216,
                        "src": "4535:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 9209,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "4535:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4520:28:40"
                  },
                  "returnParameters": {
                    "id": 9215,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9214,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9216,
                        "src": "4596:33:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9213,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9212,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "4596:26:40"
                          },
                          "referencedDeclaration": 9538,
                          "src": "4596:26:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4595:35:40"
                  },
                  "scope": 9297,
                  "src": "4504:127:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9217,
                    "nodeType": "StructuredDocumentation",
                    "src": "4637:262:40",
                    "text": " @notice Retrieves `user` TWAB balance.\n @param user Address of the user whose TWAB is being fetched.\n @param timestamp Timestamp at which we want to retrieve the TWAB balance.\n @return The TWAB balance at the given timestamp."
                  },
                  "functionSelector": "9ecb0370",
                  "id": 9226,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "4913:12:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9222,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9219,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4934:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9226,
                        "src": "4926:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9218,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4926:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9221,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "4947:9:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9226,
                        "src": "4940:16:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9220,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4940:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4925:32:40"
                  },
                  "returnParameters": {
                    "id": 9225,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9224,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9226,
                        "src": "4981:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9223,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4981:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4980:9:40"
                  },
                  "scope": 9297,
                  "src": "4904:86:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9227,
                    "nodeType": "StructuredDocumentation",
                    "src": "4996:255:40",
                    "text": " @notice Retrieves `user` TWAB balances.\n @param user Address of the user whose TWABs are being fetched.\n @param timestamps Timestamps range at which we want to retrieve the TWAB balances.\n @return `user` TWAB balances."
                  },
                  "functionSelector": "613ed6bd",
                  "id": 9238,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalancesAt",
                  "nameLocation": "5265:13:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9233,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9229,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "5287:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9238,
                        "src": "5279:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9228,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5279:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9232,
                        "mutability": "mutable",
                        "name": "timestamps",
                        "nameLocation": "5311:10:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9238,
                        "src": "5293:28:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9230,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "5293:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9231,
                          "nodeType": "ArrayTypeName",
                          "src": "5293:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5278:44:40"
                  },
                  "returnParameters": {
                    "id": 9237,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9236,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9238,
                        "src": "5370:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9234,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5370:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9235,
                          "nodeType": "ArrayTypeName",
                          "src": "5370:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5369:18:40"
                  },
                  "scope": 9297,
                  "src": "5256:132:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9239,
                    "nodeType": "StructuredDocumentation",
                    "src": "5394:338:40",
                    "text": " @notice Retrieves the average balance held by a user for a given time frame.\n @param user The user whose balance is checked.\n @param startTime The start time of the time frame.\n @param endTime The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "functionSelector": "98b16f36",
                  "id": 9250,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "5746:24:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9246,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9241,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "5788:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9250,
                        "src": "5780:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9240,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5780:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9243,
                        "mutability": "mutable",
                        "name": "startTime",
                        "nameLocation": "5809:9:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9250,
                        "src": "5802:16:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9242,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5802:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9245,
                        "mutability": "mutable",
                        "name": "endTime",
                        "nameLocation": "5835:7:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9250,
                        "src": "5828:14:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9244,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5828:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5770:78:40"
                  },
                  "returnParameters": {
                    "id": 9249,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9248,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9250,
                        "src": "5872:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9247,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5872:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5871:9:40"
                  },
                  "scope": 9297,
                  "src": "5737:144:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9251,
                    "nodeType": "StructuredDocumentation",
                    "src": "5887:341:40",
                    "text": " @notice Retrieves the average balances held by a user for a given time frame.\n @param user The user whose balance is checked.\n @param startTimes The start time of the time frame.\n @param endTimes The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "functionSelector": "68c7fd57",
                  "id": 9265,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalancesBetween",
                  "nameLocation": "6242:25:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9260,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9253,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "6285:4:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9265,
                        "src": "6277:12:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9252,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6277:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9256,
                        "mutability": "mutable",
                        "name": "startTimes",
                        "nameLocation": "6317:10:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9265,
                        "src": "6299:28:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9254,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "6299:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9255,
                          "nodeType": "ArrayTypeName",
                          "src": "6299:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9259,
                        "mutability": "mutable",
                        "name": "endTimes",
                        "nameLocation": "6355:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9265,
                        "src": "6337:26:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9257,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "6337:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9258,
                          "nodeType": "ArrayTypeName",
                          "src": "6337:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6267:102:40"
                  },
                  "returnParameters": {
                    "id": 9264,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9263,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9265,
                        "src": "6393:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9261,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6393:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9262,
                          "nodeType": "ArrayTypeName",
                          "src": "6393:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6392:18:40"
                  },
                  "scope": 9297,
                  "src": "6233:178:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9266,
                    "nodeType": "StructuredDocumentation",
                    "src": "6417:253:40",
                    "text": " @notice Retrieves the total supply TWAB balance at the given timestamp.\n @param timestamp Timestamp at which we want to retrieve the total supply TWAB balance.\n @return The total supply TWAB balance at the given timestamp."
                  },
                  "functionSelector": "2d0dd686",
                  "id": 9273,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSupplyAt",
                  "nameLocation": "6684:16:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9269,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9268,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "6708:9:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9273,
                        "src": "6701:16:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9267,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6701:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6700:18:40"
                  },
                  "returnParameters": {
                    "id": 9272,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9271,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9273,
                        "src": "6742:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9270,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6742:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6741:9:40"
                  },
                  "scope": 9297,
                  "src": "6675:76:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9274,
                    "nodeType": "StructuredDocumentation",
                    "src": "6757:247:40",
                    "text": " @notice Retrieves the total supply TWAB balance between the given timestamps range.\n @param timestamps Timestamps range at which we want to retrieve the total supply TWAB balance.\n @return Total supply TWAB balances."
                  },
                  "functionSelector": "85beb5f1",
                  "id": 9283,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSuppliesAt",
                  "nameLocation": "7018:18:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9278,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9277,
                        "mutability": "mutable",
                        "name": "timestamps",
                        "nameLocation": "7055:10:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9283,
                        "src": "7037:28:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9275,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7037:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9276,
                          "nodeType": "ArrayTypeName",
                          "src": "7037:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7036:30:40"
                  },
                  "returnParameters": {
                    "id": 9282,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9281,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9283,
                        "src": "7114:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9279,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7114:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9280,
                          "nodeType": "ArrayTypeName",
                          "src": "7114:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7113:18:40"
                  },
                  "scope": 9297,
                  "src": "7009:123:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 9284,
                    "nodeType": "StructuredDocumentation",
                    "src": "7138:261:40",
                    "text": " @notice Retrieves the average total supply balance for a set of given time frames.\n @param startTimes Array of start times.\n @param endTimes Array of end times.\n @return The average total supplies held during the time frame."
                  },
                  "functionSelector": "8e6d536a",
                  "id": 9296,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageTotalSuppliesBetween",
                  "nameLocation": "7413:30:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9291,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9287,
                        "mutability": "mutable",
                        "name": "startTimes",
                        "nameLocation": "7471:10:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9296,
                        "src": "7453:28:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9285,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7453:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9286,
                          "nodeType": "ArrayTypeName",
                          "src": "7453:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9290,
                        "mutability": "mutable",
                        "name": "endTimes",
                        "nameLocation": "7509:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 9296,
                        "src": "7491:26:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9288,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7491:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9289,
                          "nodeType": "ArrayTypeName",
                          "src": "7491:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7443:80:40"
                  },
                  "returnParameters": {
                    "id": 9295,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9294,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9296,
                        "src": "7547:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9292,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7547:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9293,
                          "nodeType": "ArrayTypeName",
                          "src": "7547:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7546:18:40"
                  },
                  "scope": 9297,
                  "src": "7404:161:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 9298,
              "src": "130:7437:40",
              "usedErrors": []
            }
          ],
          "src": "37:7531:40"
        },
        "id": 40
      },
      "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              9438
            ],
            "RingBufferLib": [
              9933
            ]
          },
          "id": 9439,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9299,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:41"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 9300,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9439,
              "sourceUnit": 9934,
              "src": "61:29:41",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 9301,
                "nodeType": "StructuredDocumentation",
                "src": "92:65:41",
                "text": "@title Library for creating and managing a draw ring buffer."
              },
              "fullyImplemented": true,
              "id": 9438,
              "linearizedBaseContracts": [
                9438
              ],
              "name": "DrawRingBufferLib",
              "nameLocation": "165:17:41",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "DrawRingBufferLib.Buffer",
                  "id": 9308,
                  "members": [
                    {
                      "constant": false,
                      "id": 9303,
                      "mutability": "mutable",
                      "name": "lastDrawId",
                      "nameLocation": "256:10:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 9308,
                      "src": "249:17:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 9302,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "249:6:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9305,
                      "mutability": "mutable",
                      "name": "nextIndex",
                      "nameLocation": "283:9:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 9308,
                      "src": "276:16:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 9304,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "276:6:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9307,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "309:11:41",
                      "nodeType": "VariableDeclaration",
                      "scope": 9308,
                      "src": "302:18:41",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 9306,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "302:6:41",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Buffer",
                  "nameLocation": "232:6:41",
                  "nodeType": "StructDefinition",
                  "scope": 9438,
                  "src": "225:102:41",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 9329,
                    "nodeType": "Block",
                    "src": "673:76:41",
                    "statements": [
                      {
                        "expression": {
                          "id": 9327,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "!",
                          "prefix": true,
                          "src": "690:52:41",
                          "subExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 9325,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 9320,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 9317,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9312,
                                      "src": "692:7:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 9318,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9305,
                                    "src": "692:17:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 9319,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "713:1:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "692:22:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "&&",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 9324,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 9321,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9312,
                                      "src": "718:7:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 9322,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9303,
                                    "src": "718:18:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 9323,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "740:1:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "718:23:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "692:49:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 9326,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "691:51:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 9316,
                        "id": 9328,
                        "nodeType": "Return",
                        "src": "683:59:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9309,
                    "nodeType": "StructuredDocumentation",
                    "src": "333:260:41",
                    "text": "@notice Helper function to know if the draw ring buffer has been initialized.\n @dev since draws start at 1 and are monotonically increased, we know we are uninitialized if nextIndex = 0 and lastDrawId = 0.\n @param _buffer The buffer to check."
                  },
                  "id": 9330,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isInitialized",
                  "nameLocation": "607:13:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9313,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9312,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "635:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 9330,
                        "src": "621:21:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 9311,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9310,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9308,
                            "src": "621:6:41"
                          },
                          "referencedDeclaration": 9308,
                          "src": "621:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "620:23:41"
                  },
                  "returnParameters": {
                    "id": 9316,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9315,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9330,
                        "src": "667:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 9314,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "667:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "666:6:41"
                  },
                  "scope": 9438,
                  "src": "598:151:41",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9373,
                    "nodeType": "Block",
                    "src": "1010:347:41",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 9353,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9346,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "1028:23:41",
                                "subExpression": {
                                  "arguments": [
                                    {
                                      "id": 9344,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9334,
                                      "src": "1043:7:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    ],
                                    "id": 9343,
                                    "name": "isInitialized",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9330,
                                    "src": "1029:13:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$returns$_t_bool_$",
                                      "typeString": "function (struct DrawRingBufferLib.Buffer memory) pure returns (bool)"
                                    }
                                  },
                                  "id": 9345,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1029:22:41",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 9352,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 9347,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9336,
                                  "src": "1055:7:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 9351,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 9348,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9334,
                                      "src": "1066:7:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 9349,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9303,
                                    "src": "1066:18:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "+",
                                  "rightExpression": {
                                    "hexValue": "31",
                                    "id": 9350,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1087:1:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    },
                                    "value": "1"
                                  },
                                  "src": "1066:22:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "1055:33:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1028:60:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f6d7573742d62652d636f6e746967",
                              "id": 9354,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1090:20:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816",
                                "typeString": "literal_string \"DRB/must-be-contig\""
                              },
                              "value": "DRB/must-be-contig"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816",
                                "typeString": "literal_string \"DRB/must-be-contig\""
                              }
                            ],
                            "id": 9342,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1020:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9355,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1020:91:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9356,
                        "nodeType": "ExpressionStatement",
                        "src": "1020:91:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9358,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9336,
                              "src": "1178:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 9363,
                                        "name": "_buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9334,
                                        "src": "1245:7:41",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 9364,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "nextIndex",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9305,
                                      "src": "1245:17:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "expression": {
                                        "id": 9365,
                                        "name": "_buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9334,
                                        "src": "1264:7:41",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 9366,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "cardinality",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9307,
                                      "src": "1264:19:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 9361,
                                      "name": "RingBufferLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9933,
                                      "src": "1221:13:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                        "typeString": "type(library RingBufferLib)"
                                      }
                                    },
                                    "id": 9362,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9932,
                                    "src": "1221:23:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (uint256,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 9367,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1221:63:41",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 9360,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1214:6:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9359,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1214:6:41",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9368,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1214:71:41",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 9369,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9334,
                                "src": "1316:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 9370,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9307,
                              "src": "1316:19:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 9357,
                            "name": "Buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9308,
                            "src": "1141:6:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Buffer_$9308_storage_ptr_$",
                              "typeString": "type(struct DrawRingBufferLib.Buffer storage pointer)"
                            }
                          },
                          "id": 9371,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "lastDrawId",
                            "nextIndex",
                            "cardinality"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "1141:209:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer memory"
                          }
                        },
                        "functionReturnParameters": 9341,
                        "id": 9372,
                        "nodeType": "Return",
                        "src": "1122:228:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9331,
                    "nodeType": "StructuredDocumentation",
                    "src": "755:159:41",
                    "text": "@notice Push a draw to the buffer.\n @param _buffer The buffer to push to.\n @param _drawId The drawID to push.\n @return The new buffer."
                  },
                  "id": 9374,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "928:4:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9337,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9334,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "947:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 9374,
                        "src": "933:21:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 9333,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9332,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9308,
                            "src": "933:6:41"
                          },
                          "referencedDeclaration": 9308,
                          "src": "933:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9336,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "963:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 9374,
                        "src": "956:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9335,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "956:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "932:39:41"
                  },
                  "returnParameters": {
                    "id": 9341,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9340,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9374,
                        "src": "995:13:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 9339,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9338,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9308,
                            "src": "995:6:41"
                          },
                          "referencedDeclaration": 9308,
                          "src": "995:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "994:15:41"
                  },
                  "scope": 9438,
                  "src": "919:438:41",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9436,
                    "nodeType": "Block",
                    "src": "1675:429:41",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 9393,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 9387,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9378,
                                    "src": "1707:7:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  ],
                                  "id": 9386,
                                  "name": "isInitialized",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9330,
                                  "src": "1693:13:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$9308_memory_ptr_$returns$_t_bool_$",
                                    "typeString": "function (struct DrawRingBufferLib.Buffer memory) pure returns (bool)"
                                  }
                                },
                                "id": 9388,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1693:22:41",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 9392,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 9389,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9380,
                                  "src": "1719:7:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "id": 9390,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9378,
                                    "src": "1730:7:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 9391,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lastDrawId",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9303,
                                  "src": "1730:18:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "1719:29:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1693:55:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f6675747572652d64726177",
                              "id": 9394,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1750:17:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b",
                                "typeString": "literal_string \"DRB/future-draw\""
                              },
                              "value": "DRB/future-draw"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b",
                                "typeString": "literal_string \"DRB/future-draw\""
                              }
                            ],
                            "id": 9385,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1685:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9395,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1685:83:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9396,
                        "nodeType": "ExpressionStatement",
                        "src": "1685:83:41"
                      },
                      {
                        "assignments": [
                          9398
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9398,
                            "mutability": "mutable",
                            "name": "indexOffset",
                            "nameLocation": "1786:11:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 9436,
                            "src": "1779:18:41",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 9397,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1779:6:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9403,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9402,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9399,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9378,
                              "src": "1800:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 9400,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9303,
                            "src": "1800:18:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 9401,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9380,
                            "src": "1821:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "1800:28:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1779:49:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 9408,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9405,
                                "name": "indexOffset",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9398,
                                "src": "1846:11:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "expression": {
                                  "id": 9406,
                                  "name": "_buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9378,
                                  "src": "1860:7:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 9407,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9307,
                                "src": "1860:19:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "1846:33:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f657870697265642d64726177",
                              "id": 9409,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1881:18:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103",
                                "typeString": "literal_string \"DRB/expired-draw\""
                              },
                              "value": "DRB/expired-draw"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103",
                                "typeString": "literal_string \"DRB/expired-draw\""
                              }
                            ],
                            "id": 9404,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1838:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9410,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1838:62:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9411,
                        "nodeType": "ExpressionStatement",
                        "src": "1838:62:41"
                      },
                      {
                        "assignments": [
                          9413
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9413,
                            "mutability": "mutable",
                            "name": "mostRecent",
                            "nameLocation": "1919:10:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 9436,
                            "src": "1911:18:41",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9412,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1911:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9421,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 9416,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9378,
                                "src": "1958:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 9417,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9305,
                              "src": "1958:17:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 9418,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9378,
                                "src": "1977:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 9419,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9307,
                              "src": "1977:19:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 9414,
                              "name": "RingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9933,
                              "src": "1932:13:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                "typeString": "type(library RingBufferLib)"
                              }
                            },
                            "id": 9415,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "newestIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9914,
                            "src": "1932:25:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 9420,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1932:65:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1911:86:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 9428,
                                      "name": "mostRecent",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9413,
                                      "src": "2050:10:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 9427,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2043:6:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint32_$",
                                      "typeString": "type(uint32)"
                                    },
                                    "typeName": {
                                      "id": 9426,
                                      "name": "uint32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2043:6:41",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 9429,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2043:18:41",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                {
                                  "id": 9430,
                                  "name": "indexOffset",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9398,
                                  "src": "2063:11:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 9431,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9378,
                                    "src": "2076:7:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 9432,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "cardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9307,
                                  "src": "2076:19:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                ],
                                "expression": {
                                  "id": 9424,
                                  "name": "RingBufferLib",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9933,
                                  "src": "2022:13:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                    "typeString": "type(library RingBufferLib)"
                                  }
                                },
                                "id": 9425,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "offset",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9887,
                                "src": "2022:20:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                  "typeString": "function (uint256,uint256,uint256) pure returns (uint256)"
                                }
                              },
                              "id": 9433,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2022:74:41",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9423,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2015:6:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 9422,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2015:6:41",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 9434,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2015:82:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 9384,
                        "id": 9435,
                        "nodeType": "Return",
                        "src": "2008:89:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9375,
                    "nodeType": "StructuredDocumentation",
                    "src": "1363:219:41",
                    "text": "@notice Get draw ring buffer index pointer.\n @param _buffer The buffer to get the `nextIndex` from.\n @param _drawId The draw id to get the index for.\n @return The draw ring buffer index pointer."
                  },
                  "id": 9437,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getIndex",
                  "nameLocation": "1596:8:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9381,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9378,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "1619:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 9437,
                        "src": "1605:21:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$9308_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 9377,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9376,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9308,
                            "src": "1605:6:41"
                          },
                          "referencedDeclaration": 9308,
                          "src": "1605:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$9308_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9380,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "1635:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 9437,
                        "src": "1628:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9379,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1628:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1604:39:41"
                  },
                  "returnParameters": {
                    "id": 9384,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9383,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9437,
                        "src": "1667:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9382,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1667:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1666:8:41"
                  },
                  "scope": 9438,
                  "src": "1587:517:41",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9439,
              "src": "157:1949:41",
              "usedErrors": []
            }
          ],
          "src": "37:2070:41"
        },
        "id": 41
      },
      "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ]
          },
          "id": 9518,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9440,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:42"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 9441,
                "nodeType": "StructuredDocumentation",
                "src": "61:709:42",
                "text": " @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow\n checks.\n Downcasting from uint256/int256 in Solidity does not revert on overflow. This can\n easily result in undesired exploitation or bugs, since developers usually\n assume that overflows raise errors. `SafeCast` restores this intuition by\n reverting the transaction when such an operation overflows.\n Using this library instead of the unchecked operations eliminates an entire\n class of bugs, so it's recommended to use it always.\n Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing\n all math on `uint256` and `int256` and then downcasting."
              },
              "fullyImplemented": true,
              "id": 9517,
              "linearizedBaseContracts": [
                9517
              ],
              "name": "ExtendedSafeCastLib",
              "nameLocation": "779:19:42",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 9465,
                    "nodeType": "Block",
                    "src": "1158:128:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9456,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9450,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9444,
                                "src": "1176:6:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 9453,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1191:7:42",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint104_$",
                                        "typeString": "type(uint104)"
                                      },
                                      "typeName": {
                                        "id": 9452,
                                        "name": "uint104",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1191:7:42",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint104_$",
                                        "typeString": "type(uint104)"
                                      }
                                    ],
                                    "id": 9451,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1186:4:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 9454,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1186:13:42",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint104",
                                    "typeString": "type(uint104)"
                                  }
                                },
                                "id": 9455,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1186:17:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint104",
                                  "typeString": "uint104"
                                }
                              },
                              "src": "1176:27:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203130342062697473",
                              "id": 9457,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1205:41:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 104 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 104 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5d7f3e1b7e9f9a06fded6b093c6fd1473ca0a14cc4bb683db904e803e2482981",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 104 bits\""
                              }
                            ],
                            "id": 9449,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1168:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9458,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1168:79:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9459,
                        "nodeType": "ExpressionStatement",
                        "src": "1168:79:42"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9462,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9444,
                              "src": "1272:6:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9461,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1264:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint104_$",
                              "typeString": "type(uint104)"
                            },
                            "typeName": {
                              "id": 9460,
                              "name": "uint104",
                              "nodeType": "ElementaryTypeName",
                              "src": "1264:7:42",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 9463,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1264:15:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "functionReturnParameters": 9448,
                        "id": 9464,
                        "nodeType": "Return",
                        "src": "1257:22:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9442,
                    "nodeType": "StructuredDocumentation",
                    "src": "806:280:42",
                    "text": " @dev Returns the downcasted uint104 from uint256, reverting on\n overflow (when the input is greater than largest uint104).\n Counterpart to Solidity's `uint104` operator.\n Requirements:\n - input must fit into 104 bits"
                  },
                  "id": 9466,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint104",
                  "nameLocation": "1100:9:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9445,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9444,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "1118:6:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9466,
                        "src": "1110:14:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9443,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1110:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1109:16:42"
                  },
                  "returnParameters": {
                    "id": 9448,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9447,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9466,
                        "src": "1149:7:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint104",
                          "typeString": "uint104"
                        },
                        "typeName": {
                          "id": 9446,
                          "name": "uint104",
                          "nodeType": "ElementaryTypeName",
                          "src": "1149:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1148:9:42"
                  },
                  "scope": 9517,
                  "src": "1091:195:42",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9490,
                    "nodeType": "Block",
                    "src": "1644:128:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9481,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9475,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9469,
                                "src": "1662:6:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 9478,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1677:7:42",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint208_$",
                                        "typeString": "type(uint208)"
                                      },
                                      "typeName": {
                                        "id": 9477,
                                        "name": "uint208",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1677:7:42",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint208_$",
                                        "typeString": "type(uint208)"
                                      }
                                    ],
                                    "id": 9476,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1672:4:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 9479,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1672:13:42",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint208",
                                    "typeString": "type(uint208)"
                                  }
                                },
                                "id": 9480,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1672:17:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "1662:27:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203230382062697473",
                              "id": 9482,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1691:41:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 208 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 208 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 208 bits\""
                              }
                            ],
                            "id": 9474,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1654:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1654:79:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9484,
                        "nodeType": "ExpressionStatement",
                        "src": "1654:79:42"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9487,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9469,
                              "src": "1758:6:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9486,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1750:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint208_$",
                              "typeString": "type(uint208)"
                            },
                            "typeName": {
                              "id": 9485,
                              "name": "uint208",
                              "nodeType": "ElementaryTypeName",
                              "src": "1750:7:42",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 9488,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1750:15:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "functionReturnParameters": 9473,
                        "id": 9489,
                        "nodeType": "Return",
                        "src": "1743:22:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9467,
                    "nodeType": "StructuredDocumentation",
                    "src": "1292:280:42",
                    "text": " @dev Returns the downcasted uint208 from uint256, reverting on\n overflow (when the input is greater than largest uint208).\n Counterpart to Solidity's `uint208` operator.\n Requirements:\n - input must fit into 208 bits"
                  },
                  "id": 9491,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint208",
                  "nameLocation": "1586:9:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9470,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9469,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "1604:6:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9491,
                        "src": "1596:14:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9468,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1596:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1595:16:42"
                  },
                  "returnParameters": {
                    "id": 9473,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9472,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9491,
                        "src": "1635:7:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 9471,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "1635:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1634:9:42"
                  },
                  "scope": 9517,
                  "src": "1577:195:42",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9515,
                    "nodeType": "Block",
                    "src": "2130:128:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9506,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9500,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9494,
                                "src": "2148:6:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 9503,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2163:7:42",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      },
                                      "typeName": {
                                        "id": 9502,
                                        "name": "uint224",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2163:7:42",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      }
                                    ],
                                    "id": 9501,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2158:4:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 9504,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2158:13:42",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint224",
                                    "typeString": "type(uint224)"
                                  }
                                },
                                "id": 9505,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2158:17:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "2148:27:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473",
                              "id": 9507,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2177:41:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              },
                              "value": "SafeCast: value doesn't fit in 224 bits"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9d2acf551b2466898443b9bc3a403a4d86037386bc5a8960c1bbb0f204e69b79",
                                "typeString": "literal_string \"SafeCast: value doesn't fit in 224 bits\""
                              }
                            ],
                            "id": 9499,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2140:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9508,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2140:79:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9509,
                        "nodeType": "ExpressionStatement",
                        "src": "2140:79:42"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9512,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9494,
                              "src": "2244:6:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9511,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2236:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 9510,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "2236:7:42",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 9513,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2236:15:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 9498,
                        "id": 9514,
                        "nodeType": "Return",
                        "src": "2229:22:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9492,
                    "nodeType": "StructuredDocumentation",
                    "src": "1778:280:42",
                    "text": " @dev Returns the downcasted uint224 from uint256, reverting on\n overflow (when the input is greater than largest uint224).\n Counterpart to Solidity's `uint224` operator.\n Requirements:\n - input must fit into 224 bits"
                  },
                  "id": 9516,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint224",
                  "nameLocation": "2072:9:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9495,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9494,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "2090:6:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9516,
                        "src": "2082:14:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9493,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2082:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2081:16:42"
                  },
                  "returnParameters": {
                    "id": 9498,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9497,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9516,
                        "src": "2121:7:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 9496,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2121:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2120:9:42"
                  },
                  "scope": 9517,
                  "src": "2063:195:42",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9518,
              "src": "771:1489:42",
              "usedErrors": []
            }
          ],
          "src": "37:2224:42"
        },
        "id": 42
      },
      "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol",
          "exportedSymbols": {
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ]
          },
          "id": 9677,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9519,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:43"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 9520,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9677,
              "sourceUnit": 2999,
              "src": "61:57:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol",
              "file": "./OverflowSafeComparatorLib.sol",
              "id": 9521,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9677,
              "sourceUnit": 9849,
              "src": "120:41:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 9522,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9677,
              "sourceUnit": 9934,
              "src": "162:29:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 9523,
                "nodeType": "StructuredDocumentation",
                "src": "193:335:43",
                "text": " @title Observation Library\n @notice This library allows one to store an array of timestamped values and efficiently binary search them.\n @dev Largely pulled from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/c05a0e2c8c08c460fb4d05cfdda30b3ad8deeaac/contracts/libraries/Oracle.sol\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 9676,
              "linearizedBaseContracts": [
                9676
              ],
              "name": "ObservationLib",
              "nameLocation": "537:14:43",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 9526,
                  "libraryName": {
                    "id": 9524,
                    "name": "OverflowSafeComparatorLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9848,
                    "src": "564:25:43"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "558:43:43",
                  "typeName": {
                    "id": 9525,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "594:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  }
                },
                {
                  "id": 9529,
                  "libraryName": {
                    "id": 9527,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2998,
                    "src": "612:8:43"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "606:27:43",
                  "typeName": {
                    "id": 9528,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "625:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 9530,
                    "nodeType": "StructuredDocumentation",
                    "src": "639:46:43",
                    "text": "@notice The maximum number of observations"
                  },
                  "functionSelector": "8200d873",
                  "id": 9533,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "713:15:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9676,
                  "src": "690:49:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9531,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "690:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 9532,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "731:8:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "canonicalName": "ObservationLib.Observation",
                  "id": 9538,
                  "members": [
                    {
                      "constant": false,
                      "id": 9535,
                      "mutability": "mutable",
                      "name": "amount",
                      "nameLocation": "964:6:43",
                      "nodeType": "VariableDeclaration",
                      "scope": 9538,
                      "src": "956:14:43",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 9534,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "956:7:43",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9537,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "987:9:43",
                      "nodeType": "VariableDeclaration",
                      "scope": 9538,
                      "src": "980:16:43",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 9536,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "980:6:43",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Observation",
                  "nameLocation": "934:11:43",
                  "nodeType": "StructDefinition",
                  "scope": 9676,
                  "src": "927:76:43",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 9674,
                    "nodeType": "Block",
                    "src": "2709:1679:43",
                    "statements": [
                      {
                        "assignments": [
                          9564
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9564,
                            "mutability": "mutable",
                            "name": "leftSide",
                            "nameLocation": "2727:8:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9674,
                            "src": "2719:16:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9563,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2719:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9566,
                        "initialValue": {
                          "id": 9565,
                          "name": "_oldestObservationIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9548,
                          "src": "2738:23:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2719:42:43"
                      },
                      {
                        "assignments": [
                          9568
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9568,
                            "mutability": "mutable",
                            "name": "rightSide",
                            "nameLocation": "2779:9:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9674,
                            "src": "2771:17:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9567,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2771:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9579,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 9571,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9569,
                              "name": "_newestObservationIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9546,
                              "src": "2791:23:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<",
                            "rightExpression": {
                              "id": 9570,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9564,
                              "src": "2817:8:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "2791:34:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 9577,
                            "name": "_newestObservationIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9546,
                            "src": "2882:23:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "id": 9578,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2791:114:43",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 9576,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9574,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9572,
                                "name": "leftSide",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9564,
                                "src": "2840:8:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 9573,
                                "name": "_cardinality",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9552,
                                "src": "2851:12:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "src": "2840:23:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 9575,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2866:1:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "2840:27:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2771:134:43"
                      },
                      {
                        "assignments": [
                          9581
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9581,
                            "mutability": "mutable",
                            "name": "currentIndex",
                            "nameLocation": "2923:12:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9674,
                            "src": "2915:20:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9580,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2915:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9582,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2915:20:43"
                      },
                      {
                        "body": {
                          "id": 9672,
                          "nodeType": "Block",
                          "src": "2959:1423:43",
                          "statements": [
                            {
                              "expression": {
                                "id": 9591,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9584,
                                  "name": "currentIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9581,
                                  "src": "3197:12:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 9590,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "components": [
                                      {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 9587,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 9585,
                                          "name": "leftSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9564,
                                          "src": "3213:8:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "id": 9586,
                                          "name": "rightSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9568,
                                          "src": "3224:9:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "3213:20:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "id": 9588,
                                    "isConstant": false,
                                    "isInlineArray": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "TupleExpression",
                                    "src": "3212:22:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "/",
                                  "rightExpression": {
                                    "hexValue": "32",
                                    "id": 9589,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3237:1:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "src": "3212:26:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3197:41:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9592,
                              "nodeType": "ExpressionStatement",
                              "src": "3197:41:43"
                            },
                            {
                              "expression": {
                                "id": 9604,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9593,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9558,
                                  "src": "3253:10:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 9594,
                                    "name": "_observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9544,
                                    "src": "3266:13:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 9603,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 9599,
                                            "name": "currentIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9581,
                                            "src": "3306:12:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          {
                                            "id": 9600,
                                            "name": "_cardinality",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9552,
                                            "src": "3320:12:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          ],
                                          "expression": {
                                            "id": 9597,
                                            "name": "RingBufferLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9933,
                                            "src": "3287:13:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                              "typeString": "type(library RingBufferLib)"
                                            }
                                          },
                                          "id": 9598,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "wrap",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 9865,
                                          "src": "3287:18:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                            "typeString": "function (uint256,uint256) pure returns (uint256)"
                                          }
                                        },
                                        "id": 9601,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3287:46:43",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 9596,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3280:6:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint24_$",
                                        "typeString": "type(uint24)"
                                      },
                                      "typeName": {
                                        "id": 9595,
                                        "name": "uint24",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3280:6:43",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 9602,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3280:54:43",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3266:69:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "3253:82:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 9605,
                              "nodeType": "ExpressionStatement",
                              "src": "3253:82:43"
                            },
                            {
                              "assignments": [
                                9607
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9607,
                                  "mutability": "mutable",
                                  "name": "beforeOrAtTimestamp",
                                  "nameLocation": "3356:19:43",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9672,
                                  "src": "3349:26:43",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 9606,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3349:6:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9610,
                              "initialValue": {
                                "expression": {
                                  "id": 9608,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9558,
                                  "src": "3378:10:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 9609,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9537,
                                "src": "3378:20:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "3349:49:43"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 9613,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 9611,
                                  "name": "beforeOrAtTimestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9607,
                                  "src": "3515:19:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 9612,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "3538:1:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "3515:24:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 9622,
                              "nodeType": "IfStatement",
                              "src": "3511:116:43",
                              "trueBody": {
                                "id": 9621,
                                "nodeType": "Block",
                                "src": "3541:86:43",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 9618,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 9614,
                                        "name": "leftSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9564,
                                        "src": "3559:8:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 9617,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 9615,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9581,
                                          "src": "3570:12:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 9616,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "3585:1:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "3570:16:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3559:27:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 9619,
                                    "nodeType": "ExpressionStatement",
                                    "src": "3559:27:43"
                                  },
                                  {
                                    "id": 9620,
                                    "nodeType": "Continue",
                                    "src": "3604:8:43"
                                  }
                                ]
                              }
                            },
                            {
                              "expression": {
                                "id": 9634,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9623,
                                  "name": "atOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9561,
                                  "src": "3641:9:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 9624,
                                    "name": "_observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9544,
                                    "src": "3653:13:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 9633,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 9629,
                                            "name": "currentIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9581,
                                            "src": "3698:12:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          {
                                            "id": 9630,
                                            "name": "_cardinality",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9552,
                                            "src": "3712:12:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          ],
                                          "expression": {
                                            "id": 9627,
                                            "name": "RingBufferLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9933,
                                            "src": "3674:13:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                              "typeString": "type(library RingBufferLib)"
                                            }
                                          },
                                          "id": 9628,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "nextIndex",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 9932,
                                          "src": "3674:23:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                            "typeString": "function (uint256,uint256) pure returns (uint256)"
                                          }
                                        },
                                        "id": 9631,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3674:51:43",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 9626,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3667:6:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint24_$",
                                        "typeString": "type(uint24)"
                                      },
                                      "typeName": {
                                        "id": 9625,
                                        "name": "uint24",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3667:6:43",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 9632,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3667:59:43",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3653:74:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "3641:86:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 9635,
                              "nodeType": "ExpressionStatement",
                              "src": "3641:86:43"
                            },
                            {
                              "assignments": [
                                9637
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9637,
                                  "mutability": "mutable",
                                  "name": "targetAtOrAfter",
                                  "nameLocation": "3747:15:43",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9672,
                                  "src": "3742:20:43",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "typeName": {
                                    "id": 9636,
                                    "name": "bool",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3742:4:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9643,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 9640,
                                    "name": "_target",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9550,
                                    "src": "3789:7:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 9641,
                                    "name": "_time",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9554,
                                    "src": "3798:5:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 9638,
                                    "name": "beforeOrAtTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9607,
                                    "src": "3765:19:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "id": 9639,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lte",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9789,
                                  "src": "3765:23:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                                    "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                                  }
                                },
                                "id": 9642,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3765:39:43",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "3742:62:43"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 9651,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 9644,
                                  "name": "targetAtOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9637,
                                  "src": "3890:15:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "&&",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 9647,
                                        "name": "atOrAfter",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9561,
                                        "src": "3921:9:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "id": 9648,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "timestamp",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 9537,
                                      "src": "3921:19:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "id": 9649,
                                      "name": "_time",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9554,
                                      "src": "3942:5:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 9645,
                                      "name": "_target",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9550,
                                      "src": "3909:7:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "id": 9646,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lte",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9789,
                                    "src": "3909:11:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                                      "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                                    }
                                  },
                                  "id": 9650,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3909:39:43",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "3890:58:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 9654,
                              "nodeType": "IfStatement",
                              "src": "3886:102:43",
                              "trueBody": {
                                "id": 9653,
                                "nodeType": "Block",
                                "src": "3950:38:43",
                                "statements": [
                                  {
                                    "id": 9652,
                                    "nodeType": "Break",
                                    "src": "3968:5:43"
                                  }
                                ]
                              }
                            },
                            {
                              "condition": {
                                "id": 9656,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "4137:16:43",
                                "subExpression": {
                                  "id": 9655,
                                  "name": "targetAtOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9637,
                                  "src": "4138:15:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 9670,
                                "nodeType": "Block",
                                "src": "4222:150:43",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 9668,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 9664,
                                        "name": "leftSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9564,
                                        "src": "4330:8:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 9667,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 9665,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9581,
                                          "src": "4341:12:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 9666,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "4356:1:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "4341:16:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "4330:27:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 9669,
                                    "nodeType": "ExpressionStatement",
                                    "src": "4330:27:43"
                                  }
                                ]
                              },
                              "id": 9671,
                              "nodeType": "IfStatement",
                              "src": "4133:239:43",
                              "trueBody": {
                                "id": 9663,
                                "nodeType": "Block",
                                "src": "4155:61:43",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 9661,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 9657,
                                        "name": "rightSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9568,
                                        "src": "4173:9:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 9660,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 9658,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9581,
                                          "src": "4185:12:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "-",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 9659,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "4200:1:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "4185:16:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "4173:28:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 9662,
                                    "nodeType": "ExpressionStatement",
                                    "src": "4173:28:43"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "hexValue": "74727565",
                          "id": 9583,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2953:4:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "id": 9673,
                        "nodeType": "WhileStatement",
                        "src": "2946:1436:43"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9539,
                    "nodeType": "StructuredDocumentation",
                    "src": "1009:1368:43",
                    "text": " @notice Fetches Observations `beforeOrAt` and `atOrAfter` a `_target`, eg: where [`beforeOrAt`, `atOrAfter`] is satisfied.\n The result may be the same Observation, or adjacent Observations.\n @dev The answer must be contained in the array used when the target is located within the stored Observation.\n boundaries: older than the most recent Observation and younger, or the same age as, the oldest Observation.\n @dev  If `_newestObservationIndex` is less than `_oldestObservationIndex`, it means that we've wrapped around the circular buffer.\n       So the most recent observation will be at `_oldestObservationIndex + _cardinality - 1`, at the beginning of the circular buffer.\n @param _observations List of Observations to search through.\n @param _newestObservationIndex Index of the newest Observation. Right side of the circular buffer.\n @param _oldestObservationIndex Index of the oldest Observation. Left side of the circular buffer.\n @param _target Timestamp at which we are searching the Observation.\n @param _cardinality Cardinality of the circular buffer we are searching through.\n @param _time Timestamp at which we perform the binary search.\n @return beforeOrAt Observation recorded before, or at, the target.\n @return atOrAfter Observation recorded at, or after, the target."
                  },
                  "id": 9675,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "binarySearch",
                  "nameLocation": "2391:12:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9555,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9544,
                        "mutability": "mutable",
                        "name": "_observations",
                        "nameLocation": "2450:13:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2413:50:43",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9541,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 9540,
                              "name": "Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "2413:11:43"
                            },
                            "referencedDeclaration": 9538,
                            "src": "2413:11:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 9543,
                          "length": {
                            "id": 9542,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9533,
                            "src": "2425:15:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "2413:28:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9546,
                        "mutability": "mutable",
                        "name": "_newestObservationIndex",
                        "nameLocation": "2480:23:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2473:30:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9545,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2473:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9548,
                        "mutability": "mutable",
                        "name": "_oldestObservationIndex",
                        "nameLocation": "2520:23:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2513:30:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9547,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2513:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9550,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "2560:7:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2553:14:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9549,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2553:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9552,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2584:12:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2577:19:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9551,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2577:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9554,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "2613:5:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2606:12:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9553,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2606:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2403:221:43"
                  },
                  "returnParameters": {
                    "id": 9562,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9558,
                        "mutability": "mutable",
                        "name": "beforeOrAt",
                        "nameLocation": "2667:10:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2648:29:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9557,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9556,
                            "name": "Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "2648:11:43"
                          },
                          "referencedDeclaration": 9538,
                          "src": "2648:11:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9561,
                        "mutability": "mutable",
                        "name": "atOrAfter",
                        "nameLocation": "2698:9:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9675,
                        "src": "2679:28:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9560,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9559,
                            "name": "Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "2679:11:43"
                          },
                          "referencedDeclaration": 9538,
                          "src": "2679:11:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2647:61:43"
                  },
                  "scope": 9676,
                  "src": "2382:2006:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9677,
              "src": "529:3861:43",
              "usedErrors": []
            }
          ],
          "src": "37:4354:43"
        },
        "id": 43
      },
      "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol",
          "exportedSymbols": {
            "OverflowSafeComparatorLib": [
              9848
            ]
          },
          "id": 9849,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9678,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:44"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 9679,
                "nodeType": "StructuredDocumentation",
                "src": "61:283:44",
                "text": "@title OverflowSafeComparatorLib library to share comparator functions between contracts\n @dev Code taken from Uniswap V3 Oracle.sol: https://github.com/Uniswap/v3-core/blob/3e88af408132fc957e3e406f65a0ce2b1ca06c3d/contracts/libraries/Oracle.sol\n @author PoolTogether Inc."
              },
              "fullyImplemented": true,
              "id": 9848,
              "linearizedBaseContracts": [
                9848
              ],
              "name": "OverflowSafeComparatorLib",
              "nameLocation": "352:25:44",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 9733,
                    "nodeType": "Block",
                    "src": "923:301:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 9697,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9693,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9691,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9682,
                              "src": "999:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 9692,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9686,
                              "src": "1005:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "999:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9696,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9694,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9684,
                              "src": "1019:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 9695,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9686,
                              "src": "1025:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1019:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "999:36:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9702,
                        "nodeType": "IfStatement",
                        "src": "995:56:44",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9700,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9698,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9682,
                              "src": "1044:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<",
                            "rightExpression": {
                              "id": 9699,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9684,
                              "src": "1049:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1044:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "functionReturnParameters": 9690,
                          "id": 9701,
                          "nodeType": "Return",
                          "src": "1037:14:44"
                        }
                      },
                      {
                        "assignments": [
                          9704
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9704,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "1070:9:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9733,
                            "src": "1062:17:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9703,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1062:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9715,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9707,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9705,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9682,
                              "src": "1082:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 9706,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9686,
                              "src": "1087:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1082:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 9713,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9709,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9682,
                              "src": "1105:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 9712,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 9710,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1110:1:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 9711,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1113:2:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1110:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1105:10:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 9714,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1082:33:44",
                          "trueExpression": {
                            "id": 9708,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9682,
                            "src": "1100:2:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1062:53:44"
                      },
                      {
                        "assignments": [
                          9717
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9717,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "1133:9:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9733,
                            "src": "1125:17:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9716,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1125:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9728,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9720,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9718,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9684,
                              "src": "1145:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 9719,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9686,
                              "src": "1150:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1145:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 9726,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9722,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9684,
                              "src": "1168:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 9725,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 9723,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1173:1:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 9724,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1176:2:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1173:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1168:10:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 9727,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1145:33:44",
                          "trueExpression": {
                            "id": 9721,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9684,
                            "src": "1163:2:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1125:53:44"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9731,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9729,
                            "name": "aAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9704,
                            "src": "1196:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 9730,
                            "name": "bAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9717,
                            "src": "1208:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1196:21:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 9690,
                        "id": 9732,
                        "nodeType": "Return",
                        "src": "1189:28:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9680,
                    "nodeType": "StructuredDocumentation",
                    "src": "384:422:44",
                    "text": "@notice 32-bit timestamps comparator.\n @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n @param _b Timestamp to compare against `_a`.\n @param _timestamp A timestamp truncated to 32 bits.\n @return bool Whether `_a` is chronologically < `_b`."
                  },
                  "id": 9734,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lt",
                  "nameLocation": "820:2:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9687,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9682,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "839:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9734,
                        "src": "832:9:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9681,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "832:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9684,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "858:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9734,
                        "src": "851:9:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9683,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "851:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9686,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "877:10:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9734,
                        "src": "870:17:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9685,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "870:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "822:71:44"
                  },
                  "returnParameters": {
                    "id": 9690,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9689,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9734,
                        "src": "917:4:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 9688,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "917:4:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "916:6:44"
                  },
                  "scope": 9848,
                  "src": "811:413:44",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9788,
                    "nodeType": "Block",
                    "src": "1771:304:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 9752,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9748,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9746,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9737,
                              "src": "1848:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 9747,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9741,
                              "src": "1854:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1848:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9751,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9749,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9739,
                              "src": "1868:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 9750,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9741,
                              "src": "1874:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1868:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "1848:36:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9757,
                        "nodeType": "IfStatement",
                        "src": "1844:57:44",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9755,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9753,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9737,
                              "src": "1893:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 9754,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9739,
                              "src": "1899:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1893:8:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "functionReturnParameters": 9745,
                          "id": 9756,
                          "nodeType": "Return",
                          "src": "1886:15:44"
                        }
                      },
                      {
                        "assignments": [
                          9759
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9759,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "1920:9:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9788,
                            "src": "1912:17:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9758,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1912:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9770,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9762,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9760,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9737,
                              "src": "1932:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 9761,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9741,
                              "src": "1937:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1932:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 9768,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9764,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9737,
                              "src": "1955:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 9767,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 9765,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1960:1:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 9766,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1963:2:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1960:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1955:10:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 9769,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1932:33:44",
                          "trueExpression": {
                            "id": 9763,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9737,
                            "src": "1950:2:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1912:53:44"
                      },
                      {
                        "assignments": [
                          9772
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9772,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "1983:9:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9788,
                            "src": "1975:17:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9771,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1975:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9783,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9775,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9773,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9739,
                              "src": "1995:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 9774,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9741,
                              "src": "2000:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1995:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 9781,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9777,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9739,
                              "src": "2018:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 9780,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 9778,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2023:1:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 9779,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2026:2:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2023:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2018:10:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 9782,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1995:33:44",
                          "trueExpression": {
                            "id": 9776,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9739,
                            "src": "2013:2:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1975:53:44"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9786,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9784,
                            "name": "aAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9759,
                            "src": "2046:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 9785,
                            "name": "bAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9772,
                            "src": "2059:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2046:22:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 9745,
                        "id": 9787,
                        "nodeType": "Return",
                        "src": "2039:29:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9735,
                    "nodeType": "StructuredDocumentation",
                    "src": "1230:423:44",
                    "text": "@notice 32-bit timestamps comparator.\n @dev safe for 0 or 1 overflows, `_a` and `_b` must be chronologically before or equal to time.\n @param _a A comparison timestamp from which to determine the relative position of `_timestamp`.\n @param _b Timestamp to compare against `_a`.\n @param _timestamp A timestamp truncated to 32 bits.\n @return bool Whether `_a` is chronologically <= `_b`."
                  },
                  "id": 9789,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lte",
                  "nameLocation": "1667:3:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9742,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9737,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "1687:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9789,
                        "src": "1680:9:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9736,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1680:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9739,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "1706:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9789,
                        "src": "1699:9:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9738,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1699:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9741,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "1725:10:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9789,
                        "src": "1718:17:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9740,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1718:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1670:71:44"
                  },
                  "returnParameters": {
                    "id": 9745,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9744,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9789,
                        "src": "1765:4:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 9743,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1765:4:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1764:6:44"
                  },
                  "scope": 9848,
                  "src": "1658:417:44",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9846,
                    "nodeType": "Block",
                    "src": "2608:310:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 9807,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9803,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9801,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9792,
                              "src": "2685:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 9802,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9796,
                              "src": "2691:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2685:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9806,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9804,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9794,
                              "src": "2705:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 9805,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9796,
                              "src": "2711:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2705:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "2685:36:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9812,
                        "nodeType": "IfStatement",
                        "src": "2681:56:44",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9810,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9808,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9792,
                              "src": "2730:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 9809,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9794,
                              "src": "2735:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2730:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "functionReturnParameters": 9800,
                          "id": 9811,
                          "nodeType": "Return",
                          "src": "2723:14:44"
                        }
                      },
                      {
                        "assignments": [
                          9814
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9814,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "2756:9:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9846,
                            "src": "2748:17:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9813,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2748:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9825,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9817,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9815,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9792,
                              "src": "2768:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 9816,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9796,
                              "src": "2773:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2768:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 9823,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9819,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9792,
                              "src": "2791:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 9822,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 9820,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2796:1:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 9821,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2799:2:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2796:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2791:10:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 9824,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2768:33:44",
                          "trueExpression": {
                            "id": 9818,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9792,
                            "src": "2786:2:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2748:53:44"
                      },
                      {
                        "assignments": [
                          9827
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9827,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "2819:9:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9846,
                            "src": "2811:17:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9826,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2811:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9838,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 9830,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9828,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9794,
                              "src": "2831:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 9829,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9796,
                              "src": "2836:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2831:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 9836,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9832,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9794,
                              "src": "2854:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 9835,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 9833,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2859:1:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 9834,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2862:2:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2859:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2854:10:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 9837,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2831:33:44",
                          "trueExpression": {
                            "id": 9831,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9794,
                            "src": "2849:2:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2811:53:44"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9843,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9841,
                                "name": "aAdjusted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9814,
                                "src": "2889:9:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 9842,
                                "name": "bAdjusted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9827,
                                "src": "2901:9:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2889:21:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9840,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2882:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 9839,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2882:6:44",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 9844,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2882:29:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 9800,
                        "id": 9845,
                        "nodeType": "Return",
                        "src": "2875:36:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9790,
                    "nodeType": "StructuredDocumentation",
                    "src": "2081:400:44",
                    "text": "@notice 32-bit timestamp subtractor\n @dev safe for 0 or 1 overflows, where `_a` and `_b` must be chronologically before or equal to time\n @param _a The subtraction left operand\n @param _b The subtraction right operand\n @param _timestamp The current time.  Expected to be chronologically after both.\n @return The difference between a and b, adjusted for overflow"
                  },
                  "id": 9847,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkedSub",
                  "nameLocation": "2495:10:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9797,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9792,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "2522:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9847,
                        "src": "2515:9:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9791,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2515:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9794,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "2541:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9847,
                        "src": "2534:9:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9793,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2534:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9796,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "2560:10:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9847,
                        "src": "2553:17:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9795,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2553:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2505:71:44"
                  },
                  "returnParameters": {
                    "id": 9800,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9799,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9847,
                        "src": "2600:6:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9798,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2600:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2599:8:44"
                  },
                  "scope": 9848,
                  "src": "2486:432:44",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9849,
              "src": "344:2576:44",
              "usedErrors": []
            }
          ],
          "src": "37:2884:44"
        },
        "id": 44
      },
      "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
          "exportedSymbols": {
            "RingBufferLib": [
              9933
            ]
          },
          "id": 9934,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9850,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:45"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "fullyImplemented": true,
              "id": 9933,
              "linearizedBaseContracts": [
                9933
              ],
              "name": "RingBufferLib",
              "nameLocation": "69:13:45",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 9864,
                    "nodeType": "Block",
                    "src": "664:45:45",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9862,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9860,
                            "name": "_index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9853,
                            "src": "681:6:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "%",
                          "rightExpression": {
                            "id": 9861,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9855,
                            "src": "690:12:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "681:21:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9859,
                        "id": 9863,
                        "nodeType": "Return",
                        "src": "674:28:45"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9851,
                    "nodeType": "StructuredDocumentation",
                    "src": "89:486:45",
                    "text": " @notice Returns wrapped TWAB index.\n @dev  In order to navigate the TWAB circular buffer, we need to use the modulo operator.\n @dev  For example, if `_index` is equal to 32 and the TWAB circular buffer is of `_cardinality` 32,\n       it will return 0 and will point to the first element of the array.\n @param _index Index used to navigate through the TWAB circular buffer.\n @param _cardinality TWAB buffer cardinality.\n @return TWAB index."
                  },
                  "id": 9865,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "wrap",
                  "nameLocation": "589:4:45",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9856,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9853,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "602:6:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9865,
                        "src": "594:14:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9852,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "594:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9855,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "618:12:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9865,
                        "src": "610:20:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9854,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "610:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "593:38:45"
                  },
                  "returnParameters": {
                    "id": 9859,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9858,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9865,
                        "src": "655:7:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9857,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "655:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "654:9:45"
                  },
                  "scope": 9933,
                  "src": "580:129:45",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9886,
                    "nodeType": "Block",
                    "src": "1319:75:45",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9882,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 9880,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 9878,
                                  "name": "_index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9868,
                                  "src": "1341:6:45",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 9879,
                                  "name": "_cardinality",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9872,
                                  "src": "1350:12:45",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1341:21:45",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 9881,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9870,
                                "src": "1365:7:45",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1341:31:45",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 9883,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9872,
                              "src": "1374:12:45",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9877,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9865,
                            "src": "1336:4:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 9884,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1336:51:45",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9876,
                        "id": 9885,
                        "nodeType": "Return",
                        "src": "1329:58:45"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9866,
                    "nodeType": "StructuredDocumentation",
                    "src": "715:466:45",
                    "text": " @notice Computes the negative offset from the given index, wrapped by the cardinality.\n @dev  We add `_cardinality` to `_index` to be able to offset even if `_amount` is superior to `_cardinality`.\n @param _index The index from which to offset\n @param _amount The number of indices to offset.  This is subtracted from the given index.\n @param _cardinality The number of elements in the ring buffer\n @return Offsetted index."
                  },
                  "id": 9887,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "offset",
                  "nameLocation": "1195:6:45",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9873,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9868,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "1219:6:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9887,
                        "src": "1211:14:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9867,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1211:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9870,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1243:7:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9887,
                        "src": "1235:15:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9869,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1235:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9872,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1268:12:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9887,
                        "src": "1260:20:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9871,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1260:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1201:85:45"
                  },
                  "returnParameters": {
                    "id": 9876,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9875,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9887,
                        "src": "1310:7:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9874,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1310:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1309:9:45"
                  },
                  "scope": 9933,
                  "src": "1186:208:45",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9913,
                    "nodeType": "Block",
                    "src": "1789:139:45",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9899,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9897,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9892,
                            "src": "1803:12:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 9898,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1819:1:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1803:17:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9903,
                        "nodeType": "IfStatement",
                        "src": "1799:56:45",
                        "trueBody": {
                          "id": 9902,
                          "nodeType": "Block",
                          "src": "1822:33:45",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 9900,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1843:1:45",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 9896,
                              "id": 9901,
                              "nodeType": "Return",
                              "src": "1836:8:45"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9909,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 9907,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 9905,
                                  "name": "_nextIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9890,
                                  "src": "1877:10:45",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 9906,
                                  "name": "_cardinality",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9892,
                                  "src": "1890:12:45",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1877:25:45",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 9908,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1905:1:45",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "1877:29:45",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 9910,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9892,
                              "src": "1908:12:45",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9904,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9865,
                            "src": "1872:4:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 9911,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1872:49:45",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9896,
                        "id": 9912,
                        "nodeType": "Return",
                        "src": "1865:56:45"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9888,
                    "nodeType": "StructuredDocumentation",
                    "src": "1400:261:45",
                    "text": "@notice Returns the index of the last recorded TWAB\n @param _nextIndex The next available twab index.  This will be recorded to next.\n @param _cardinality The cardinality of the TWAB history.\n @return The index of the last recorded TWAB"
                  },
                  "id": 9914,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "newestIndex",
                  "nameLocation": "1675:11:45",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9893,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9890,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "1695:10:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9914,
                        "src": "1687:18:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9889,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1687:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9892,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1715:12:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9914,
                        "src": "1707:20:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9891,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1707:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1686:42:45"
                  },
                  "returnParameters": {
                    "id": 9896,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9895,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9914,
                        "src": "1776:7:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9894,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1776:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1775:9:45"
                  },
                  "scope": 9933,
                  "src": "1666:262:45",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9931,
                    "nodeType": "Block",
                    "src": "2380:54:45",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 9927,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9925,
                                "name": "_index",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9917,
                                "src": "2402:6:45",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 9926,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2411:1:45",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "2402:10:45",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 9928,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9919,
                              "src": "2414:12:45",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9924,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9865,
                            "src": "2397:4:45",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 9929,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2397:30:45",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9923,
                        "id": 9930,
                        "nodeType": "Return",
                        "src": "2390:37:45"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9915,
                    "nodeType": "StructuredDocumentation",
                    "src": "1934:324:45",
                    "text": "@notice Computes the ring buffer index that follows the given one, wrapped by cardinality\n @param _index The index to increment\n @param _cardinality The number of elements in the Ring Buffer\n @return The next index relative to the given index.  Will wrap around to 0 if the next index == cardinality"
                  },
                  "id": 9932,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nextIndex",
                  "nameLocation": "2272:9:45",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9920,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9917,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "2290:6:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9932,
                        "src": "2282:14:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9916,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2282:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9919,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2306:12:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 9932,
                        "src": "2298:20:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9918,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2298:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2281:38:45"
                  },
                  "returnParameters": {
                    "id": 9923,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9922,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9932,
                        "src": "2367:7:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9921,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2367:7:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2366:9:45"
                  },
                  "scope": 9933,
                  "src": "2263:171:45",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9934,
              "src": "61:2375:45",
              "usedErrors": []
            }
          ],
          "src": "37:2400:45"
        },
        "id": 45
      },
      "@pooltogether/v4-core/contracts/libraries/TwabLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/TwabLib.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 10684,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9935,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:46"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol",
              "file": "./ExtendedSafeCastLib.sol",
              "id": 9936,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10684,
              "sourceUnit": 9518,
              "src": "61:35:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol",
              "file": "./OverflowSafeComparatorLib.sol",
              "id": 9937,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10684,
              "sourceUnit": 9849,
              "src": "97:41:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 9938,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10684,
              "sourceUnit": 9934,
              "src": "139:29:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol",
              "file": "./ObservationLib.sol",
              "id": 9939,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10684,
              "sourceUnit": 9677,
              "src": "169:30:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 9940,
                "nodeType": "StructuredDocumentation",
                "src": "201:730:46",
                "text": " @title  PoolTogether V4 TwabLib (Library)\n @author PoolTogether Inc Team\n @dev    Time-Weighted Average Balance Library for ERC20 tokens.\n @notice This TwabLib adds on-chain historical lookups to a user(s) time-weighted average balance.\nEach user is mapped to an Account struct containing the TWAB history (ring bufffer) and\nring buffer parameters. Every token.transfer() creates a new TWAB checkpoint. The new TWAB\ncheckpoint is stored in the circular ring buffer, as either a new checkpoint or rewriting\na previous checkpoint with new parameters. The TwabLib (using existing blocktimes 1block/15sec)\nguarantees minimum 7.4 years of search history."
              },
              "fullyImplemented": true,
              "id": 10683,
              "linearizedBaseContracts": [
                10683
              ],
              "name": "TwabLib",
              "nameLocation": "940:7:46",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 9943,
                  "libraryName": {
                    "id": 9941,
                    "name": "OverflowSafeComparatorLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9848,
                    "src": "960:25:46"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "954:43:46",
                  "typeName": {
                    "id": 9942,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "990:6:46",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  }
                },
                {
                  "id": 9946,
                  "libraryName": {
                    "id": 9944,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9517,
                    "src": "1008:19:46"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1002:38:46",
                  "typeName": {
                    "id": 9945,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1032:7:46",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 9947,
                    "nodeType": "StructuredDocumentation",
                    "src": "1046:963:46",
                    "text": " @notice Sets max ring buffer length in the Account.twabs Observation list.\nAs users transfer/mint/burn tickets new Observation checkpoints are\nrecorded. The current max cardinality guarantees a six month minimum,\nof historical accurate lookups with current estimates of 1 new block\nevery 15 seconds - the of course contain a transfer to trigger an\nobservation write to storage.\n @dev    The user Account.AccountDetails.cardinality parameter can NOT exceed\nthe max cardinality variable. Preventing \"corrupted\" ring buffer lookup\npointers and new observation checkpoints.\nThe MAX_CARDINALITY in fact guarantees at least 7.4 years of records:\nIf 14 = block time in seconds\n(2**24) * 14 = 234881024 seconds of history\n234881024 / (365 * 24 * 60 * 60) ~= 7.44 years"
                  },
                  "functionSelector": "8200d873",
                  "id": 9950,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "2037:15:46",
                  "nodeType": "VariableDeclaration",
                  "scope": 10683,
                  "src": "2014:49:46",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9948,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "2014:6:46",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 9949,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "2055:8:46",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "canonicalName": "TwabLib.AccountDetails",
                  "id": 9957,
                  "members": [
                    {
                      "constant": false,
                      "id": 9952,
                      "mutability": "mutable",
                      "name": "balance",
                      "nameLocation": "2567:7:46",
                      "nodeType": "VariableDeclaration",
                      "scope": 9957,
                      "src": "2559:15:46",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint208",
                        "typeString": "uint208"
                      },
                      "typeName": {
                        "id": 9951,
                        "name": "uint208",
                        "nodeType": "ElementaryTypeName",
                        "src": "2559:7:46",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9954,
                      "mutability": "mutable",
                      "name": "nextTwabIndex",
                      "nameLocation": "2591:13:46",
                      "nodeType": "VariableDeclaration",
                      "scope": 9957,
                      "src": "2584:20:46",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      },
                      "typeName": {
                        "id": 9953,
                        "name": "uint24",
                        "nodeType": "ElementaryTypeName",
                        "src": "2584:6:46",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9956,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "2621:11:46",
                      "nodeType": "VariableDeclaration",
                      "scope": 9957,
                      "src": "2614:18:46",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      },
                      "typeName": {
                        "id": 9955,
                        "name": "uint24",
                        "nodeType": "ElementaryTypeName",
                        "src": "2614:6:46",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "AccountDetails",
                  "nameLocation": "2534:14:46",
                  "nodeType": "StructDefinition",
                  "scope": 10683,
                  "src": "2527:112:46",
                  "visibility": "public"
                },
                {
                  "canonicalName": "TwabLib.Account",
                  "id": 9966,
                  "members": [
                    {
                      "constant": false,
                      "id": 9960,
                      "mutability": "mutable",
                      "name": "details",
                      "nameLocation": "2852:7:46",
                      "nodeType": "VariableDeclaration",
                      "scope": 9966,
                      "src": "2837:22:46",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                        "typeString": "struct TwabLib.AccountDetails"
                      },
                      "typeName": {
                        "id": 9959,
                        "nodeType": "UserDefinedTypeName",
                        "pathNode": {
                          "id": 9958,
                          "name": "AccountDetails",
                          "nodeType": "IdentifierPath",
                          "referencedDeclaration": 9957,
                          "src": "2837:14:46"
                        },
                        "referencedDeclaration": 9957,
                        "src": "2837:14:46",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 9965,
                      "mutability": "mutable",
                      "name": "twabs",
                      "nameLocation": "2913:5:46",
                      "nodeType": "VariableDeclaration",
                      "scope": 9966,
                      "src": "2869:49:46",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                        "typeString": "struct ObservationLib.Observation[16777215]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 9962,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9961,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "2869:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "2869:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "id": 9964,
                        "length": {
                          "id": 9963,
                          "name": "MAX_CARDINALITY",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9950,
                          "src": "2896:15:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "2869:43:46",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Account",
                  "nameLocation": "2819:7:46",
                  "nodeType": "StructDefinition",
                  "scope": 10683,
                  "src": "2812:113:46",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 10012,
                    "nodeType": "Block",
                    "src": "3613:239:46",
                    "statements": [
                      {
                        "assignments": [
                          9987
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9987,
                            "mutability": "mutable",
                            "name": "_accountDetails",
                            "nameLocation": "3645:15:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10012,
                            "src": "3623:37:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 9986,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9985,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "3623:14:46"
                              },
                              "referencedDeclaration": 9957,
                              "src": "3623:14:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9990,
                        "initialValue": {
                          "expression": {
                            "id": 9988,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9970,
                            "src": "3663:8:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 9989,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9960,
                          "src": "3663:16:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3623:56:46"
                      },
                      {
                        "expression": {
                          "id": 10001,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 9991,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9978,
                                "src": "3690:14:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 9992,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9981,
                                "src": "3706:4:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 9993,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9983,
                                "src": "3712:5:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 9994,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "3689:29:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 9996,
                                  "name": "_account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9970,
                                  "src": "3731:8:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                    "typeString": "struct TwabLib.Account storage pointer"
                                  }
                                },
                                "id": 9997,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "twabs",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9965,
                                "src": "3731:14:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                }
                              },
                              {
                                "id": 9998,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9987,
                                "src": "3747:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 9999,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9974,
                                "src": "3764:12:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 9995,
                              "name": "_nextTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10643,
                              "src": "3721:9:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                              }
                            },
                            "id": 10000,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3721:56:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "3689:88:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10002,
                        "nodeType": "ExpressionStatement",
                        "src": "3689:88:46"
                      },
                      {
                        "expression": {
                          "id": 10010,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10003,
                              "name": "accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9978,
                              "src": "3787:14:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 10005,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "balance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9952,
                            "src": "3787:22:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            },
                            "id": 10009,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 10006,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9987,
                                "src": "3812:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 10007,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9952,
                              "src": "3812:23:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "id": 10008,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9972,
                              "src": "3838:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "src": "3812:33:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            }
                          },
                          "src": "3787:58:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "id": 10011,
                        "nodeType": "ExpressionStatement",
                        "src": "3787:58:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9967,
                    "nodeType": "StructuredDocumentation",
                    "src": "2931:384:46",
                    "text": "@notice Increases an account's balance and records a new twab.\n @param _account The account whose balance will be increased\n @param _amount The amount to increase the balance by\n @param _currentTime The current time\n @return accountDetails The new AccountDetails\n @return twab The user's latest TWAB\n @return isNew Whether the TWAB is new"
                  },
                  "id": 10013,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseBalance",
                  "nameLocation": "3329:15:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9975,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9970,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "3370:8:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10013,
                        "src": "3354:24:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 9969,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9968,
                            "name": "Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9966,
                            "src": "3354:7:46"
                          },
                          "referencedDeclaration": 9966,
                          "src": "3354:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9972,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3396:7:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10013,
                        "src": "3388:15:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 9971,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "3388:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9974,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "3420:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10013,
                        "src": "3413:19:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9973,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3413:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3344:94:46"
                  },
                  "returnParameters": {
                    "id": 9984,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9978,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "3508:14:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10013,
                        "src": "3486:36:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 9977,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9976,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "3486:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "3486:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9981,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "3570:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10013,
                        "src": "3536:38:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9980,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9979,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "3536:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "3536:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9983,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "3593:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10013,
                        "src": "3588:10:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 9982,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3588:4:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3472:136:46"
                  },
                  "scope": 10683,
                  "src": "3320:532:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10067,
                    "nodeType": "Block",
                    "src": "4819:319:46",
                    "statements": [
                      {
                        "assignments": [
                          10036
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10036,
                            "mutability": "mutable",
                            "name": "_accountDetails",
                            "nameLocation": "4851:15:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10067,
                            "src": "4829:37:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10035,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10034,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "4829:14:46"
                              },
                              "referencedDeclaration": 9957,
                              "src": "4829:14:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10039,
                        "initialValue": {
                          "expression": {
                            "id": 10037,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10017,
                            "src": "4869:8:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 10038,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 9960,
                          "src": "4869:16:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4829:56:46"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              "id": 10044,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 10041,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10036,
                                  "src": "4904:15:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 10042,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9952,
                                "src": "4904:23:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 10043,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10019,
                                "src": "4931:7:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "4904:34:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 10045,
                              "name": "_revertMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10021,
                              "src": "4940:14:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            ],
                            "id": 10040,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4896:7:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10046,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4896:59:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10047,
                        "nodeType": "ExpressionStatement",
                        "src": "4896:59:46"
                      },
                      {
                        "expression": {
                          "id": 10058,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 10048,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10027,
                                "src": "4967:14:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 10049,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10030,
                                "src": "4983:4:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 10050,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10032,
                                "src": "4989:5:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 10051,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "4966:29:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 10053,
                                  "name": "_account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10017,
                                  "src": "5008:8:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                                    "typeString": "struct TwabLib.Account storage pointer"
                                  }
                                },
                                "id": 10054,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "twabs",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9965,
                                "src": "5008:14:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                }
                              },
                              {
                                "id": 10055,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10036,
                                "src": "5024:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 10056,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10023,
                                "src": "5041:12:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 10052,
                              "name": "_nextTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10643,
                              "src": "4998:9:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                              }
                            },
                            "id": 10057,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "4998:56:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "4966:88:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10059,
                        "nodeType": "ExpressionStatement",
                        "src": "4966:88:46"
                      },
                      {
                        "id": 10066,
                        "nodeType": "UncheckedBlock",
                        "src": "5064:68:46",
                        "statements": [
                          {
                            "expression": {
                              "id": 10064,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 10060,
                                  "name": "accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10027,
                                  "src": "5088:14:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 10062,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9952,
                                "src": "5088:22:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "-=",
                              "rightHandSide": {
                                "id": 10063,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10019,
                                "src": "5114:7:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "5088:33:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "id": 10065,
                            "nodeType": "ExpressionStatement",
                            "src": "5088:33:46"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10014,
                    "nodeType": "StructuredDocumentation",
                    "src": "3858:625:46",
                    "text": "@notice Calculates the next TWAB checkpoint for an account with a decreasing balance.\n @dev    With Account struct and amount decreasing calculates the next TWAB observable checkpoint.\n @param _account        Account whose balance will be decreased\n @param _amount         Amount to decrease the balance by\n @param _revertMessage  Revert message for insufficient balance\n @return accountDetails Updated Account.details struct\n @return twab           TWAB observation (with decreasing average)\n @return isNew          Whether TWAB is new or calling twice in the same block"
                  },
                  "id": 10068,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseBalance",
                  "nameLocation": "4497:15:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10024,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10017,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "4538:8:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10068,
                        "src": "4522:24:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 10016,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10015,
                            "name": "Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9966,
                            "src": "4522:7:46"
                          },
                          "referencedDeclaration": 9966,
                          "src": "4522:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$9966_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10019,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "4564:7:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10068,
                        "src": "4556:15:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 10018,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "4556:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10021,
                        "mutability": "mutable",
                        "name": "_revertMessage",
                        "nameLocation": "4595:14:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10068,
                        "src": "4581:28:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 10020,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4581:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10023,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "4626:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10068,
                        "src": "4619:19:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10022,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4619:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4512:132:46"
                  },
                  "returnParameters": {
                    "id": 10033,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10027,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "4714:14:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10068,
                        "src": "4692:36:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10026,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10025,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "4692:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "4692:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10030,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "4776:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10068,
                        "src": "4742:38:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10029,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10028,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "4742:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "4742:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10032,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "4799:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10068,
                        "src": "4794:10:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10031,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4794:4:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4678:136:46"
                  },
                  "scope": 10683,
                  "src": "4488:650:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10105,
                    "nodeType": "Block",
                    "src": "6150:198:46",
                    "statements": [
                      {
                        "assignments": [
                          10089
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10089,
                            "mutability": "mutable",
                            "name": "endTime",
                            "nameLocation": "6167:7:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10105,
                            "src": "6160:14:46",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 10088,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6160:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10096,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 10092,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 10090,
                              "name": "_endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10081,
                              "src": "6177:8:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 10091,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10083,
                              "src": "6188:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "6177:23:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 10094,
                            "name": "_endTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10081,
                            "src": "6218:8:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 10095,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "6177:49:46",
                          "trueExpression": {
                            "id": 10093,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10083,
                            "src": "6203:12:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6160:66:46"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10098,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10074,
                              "src": "6282:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10099,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10077,
                              "src": "6290:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 10100,
                              "name": "_startTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10079,
                              "src": "6307:10:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10101,
                              "name": "endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10089,
                              "src": "6319:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10102,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10083,
                              "src": "6328:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 10097,
                            "name": "_getAverageBalanceBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10311,
                            "src": "6256:25:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 10103,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6256:85:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 10087,
                        "id": 10104,
                        "nodeType": "Return",
                        "src": "6237:104:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10069,
                    "nodeType": "StructuredDocumentation",
                    "src": "5144:733:46",
                    "text": "@notice Calculates the average balance held by a user for a given time frame.\n @dev    Finds the average balance between start and end timestamp epochs.\nValidates the supplied end time is within the range of elapsed time i.e. less then timestamp of now.\n @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n @param _accountDetails User AccountDetails struct loaded in memory\n @param _startTime      Start of timestamp range as an epoch\n @param _endTime        End of timestamp range as an epoch\n @param _currentTime    Block.timestamp\n @return Average balance of user held between epoch timestamps start and end"
                  },
                  "id": 10106,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "5891:24:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10084,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10074,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "5977:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10106,
                        "src": "5925:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10071,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10070,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "5925:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "5925:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10073,
                          "length": {
                            "id": 10072,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "5952:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "5925:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10077,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "6015:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10106,
                        "src": "5993:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10076,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10075,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "5993:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "5993:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10079,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "6047:10:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10106,
                        "src": "6040:17:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10078,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6040:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10081,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "6074:8:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10106,
                        "src": "6067:15:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10080,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6067:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10083,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "6099:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10106,
                        "src": "6092:19:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10082,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6092:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5915:202:46"
                  },
                  "returnParameters": {
                    "id": 10087,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10086,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10106,
                        "src": "6141:7:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10085,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6141:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6140:9:46"
                  },
                  "scope": 10683,
                  "src": "5882:466:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10150,
                    "nodeType": "Block",
                    "src": "6826:287:46",
                    "statements": [
                      {
                        "expression": {
                          "id": 10126,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 10123,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10118,
                            "src": "6836:5:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 10124,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10115,
                              "src": "6844:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 10125,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "nextTwabIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9954,
                            "src": "6844:29:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "6836:37:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 10127,
                        "nodeType": "ExpressionStatement",
                        "src": "6836:37:46"
                      },
                      {
                        "expression": {
                          "id": 10132,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 10128,
                            "name": "twab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10121,
                            "src": "6883:4:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 10129,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10112,
                              "src": "6890:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 10131,
                            "indexExpression": {
                              "id": 10130,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10118,
                              "src": "6897:5:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6890:13:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "6883:20:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 10133,
                        "nodeType": "ExpressionStatement",
                        "src": "6883:20:46"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 10137,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 10134,
                              "name": "twab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10121,
                              "src": "7022:4:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 10135,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "7022:14:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10136,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7040:1:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7022:19:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10149,
                        "nodeType": "IfStatement",
                        "src": "7018:89:46",
                        "trueBody": {
                          "id": 10148,
                          "nodeType": "Block",
                          "src": "7043:64:46",
                          "statements": [
                            {
                              "expression": {
                                "id": 10140,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 10138,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10118,
                                  "src": "7057:5:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 10139,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7065:1:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "7057:9:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 10141,
                              "nodeType": "ExpressionStatement",
                              "src": "7057:9:46"
                            },
                            {
                              "expression": {
                                "id": 10146,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 10142,
                                  "name": "twab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10121,
                                  "src": "7080:4:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 10143,
                                    "name": "_twabs",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10112,
                                    "src": "7087:6:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 10145,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 10144,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7094:1:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "7087:9:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "7080:16:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 10147,
                              "nodeType": "ExpressionStatement",
                              "src": "7080:16:46"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10107,
                    "nodeType": "StructuredDocumentation",
                    "src": "6354:249:46",
                    "text": "@notice Retrieves the oldest TWAB\n @param _twabs The storage array of twabs\n @param _accountDetails The TWAB account details\n @return index The index of the oldest TWAB in the twabs array\n @return twab The oldest TWAB"
                  },
                  "id": 10151,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "oldestTwab",
                  "nameLocation": "6617:10:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10116,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10112,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "6689:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10151,
                        "src": "6637:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10109,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10108,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "6637:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "6637:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10111,
                          "length": {
                            "id": 10110,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "6664:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "6637:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10115,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "6727:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10151,
                        "src": "6705:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10114,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10113,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "6705:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "6705:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6627:121:46"
                  },
                  "returnParameters": {
                    "id": 10122,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10118,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "6779:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10151,
                        "src": "6772:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 10117,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "6772:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10121,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "6820:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10151,
                        "src": "6786:38:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10120,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10119,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "6786:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "6786:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6771:54:46"
                  },
                  "scope": 10683,
                  "src": "6608:505:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10186,
                    "nodeType": "Block",
                    "src": "7591:136:46",
                    "statements": [
                      {
                        "expression": {
                          "id": 10178,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 10168,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10163,
                            "src": "7601:5:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 10173,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10160,
                                      "src": "7642:15:46",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 10174,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextTwabIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9954,
                                    "src": "7642:29:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 10175,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9950,
                                    "src": "7673:15:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 10171,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9933,
                                    "src": "7616:13:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 10172,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "newestIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9914,
                                  "src": "7616:25:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 10176,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7616:73:46",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 10170,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "7609:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 10169,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "7609:6:46",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10177,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7609:81:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "7601:89:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 10179,
                        "nodeType": "ExpressionStatement",
                        "src": "7601:89:46"
                      },
                      {
                        "expression": {
                          "id": 10184,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 10180,
                            "name": "twab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10166,
                            "src": "7700:4:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 10181,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10157,
                              "src": "7707:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 10183,
                            "indexExpression": {
                              "id": 10182,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10163,
                              "src": "7714:5:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "7707:13:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "7700:20:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 10185,
                        "nodeType": "ExpressionStatement",
                        "src": "7700:20:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10152,
                    "nodeType": "StructuredDocumentation",
                    "src": "7119:249:46",
                    "text": "@notice Retrieves the newest TWAB\n @param _twabs The storage array of twabs\n @param _accountDetails The TWAB account details\n @return index The index of the newest TWAB in the twabs array\n @return twab The newest TWAB"
                  },
                  "id": 10187,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "newestTwab",
                  "nameLocation": "7382:10:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10161,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10157,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "7454:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10187,
                        "src": "7402:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10154,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10153,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "7402:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "7402:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10156,
                          "length": {
                            "id": 10155,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "7429:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "7402:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10160,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "7492:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10187,
                        "src": "7470:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10159,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10158,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "7470:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "7470:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7392:121:46"
                  },
                  "returnParameters": {
                    "id": 10167,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10163,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "7544:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10187,
                        "src": "7537:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 10162,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "7537:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10166,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "7585:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10187,
                        "src": "7551:38:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10165,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10164,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "7551:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "7551:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7536:54:46"
                  },
                  "scope": 10683,
                  "src": "7373:354:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10221,
                    "nodeType": "Block",
                    "src": "8261:177:46",
                    "statements": [
                      {
                        "assignments": [
                          10206
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10206,
                            "mutability": "mutable",
                            "name": "timeToTarget",
                            "nameLocation": "8278:12:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10221,
                            "src": "8271:19:46",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 10205,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8271:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10213,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 10209,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 10207,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10198,
                              "src": "8293:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 10208,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10200,
                              "src": "8307:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "8293:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 10211,
                            "name": "_targetTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10198,
                            "src": "8337:11:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 10212,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "8293:55:46",
                          "trueExpression": {
                            "id": 10210,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10200,
                            "src": "8322:12:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8271:77:46"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10215,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10193,
                              "src": "8379:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10216,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10196,
                              "src": "8387:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 10217,
                              "name": "timeToTarget",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10206,
                              "src": "8404:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10218,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10200,
                              "src": "8418:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 10214,
                            "name": "_getBalanceAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10418,
                            "src": "8365:13:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,uint32,uint32) view returns (uint256)"
                            }
                          },
                          "id": 10219,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8365:66:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 10204,
                        "id": 10220,
                        "nodeType": "Return",
                        "src": "8358:73:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10188,
                    "nodeType": "StructuredDocumentation",
                    "src": "7733:291:46",
                    "text": "@notice Retrieves amount at `_targetTime` timestamp\n @param _twabs List of TWABs to search through.\n @param _accountDetails Accounts details\n @param _targetTime Timestamp at which the reserved TWAB should be for.\n @return uint256 TWAB amount at `_targetTime`."
                  },
                  "id": 10222,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "8038:12:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10201,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10193,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "8112:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10222,
                        "src": "8060:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10190,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10189,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "8060:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "8060:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10192,
                          "length": {
                            "id": 10191,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "8087:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "8060:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10196,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "8150:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10222,
                        "src": "8128:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10195,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10194,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "8128:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "8128:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10198,
                        "mutability": "mutable",
                        "name": "_targetTime",
                        "nameLocation": "8182:11:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10222,
                        "src": "8175:18:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10197,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8175:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10200,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "8210:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10222,
                        "src": "8203:19:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10199,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8203:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8050:178:46"
                  },
                  "returnParameters": {
                    "id": 10204,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10203,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10222,
                        "src": "8252:7:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10202,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8252:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8251:9:46"
                  },
                  "scope": 10683,
                  "src": "8029:409:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10310,
                    "nodeType": "Block",
                    "src": "8992:1047:46",
                    "statements": [
                      {
                        "assignments": [
                          10243,
                          10246
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10243,
                            "mutability": "mutable",
                            "name": "oldestTwabIndex",
                            "nameLocation": "9010:15:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10310,
                            "src": "9003:22:46",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 10242,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "9003:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10246,
                            "mutability": "mutable",
                            "name": "oldTwab",
                            "nameLocation": "9061:7:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10310,
                            "src": "9027:41:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10245,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10244,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "9027:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "9027:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10251,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10248,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10228,
                              "src": "9096:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10249,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10231,
                              "src": "9116:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 10247,
                            "name": "oldestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10151,
                            "src": "9072:10:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10250,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9072:69:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9002:139:46"
                      },
                      {
                        "assignments": [
                          10253,
                          10256
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10253,
                            "mutability": "mutable",
                            "name": "newestTwabIndex",
                            "nameLocation": "9160:15:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10310,
                            "src": "9153:22:46",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 10252,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "9153:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10256,
                            "mutability": "mutable",
                            "name": "newTwab",
                            "nameLocation": "9211:7:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10310,
                            "src": "9177:41:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10255,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10254,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "9177:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "9177:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10261,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10258,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10228,
                              "src": "9246:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10259,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10231,
                              "src": "9266:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 10257,
                            "name": "newestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10187,
                            "src": "9222:10:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10260,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9222:69:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9152:139:46"
                      },
                      {
                        "assignments": [
                          10266
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10266,
                            "mutability": "mutable",
                            "name": "startTwab",
                            "nameLocation": "9336:9:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10310,
                            "src": "9302:43:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10265,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10264,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "9302:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "9302:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10277,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10268,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10228,
                              "src": "9376:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10269,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10231,
                              "src": "9396:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 10270,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10256,
                              "src": "9425:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 10271,
                              "name": "oldTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10246,
                              "src": "9446:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 10272,
                              "name": "newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10253,
                              "src": "9467:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 10273,
                              "name": "oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10243,
                              "src": "9496:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 10274,
                              "name": "_startTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10233,
                              "src": "9525:10:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10275,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10237,
                              "src": "9549:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 10267,
                            "name": "_calculateTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10536,
                            "src": "9348:14:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint32,uint32) view returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10276,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9348:223:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9302:269:46"
                      },
                      {
                        "assignments": [
                          10282
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10282,
                            "mutability": "mutable",
                            "name": "endTwab",
                            "nameLocation": "9616:7:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10310,
                            "src": "9582:41:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10281,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10280,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "9582:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "9582:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10293,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10284,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10228,
                              "src": "9654:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10285,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10231,
                              "src": "9674:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 10286,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10256,
                              "src": "9703:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 10287,
                              "name": "oldTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10246,
                              "src": "9724:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 10288,
                              "name": "newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10253,
                              "src": "9745:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 10289,
                              "name": "oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10243,
                              "src": "9774:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 10290,
                              "name": "_endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10235,
                              "src": "9803:8:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10291,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10237,
                              "src": "9825:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 10283,
                            "name": "_calculateTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10536,
                            "src": "9626:14:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,struct ObservationLib.Observation memory,uint24,uint24,uint32,uint32) view returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10292,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9626:221:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9582:265:46"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 10308,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 10298,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 10294,
                                    "name": "endTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10282,
                                    "src": "9905:7:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 10295,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9535,
                                  "src": "9905:14:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 10296,
                                    "name": "startTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10266,
                                    "src": "9922:9:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 10297,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9535,
                                  "src": "9922:16:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "9905:33:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 10299,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "9904:35:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 10302,
                                  "name": "endTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10282,
                                  "src": "9979:7:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 10303,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9537,
                                "src": "9979:17:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 10304,
                                  "name": "startTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10266,
                                  "src": "9998:9:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 10305,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9537,
                                "src": "9998:19:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 10306,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10237,
                                "src": "10019:12:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 10300,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9848,
                                "src": "9942:25:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$9848_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 10301,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9847,
                              "src": "9942:36:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 10307,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9942:90:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "9904:128:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 10241,
                        "id": 10309,
                        "nodeType": "Return",
                        "src": "9897:135:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10223,
                    "nodeType": "StructuredDocumentation",
                    "src": "8444:275:46",
                    "text": "@notice Calculates the average balance held by a user for a given time frame.\n @param _startTime The start time of the time frame.\n @param _endTime The end time of the time frame.\n @return The average balance that the user held during the time frame."
                  },
                  "id": 10311,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getAverageBalanceBetween",
                  "nameLocation": "8733:25:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10238,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10228,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "8820:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10311,
                        "src": "8768:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10225,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10224,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "8768:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "8768:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10227,
                          "length": {
                            "id": 10226,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "8795:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "8768:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10231,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "8858:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10311,
                        "src": "8836:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10230,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10229,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "8836:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "8836:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10233,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "8890:10:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10311,
                        "src": "8883:17:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10232,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8883:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10235,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "8917:8:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10311,
                        "src": "8910:15:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10234,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8910:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10237,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "8942:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10311,
                        "src": "8935:19:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10236,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8935:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8758:202:46"
                  },
                  "returnParameters": {
                    "id": 10241,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10240,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10311,
                        "src": "8983:7:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10239,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8983:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8982:9:46"
                  },
                  "scope": 10683,
                  "src": "8724:1315:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 10417,
                    "nodeType": "Block",
                    "src": "10903:1537:46",
                    "statements": [
                      {
                        "assignments": [
                          10330
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10330,
                            "mutability": "mutable",
                            "name": "newestTwabIndex",
                            "nameLocation": "10920:15:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10417,
                            "src": "10913:22:46",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 10329,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "10913:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10331,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10913:22:46"
                      },
                      {
                        "assignments": [
                          10336
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10336,
                            "mutability": "mutable",
                            "name": "afterOrAt",
                            "nameLocation": "10979:9:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10417,
                            "src": "10945:43:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10335,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10334,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "10945:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "10945:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10337,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10945:43:46"
                      },
                      {
                        "assignments": [
                          10342
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10342,
                            "mutability": "mutable",
                            "name": "beforeOrAt",
                            "nameLocation": "11032:10:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10417,
                            "src": "10998:44:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10341,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10340,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "10998:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "10998:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10343,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10998:44:46"
                      },
                      {
                        "expression": {
                          "id": 10351,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 10344,
                                "name": "newestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10330,
                                "src": "11053:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 10345,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10342,
                                "src": "11070:10:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 10346,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11052:29:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 10348,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10317,
                                "src": "11095:6:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 10349,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10320,
                                "src": "11103:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              ],
                              "id": 10347,
                              "name": "newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10187,
                              "src": "11084:10:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 10350,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11084:35:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11052:67:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10352,
                        "nodeType": "ExpressionStatement",
                        "src": "11052:67:46"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 10356,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10322,
                              "src": "11270:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10357,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10324,
                              "src": "11283:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 10353,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10342,
                                "src": "11245:10:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 10354,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9537,
                              "src": "11245:20:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 10355,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lte",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9789,
                            "src": "11245:24:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 10358,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11245:51:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10363,
                        "nodeType": "IfStatement",
                        "src": "11241:112:46",
                        "trueBody": {
                          "id": 10362,
                          "nodeType": "Block",
                          "src": "11298:55:46",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 10359,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10320,
                                  "src": "11319:15:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 10360,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9952,
                                "src": "11319:23:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "functionReturnParameters": 10328,
                              "id": 10361,
                              "nodeType": "Return",
                              "src": "11312:30:46"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10365
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10365,
                            "mutability": "mutable",
                            "name": "oldestTwabIndex",
                            "nameLocation": "11370:15:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10417,
                            "src": "11363:22:46",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 10364,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "11363:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10366,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11363:22:46"
                      },
                      {
                        "expression": {
                          "id": 10374,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 10367,
                                "name": "oldestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10365,
                                "src": "11442:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 10368,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10342,
                                "src": "11459:10:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 10369,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11441:29:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 10371,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10317,
                                "src": "11484:6:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 10372,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10320,
                                "src": "11492:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              ],
                              "id": 10370,
                              "name": "oldestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10151,
                              "src": "11473:10:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 10373,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11473:35:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11441:67:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10375,
                        "nodeType": "ExpressionStatement",
                        "src": "11441:67:46"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10378,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10342,
                                "src": "11629:10:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 10379,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9537,
                              "src": "11629:20:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10380,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10324,
                              "src": "11651:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10376,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10322,
                              "src": "11614:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 10377,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9734,
                            "src": "11614:14:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 10381,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11614:50:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10385,
                        "nodeType": "IfStatement",
                        "src": "11610:89:46",
                        "trueBody": {
                          "id": 10384,
                          "nodeType": "Block",
                          "src": "11666:33:46",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 10382,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "11687:1:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 10328,
                              "id": 10383,
                              "nodeType": "Return",
                              "src": "11680:8:46"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 10399,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 10386,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10342,
                                "src": "11762:10:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 10387,
                                "name": "afterOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10336,
                                "src": "11774:9:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 10388,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11761:23:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 10391,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10317,
                                "src": "11828:6:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 10392,
                                "name": "newestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10330,
                                "src": "11848:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 10393,
                                "name": "oldestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10365,
                                "src": "11877:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 10394,
                                "name": "_targetTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10322,
                                "src": "11906:11:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 10395,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10320,
                                  "src": "11931:15:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 10396,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9956,
                                "src": "11931:27:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 10397,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10324,
                                "src": "11972:12:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                },
                                {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 10389,
                                "name": "ObservationLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9676,
                                "src": "11787:14:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_ObservationLib_$9676_$",
                                  "typeString": "type(library ObservationLib)"
                                }
                              },
                              "id": 10390,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "binarySearch",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9675,
                              "src": "11787:27:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32) view returns (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 10398,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11787:207:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11761:233:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10400,
                        "nodeType": "ExpressionStatement",
                        "src": "11761:233:46"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 10415,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 10405,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 10401,
                                    "name": "afterOrAt",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10336,
                                    "src": "12300:9:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 10402,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9535,
                                  "src": "12300:16:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 10403,
                                    "name": "beforeOrAt",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10342,
                                    "src": "12319:10:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 10404,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9535,
                                  "src": "12319:17:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "12300:36:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 10406,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12299:38:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 10409,
                                  "name": "afterOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10336,
                                  "src": "12377:9:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 10410,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9537,
                                "src": "12377:19:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 10411,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10342,
                                  "src": "12398:10:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 10412,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9537,
                                "src": "12398:20:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 10413,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10324,
                                "src": "12420:12:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 10407,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9848,
                                "src": "12340:25:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$9848_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 10408,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9847,
                              "src": "12340:36:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 10414,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "12340:93:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "12299:134:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 10328,
                        "id": 10416,
                        "nodeType": "Return",
                        "src": "12280:153:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10312,
                    "nodeType": "StructuredDocumentation",
                    "src": "10045:621:46",
                    "text": "@notice Searches TWAB history and calculate the difference between amount(s)/timestamp(s) to return average balance\nbetween the Observations closes to the supplied targetTime.\n @param _twabs          Individual user Observation recorded checkpoints passed as storage pointer\n @param _accountDetails User AccountDetails struct loaded in memory\n @param _targetTime     Target timestamp to filter Observations in the ring buffer binary search\n @param _currentTime    Block.timestamp\n @return uint256 Time-weighted average amount between two closest observations."
                  },
                  "id": 10418,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getBalanceAt",
                  "nameLocation": "10680:13:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10325,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10317,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "10755:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10418,
                        "src": "10703:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10314,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10313,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "10703:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "10703:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10316,
                          "length": {
                            "id": 10315,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "10730:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "10703:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10320,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "10793:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10418,
                        "src": "10771:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10319,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10318,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "10771:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "10771:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10322,
                        "mutability": "mutable",
                        "name": "_targetTime",
                        "nameLocation": "10825:11:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10418,
                        "src": "10818:18:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10321,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10818:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10324,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "10853:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10418,
                        "src": "10846:19:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10323,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10846:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10693:178:46"
                  },
                  "returnParameters": {
                    "id": 10328,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10327,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10418,
                        "src": "10894:7:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10326,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10894:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10893:9:46"
                  },
                  "scope": 10683,
                  "src": "10671:1769:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 10535,
                    "nodeType": "Block",
                    "src": "14163:1465:46",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 10450,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10439,
                              "src": "14302:16:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10451,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10441,
                              "src": "14320:5:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 10447,
                                "name": "_newestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10430,
                                "src": "14277:11:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 10448,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9537,
                              "src": "14277:21:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 10449,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9734,
                            "src": "14277:24:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 10452,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14277:49:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10461,
                        "nodeType": "IfStatement",
                        "src": "14273:159:46",
                        "trueBody": {
                          "id": 10460,
                          "nodeType": "Block",
                          "src": "14328:104:46",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 10454,
                                    "name": "_newestTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10430,
                                    "src": "14366:11:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 10455,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10427,
                                      "src": "14379:15:46",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 10456,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "balance",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9952,
                                    "src": "14379:23:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint208",
                                      "typeString": "uint208"
                                    }
                                  },
                                  {
                                    "id": 10457,
                                    "name": "_targetTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10439,
                                    "src": "14404:16:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    },
                                    {
                                      "typeIdentifier": "t_uint208",
                                      "typeString": "uint208"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "id": 10453,
                                  "name": "_computeNextTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10568,
                                  "src": "14349:16:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$9538_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$",
                                    "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10458,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14349:72:46",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 10446,
                              "id": 10459,
                              "nodeType": "Return",
                              "src": "14342:79:46"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 10465,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 10462,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10430,
                              "src": "14446:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 10463,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "14446:21:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 10464,
                            "name": "_targetTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10439,
                            "src": "14471:16:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "14446:41:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10469,
                        "nodeType": "IfStatement",
                        "src": "14442:90:46",
                        "trueBody": {
                          "id": 10468,
                          "nodeType": "Block",
                          "src": "14489:43:46",
                          "statements": [
                            {
                              "expression": {
                                "id": 10466,
                                "name": "_newestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10430,
                                "src": "14510:11:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 10446,
                              "id": 10467,
                              "nodeType": "Return",
                              "src": "14503:18:46"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 10473,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 10470,
                              "name": "_oldestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10433,
                              "src": "14546:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 10471,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "14546:21:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 10472,
                            "name": "_targetTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10439,
                            "src": "14571:16:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "14546:41:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10477,
                        "nodeType": "IfStatement",
                        "src": "14542:90:46",
                        "trueBody": {
                          "id": 10476,
                          "nodeType": "Block",
                          "src": "14589:43:46",
                          "statements": [
                            {
                              "expression": {
                                "id": 10474,
                                "name": "_oldestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10433,
                                "src": "14610:11:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 10446,
                              "id": 10475,
                              "nodeType": "Return",
                              "src": "14603:18:46"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10480,
                                "name": "_oldestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10433,
                                "src": "14764:11:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 10481,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9537,
                              "src": "14764:21:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 10482,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10441,
                              "src": "14787:5:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10478,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10439,
                              "src": "14744:16:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 10479,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9734,
                            "src": "14744:19:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_bool_$bound_to$_t_uint32_$",
                              "typeString": "function (uint32,uint32,uint32) pure returns (bool)"
                            }
                          },
                          "id": 10483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14744:49:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10491,
                        "nodeType": "IfStatement",
                        "src": "14740:157:46",
                        "trueBody": {
                          "id": 10490,
                          "nodeType": "Block",
                          "src": "14795:102:46",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 10486,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14853:1:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  {
                                    "id": 10487,
                                    "name": "_targetTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10439,
                                    "src": "14867:16:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 10484,
                                    "name": "ObservationLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9676,
                                    "src": "14816:14:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_ObservationLib_$9676_$",
                                      "typeString": "type(library ObservationLib)"
                                    }
                                  },
                                  "id": 10485,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "Observation",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9538,
                                  "src": "14816:26:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_struct$_Observation_$9538_storage_ptr_$",
                                    "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                  }
                                },
                                "id": 10488,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "structConstructorCall",
                                "lValueRequested": false,
                                "names": [
                                  "amount",
                                  "timestamp"
                                ],
                                "nodeType": "FunctionCall",
                                "src": "14816:70:46",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 10446,
                              "id": 10489,
                              "nodeType": "Return",
                              "src": "14809:77:46"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10496,
                          10499
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10496,
                            "mutability": "mutable",
                            "name": "beforeOrAtStart",
                            "nameLocation": "15022:15:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10535,
                            "src": "14988:49:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10495,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10494,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "14988:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "14988:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10499,
                            "mutability": "mutable",
                            "name": "afterOrAtStart",
                            "nameLocation": "15085:14:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10535,
                            "src": "15051:48:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10498,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10497,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "15051:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "15051:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10510,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10502,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10424,
                              "src": "15157:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10503,
                              "name": "_newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10435,
                              "src": "15181:16:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 10504,
                              "name": "_oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10437,
                              "src": "15215:16:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 10505,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10439,
                              "src": "15249:16:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 10506,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10427,
                                "src": "15283:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 10507,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9956,
                              "src": "15283:27:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 10508,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10441,
                              "src": "15328:5:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10500,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9676,
                              "src": "15112:14:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$9676_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 10501,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "binarySearch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9675,
                            "src": "15112:27:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,uint24,uint24,uint32,uint24,uint32) view returns (struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10509,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15112:235:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_Observation_$9538_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14974:373:46"
                      },
                      {
                        "assignments": [
                          10512
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10512,
                            "mutability": "mutable",
                            "name": "heldBalance",
                            "nameLocation": "15366:11:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10535,
                            "src": "15358:19:46",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 10511,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "15358:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10528,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 10527,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 10517,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 10513,
                                    "name": "afterOrAtStart",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10499,
                                    "src": "15381:14:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 10514,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9535,
                                  "src": "15381:21:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 10515,
                                    "name": "beforeOrAtStart",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10496,
                                    "src": "15405:15:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 10516,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9535,
                                  "src": "15405:22:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "15381:46:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 10518,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "15380:48:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 10521,
                                  "name": "afterOrAtStart",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10499,
                                  "src": "15480:14:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 10522,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9537,
                                "src": "15480:24:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 10523,
                                  "name": "beforeOrAtStart",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10496,
                                  "src": "15506:15:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 10524,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9537,
                                "src": "15506:25:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 10525,
                                "name": "_time",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10441,
                                "src": "15533:5:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 10519,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9848,
                                "src": "15443:25:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$9848_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 10520,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9847,
                              "src": "15443:36:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 10526,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "15443:96:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15380:159:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15358:181:46"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10530,
                              "name": "beforeOrAtStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10496,
                              "src": "15574:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 10531,
                              "name": "heldBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10512,
                              "src": "15591:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            {
                              "id": 10532,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10439,
                              "src": "15604:16:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 10529,
                            "name": "_computeNextTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10568,
                            "src": "15557:16:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$9538_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10533,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15557:64:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "functionReturnParameters": 10446,
                        "id": 10534,
                        "nodeType": "Return",
                        "src": "15550:71:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10419,
                    "nodeType": "StructuredDocumentation",
                    "src": "12446:1279:46",
                    "text": "@notice Calculates a user TWAB for a target timestamp using the historical TWAB records.\nThe balance is linearly interpolated: amount differences / timestamp differences\nusing the simple (after.amount - before.amount / end.timestamp - start.timestamp) formula.\n/** @dev    Binary search in _calculateTwab fails when searching out of bounds. Thus, before\nsearching we exclude target timestamps out of range of newest/oldest TWAB(s).\nIF a search is before or after the range we \"extrapolate\" a Observation from the expected state.\n @param _twabs           Individual user Observation recorded checkpoints passed as storage pointer\n @param _accountDetails  User AccountDetails struct loaded in memory\n @param _newestTwab      Newest TWAB in history (end of ring buffer)\n @param _oldestTwab      Olderst TWAB in history (end of ring buffer)\n @param _newestTwabIndex Pointer in ring buffer to newest TWAB\n @param _oldestTwabIndex Pointer in ring buffer to oldest TWAB\n @param _targetTimestamp Epoch timestamp to calculate for time (T) in the TWAB\n @param _time            Block.timestamp\n @return accountDetails Updated Account.details struct"
                  },
                  "id": 10536,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateTwab",
                  "nameLocation": "13739:14:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10442,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10424,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "13815:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "13763:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10421,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10420,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "13763:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "13763:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10423,
                          "length": {
                            "id": 10422,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "13790:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "13763:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10427,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "13853:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "13831:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10426,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10425,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "13831:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "13831:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10430,
                        "mutability": "mutable",
                        "name": "_newestTwab",
                        "nameLocation": "13912:11:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "13878:45:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10429,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10428,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "13878:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "13878:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10433,
                        "mutability": "mutable",
                        "name": "_oldestTwab",
                        "nameLocation": "13967:11:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "13933:45:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10432,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10431,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "13933:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "13933:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10435,
                        "mutability": "mutable",
                        "name": "_newestTwabIndex",
                        "nameLocation": "13995:16:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "13988:23:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 10434,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "13988:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10437,
                        "mutability": "mutable",
                        "name": "_oldestTwabIndex",
                        "nameLocation": "14028:16:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "14021:23:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 10436,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "14021:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10439,
                        "mutability": "mutable",
                        "name": "_targetTimestamp",
                        "nameLocation": "14061:16:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "14054:23:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10438,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "14054:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10441,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "14094:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "14087:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10440,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "14087:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13753:352:46"
                  },
                  "returnParameters": {
                    "id": 10446,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10445,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10536,
                        "src": "14128:33:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10444,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10443,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "14128:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "14128:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14127:35:46"
                  },
                  "scope": 10683,
                  "src": "13730:1898:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 10567,
                    "nodeType": "Block",
                    "src": "16292:360:46",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "id": 10563,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 10552,
                                  "name": "_currentTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10540,
                                  "src": "16467:12:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 10553,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9535,
                                "src": "16467:19:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 10562,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 10554,
                                  "name": "_currentBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10542,
                                  "src": "16509:15:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 10557,
                                            "name": "_currentTwab",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10540,
                                            "src": "16565:12:46",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                              "typeString": "struct ObservationLib.Observation memory"
                                            }
                                          },
                                          "id": 10558,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 9537,
                                          "src": "16565:22:46",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        {
                                          "id": 10559,
                                          "name": "_time",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 10544,
                                          "src": "16589:5:46",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        ],
                                        "expression": {
                                          "id": 10555,
                                          "name": "_time",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 10544,
                                          "src": "16548:5:46",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        "id": 10556,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "checkedSub",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 9847,
                                        "src": "16548:16:46",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$bound_to$_t_uint32_$",
                                          "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                                        }
                                      },
                                      "id": 10560,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "16548:47:46",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "id": 10561,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "16547:49:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "16509:87:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "16467:129:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            {
                              "id": 10564,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10544,
                              "src": "16625:5:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10550,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9676,
                              "src": "16414:14:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$9676_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 10551,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "Observation",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9538,
                            "src": "16414:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Observation_$9538_storage_ptr_$",
                              "typeString": "type(struct ObservationLib.Observation storage pointer)"
                            }
                          },
                          "id": 10565,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "amount",
                            "timestamp"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "16414:231:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "functionReturnParameters": 10549,
                        "id": 10566,
                        "nodeType": "Return",
                        "src": "16395:250:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10537,
                    "nodeType": "StructuredDocumentation",
                    "src": "15634:453:46",
                    "text": " @notice Calculates the next TWAB using the newestTwab and updated balance.\n @dev    Storage of the TWAB obersation is managed by the calling function and not _computeNextTwab.\n @param _currentTwab    Newest Observation in the Account.twabs list\n @param _currentBalance User balance at time of most recent (newest) checkpoint write\n @param _time           Current block.timestamp\n @return TWAB Observation"
                  },
                  "id": 10568,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_computeNextTwab",
                  "nameLocation": "16101:16:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10545,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10540,
                        "mutability": "mutable",
                        "name": "_currentTwab",
                        "nameLocation": "16161:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10568,
                        "src": "16127:46:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10539,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10538,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "16127:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "16127:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10542,
                        "mutability": "mutable",
                        "name": "_currentBalance",
                        "nameLocation": "16191:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10568,
                        "src": "16183:23:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 10541,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "16183:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10544,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "16223:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10568,
                        "src": "16216:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10543,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "16216:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16117:117:46"
                  },
                  "returnParameters": {
                    "id": 10549,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10548,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10568,
                        "src": "16257:33:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10547,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10546,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "16257:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "16257:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16256:35:46"
                  },
                  "scope": 10683,
                  "src": "16092:560:46",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 10642,
                    "nodeType": "Block",
                    "src": "17566:627:46",
                    "statements": [
                      {
                        "assignments": [
                          null,
                          10594
                        ],
                        "declarations": [
                          null,
                          {
                            "constant": false,
                            "id": 10594,
                            "mutability": "mutable",
                            "name": "_newestTwab",
                            "nameLocation": "17613:11:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10642,
                            "src": "17579:45:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10593,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10592,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "17579:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "17579:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10599,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10596,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10574,
                              "src": "17639:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 10597,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10577,
                              "src": "17647:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 10595,
                            "name": "newestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10187,
                            "src": "17628:10:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$9957_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10598,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17628:35:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$9538_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "17576:87:46"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 10603,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 10600,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10594,
                              "src": "17724:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 10601,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9537,
                            "src": "17724:21:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 10602,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10579,
                            "src": "17749:12:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "17724:37:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10610,
                        "nodeType": "IfStatement",
                        "src": "17720:112:46",
                        "trueBody": {
                          "id": 10609,
                          "nodeType": "Block",
                          "src": "17763:69:46",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "id": 10604,
                                    "name": "_accountDetails",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10577,
                                    "src": "17785:15:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                      "typeString": "struct TwabLib.AccountDetails memory"
                                    }
                                  },
                                  {
                                    "id": 10605,
                                    "name": "_newestTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10594,
                                    "src": "17802:11:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 10606,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "17815:5:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  }
                                ],
                                "id": 10607,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "17784:37:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                                  "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                                }
                              },
                              "functionReturnParameters": 10589,
                              "id": 10608,
                              "nodeType": "Return",
                              "src": "17777:44:46"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10615
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10615,
                            "mutability": "mutable",
                            "name": "newTwab",
                            "nameLocation": "17876:7:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10642,
                            "src": "17842:41:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10614,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10613,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9538,
                                "src": "17842:26:46"
                              },
                              "referencedDeclaration": 9538,
                              "src": "17842:26:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10622,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10617,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10594,
                              "src": "17916:11:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "expression": {
                                "id": 10618,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10577,
                                "src": "17941:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 10619,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9952,
                              "src": "17941:23:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "id": 10620,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10579,
                              "src": "17978:12:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 10616,
                            "name": "_computeNextTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10568,
                            "src": "17886:16:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$9538_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$9538_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 10621,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17886:114:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "17842:158:46"
                      },
                      {
                        "expression": {
                          "id": 10628,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 10623,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10574,
                              "src": "18011:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 10626,
                            "indexExpression": {
                              "expression": {
                                "id": 10624,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10577,
                                "src": "18018:15:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 10625,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextTwabIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 9954,
                              "src": "18018:29:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "18011:37:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10627,
                            "name": "newTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10615,
                            "src": "18051:7:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "src": "18011:47:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage",
                            "typeString": "struct ObservationLib.Observation storage ref"
                          }
                        },
                        "id": 10629,
                        "nodeType": "ExpressionStatement",
                        "src": "18011:47:46"
                      },
                      {
                        "assignments": [
                          10632
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10632,
                            "mutability": "mutable",
                            "name": "nextAccountDetails",
                            "nameLocation": "18091:18:46",
                            "nodeType": "VariableDeclaration",
                            "scope": 10642,
                            "src": "18069:40:46",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10631,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10630,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9957,
                                "src": "18069:14:46"
                              },
                              "referencedDeclaration": 9957,
                              "src": "18069:14:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10636,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10634,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10577,
                              "src": "18117:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 10633,
                            "name": "push",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10682,
                            "src": "18112:4:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_AccountDetails_$9957_memory_ptr_$returns$_t_struct$_AccountDetails_$9957_memory_ptr_$",
                              "typeString": "function (struct TwabLib.AccountDetails memory) pure returns (struct TwabLib.AccountDetails memory)"
                            }
                          },
                          "id": 10635,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "18112:21:46",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                            "typeString": "struct TwabLib.AccountDetails memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "18069:64:46"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "id": 10637,
                              "name": "nextAccountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10632,
                              "src": "18152:18:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 10638,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10615,
                              "src": "18172:7:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "hexValue": "74727565",
                              "id": 10639,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "bool",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "18181:4:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "value": "true"
                            }
                          ],
                          "id": 10640,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "18151:35:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$9957_memory_ptr_$_t_struct$_Observation_$9538_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "functionReturnParameters": 10589,
                        "id": 10641,
                        "nodeType": "Return",
                        "src": "18144:42:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10569,
                    "nodeType": "StructuredDocumentation",
                    "src": "16658:561:46",
                    "text": "@notice Sets a new TWAB Observation at the next available index and returns the new account details.\n @dev Note that if _currentTime is before the last observation timestamp, it appears as an overflow\n @param _twabs The twabs array to insert into\n @param _accountDetails The current account details\n @param _currentTime The current time\n @return accountDetails The new account details\n @return twab The newest twab (may or may not be brand-new)\n @return isNew Whether the newest twab was created by this call"
                  },
                  "id": 10643,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_nextTwab",
                  "nameLocation": "17233:9:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10580,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10574,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "17304:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10643,
                        "src": "17252:58:46",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10571,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10570,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 9538,
                              "src": "17252:26:46"
                            },
                            "referencedDeclaration": 9538,
                            "src": "17252:26:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 10573,
                          "length": {
                            "id": 10572,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "17279:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "17252:43:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$9538_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10577,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "17342:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10643,
                        "src": "17320:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10576,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10575,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "17320:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "17320:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10579,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "17374:12:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10643,
                        "src": "17367:19:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10578,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "17367:6:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17242:150:46"
                  },
                  "returnParameters": {
                    "id": 10589,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10583,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "17461:14:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10643,
                        "src": "17439:36:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10582,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10581,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "17439:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "17439:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10586,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "17523:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10643,
                        "src": "17489:38:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$9538_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 10585,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10584,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9538,
                            "src": "17489:26:46"
                          },
                          "referencedDeclaration": 9538,
                          "src": "17489:26:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$9538_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10588,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "17546:5:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10643,
                        "src": "17541:10:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10587,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "17541:4:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17425:136:46"
                  },
                  "scope": 10683,
                  "src": "17224:969:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 10681,
                    "nodeType": "Block",
                    "src": "18575:739:46",
                    "statements": [
                      {
                        "expression": {
                          "id": 10665,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10653,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10647,
                              "src": "18585:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 10655,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "nextTwabIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9954,
                            "src": "18585:29:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 10660,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10647,
                                      "src": "18661:15:46",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 10661,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextTwabIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9954,
                                    "src": "18661:29:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 10662,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9950,
                                    "src": "18692:15:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 10658,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9933,
                                    "src": "18637:13:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$9933_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 10659,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "nextIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9932,
                                  "src": "18637:23:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 10663,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "18637:71:46",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 10657,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "18617:6:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 10656,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "18617:6:46",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10664,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "18617:101:46",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "18585:133:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 10666,
                        "nodeType": "ExpressionStatement",
                        "src": "18585:133:46"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          },
                          "id": 10670,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 10667,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10647,
                              "src": "19171:15:46",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 10668,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9956,
                            "src": "19171:27:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 10669,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9950,
                            "src": "19201:15:46",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "19171:45:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10678,
                        "nodeType": "IfStatement",
                        "src": "19167:108:46",
                        "trueBody": {
                          "id": 10677,
                          "nodeType": "Block",
                          "src": "19218:57:46",
                          "statements": [
                            {
                              "expression": {
                                "id": 10675,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "expression": {
                                    "id": 10671,
                                    "name": "_accountDetails",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10647,
                                    "src": "19232:15:46",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                                      "typeString": "struct TwabLib.AccountDetails memory"
                                    }
                                  },
                                  "id": 10673,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "memberName": "cardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9956,
                                  "src": "19232:27:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "hexValue": "31",
                                  "id": 10674,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "19263:1:46",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "19232:32:46",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 10676,
                              "nodeType": "ExpressionStatement",
                              "src": "19232:32:46"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 10679,
                          "name": "_accountDetails",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10647,
                          "src": "19292:15:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                            "typeString": "struct TwabLib.AccountDetails memory"
                          }
                        },
                        "functionReturnParameters": 10652,
                        "id": 10680,
                        "nodeType": "Return",
                        "src": "19285:22:46"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10644,
                    "nodeType": "StructuredDocumentation",
                    "src": "18199:244:46",
                    "text": "@notice \"Pushes\" a new element on the AccountDetails ring buffer, and returns the new AccountDetails\n @param _accountDetails The account details from which to pull the cardinality and next index\n @return The new AccountDetails"
                  },
                  "id": 10682,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "18457:4:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10648,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10647,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "18484:15:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10682,
                        "src": "18462:37:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10646,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10645,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "18462:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "18462:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18461:39:46"
                  },
                  "returnParameters": {
                    "id": 10652,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10651,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10682,
                        "src": "18548:21:46",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$9957_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 10650,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10649,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9957,
                            "src": "18548:14:46"
                          },
                          "referencedDeclaration": 9957,
                          "src": "18548:14:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$9957_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18547:23:46"
                  },
                  "scope": 10683,
                  "src": "18448:866:46",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 10684,
              "src": "932:18384:46",
              "usedErrors": []
            }
          ],
          "src": "37:19280:46"
        },
        "id": 46
      },
      "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DelegateSignature": [
              10705
            ],
            "EIP2612PermitAndDeposit": [
              10908
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IERC20Permit": [
              893
            ],
            "IPrizePool": [
              8967
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "Signature": [
              10699
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 10909,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10685,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:47"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 10686,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10909,
              "sourceUnit": 664,
              "src": "61:56:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "id": 10687,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10909,
              "sourceUnit": 894,
              "src": "118:79:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 10688,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10909,
              "sourceUnit": 1118,
              "src": "198:65:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 10689,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10909,
              "sourceUnit": 8968,
              "src": "265:38:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 10690,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10909,
              "sourceUnit": 9298,
              "src": "304:35:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "canonicalName": "Signature",
              "id": 10699,
              "members": [
                {
                  "constant": false,
                  "id": 10692,
                  "mutability": "mutable",
                  "name": "deadline",
                  "nameLocation": "602:8:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 10699,
                  "src": "594:16:47",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10691,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "594:7:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10694,
                  "mutability": "mutable",
                  "name": "v",
                  "nameLocation": "622:1:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 10699,
                  "src": "616:7:47",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 10693,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "616:5:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10696,
                  "mutability": "mutable",
                  "name": "r",
                  "nameLocation": "637:1:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 10699,
                  "src": "629:9:47",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10695,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "629:7:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10698,
                  "mutability": "mutable",
                  "name": "s",
                  "nameLocation": "652:1:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 10699,
                  "src": "644:9:47",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 10697,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "644:7:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "name": "Signature",
              "nameLocation": "578:9:47",
              "nodeType": "StructDefinition",
              "scope": 10909,
              "src": "571:85:47",
              "visibility": "public"
            },
            {
              "canonicalName": "DelegateSignature",
              "id": 10705,
              "members": [
                {
                  "constant": false,
                  "id": 10701,
                  "mutability": "mutable",
                  "name": "delegate",
                  "nameLocation": "883:8:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 10705,
                  "src": "875:16:47",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10700,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "875:7:47",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10704,
                  "mutability": "mutable",
                  "name": "signature",
                  "nameLocation": "907:9:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 10705,
                  "src": "897:19:47",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Signature_$10699_storage_ptr",
                    "typeString": "struct Signature"
                  },
                  "typeName": {
                    "id": 10703,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 10702,
                      "name": "Signature",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 10699,
                      "src": "897:9:47"
                    },
                    "referencedDeclaration": 10699,
                    "src": "897:9:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Signature_$10699_storage_ptr",
                      "typeString": "struct Signature"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "name": "DelegateSignature",
              "nameLocation": "851:17:47",
              "nodeType": "StructDefinition",
              "scope": 10909,
              "src": "844:75:47",
              "visibility": "public"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 10706,
                "nodeType": "StructuredDocumentation",
                "src": "921:188:47",
                "text": "@title Allows users to approve and deposit EIP-2612 compatible tokens into a prize pool in a single transaction.\n @custom:experimental This contract has not been fully audited yet."
              },
              "fullyImplemented": true,
              "id": 10908,
              "linearizedBaseContracts": [
                10908
              ],
              "name": "EIP2612PermitAndDeposit",
              "nameLocation": "1118:23:47",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 10710,
                  "libraryName": {
                    "id": 10707,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1154:9:47"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1148:27:47",
                  "typeName": {
                    "id": 10709,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 10708,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1168:6:47"
                    },
                    "referencedDeclaration": 663,
                    "src": "1168:6:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "body": {
                    "id": 10773,
                    "nodeType": "Block",
                    "src": "1919:546:47",
                    "statements": [
                      {
                        "assignments": [
                          10729
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10729,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "1937:7:47",
                            "nodeType": "VariableDeclaration",
                            "scope": 10773,
                            "src": "1929:15:47",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 10728,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10727,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9297,
                                "src": "1929:7:47"
                              },
                              "referencedDeclaration": 9297,
                              "src": "1929:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10733,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 10730,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10714,
                              "src": "1947:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 10731,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8876,
                            "src": "1947:20:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$9297_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 10732,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1947:22:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1929:40:47"
                      },
                      {
                        "assignments": [
                          10735
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10735,
                            "mutability": "mutable",
                            "name": "_token",
                            "nameLocation": "1987:6:47",
                            "nodeType": "VariableDeclaration",
                            "scope": 10773,
                            "src": "1979:14:47",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10734,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1979:7:47",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10739,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 10736,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10714,
                              "src": "1996:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 10737,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8882,
                            "src": "1996:19:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                              "typeString": "function () view external returns (address)"
                            }
                          },
                          "id": 10738,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1996:21:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1979:38:47"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10744,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2069:3:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 10745,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2069:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 10748,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2101:4:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$10908",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$10908",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                ],
                                "id": 10747,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2093:7:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 10746,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2093:7:47",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10749,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2093:13:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10750,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10716,
                              "src": "2120:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 10751,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10721,
                                "src": "2141:16:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 10752,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "deadline",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10692,
                              "src": "2141:25:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 10753,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10721,
                                "src": "2180:16:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 10754,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "v",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10694,
                              "src": "2180:18:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "expression": {
                                "id": 10755,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10721,
                                "src": "2212:16:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 10756,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "r",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10696,
                              "src": "2212:18:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "expression": {
                                "id": 10757,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10721,
                                "src": "2244:16:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 10758,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "s",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10698,
                              "src": "2244:18:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 10741,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10735,
                                  "src": "2041:6:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 10740,
                                "name": "IERC20Permit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 893,
                                "src": "2028:12:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20Permit_$893_$",
                                  "typeString": "type(contract IERC20Permit)"
                                }
                              },
                              "id": 10742,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2028:20:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20Permit_$893",
                                "typeString": "contract IERC20Permit"
                              }
                            },
                            "id": 10743,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "permit",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 878,
                            "src": "2028:27:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$__$",
                              "typeString": "function (address,address,uint256,uint256,uint8,bytes32,bytes32) external"
                            }
                          },
                          "id": 10759,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2028:244:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10760,
                        "nodeType": "ExpressionStatement",
                        "src": "2028:244:47"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 10764,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10714,
                                  "src": "2326:10:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                    "typeString": "contract IPrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                    "typeString": "contract IPrizePool"
                                  }
                                ],
                                "id": 10763,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2318:7:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 10762,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2318:7:47",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10765,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2318:19:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10766,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10729,
                              "src": "2351:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 10767,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10735,
                              "src": "2372:6:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10768,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10716,
                              "src": "2392:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 10769,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10718,
                              "src": "2413:3:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10770,
                              "name": "_delegateSignature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10724,
                              "src": "2430:18:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            ],
                            "id": 10761,
                            "name": "_depositToAndDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10864,
                            "src": "2283:21:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_contract$_ITicket_$9297_$_t_address_$_t_uint256_$_t_address_$_t_struct$_DelegateSignature_$10705_calldata_ptr_$returns$__$",
                              "typeString": "function (address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)"
                            }
                          },
                          "id": 10771,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2283:175:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10772,
                        "nodeType": "ExpressionStatement",
                        "src": "2283:175:47"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10711,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:502:47",
                    "text": " @notice Permits this contract to spend on a user's behalf and deposits into the prize pool.\n @dev The `spender` address required by the permit function is the address of this contract.\n @param _prizePool Address of the prize pool to deposit into\n @param _amount Amount of tokens to deposit into the prize pool\n @param _to Address that will receive the tickets\n @param _permitSignature Permit signature\n @param _delegateSignature Delegate signature"
                  },
                  "functionSelector": "a81bc43b",
                  "id": 10774,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permitAndDepositToAndDelegate",
                  "nameLocation": "1697:29:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10725,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10714,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "1747:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10774,
                        "src": "1736:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$8967",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 10713,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10712,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8967,
                            "src": "1736:10:47"
                          },
                          "referencedDeclaration": 8967,
                          "src": "1736:10:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10716,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1775:7:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10774,
                        "src": "1767:15:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10715,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1767:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10718,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "1800:3:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10774,
                        "src": "1792:11:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10717,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1792:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10721,
                        "mutability": "mutable",
                        "name": "_permitSignature",
                        "nameLocation": "1832:16:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10774,
                        "src": "1813:35:47",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Signature_$10699_calldata_ptr",
                          "typeString": "struct Signature"
                        },
                        "typeName": {
                          "id": 10720,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10719,
                            "name": "Signature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10699,
                            "src": "1813:9:47"
                          },
                          "referencedDeclaration": 10699,
                          "src": "1813:9:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$10699_storage_ptr",
                            "typeString": "struct Signature"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10724,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "1885:18:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10774,
                        "src": "1858:45:47",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 10723,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10722,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10705,
                            "src": "1858:17:47"
                          },
                          "referencedDeclaration": 10705,
                          "src": "1858:17:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$10705_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1726:183:47"
                  },
                  "returnParameters": {
                    "id": 10726,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1919:0:47"
                  },
                  "scope": 10908,
                  "src": "1688:777:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 10813,
                    "nodeType": "Block",
                    "src": "2988:291:47",
                    "statements": [
                      {
                        "assignments": [
                          10790
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10790,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "3006:7:47",
                            "nodeType": "VariableDeclaration",
                            "scope": 10813,
                            "src": "2998:15:47",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 10789,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10788,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9297,
                                "src": "2998:7:47"
                              },
                              "referencedDeclaration": 9297,
                              "src": "2998:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10794,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 10791,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10778,
                              "src": "3016:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 10792,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8876,
                            "src": "3016:20:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$9297_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 10793,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3016:22:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2998:40:47"
                      },
                      {
                        "assignments": [
                          10796
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10796,
                            "mutability": "mutable",
                            "name": "_token",
                            "nameLocation": "3056:6:47",
                            "nodeType": "VariableDeclaration",
                            "scope": 10813,
                            "src": "3048:14:47",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10795,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "3048:7:47",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10800,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 10797,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10778,
                              "src": "3065:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 10798,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8882,
                            "src": "3065:19:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                              "typeString": "function () view external returns (address)"
                            }
                          },
                          "id": 10799,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3065:21:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3048:38:47"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 10804,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10778,
                                  "src": "3140:10:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                    "typeString": "contract IPrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                    "typeString": "contract IPrizePool"
                                  }
                                ],
                                "id": 10803,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3132:7:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 10802,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3132:7:47",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10805,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3132:19:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10806,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10790,
                              "src": "3165:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 10807,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10796,
                              "src": "3186:6:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10808,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10780,
                              "src": "3206:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 10809,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10782,
                              "src": "3227:3:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10810,
                              "name": "_delegateSignature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10785,
                              "src": "3244:18:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            ],
                            "id": 10801,
                            "name": "_depositToAndDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10864,
                            "src": "3097:21:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_contract$_ITicket_$9297_$_t_address_$_t_uint256_$_t_address_$_t_struct$_DelegateSignature_$10705_calldata_ptr_$returns$__$",
                              "typeString": "function (address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)"
                            }
                          },
                          "id": 10811,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3097:175:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10812,
                        "nodeType": "ExpressionStatement",
                        "src": "3097:175:47"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10775,
                    "nodeType": "StructuredDocumentation",
                    "src": "2471:335:47",
                    "text": " @notice Deposits user's token into the prize pool and delegate tickets.\n @param _prizePool Address of the prize pool to deposit into\n @param _amount Amount of tokens to deposit into the prize pool\n @param _to Address that will receive the tickets\n @param _delegateSignature Delegate signature"
                  },
                  "functionSelector": "c00dbd51",
                  "id": 10814,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToAndDelegate",
                  "nameLocation": "2820:20:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10786,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10778,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "2861:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10814,
                        "src": "2850:21:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$8967",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 10777,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10776,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8967,
                            "src": "2850:10:47"
                          },
                          "referencedDeclaration": 8967,
                          "src": "2850:10:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10780,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2889:7:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10814,
                        "src": "2881:15:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10779,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2881:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10782,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "2914:3:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10814,
                        "src": "2906:11:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10781,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2906:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10785,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "2954:18:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10814,
                        "src": "2927:45:47",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 10784,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10783,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10705,
                            "src": "2927:17:47"
                          },
                          "referencedDeclaration": 10705,
                          "src": "2927:17:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$10705_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2840:138:47"
                  },
                  "returnParameters": {
                    "id": 10787,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2988:0:47"
                  },
                  "scope": 10908,
                  "src": "2811:468:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 10863,
                    "nodeType": "Block",
                    "src": "3996:356:47",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10833,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10822,
                              "src": "4017:6:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 10834,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "4025:3:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 10835,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "4025:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10836,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10824,
                              "src": "4037:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 10837,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10817,
                              "src": "4046:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10838,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10826,
                              "src": "4058:3:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10832,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10907,
                            "src": "4006:10:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address,uint256,address,address)"
                            }
                          },
                          "id": 10839,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4006:56:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10840,
                        "nodeType": "ExpressionStatement",
                        "src": "4006:56:47"
                      },
                      {
                        "assignments": [
                          10843
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10843,
                            "mutability": "mutable",
                            "name": "signature",
                            "nameLocation": "4090:9:47",
                            "nodeType": "VariableDeclaration",
                            "scope": 10863,
                            "src": "4073:26:47",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Signature_$10699_memory_ptr",
                              "typeString": "struct Signature"
                            },
                            "typeName": {
                              "id": 10842,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10841,
                                "name": "Signature",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 10699,
                                "src": "4073:9:47"
                              },
                              "referencedDeclaration": 10699,
                              "src": "4073:9:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Signature_$10699_storage_ptr",
                                "typeString": "struct Signature"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10846,
                        "initialValue": {
                          "expression": {
                            "id": 10844,
                            "name": "_delegateSignature",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10829,
                            "src": "4102:18:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                              "typeString": "struct DelegateSignature calldata"
                            }
                          },
                          "id": 10845,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "signature",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 10704,
                          "src": "4102:28:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$10699_calldata_ptr",
                            "typeString": "struct Signature calldata"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4073:57:47"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10850,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10826,
                              "src": "4184:3:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 10851,
                                "name": "_delegateSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10829,
                                "src": "4201:18:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                                  "typeString": "struct DelegateSignature calldata"
                                }
                              },
                              "id": 10852,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "delegate",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10701,
                              "src": "4201:27:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 10853,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10843,
                                "src": "4242:9:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 10854,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "deadline",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10692,
                              "src": "4242:18:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 10855,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10843,
                                "src": "4274:9:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 10856,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "v",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10694,
                              "src": "4274:11:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "expression": {
                                "id": 10857,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10843,
                                "src": "4299:9:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 10858,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "r",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10696,
                              "src": "4299:11:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "expression": {
                                "id": 10859,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10843,
                                "src": "4324:9:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$10699_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 10860,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "s",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10698,
                              "src": "4324:11:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 10847,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10820,
                              "src": "4141:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 10849,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "delegateWithSignature",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9196,
                            "src": "4141:29:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$__$",
                              "typeString": "function (address,address,uint256,uint8,bytes32,bytes32) external"
                            }
                          },
                          "id": 10861,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4141:204:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10862,
                        "nodeType": "ExpressionStatement",
                        "src": "4141:204:47"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10815,
                    "nodeType": "StructuredDocumentation",
                    "src": "3285:482:47",
                    "text": " @notice Deposits user's token into the prize pool and delegate tickets.\n @param _prizePool Address of the prize pool to deposit into\n @param _ticket Address of the ticket minted by the prize pool\n @param _token Address of the token used to deposit into the prize pool\n @param _amount Amount of tokens to deposit into the prize pool\n @param _to Address that will receive the tickets\n @param _delegateSignature Delegate signature"
                  },
                  "id": 10864,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositToAndDelegate",
                  "nameLocation": "3781:21:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10830,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10817,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "3820:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10864,
                        "src": "3812:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10816,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3812:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10820,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "3848:7:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10864,
                        "src": "3840:15:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 10819,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10818,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "3840:7:47"
                          },
                          "referencedDeclaration": 9297,
                          "src": "3840:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10822,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "3873:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10864,
                        "src": "3865:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10821,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3865:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10824,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3897:7:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10864,
                        "src": "3889:15:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10823,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3889:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10826,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "3922:3:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10864,
                        "src": "3914:11:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10825,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3914:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10829,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "3962:18:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10864,
                        "src": "3935:45:47",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$10705_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 10828,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10827,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10705,
                            "src": "3935:17:47"
                          },
                          "referencedDeclaration": 10705,
                          "src": "3935:17:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$10705_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3802:184:47"
                  },
                  "returnParameters": {
                    "id": 10831,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3996:0:47"
                  },
                  "scope": 10908,
                  "src": "3772:580:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10906,
                    "nodeType": "Block",
                    "src": "4892:203:47",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10882,
                              "name": "_owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10869,
                              "src": "4934:6:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 10885,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "4950:4:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$10908",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$10908",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                ],
                                "id": 10884,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4942:7:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 10883,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4942:7:47",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10886,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4942:13:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10887,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10871,
                              "src": "4957:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 10879,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10867,
                                  "src": "4909:6:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 10878,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 663,
                                "src": "4902:6:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 10880,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4902:14:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 10881,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 950,
                            "src": "4902:31:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 10888,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4902:63:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10889,
                        "nodeType": "ExpressionStatement",
                        "src": "4902:63:47"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10894,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10873,
                              "src": "5012:10:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10895,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10871,
                              "src": "5024:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 10891,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10867,
                                  "src": "4982:6:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 10890,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 663,
                                "src": "4975:6:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 10892,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4975:14:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 10893,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeIncreaseAllowance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1030,
                            "src": "4975:36:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 10896,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4975:57:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10897,
                        "nodeType": "ExpressionStatement",
                        "src": "4975:57:47"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10902,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10875,
                              "src": "5075:3:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10903,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10871,
                              "src": "5080:7:47",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 10899,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10873,
                                  "src": "5053:10:47",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 10898,
                                "name": "IPrizePool",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8967,
                                "src": "5042:10:47",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IPrizePool_$8967_$",
                                  "typeString": "type(contract IPrizePool)"
                                }
                              },
                              "id": 10900,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5042:22:47",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 10901,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "depositTo",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8797,
                            "src": "5042:32:47",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 10904,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5042:46:47",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10905,
                        "nodeType": "ExpressionStatement",
                        "src": "5042:46:47"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10865,
                    "nodeType": "StructuredDocumentation",
                    "src": "4358:372:47",
                    "text": " @notice Deposits user's token into the prize pool.\n @param _token Address of the EIP-2612 token to approve and deposit\n @param _owner Token owner's address (Authorizer)\n @param _amount Amount of tokens to deposit\n @param _prizePool Address of the prize pool to deposit into\n @param _to Address that will receive the tickets"
                  },
                  "id": 10907,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositTo",
                  "nameLocation": "4744:10:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10876,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10867,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "4772:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10907,
                        "src": "4764:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10866,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4764:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10869,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "4796:6:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10907,
                        "src": "4788:14:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10868,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4788:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10871,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "4820:7:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10907,
                        "src": "4812:15:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10870,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4812:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10873,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "4845:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10907,
                        "src": "4837:18:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10872,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4837:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10875,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "4873:3:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10907,
                        "src": "4865:11:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10874,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4865:7:47",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4754:128:47"
                  },
                  "returnParameters": {
                    "id": 10877,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4892:0:47"
                  },
                  "scope": 10908,
                  "src": "4735:360:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 10909,
              "src": "1109:3988:47",
              "usedErrors": []
            }
          ],
          "src": "37:5061:47"
        },
        "id": 47
      },
      "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "ERC165Checker": [
              2593
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC165": [
              2605
            ],
            "IERC20": [
              663
            ],
            "IERC721": [
              1233
            ],
            "IERC721Receiver": [
              1251
            ],
            "IPrizePool": [
              8967
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizePool": [
              11959
            ],
            "ReentrancyGuard": [
              39
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 11960,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10910,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:48"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 10911,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 2999,
              "src": "61:57:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "file": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "id": 10912,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 40,
              "src": "119:62:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "file": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "id": 10913,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 1234,
              "src": "182:58:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
              "file": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
              "id": 10914,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 1252,
              "src": "241:66:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
              "file": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
              "id": 10915,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 2594,
              "src": "308:71:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 10916,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 1118,
              "src": "380:65:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 10917,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 3259,
              "src": "446:69:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol",
              "file": "../external/compound/ICompLike.sol",
              "id": 10918,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 8122,
              "src": "517:44:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 10919,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 8968,
              "src": "562:38:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 10920,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11960,
              "sourceUnit": 9298,
              "src": "601:35:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 10922,
                    "name": "IPrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 8967,
                    "src": "1169:10:48"
                  },
                  "id": 10923,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1169:10:48"
                },
                {
                  "baseName": {
                    "id": 10924,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3258,
                    "src": "1181:7:48"
                  },
                  "id": 10925,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1181:7:48"
                },
                {
                  "baseName": {
                    "id": 10926,
                    "name": "ReentrancyGuard",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 39,
                    "src": "1190:15:48"
                  },
                  "id": 10927,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1190:15:48"
                },
                {
                  "baseName": {
                    "id": 10928,
                    "name": "IERC721Receiver",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1251,
                    "src": "1207:15:48"
                  },
                  "id": 10929,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1207:15:48"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 10921,
                "nodeType": "StructuredDocumentation",
                "src": "638:499:48",
                "text": " @title  PoolTogether V4 PrizePool\n @author PoolTogether Inc Team\n @notice Escrows assets and deposits them into a yield source.  Exposes interest to Prize Strategy.\nUsers deposit and withdraw from this contract to participate in Prize Pool.\nAccounting is managed using Controlled Tokens, whose mint and burn functions can only be called by this contract.\nMust be inherited to provide specific yield-bearing asset control, such as Compound cTokens"
              },
              "fullyImplemented": false,
              "id": 11959,
              "linearizedBaseContracts": [
                11959,
                1251,
                39,
                3258,
                8967
              ],
              "name": "PrizePool",
              "nameLocation": "1156:9:48",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 10932,
                  "libraryName": {
                    "id": 10930,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2998,
                    "src": "1235:8:48"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1229:27:48",
                  "typeName": {
                    "id": 10931,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1248:7:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "id": 10936,
                  "libraryName": {
                    "id": 10933,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1267:9:48"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1261:27:48",
                  "typeName": {
                    "id": 10935,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 10934,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1281:6:48"
                    },
                    "referencedDeclaration": 663,
                    "src": "1281:6:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 10939,
                  "libraryName": {
                    "id": 10937,
                    "name": "ERC165Checker",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2593,
                    "src": "1299:13:48"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1293:32:48",
                  "typeName": {
                    "id": 10938,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1317:7:48",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 10940,
                    "nodeType": "StructuredDocumentation",
                    "src": "1331:26:48",
                    "text": "@notice Semver Version"
                  },
                  "functionSelector": "ffa1ad74",
                  "id": 10943,
                  "mutability": "constant",
                  "name": "VERSION",
                  "nameLocation": "1385:7:48",
                  "nodeType": "VariableDeclaration",
                  "scope": 11959,
                  "src": "1362:40:48",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10941,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1362:6:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": {
                    "hexValue": "342e302e30",
                    "id": 10942,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1395:7:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_81ed76178093786cbe0cb79744f6e7ca3336fbb9fe7d1ddff1f0157b63e09813",
                      "typeString": "literal_string \"4.0.0\""
                    },
                    "value": "4.0.0"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 10944,
                    "nodeType": "StructuredDocumentation",
                    "src": "1409:77:48",
                    "text": "@notice Prize Pool ticket. Can only be set once by calling `setTicket()`."
                  },
                  "id": 10947,
                  "mutability": "mutable",
                  "name": "ticket",
                  "nameLocation": "1508:6:48",
                  "nodeType": "VariableDeclaration",
                  "scope": 11959,
                  "src": "1491:23:48",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$9297",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 10946,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 10945,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9297,
                      "src": "1491:7:48"
                    },
                    "referencedDeclaration": 9297,
                    "src": "1491:7:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$9297",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 10948,
                    "nodeType": "StructuredDocumentation",
                    "src": "1521:64:48",
                    "text": "@notice The Prize Strategy that this Prize Pool is bound to."
                  },
                  "id": 10950,
                  "mutability": "mutable",
                  "name": "prizeStrategy",
                  "nameLocation": "1607:13:48",
                  "nodeType": "VariableDeclaration",
                  "scope": 11959,
                  "src": "1590:30:48",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10949,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1590:7:48",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 10951,
                    "nodeType": "StructuredDocumentation",
                    "src": "1627:56:48",
                    "text": "@notice The total amount of tickets a user can hold."
                  },
                  "id": 10953,
                  "mutability": "mutable",
                  "name": "balanceCap",
                  "nameLocation": "1705:10:48",
                  "nodeType": "VariableDeclaration",
                  "scope": 11959,
                  "src": "1688:27:48",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10952,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1688:7:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 10954,
                    "nodeType": "StructuredDocumentation",
                    "src": "1722:67:48",
                    "text": "@notice The total amount of funds that the prize pool can hold."
                  },
                  "id": 10956,
                  "mutability": "mutable",
                  "name": "liquidityCap",
                  "nameLocation": "1811:12:48",
                  "nodeType": "VariableDeclaration",
                  "scope": 11959,
                  "src": "1794:29:48",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10955,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1794:7:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 10957,
                    "nodeType": "StructuredDocumentation",
                    "src": "1830:37:48",
                    "text": "@notice the The awardable balance"
                  },
                  "id": 10959,
                  "mutability": "mutable",
                  "name": "_currentAwardBalance",
                  "nameLocation": "1889:20:48",
                  "nodeType": "VariableDeclaration",
                  "scope": 11959,
                  "src": "1872:37:48",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 10958,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1872:7:48",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10971,
                    "nodeType": "Block",
                    "src": "2062:96:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 10966,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 10963,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "2080:3:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 10964,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "2080:10:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 10965,
                                "name": "prizeStrategy",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10950,
                                "src": "2094:13:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2080:27:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                              "id": 10967,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2109:30:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8",
                                "typeString": "literal_string \"PrizePool/only-prizeStrategy\""
                              },
                              "value": "PrizePool/only-prizeStrategy"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8",
                                "typeString": "literal_string \"PrizePool/only-prizeStrategy\""
                              }
                            ],
                            "id": 10962,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2072:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10968,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2072:68:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10969,
                        "nodeType": "ExpressionStatement",
                        "src": "2072:68:48"
                      },
                      {
                        "id": 10970,
                        "nodeType": "PlaceholderStatement",
                        "src": "2150:1:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10960,
                    "nodeType": "StructuredDocumentation",
                    "src": "1963:65:48",
                    "text": "@dev Function modifier to ensure caller is the prize-strategy"
                  },
                  "id": 10972,
                  "name": "onlyPrizeStrategy",
                  "nameLocation": "2042:17:48",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 10961,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2059:2:48"
                  },
                  "src": "2033:125:48",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10985,
                    "nodeType": "Block",
                    "src": "2309:97:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 10979,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10975,
                                  "src": "2344:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10978,
                                "name": "_canAddLiquidity",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11832,
                                "src": "2327:16:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (uint256) view returns (bool)"
                                }
                              },
                              "id": 10980,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2327:25:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                              "id": 10981,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2354:33:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752",
                                "typeString": "literal_string \"PrizePool/exceeds-liquidity-cap\""
                              },
                              "value": "PrizePool/exceeds-liquidity-cap"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752",
                                "typeString": "literal_string \"PrizePool/exceeds-liquidity-cap\""
                              }
                            ],
                            "id": 10977,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2319:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10982,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2319:69:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10983,
                        "nodeType": "ExpressionStatement",
                        "src": "2319:69:48"
                      },
                      {
                        "id": 10984,
                        "nodeType": "PlaceholderStatement",
                        "src": "2398:1:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10973,
                    "nodeType": "StructuredDocumentation",
                    "src": "2164:98:48",
                    "text": "@dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)"
                  },
                  "id": 10986,
                  "name": "canAddLiquidity",
                  "nameLocation": "2276:15:48",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 10976,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10975,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2300:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 10986,
                        "src": "2292:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10974,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2292:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2291:17:48"
                  },
                  "src": "2267:139:48",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11005,
                    "nodeType": "Block",
                    "src": "2615:52:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 11000,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2647:7:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 10999,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2647:7:48",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    }
                                  ],
                                  "id": 10998,
                                  "name": "type",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -27,
                                  "src": "2642:4:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                    "typeString": "function () pure"
                                  }
                                },
                                "id": 11001,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2642:13:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_meta_type_t_uint256",
                                  "typeString": "type(uint256)"
                                }
                              },
                              "id": 11002,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "max",
                              "nodeType": "MemberAccess",
                              "src": "2642:17:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10997,
                            "name": "_setLiquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11877,
                            "src": "2625:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 11003,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2625:35:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11004,
                        "nodeType": "ExpressionStatement",
                        "src": "2625:35:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10987,
                    "nodeType": "StructuredDocumentation",
                    "src": "2461:87:48",
                    "text": "@notice Deploy the Prize Pool\n @param _owner Address of the Prize Pool owner"
                  },
                  "id": 11006,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 10992,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10989,
                          "src": "2589:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 10993,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 10991,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "2581:7:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2581:15:48"
                    },
                    {
                      "arguments": [],
                      "id": 10995,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 10994,
                        "name": "ReentrancyGuard",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 39,
                        "src": "2597:15:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2597:17:48"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10990,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10989,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2573:6:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11006,
                        "src": "2565:14:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10988,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2565:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2564:16:48"
                  },
                  "returnParameters": {
                    "id": 10996,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2615:0:48"
                  },
                  "scope": 11959,
                  "src": "2553:114:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    8851
                  ],
                  "body": {
                    "id": 11016,
                    "nodeType": "Block",
                    "src": "2815:34:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 11013,
                            "name": "_balance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11944,
                            "src": "2832:8:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () returns (uint256)"
                            }
                          },
                          "id": 11014,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2832:10:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11012,
                        "id": 11015,
                        "nodeType": "Return",
                        "src": "2825:17:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11007,
                    "nodeType": "StructuredDocumentation",
                    "src": "2729:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "b69ef8a8",
                  "id": 11017,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balance",
                  "nameLocation": "2769:7:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11009,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2788:8:48"
                  },
                  "parameters": {
                    "id": 11008,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2776:2:48"
                  },
                  "returnParameters": {
                    "id": 11012,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11011,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11017,
                        "src": "2806:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11010,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2806:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2805:9:48"
                  },
                  "scope": 11959,
                  "src": "2760:89:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8831
                  ],
                  "body": {
                    "id": 11026,
                    "nodeType": "Block",
                    "src": "2951:44:48",
                    "statements": [
                      {
                        "expression": {
                          "id": 11024,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10959,
                          "src": "2968:20:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11023,
                        "id": 11025,
                        "nodeType": "Return",
                        "src": "2961:27:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11018,
                    "nodeType": "StructuredDocumentation",
                    "src": "2855:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "630665b4",
                  "id": 11027,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardBalance",
                  "nameLocation": "2895:12:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11020,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2924:8:48"
                  },
                  "parameters": {
                    "id": 11019,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2907:2:48"
                  },
                  "returnParameters": {
                    "id": 11023,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11022,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11027,
                        "src": "2942:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11021,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2942:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2941:9:48"
                  },
                  "scope": 11959,
                  "src": "2886:109:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8845
                  ],
                  "body": {
                    "id": 11040,
                    "nodeType": "Block",
                    "src": "3120:57:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11037,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11030,
                              "src": "3155:14:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 11036,
                            "name": "_canAwardExternal",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11931,
                            "src": "3137:17:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) view returns (bool)"
                            }
                          },
                          "id": 11038,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3137:33:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 11035,
                        "id": 11039,
                        "nodeType": "Return",
                        "src": "3130:40:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11028,
                    "nodeType": "StructuredDocumentation",
                    "src": "3001:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "6a3fd4f9",
                  "id": 11041,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canAwardExternal",
                  "nameLocation": "3041:16:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11032,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3096:8:48"
                  },
                  "parameters": {
                    "id": 11031,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11030,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "3066:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11041,
                        "src": "3058:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11029,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3058:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3057:24:48"
                  },
                  "returnParameters": {
                    "id": 11035,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11034,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11041,
                        "src": "3114:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11033,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3114:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3113:6:48"
                  },
                  "scope": 11959,
                  "src": "3032:145:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8897
                  ],
                  "body": {
                    "id": 11055,
                    "nodeType": "Block",
                    "src": "3300:55:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11052,
                              "name": "_controlledToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11045,
                              "src": "3331:16:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 11051,
                            "name": "_isControlled",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11847,
                            "src": "3317:13:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_contract$_ITicket_$9297_$returns$_t_bool_$",
                              "typeString": "function (contract ITicket) view returns (bool)"
                            }
                          },
                          "id": 11053,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3317:31:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 11050,
                        "id": 11054,
                        "nodeType": "Return",
                        "src": "3310:38:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11042,
                    "nodeType": "StructuredDocumentation",
                    "src": "3183:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "78b3d327",
                  "id": 11056,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isControlled",
                  "nameLocation": "3223:12:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11047,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3276:8:48"
                  },
                  "parameters": {
                    "id": 11046,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11045,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "3244:16:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11056,
                        "src": "3236:24:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11044,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11043,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "3236:7:48"
                          },
                          "referencedDeclaration": 9297,
                          "src": "3236:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3235:26:48"
                  },
                  "returnParameters": {
                    "id": 11050,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11049,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11056,
                        "src": "3294:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11048,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3294:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3293:6:48"
                  },
                  "scope": 11959,
                  "src": "3214:141:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8857
                  ],
                  "body": {
                    "id": 11066,
                    "nodeType": "Block",
                    "src": "3464:44:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 11063,
                            "name": "_ticketTotalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11913,
                            "src": "3481:18:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 11064,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3481:20:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11062,
                        "id": 11065,
                        "nodeType": "Return",
                        "src": "3474:27:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11057,
                    "nodeType": "StructuredDocumentation",
                    "src": "3361:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "33e5761f",
                  "id": 11067,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountedBalance",
                  "nameLocation": "3401:19:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11059,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3437:8:48"
                  },
                  "parameters": {
                    "id": 11058,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3420:2:48"
                  },
                  "returnParameters": {
                    "id": 11062,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11061,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11067,
                        "src": "3455:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11060,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3455:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3454:9:48"
                  },
                  "scope": 11959,
                  "src": "3392:116:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8863
                  ],
                  "body": {
                    "id": 11076,
                    "nodeType": "Block",
                    "src": "3611:34:48",
                    "statements": [
                      {
                        "expression": {
                          "id": 11074,
                          "name": "balanceCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10953,
                          "src": "3628:10:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11073,
                        "id": 11075,
                        "nodeType": "Return",
                        "src": "3621:17:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11068,
                    "nodeType": "StructuredDocumentation",
                    "src": "3514:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "08234319",
                  "id": 11077,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceCap",
                  "nameLocation": "3554:13:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11070,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3584:8:48"
                  },
                  "parameters": {
                    "id": 11069,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3567:2:48"
                  },
                  "returnParameters": {
                    "id": 11073,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11072,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11077,
                        "src": "3602:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11071,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3602:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3601:9:48"
                  },
                  "scope": 11959,
                  "src": "3545:100:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8869
                  ],
                  "body": {
                    "id": 11086,
                    "nodeType": "Block",
                    "src": "3750:36:48",
                    "statements": [
                      {
                        "expression": {
                          "id": 11084,
                          "name": "liquidityCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10956,
                          "src": "3767:12:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11083,
                        "id": 11085,
                        "nodeType": "Return",
                        "src": "3760:19:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11078,
                    "nodeType": "StructuredDocumentation",
                    "src": "3651:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "b15a49c1",
                  "id": 11087,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLiquidityCap",
                  "nameLocation": "3691:15:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11080,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3723:8:48"
                  },
                  "parameters": {
                    "id": 11079,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3706:2:48"
                  },
                  "returnParameters": {
                    "id": 11083,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11082,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11087,
                        "src": "3741:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11081,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3741:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3740:9:48"
                  },
                  "scope": 11959,
                  "src": "3682:104:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8876
                  ],
                  "body": {
                    "id": 11097,
                    "nodeType": "Block",
                    "src": "3885:30:48",
                    "statements": [
                      {
                        "expression": {
                          "id": 11095,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10947,
                          "src": "3902:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "functionReturnParameters": 11094,
                        "id": 11096,
                        "nodeType": "Return",
                        "src": "3895:13:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11088,
                    "nodeType": "StructuredDocumentation",
                    "src": "3792:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "c002c4d6",
                  "id": 11098,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTicket",
                  "nameLocation": "3832:9:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11090,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3858:8:48"
                  },
                  "parameters": {
                    "id": 11089,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3841:2:48"
                  },
                  "returnParameters": {
                    "id": 11094,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11093,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11098,
                        "src": "3876:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11092,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11091,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "3876:7:48"
                          },
                          "referencedDeclaration": 9297,
                          "src": "3876:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3875:9:48"
                  },
                  "scope": 11959,
                  "src": "3823:92:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8888
                  ],
                  "body": {
                    "id": 11107,
                    "nodeType": "Block",
                    "src": "4021:37:48",
                    "statements": [
                      {
                        "expression": {
                          "id": 11105,
                          "name": "prizeStrategy",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10950,
                          "src": "4038:13:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 11104,
                        "id": 11106,
                        "nodeType": "Return",
                        "src": "4031:20:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11099,
                    "nodeType": "StructuredDocumentation",
                    "src": "3921:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "d804abaf",
                  "id": 11108,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeStrategy",
                  "nameLocation": "3961:16:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11101,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3994:8:48"
                  },
                  "parameters": {
                    "id": 11100,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3977:2:48"
                  },
                  "returnParameters": {
                    "id": 11104,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11103,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11108,
                        "src": "4012:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11102,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4012:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4011:9:48"
                  },
                  "scope": 11959,
                  "src": "3952:106:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8882
                  ],
                  "body": {
                    "id": 11121,
                    "nodeType": "Block",
                    "src": "4156:41:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 11117,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11938,
                                "src": "4181:6:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 11118,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4181:8:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 11116,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4173:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 11115,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4173:7:48",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 11119,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4173:17:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 11114,
                        "id": 11120,
                        "nodeType": "Return",
                        "src": "4166:24:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11109,
                    "nodeType": "StructuredDocumentation",
                    "src": "4064:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "21df0da7",
                  "id": 11122,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4104:8:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11111,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4129:8:48"
                  },
                  "parameters": {
                    "id": 11110,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4112:2:48"
                  },
                  "returnParameters": {
                    "id": 11114,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11113,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11122,
                        "src": "4147:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11112,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4147:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4146:9:48"
                  },
                  "scope": 11959,
                  "src": "4095:102:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8837
                  ],
                  "body": {
                    "id": 11188,
                    "nodeType": "Block",
                    "src": "4314:823:48",
                    "statements": [
                      {
                        "assignments": [
                          11132
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11132,
                            "mutability": "mutable",
                            "name": "ticketTotalSupply",
                            "nameLocation": "4332:17:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11188,
                            "src": "4324:25:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11131,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4324:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11135,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 11133,
                            "name": "_ticketTotalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11913,
                            "src": "4352:18:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 11134,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4352:20:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4324:48:48"
                      },
                      {
                        "assignments": [
                          11137
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11137,
                            "mutability": "mutable",
                            "name": "currentAwardBalance",
                            "nameLocation": "4390:19:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11188,
                            "src": "4382:27:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11136,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4382:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11139,
                        "initialValue": {
                          "id": 11138,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10959,
                          "src": "4412:20:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4382:50:48"
                      },
                      {
                        "assignments": [
                          11141
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11141,
                            "mutability": "mutable",
                            "name": "currentBalance",
                            "nameLocation": "4566:14:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11188,
                            "src": "4558:22:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11140,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4558:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11144,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 11142,
                            "name": "_balance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11944,
                            "src": "4583:8:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () returns (uint256)"
                            }
                          },
                          "id": 11143,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4583:10:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4558:35:48"
                      },
                      {
                        "assignments": [
                          11146
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11146,
                            "mutability": "mutable",
                            "name": "totalInterest",
                            "nameLocation": "4611:13:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11188,
                            "src": "4603:21:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11145,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4603:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11156,
                        "initialValue": {
                          "condition": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 11149,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 11147,
                                  "name": "currentBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11141,
                                  "src": "4628:14:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "id": 11148,
                                  "name": "ticketTotalSupply",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11132,
                                  "src": "4645:17:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4628:34:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 11150,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4627:36:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "hexValue": "30",
                            "id": 11154,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4727:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "id": 11155,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "4627:101:48",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 11153,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 11151,
                              "name": "currentBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11141,
                              "src": "4678:14:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 11152,
                              "name": "ticketTotalSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11132,
                              "src": "4695:17:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "4678:34:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4603:125:48"
                      },
                      {
                        "assignments": [
                          11158
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11158,
                            "mutability": "mutable",
                            "name": "unaccountedPrizeBalance",
                            "nameLocation": "4747:23:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11188,
                            "src": "4739:31:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11157,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4739:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11168,
                        "initialValue": {
                          "condition": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 11161,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 11159,
                                  "name": "totalInterest",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11146,
                                  "src": "4774:13:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "id": 11160,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11137,
                                  "src": "4790:19:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4774:35:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 11162,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4773:37:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "hexValue": "30",
                            "id": 11166,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4875:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "id": 11167,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "4773:103:48",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 11165,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 11163,
                              "name": "totalInterest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11146,
                              "src": "4825:13:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 11164,
                              "name": "currentAwardBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11137,
                              "src": "4841:19:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "4825:35:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4739:137:48"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11171,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 11169,
                            "name": "unaccountedPrizeBalance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11158,
                            "src": "4891:23:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 11170,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4917:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4891:27:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11185,
                        "nodeType": "IfStatement",
                        "src": "4887:207:48",
                        "trueBody": {
                          "id": 11184,
                          "nodeType": "Block",
                          "src": "4920:174:48",
                          "statements": [
                            {
                              "expression": {
                                "id": 11174,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 11172,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11137,
                                  "src": "4934:19:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 11173,
                                  "name": "totalInterest",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11146,
                                  "src": "4956:13:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4934:35:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 11175,
                              "nodeType": "ExpressionStatement",
                              "src": "4934:35:48"
                            },
                            {
                              "expression": {
                                "id": 11178,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 11176,
                                  "name": "_currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10959,
                                  "src": "4983:20:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 11177,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11137,
                                  "src": "5006:19:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4983:42:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 11179,
                              "nodeType": "ExpressionStatement",
                              "src": "4983:42:48"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 11181,
                                    "name": "unaccountedPrizeBalance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11158,
                                    "src": "5059:23:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 11180,
                                  "name": "AwardCaptured",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8699,
                                  "src": "5045:13:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256)"
                                  }
                                },
                                "id": 11182,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5045:38:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 11183,
                              "nodeType": "EmitStatement",
                              "src": "5040:43:48"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 11186,
                          "name": "currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 11137,
                          "src": "5111:19:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11130,
                        "id": 11187,
                        "nodeType": "Return",
                        "src": "5104:26:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11123,
                    "nodeType": "StructuredDocumentation",
                    "src": "4203:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "e6d8a94b",
                  "id": 11189,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11127,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11126,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "4283:12:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4283:12:48"
                    }
                  ],
                  "name": "captureAwardBalance",
                  "nameLocation": "4243:19:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11125,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4274:8:48"
                  },
                  "parameters": {
                    "id": 11124,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4262:2:48"
                  },
                  "returnParameters": {
                    "id": 11130,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11129,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11189,
                        "src": "4305:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11128,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4305:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4304:9:48"
                  },
                  "scope": 11959,
                  "src": "4234:903:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8797
                  ],
                  "body": {
                    "id": 11210,
                    "nodeType": "Block",
                    "src": "5315:53:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 11204,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5336:3:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 11205,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5336:10:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11206,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11192,
                              "src": "5348:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11207,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11194,
                              "src": "5353:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11203,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11295,
                            "src": "5325:10:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 11208,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5325:36:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11209,
                        "nodeType": "ExpressionStatement",
                        "src": "5325:36:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11190,
                    "nodeType": "StructuredDocumentation",
                    "src": "5143:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "ffaad6a5",
                  "id": 11211,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11198,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11197,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "5265:12:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5265:12:48"
                    },
                    {
                      "arguments": [
                        {
                          "id": 11200,
                          "name": "_amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 11194,
                          "src": "5302:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        }
                      ],
                      "id": 11201,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11199,
                        "name": "canAddLiquidity",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10986,
                        "src": "5286:15:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5286:24:48"
                    }
                  ],
                  "name": "depositTo",
                  "nameLocation": "5183:9:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11196,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5248:8:48"
                  },
                  "parameters": {
                    "id": 11195,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11192,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5201:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11211,
                        "src": "5193:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11191,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5193:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11194,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5214:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11211,
                        "src": "5206:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11193,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5206:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5192:30:48"
                  },
                  "returnParameters": {
                    "id": 11202,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5315:0:48"
                  },
                  "scope": 11959,
                  "src": "5174:194:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8807
                  ],
                  "body": {
                    "id": 11242,
                    "nodeType": "Block",
                    "src": "5576:114:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 11228,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5597:3:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 11229,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5597:10:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11230,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11214,
                              "src": "5609:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11231,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11216,
                              "src": "5614:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11227,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11295,
                            "src": "5586:10:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 11232,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5586:36:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11233,
                        "nodeType": "ExpressionStatement",
                        "src": "5586:36:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 11237,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5661:3:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 11238,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5661:10:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11239,
                              "name": "_delegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11218,
                              "src": "5673:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 11234,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10947,
                              "src": "5632:6:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 11236,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerDelegateFor",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9180,
                            "src": "5632:28:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address) external"
                            }
                          },
                          "id": 11240,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5632:51:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11241,
                        "nodeType": "ExpressionStatement",
                        "src": "5632:51:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11212,
                    "nodeType": "StructuredDocumentation",
                    "src": "5374:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "d7a169eb",
                  "id": 11243,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11222,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11221,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "5526:12:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5526:12:48"
                    },
                    {
                      "arguments": [
                        {
                          "id": 11224,
                          "name": "_amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 11216,
                          "src": "5563:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        }
                      ],
                      "id": 11225,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11223,
                        "name": "canAddLiquidity",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10986,
                        "src": "5547:15:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5547:24:48"
                    }
                  ],
                  "name": "depositToAndDelegate",
                  "nameLocation": "5414:20:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11220,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5509:8:48"
                  },
                  "parameters": {
                    "id": 11219,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11214,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5443:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11243,
                        "src": "5435:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11213,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5435:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11216,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5456:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11243,
                        "src": "5448:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11215,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5448:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11218,
                        "mutability": "mutable",
                        "name": "_delegate",
                        "nameLocation": "5473:9:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11243,
                        "src": "5465:17:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11217,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5465:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5434:49:48"
                  },
                  "returnParameters": {
                    "id": 11226,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5576:0:48"
                  },
                  "scope": 11959,
                  "src": "5405:285:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 11294,
                    "nodeType": "Block",
                    "src": "6020:314:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 11255,
                                  "name": "_to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11248,
                                  "src": "6050:3:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 11256,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11250,
                                  "src": "6055:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 11254,
                                "name": "_canDeposit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11801,
                                "src": "6038:11:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (address,uint256) view returns (bool)"
                                }
                              },
                              "id": 11257,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6038:25:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                              "id": 11258,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6065:31:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3",
                                "typeString": "literal_string \"PrizePool/exceeds-balance-cap\""
                              },
                              "value": "PrizePool/exceeds-balance-cap"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3",
                                "typeString": "literal_string \"PrizePool/exceeds-balance-cap\""
                              }
                            ],
                            "id": 11253,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6030:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11259,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6030:67:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11260,
                        "nodeType": "ExpressionStatement",
                        "src": "6030:67:48"
                      },
                      {
                        "assignments": [
                          11263
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11263,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "6116:7:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11294,
                            "src": "6108:15:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 11262,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 11261,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9297,
                                "src": "6108:7:48"
                              },
                              "referencedDeclaration": 9297,
                              "src": "6108:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11265,
                        "initialValue": {
                          "id": 11264,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10947,
                          "src": "6126:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6108:24:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11269,
                              "name": "_operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11246,
                              "src": "6169:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 11272,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "6188:4:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_PrizePool_$11959",
                                    "typeString": "contract PrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_PrizePool_$11959",
                                    "typeString": "contract PrizePool"
                                  }
                                ],
                                "id": 11271,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "6180:7:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 11270,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "6180:7:48",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 11273,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6180:13:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11274,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11250,
                              "src": "6195:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 11266,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11938,
                                "src": "6143:6:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 11267,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6143:8:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 11268,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 950,
                            "src": "6143:25:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 11275,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6143:60:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11276,
                        "nodeType": "ExpressionStatement",
                        "src": "6143:60:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11278,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11248,
                              "src": "6220:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11279,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11250,
                              "src": "6225:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 11280,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11263,
                              "src": "6234:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 11277,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11766,
                            "src": "6214:5:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_contract$_ITicket_$9297_$returns$__$",
                              "typeString": "function (address,uint256,contract ITicket)"
                            }
                          },
                          "id": 11281,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6214:28:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11282,
                        "nodeType": "ExpressionStatement",
                        "src": "6214:28:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11284,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11250,
                              "src": "6260:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11283,
                            "name": "_supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11950,
                            "src": "6252:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 11285,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6252:16:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11286,
                        "nodeType": "ExpressionStatement",
                        "src": "6252:16:48"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 11288,
                              "name": "_operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11246,
                              "src": "6294:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11289,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11248,
                              "src": "6305:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11290,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11263,
                              "src": "6310:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 11291,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11250,
                              "src": "6319:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11287,
                            "name": "Deposited",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8711,
                            "src": "6284:9:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_contract$_ITicket_$9297_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,contract ITicket,uint256)"
                            }
                          },
                          "id": 11292,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6284:43:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11293,
                        "nodeType": "EmitStatement",
                        "src": "6279:48:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11244,
                    "nodeType": "StructuredDocumentation",
                    "src": "5696:237:48",
                    "text": "@notice Transfers tokens in from one user and mints tickets to another\n @notice _operator The user to transfer tokens from\n @notice _to The user to mint tickets to\n @notice _amount The amount to transfer and mint"
                  },
                  "id": 11295,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositTo",
                  "nameLocation": "5947:10:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11251,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11246,
                        "mutability": "mutable",
                        "name": "_operator",
                        "nameLocation": "5966:9:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11295,
                        "src": "5958:17:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11245,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5958:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11248,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5985:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11295,
                        "src": "5977:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11247,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5977:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11250,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5998:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11295,
                        "src": "5990:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11249,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5990:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5957:49:48"
                  },
                  "returnParameters": {
                    "id": 11252,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6020:0:48"
                  },
                  "scope": 11959,
                  "src": "5938:396:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    8817
                  ],
                  "body": {
                    "id": 11346,
                    "nodeType": "Block",
                    "src": "6510:362:48",
                    "statements": [
                      {
                        "assignments": [
                          11310
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11310,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "6528:7:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11346,
                            "src": "6520:15:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 11309,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 11308,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9297,
                                "src": "6520:7:48"
                              },
                              "referencedDeclaration": 9297,
                              "src": "6520:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11312,
                        "initialValue": {
                          "id": 11311,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10947,
                          "src": "6538:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6520:24:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 11316,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6610:3:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 11317,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6610:10:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11318,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11298,
                              "src": "6622:5:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11319,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11300,
                              "src": "6629:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 11313,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11310,
                              "src": "6583:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 11315,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerBurnFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8159,
                            "src": "6583:26:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256) external"
                            }
                          },
                          "id": 11320,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6583:54:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11321,
                        "nodeType": "ExpressionStatement",
                        "src": "6583:54:48"
                      },
                      {
                        "assignments": [
                          11323
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11323,
                            "mutability": "mutable",
                            "name": "_redeemed",
                            "nameLocation": "6686:9:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11346,
                            "src": "6678:17:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11322,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6678:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11327,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 11325,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11300,
                              "src": "6706:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11324,
                            "name": "_redeem",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11958,
                            "src": "6698:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) returns (uint256)"
                            }
                          },
                          "id": 11326,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6698:16:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6678:36:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11331,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11298,
                              "src": "6747:5:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11332,
                              "name": "_redeemed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11323,
                              "src": "6754:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 11328,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11938,
                                "src": "6725:6:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 11329,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6725:8:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 11330,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "6725:21:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 11333,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6725:39:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11334,
                        "nodeType": "ExpressionStatement",
                        "src": "6725:39:48"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 11336,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6791:3:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 11337,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6791:10:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11338,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11298,
                              "src": "6803:5:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11339,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11310,
                              "src": "6810:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 11340,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11300,
                              "src": "6819:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 11341,
                              "name": "_redeemed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11323,
                              "src": "6828:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11335,
                            "name": "Withdrawal",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8763,
                            "src": "6780:10:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_contract$_ITicket_$9297_$_t_uint256_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,contract ITicket,uint256,uint256)"
                            }
                          },
                          "id": 11342,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6780:58:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11343,
                        "nodeType": "EmitStatement",
                        "src": "6775:63:48"
                      },
                      {
                        "expression": {
                          "id": 11344,
                          "name": "_redeemed",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 11323,
                          "src": "6856:9:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11307,
                        "id": 11345,
                        "nodeType": "Return",
                        "src": "6849:16:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11296,
                    "nodeType": "StructuredDocumentation",
                    "src": "6340:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "9470b0bd",
                  "id": 11347,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11304,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11303,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "6467:12:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6467:12:48"
                    }
                  ],
                  "name": "withdrawFrom",
                  "nameLocation": "6380:12:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11302,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6450:8:48"
                  },
                  "parameters": {
                    "id": 11301,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11298,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "6401:5:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11347,
                        "src": "6393:13:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11297,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6393:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11300,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6416:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11347,
                        "src": "6408:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11299,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6408:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6392:32:48"
                  },
                  "returnParameters": {
                    "id": 11307,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11306,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11347,
                        "src": "6497:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11305,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6497:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6496:9:48"
                  },
                  "scope": 11959,
                  "src": "6371:501:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8825
                  ],
                  "body": {
                    "id": 11399,
                    "nodeType": "Block",
                    "src": "6990:426:48",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11360,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 11358,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11352,
                            "src": "7004:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 11359,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7015:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7004:12:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11363,
                        "nodeType": "IfStatement",
                        "src": "7000:49:48",
                        "trueBody": {
                          "id": 11362,
                          "nodeType": "Block",
                          "src": "7018:31:48",
                          "statements": [
                            {
                              "functionReturnParameters": 11357,
                              "id": 11361,
                              "nodeType": "Return",
                              "src": "7032:7:48"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          11365
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11365,
                            "mutability": "mutable",
                            "name": "currentAwardBalance",
                            "nameLocation": "7067:19:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11399,
                            "src": "7059:27:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11364,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7059:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11367,
                        "initialValue": {
                          "id": 11366,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10959,
                          "src": "7089:20:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7059:50:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 11371,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 11369,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11352,
                                "src": "7128:7:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 11370,
                                "name": "currentAwardBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11365,
                                "src": "7139:19:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7128:30:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                              "id": 11372,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7160:31:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4",
                                "typeString": "literal_string \"PrizePool/award-exceeds-avail\""
                              },
                              "value": "PrizePool/award-exceeds-avail"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4",
                                "typeString": "literal_string \"PrizePool/award-exceeds-avail\""
                              }
                            ],
                            "id": 11368,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7120:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11373,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7120:72:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11374,
                        "nodeType": "ExpressionStatement",
                        "src": "7120:72:48"
                      },
                      {
                        "id": 11381,
                        "nodeType": "UncheckedBlock",
                        "src": "7203:87:48",
                        "statements": [
                          {
                            "expression": {
                              "id": 11379,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "id": 11375,
                                "name": "_currentAwardBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10959,
                                "src": "7227:20:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 11378,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 11376,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11365,
                                  "src": "7250:19:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 11377,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11352,
                                  "src": "7272:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7250:29:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7227:52:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 11380,
                            "nodeType": "ExpressionStatement",
                            "src": "7227:52:48"
                          }
                        ]
                      },
                      {
                        "assignments": [
                          11384
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11384,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "7308:7:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11399,
                            "src": "7300:15:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 11383,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 11382,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9297,
                                "src": "7300:7:48"
                              },
                              "referencedDeclaration": 9297,
                              "src": "7300:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11386,
                        "initialValue": {
                          "id": 11385,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10947,
                          "src": "7318:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7300:24:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11388,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11350,
                              "src": "7341:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11389,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11352,
                              "src": "7346:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 11390,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11384,
                              "src": "7355:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 11387,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11766,
                            "src": "7335:5:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_contract$_ITicket_$9297_$returns$__$",
                              "typeString": "function (address,uint256,contract ITicket)"
                            }
                          },
                          "id": 11391,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7335:28:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11392,
                        "nodeType": "ExpressionStatement",
                        "src": "7335:28:48"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 11394,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11350,
                              "src": "7387:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11395,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11384,
                              "src": "7392:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 11396,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11352,
                              "src": "7401:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11393,
                            "name": "Awarded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8721,
                            "src": "7379:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_contract$_ITicket_$9297_$_t_uint256_$returns$__$",
                              "typeString": "function (address,contract ITicket,uint256)"
                            }
                          },
                          "id": 11397,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7379:30:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11398,
                        "nodeType": "EmitStatement",
                        "src": "7374:35:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11348,
                    "nodeType": "StructuredDocumentation",
                    "src": "6878:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "5d8a776e",
                  "id": 11400,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11356,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11355,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10972,
                        "src": "6972:17:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6972:17:48"
                    }
                  ],
                  "name": "award",
                  "nameLocation": "6918:5:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11354,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6963:8:48"
                  },
                  "parameters": {
                    "id": 11353,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11350,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6932:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11400,
                        "src": "6924:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11349,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6924:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11352,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6945:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11400,
                        "src": "6937:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11351,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6937:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6923:30:48"
                  },
                  "returnParameters": {
                    "id": 11357,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6990:0:48"
                  },
                  "scope": 11959,
                  "src": "6909:507:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8907
                  ],
                  "body": {
                    "id": 11426,
                    "nodeType": "Block",
                    "src": "7604:148:48",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 11414,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11403,
                              "src": "7631:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11415,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11405,
                              "src": "7636:14:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11416,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11407,
                              "src": "7652:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11413,
                            "name": "_transferOut",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11747,
                            "src": "7618:12:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) returns (bool)"
                            }
                          },
                          "id": 11417,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7618:42:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11425,
                        "nodeType": "IfStatement",
                        "src": "7614:132:48",
                        "trueBody": {
                          "id": 11424,
                          "nodeType": "Block",
                          "src": "7662:84:48",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 11419,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11403,
                                    "src": "7706:3:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 11420,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11405,
                                    "src": "7711:14:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 11421,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11407,
                                    "src": "7727:7:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 11418,
                                  "name": "TransferredExternalERC20",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8739,
                                  "src": "7681:24:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 11422,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7681:54:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 11423,
                              "nodeType": "EmitStatement",
                              "src": "7676:59:48"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11401,
                    "nodeType": "StructuredDocumentation",
                    "src": "7422:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "13f55e39",
                  "id": 11427,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11411,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11410,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10972,
                        "src": "7586:17:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7586:17:48"
                    }
                  ],
                  "name": "transferExternalERC20",
                  "nameLocation": "7462:21:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11409,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7577:8:48"
                  },
                  "parameters": {
                    "id": 11408,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11403,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7501:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11427,
                        "src": "7493:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11402,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7493:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11405,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "7522:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11427,
                        "src": "7514:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11404,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7514:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11407,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "7554:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11427,
                        "src": "7546:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11406,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7546:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7483:84:48"
                  },
                  "returnParameters": {
                    "id": 11412,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7604:0:48"
                  },
                  "scope": 11959,
                  "src": "7453:299:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8917
                  ],
                  "body": {
                    "id": 11453,
                    "nodeType": "Block",
                    "src": "7937:144:48",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 11441,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11430,
                              "src": "7964:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11442,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11432,
                              "src": "7969:14:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11443,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11434,
                              "src": "7985:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11440,
                            "name": "_transferOut",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11747,
                            "src": "7951:12:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) returns (bool)"
                            }
                          },
                          "id": 11444,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7951:42:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11452,
                        "nodeType": "IfStatement",
                        "src": "7947:128:48",
                        "trueBody": {
                          "id": 11451,
                          "nodeType": "Block",
                          "src": "7995:80:48",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 11446,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11430,
                                    "src": "8035:3:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 11447,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11432,
                                    "src": "8040:14:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 11448,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11434,
                                    "src": "8056:7:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 11445,
                                  "name": "AwardedExternalERC20",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8730,
                                  "src": "8014:20:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 11449,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8014:50:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 11450,
                              "nodeType": "EmitStatement",
                              "src": "8009:55:48"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11428,
                    "nodeType": "StructuredDocumentation",
                    "src": "7758:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "2b0ab144",
                  "id": 11454,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11438,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11437,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10972,
                        "src": "7919:17:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7919:17:48"
                    }
                  ],
                  "name": "awardExternalERC20",
                  "nameLocation": "7798:18:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11436,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7910:8:48"
                  },
                  "parameters": {
                    "id": 11435,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11430,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7834:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11454,
                        "src": "7826:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11429,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7826:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11432,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "7855:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11454,
                        "src": "7847:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11431,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7847:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11434,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "7887:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11454,
                        "src": "7879:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11433,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7879:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7816:84:48"
                  },
                  "returnParameters": {
                    "id": 11439,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7937:0:48"
                  },
                  "scope": 11959,
                  "src": "7789:292:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8928
                  ],
                  "body": {
                    "id": 11556,
                    "nodeType": "Block",
                    "src": "8280:799:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 11470,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11459,
                                  "src": "8316:14:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 11469,
                                "name": "_canAwardExternal",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11931,
                                "src": "8298:17:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 11471,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8298:33:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                              "id": 11472,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8333:34:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              },
                              "value": "PrizePool/invalid-external-token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              }
                            ],
                            "id": 11468,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8290:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11473,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8290:78:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11474,
                        "nodeType": "ExpressionStatement",
                        "src": "8290:78:48"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11478,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 11475,
                              "name": "_tokenIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11462,
                              "src": "8383:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                "typeString": "uint256[] calldata"
                              }
                            },
                            "id": 11476,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "8383:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 11477,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8403:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "8383:21:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11481,
                        "nodeType": "IfStatement",
                        "src": "8379:58:48",
                        "trueBody": {
                          "id": 11480,
                          "nodeType": "Block",
                          "src": "8406:31:48",
                          "statements": [
                            {
                              "functionReturnParameters": 11467,
                              "id": 11479,
                              "nodeType": "Return",
                              "src": "8420:7:48"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          11486
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11486,
                            "mutability": "mutable",
                            "name": "_awardedTokenIds",
                            "nameLocation": "8464:16:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11556,
                            "src": "8447:33:48",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 11484,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8447:7:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 11485,
                              "nodeType": "ArrayTypeName",
                              "src": "8447:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11493,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 11490,
                                "name": "_tokenIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11462,
                                "src": "8497:9:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                  "typeString": "uint256[] calldata"
                                }
                              },
                              "id": 11491,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "8497:16:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11489,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8483:13:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 11487,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8487:7:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 11488,
                              "nodeType": "ArrayTypeName",
                              "src": "8487:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 11492,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8483:31:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8447:67:48"
                      },
                      {
                        "assignments": [
                          11495
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11495,
                            "mutability": "mutable",
                            "name": "hasAwardedTokenIds",
                            "nameLocation": "8530:18:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11556,
                            "src": "8525:23:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 11494,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "8525:4:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11496,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8525:23:48"
                      },
                      {
                        "body": {
                          "id": 11545,
                          "nodeType": "Block",
                          "src": "8606:343:48",
                          "statements": [
                            {
                              "clauses": [
                                {
                                  "block": {
                                    "id": 11533,
                                    "nodeType": "Block",
                                    "src": "8699:110:48",
                                    "statements": [
                                      {
                                        "expression": {
                                          "id": 11523,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftHandSide": {
                                            "id": 11521,
                                            "name": "hasAwardedTokenIds",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 11495,
                                            "src": "8717:18:48",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bool",
                                              "typeString": "bool"
                                            }
                                          },
                                          "nodeType": "Assignment",
                                          "operator": "=",
                                          "rightHandSide": {
                                            "hexValue": "74727565",
                                            "id": 11522,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "bool",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "8738:4:48",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bool",
                                              "typeString": "bool"
                                            },
                                            "value": "true"
                                          },
                                          "src": "8717:25:48",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        "id": 11524,
                                        "nodeType": "ExpressionStatement",
                                        "src": "8717:25:48"
                                      },
                                      {
                                        "expression": {
                                          "id": 11531,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftHandSide": {
                                            "baseExpression": {
                                              "id": 11525,
                                              "name": "_awardedTokenIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 11486,
                                              "src": "8760:16:48",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                "typeString": "uint256[] memory"
                                              }
                                            },
                                            "id": 11527,
                                            "indexExpression": {
                                              "id": 11526,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 11498,
                                              "src": "8777:1:48",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": true,
                                            "nodeType": "IndexAccess",
                                            "src": "8760:19:48",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "nodeType": "Assignment",
                                          "operator": "=",
                                          "rightHandSide": {
                                            "baseExpression": {
                                              "id": 11528,
                                              "name": "_tokenIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 11462,
                                              "src": "8782:9:48",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                                "typeString": "uint256[] calldata"
                                              }
                                            },
                                            "id": 11530,
                                            "indexExpression": {
                                              "id": 11529,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 11498,
                                              "src": "8792:1:48",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "8782:12:48",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "src": "8760:34:48",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "id": 11532,
                                        "nodeType": "ExpressionStatement",
                                        "src": "8760:34:48"
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 11534,
                                  "nodeType": "TryCatchClause",
                                  "src": "8699:110:48"
                                },
                                {
                                  "block": {
                                    "id": 11542,
                                    "nodeType": "Block",
                                    "src": "8867:72:48",
                                    "statements": [
                                      {
                                        "eventCall": {
                                          "arguments": [
                                            {
                                              "id": 11539,
                                              "name": "error",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 11536,
                                              "src": "8918:5:48",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_bytes_memory_ptr",
                                                "typeString": "bytes memory"
                                              }
                                            }
                                          ],
                                          "expression": {
                                            "argumentTypes": [
                                              {
                                                "typeIdentifier": "t_bytes_memory_ptr",
                                                "typeString": "bytes memory"
                                              }
                                            ],
                                            "id": 11538,
                                            "name": "ErrorAwardingExternalERC721",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 8789,
                                            "src": "8890:27:48",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_function_event_nonpayable$_t_bytes_memory_ptr_$returns$__$",
                                              "typeString": "function (bytes memory)"
                                            }
                                          },
                                          "id": 11540,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "kind": "functionCall",
                                          "lValueRequested": false,
                                          "names": [],
                                          "nodeType": "FunctionCall",
                                          "src": "8890:34:48",
                                          "tryCall": false,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_tuple$__$",
                                            "typeString": "tuple()"
                                          }
                                        },
                                        "id": 11541,
                                        "nodeType": "EmitStatement",
                                        "src": "8885:39:48"
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 11543,
                                  "nodeType": "TryCatchClause",
                                  "parameters": {
                                    "id": 11537,
                                    "nodeType": "ParameterList",
                                    "parameters": [
                                      {
                                        "constant": false,
                                        "id": 11536,
                                        "mutability": "mutable",
                                        "name": "error",
                                        "nameLocation": "8847:5:48",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 11543,
                                        "src": "8834:18:48",
                                        "stateVariable": false,
                                        "storageLocation": "memory",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes"
                                        },
                                        "typeName": {
                                          "id": 11535,
                                          "name": "bytes",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8834:5:48",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bytes_storage_ptr",
                                            "typeString": "bytes"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "src": "8816:50:48"
                                  },
                                  "src": "8810:129:48"
                                }
                              ],
                              "externalCall": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 11514,
                                        "name": "this",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -28,
                                        "src": "8673:4:48",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_contract$_PrizePool_$11959",
                                          "typeString": "contract PrizePool"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_contract$_PrizePool_$11959",
                                          "typeString": "contract PrizePool"
                                        }
                                      ],
                                      "id": 11513,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "8665:7:48",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 11512,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "8665:7:48",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 11515,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "8665:13:48",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 11516,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11457,
                                    "src": "8680:3:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "baseExpression": {
                                      "id": 11517,
                                      "name": "_tokenIds",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11462,
                                      "src": "8685:9:48",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                        "typeString": "uint256[] calldata"
                                      }
                                    },
                                    "id": 11519,
                                    "indexExpression": {
                                      "id": 11518,
                                      "name": "i",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11498,
                                      "src": "8695:1:48",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "8685:12:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 11509,
                                        "name": "_externalToken",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 11459,
                                        "src": "8632:14:48",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "id": 11508,
                                      "name": "IERC721",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1233,
                                      "src": "8624:7:48",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721_$1233_$",
                                        "typeString": "type(contract IERC721)"
                                      }
                                    },
                                    "id": 11510,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "8624:23:48",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC721_$1233",
                                      "typeString": "contract IERC721"
                                    }
                                  },
                                  "id": 11511,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "safeTransferFrom",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1176,
                                  "src": "8624:40:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256) external"
                                  }
                                },
                                "id": 11520,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8624:74:48",
                                "tryCall": true,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 11544,
                              "nodeType": "TryStatement",
                              "src": "8620:319:48"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11504,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 11501,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11498,
                            "src": "8579:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 11502,
                              "name": "_tokenIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11462,
                              "src": "8583:9:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                "typeString": "uint256[] calldata"
                              }
                            },
                            "id": 11503,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "8583:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8579:20:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11546,
                        "initializationExpression": {
                          "assignments": [
                            11498
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 11498,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8572:1:48",
                              "nodeType": "VariableDeclaration",
                              "scope": 11546,
                              "src": "8564:9:48",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 11497,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8564:7:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 11500,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 11499,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8576:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8564:13:48"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 11506,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8601:3:48",
                            "subExpression": {
                              "id": 11505,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11498,
                              "src": "8601:1:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11507,
                          "nodeType": "ExpressionStatement",
                          "src": "8601:3:48"
                        },
                        "nodeType": "ForStatement",
                        "src": "8559:390:48"
                      },
                      {
                        "condition": {
                          "id": 11547,
                          "name": "hasAwardedTokenIds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 11495,
                          "src": "8962:18:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11555,
                        "nodeType": "IfStatement",
                        "src": "8958:115:48",
                        "trueBody": {
                          "id": 11554,
                          "nodeType": "Block",
                          "src": "8982:91:48",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 11549,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11457,
                                    "src": "9024:3:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 11550,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11459,
                                    "src": "9029:14:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 11551,
                                    "name": "_awardedTokenIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11486,
                                    "src": "9045:16:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  ],
                                  "id": 11548,
                                  "name": "AwardedExternalERC721",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8749,
                                  "src": "9002:21:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$",
                                    "typeString": "function (address,address,uint256[] memory)"
                                  }
                                },
                                "id": 11552,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9002:60:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 11553,
                              "nodeType": "EmitStatement",
                              "src": "8997:65:48"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11455,
                    "nodeType": "StructuredDocumentation",
                    "src": "8087:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "16960d55",
                  "id": 11557,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11466,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11465,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10972,
                        "src": "8262:17:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "8262:17:48"
                    }
                  ],
                  "name": "awardExternalERC721",
                  "nameLocation": "8127:19:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11464,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8253:8:48"
                  },
                  "parameters": {
                    "id": 11463,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11457,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "8164:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11557,
                        "src": "8156:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11456,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8156:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11459,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "8185:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11557,
                        "src": "8177:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11458,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8177:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11462,
                        "mutability": "mutable",
                        "name": "_tokenIds",
                        "nameLocation": "8228:9:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11557,
                        "src": "8209:28:48",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11460,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "8209:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11461,
                          "nodeType": "ArrayTypeName",
                          "src": "8209:9:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8146:97:48"
                  },
                  "returnParameters": {
                    "id": 11467,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8280:0:48"
                  },
                  "scope": 11959,
                  "src": "8118:961:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8936
                  ],
                  "body": {
                    "id": 11574,
                    "nodeType": "Block",
                    "src": "9203:65:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11569,
                              "name": "_balanceCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11560,
                              "src": "9228:11:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11568,
                            "name": "_setBalanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11862,
                            "src": "9213:14:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 11570,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9213:27:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11571,
                        "nodeType": "ExpressionStatement",
                        "src": "9213:27:48"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 11572,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "9257:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 11567,
                        "id": 11573,
                        "nodeType": "Return",
                        "src": "9250:11:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11558,
                    "nodeType": "StructuredDocumentation",
                    "src": "9085:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "aec9c307",
                  "id": 11575,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11564,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11563,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "9178:9:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9178:9:48"
                    }
                  ],
                  "name": "setBalanceCap",
                  "nameLocation": "9125:13:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11562,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9169:8:48"
                  },
                  "parameters": {
                    "id": 11561,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11560,
                        "mutability": "mutable",
                        "name": "_balanceCap",
                        "nameLocation": "9147:11:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11575,
                        "src": "9139:19:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11559,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9139:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9138:21:48"
                  },
                  "returnParameters": {
                    "id": 11567,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11566,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11575,
                        "src": "9197:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11565,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "9197:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9196:6:48"
                  },
                  "scope": 11959,
                  "src": "9116:152:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8942
                  ],
                  "body": {
                    "id": 11588,
                    "nodeType": "Block",
                    "src": "9381:48:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11585,
                              "name": "_liquidityCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11578,
                              "src": "9408:13:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11584,
                            "name": "_setLiquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11877,
                            "src": "9391:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 11586,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9391:31:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11587,
                        "nodeType": "ExpressionStatement",
                        "src": "9391:31:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11576,
                    "nodeType": "StructuredDocumentation",
                    "src": "9274:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "7b99adb1",
                  "id": 11589,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11582,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11581,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "9371:9:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9371:9:48"
                    }
                  ],
                  "name": "setLiquidityCap",
                  "nameLocation": "9314:15:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11580,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9362:8:48"
                  },
                  "parameters": {
                    "id": 11579,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11578,
                        "mutability": "mutable",
                        "name": "_liquidityCap",
                        "nameLocation": "9338:13:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11589,
                        "src": "9330:21:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11577,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9330:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9329:23:48"
                  },
                  "returnParameters": {
                    "id": 11583,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9381:0:48"
                  },
                  "scope": 11959,
                  "src": "9305:124:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8957
                  ],
                  "body": {
                    "id": 11645,
                    "nodeType": "Block",
                    "src": "9545:300:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 11610,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 11604,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11593,
                                    "src": "9571:7:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 11603,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9563:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 11602,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9563:7:48",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 11605,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9563:16:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 11608,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9591:1:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 11607,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9583:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 11606,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9583:7:48",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 11609,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9583:10:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9563:30:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657373",
                              "id": 11611,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9595:35:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b",
                                "typeString": "literal_string \"PrizePool/ticket-not-zero-address\""
                              },
                              "value": "PrizePool/ticket-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b",
                                "typeString": "literal_string \"PrizePool/ticket-not-zero-address\""
                              }
                            ],
                            "id": 11601,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9555:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11612,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9555:76:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11613,
                        "nodeType": "ExpressionStatement",
                        "src": "9555:76:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 11623,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 11617,
                                    "name": "ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10947,
                                    "src": "9657:6:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 11616,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9649:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 11615,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9649:7:48",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 11618,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9649:15:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 11621,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9676:1:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 11620,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9668:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 11619,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9668:7:48",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 11622,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9668:10:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9649:29:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                              "id": 11624,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9680:30:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0",
                                "typeString": "literal_string \"PrizePool/ticket-already-set\""
                              },
                              "value": "PrizePool/ticket-already-set"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0",
                                "typeString": "literal_string \"PrizePool/ticket-already-set\""
                              }
                            ],
                            "id": 11614,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9641:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11625,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9641:70:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11626,
                        "nodeType": "ExpressionStatement",
                        "src": "9641:70:48"
                      },
                      {
                        "expression": {
                          "id": 11629,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 11627,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10947,
                            "src": "9722:6:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 11628,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11593,
                            "src": "9731:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "9722:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 11630,
                        "nodeType": "ExpressionStatement",
                        "src": "9722:16:48"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 11632,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11593,
                              "src": "9764:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 11631,
                            "name": "TicketSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8784,
                            "src": "9754:9:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$9297_$returns$__$",
                              "typeString": "function (contract ITicket)"
                            }
                          },
                          "id": 11633,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9754:18:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11634,
                        "nodeType": "EmitStatement",
                        "src": "9749:23:48"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 11638,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "9803:7:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 11637,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "9803:7:48",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    }
                                  ],
                                  "id": 11636,
                                  "name": "type",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -27,
                                  "src": "9798:4:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                    "typeString": "function () pure"
                                  }
                                },
                                "id": 11639,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9798:13:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_meta_type_t_uint256",
                                  "typeString": "type(uint256)"
                                }
                              },
                              "id": 11640,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "max",
                              "nodeType": "MemberAccess",
                              "src": "9798:17:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11635,
                            "name": "_setBalanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11862,
                            "src": "9783:14:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 11641,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9783:33:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11642,
                        "nodeType": "ExpressionStatement",
                        "src": "9783:33:48"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 11643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "9834:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 11600,
                        "id": 11644,
                        "nodeType": "Return",
                        "src": "9827:11:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11590,
                    "nodeType": "StructuredDocumentation",
                    "src": "9435:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "1c65c78b",
                  "id": 11646,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11597,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11596,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "9520:9:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9520:9:48"
                    }
                  ],
                  "name": "setTicket",
                  "nameLocation": "9475:9:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11595,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9511:8:48"
                  },
                  "parameters": {
                    "id": 11594,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11593,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "9493:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11646,
                        "src": "9485:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11592,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11591,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "9485:7:48"
                          },
                          "referencedDeclaration": 9297,
                          "src": "9485:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9484:17:48"
                  },
                  "returnParameters": {
                    "id": 11600,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11599,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11646,
                        "src": "9539:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11598,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "9539:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9538:6:48"
                  },
                  "scope": 11959,
                  "src": "9466:379:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8948
                  ],
                  "body": {
                    "id": 11659,
                    "nodeType": "Block",
                    "src": "9960:50:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11656,
                              "name": "_prizeStrategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11649,
                              "src": "9988:14:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 11655,
                            "name": "_setPrizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11902,
                            "src": "9970:17:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 11657,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9970:33:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11658,
                        "nodeType": "ExpressionStatement",
                        "src": "9970:33:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11647,
                    "nodeType": "StructuredDocumentation",
                    "src": "9851:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "91ca480e",
                  "id": 11660,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11653,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11652,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "9950:9:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9950:9:48"
                    }
                  ],
                  "name": "setPrizeStrategy",
                  "nameLocation": "9891:16:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11651,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9941:8:48"
                  },
                  "parameters": {
                    "id": 11650,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11649,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "9916:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11660,
                        "src": "9908:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11648,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9908:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9907:24:48"
                  },
                  "returnParameters": {
                    "id": 11654,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9960:0:48"
                  },
                  "scope": 11959,
                  "src": "9882:128:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    8966
                  ],
                  "body": {
                    "id": 11689,
                    "nodeType": "Block",
                    "src": "10135:108:48",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 11676,
                                    "name": "this",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -28,
                                    "src": "10177:4:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_PrizePool_$11959",
                                      "typeString": "contract PrizePool"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_PrizePool_$11959",
                                      "typeString": "contract PrizePool"
                                    }
                                  ],
                                  "id": 11675,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10169:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 11674,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10169:7:48",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 11677,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10169:13:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 11672,
                                "name": "_compLike",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11664,
                                "src": "10149:9:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ICompLike_$8121",
                                  "typeString": "contract ICompLike"
                                }
                              },
                              "id": 11673,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balanceOf",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 602,
                              "src": "10149:19:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                "typeString": "function (address) view external returns (uint256)"
                              }
                            },
                            "id": 11678,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10149:34:48",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 11679,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10186:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "10149:38:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11688,
                        "nodeType": "IfStatement",
                        "src": "10145:92:48",
                        "trueBody": {
                          "id": 11687,
                          "nodeType": "Block",
                          "src": "10189:48:48",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 11684,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11666,
                                    "src": "10222:3:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "expression": {
                                    "id": 11681,
                                    "name": "_compLike",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11664,
                                    "src": "10203:9:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ICompLike_$8121",
                                      "typeString": "contract ICompLike"
                                    }
                                  },
                                  "id": 11683,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "delegate",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 8120,
                                  "src": "10203:18:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$__$",
                                    "typeString": "function (address) external"
                                  }
                                },
                                "id": 11685,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10203:23:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 11686,
                              "nodeType": "ExpressionStatement",
                              "src": "10203:23:48"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11661,
                    "nodeType": "StructuredDocumentation",
                    "src": "10016:26:48",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "2f7627e3",
                  "id": 11690,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 11670,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 11669,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "10125:9:48"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10125:9:48"
                    }
                  ],
                  "name": "compLikeDelegate",
                  "nameLocation": "10056:16:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11668,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10116:8:48"
                  },
                  "parameters": {
                    "id": 11667,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11664,
                        "mutability": "mutable",
                        "name": "_compLike",
                        "nameLocation": "10083:9:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11690,
                        "src": "10073:19:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ICompLike_$8121",
                          "typeString": "contract ICompLike"
                        },
                        "typeName": {
                          "id": 11663,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11662,
                            "name": "ICompLike",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8121,
                            "src": "10073:9:48"
                          },
                          "referencedDeclaration": 8121,
                          "src": "10073:9:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ICompLike_$8121",
                            "typeString": "contract ICompLike"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11666,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10102:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11690,
                        "src": "10094:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11665,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10094:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10072:34:48"
                  },
                  "returnParameters": {
                    "id": 11671,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10135:0:48"
                  },
                  "scope": 11959,
                  "src": "10047:196:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    1250
                  ],
                  "body": {
                    "id": 11709,
                    "nodeType": "Block",
                    "src": "10432:65:48",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "expression": {
                              "id": 11705,
                              "name": "IERC721Receiver",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1251,
                              "src": "10449:15:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_IERC721Receiver_$1251_$",
                                "typeString": "type(contract IERC721Receiver)"
                              }
                            },
                            "id": 11706,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "onERC721Received",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1250,
                            "src": "10449:32:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$",
                              "typeString": "function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"
                            }
                          },
                          "id": 11707,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "memberName": "selector",
                          "nodeType": "MemberAccess",
                          "src": "10449:41:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "functionReturnParameters": 11704,
                        "id": 11708,
                        "nodeType": "Return",
                        "src": "10442:48:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11691,
                    "nodeType": "StructuredDocumentation",
                    "src": "10249:31:48",
                    "text": "@inheritdoc IERC721Receiver"
                  },
                  "functionSelector": "150b7a02",
                  "id": 11710,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "onERC721Received",
                  "nameLocation": "10294:16:48",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 11701,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10406:8:48"
                  },
                  "parameters": {
                    "id": 11700,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11693,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11710,
                        "src": "10320:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11692,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10320:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11695,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11710,
                        "src": "10337:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11694,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10337:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11697,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11710,
                        "src": "10354:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11696,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10354:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11699,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11710,
                        "src": "10371:14:48",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 11698,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "10371:5:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10310:81:48"
                  },
                  "returnParameters": {
                    "id": 11704,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11703,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11710,
                        "src": "10424:6:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 11702,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "10424:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10423:8:48"
                  },
                  "scope": 11959,
                  "src": "10285:212:48",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 11746,
                    "nodeType": "Block",
                    "src": "11066:242:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 11724,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11715,
                                  "src": "11102:14:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 11723,
                                "name": "_canAwardExternal",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11931,
                                "src": "11084:17:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 11725,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11084:33:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                              "id": 11726,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11119:34:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              },
                              "value": "PrizePool/invalid-external-token"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17",
                                "typeString": "literal_string \"PrizePool/invalid-external-token\""
                              }
                            ],
                            "id": 11722,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11076:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11727,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11076:78:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11728,
                        "nodeType": "ExpressionStatement",
                        "src": "11076:78:48"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11731,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 11729,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11717,
                            "src": "11169:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 11730,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "11180:1:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "11169:12:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11735,
                        "nodeType": "IfStatement",
                        "src": "11165:55:48",
                        "trueBody": {
                          "id": 11734,
                          "nodeType": "Block",
                          "src": "11183:37:48",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 11732,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "11204:5:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 11721,
                              "id": 11733,
                              "nodeType": "Return",
                              "src": "11197:12:48"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11740,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11713,
                              "src": "11266:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11741,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11717,
                              "src": "11271:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 11737,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11715,
                                  "src": "11237:14:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 11736,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 663,
                                "src": "11230:6:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 11738,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11230:22:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 11739,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "11230:35:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 11742,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11230:49:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11743,
                        "nodeType": "ExpressionStatement",
                        "src": "11230:49:48"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 11744,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "11297:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 11721,
                        "id": 11745,
                        "nodeType": "Return",
                        "src": "11290:11:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11711,
                    "nodeType": "StructuredDocumentation",
                    "src": "10559:372:48",
                    "text": "@notice Transfer out `amount` of `externalToken` to recipient `to`\n @dev Only awardable `externalToken` can be transferred out\n @param _to Recipient address\n @param _externalToken Address of the external asset token being transferred\n @param _amount Amount of external assets to be transferred\n @return True if transfer is successful"
                  },
                  "id": 11747,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transferOut",
                  "nameLocation": "10945:12:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11718,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11713,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10975:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11747,
                        "src": "10967:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11712,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10967:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11715,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "10996:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11747,
                        "src": "10988:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11714,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10988:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11717,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11028:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11747,
                        "src": "11020:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11716,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11020:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10957:84:48"
                  },
                  "returnParameters": {
                    "id": 11721,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11720,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11747,
                        "src": "11060:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11719,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "11060:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11059:6:48"
                  },
                  "scope": 11959,
                  "src": "10936:372:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11765,
                    "nodeType": "Block",
                    "src": "11712:62:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11761,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11750,
                              "src": "11754:3:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 11762,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11752,
                              "src": "11759:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 11758,
                              "name": "_controlledToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11755,
                              "src": "11722:16:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 11760,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerMint",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8141,
                            "src": "11722:31:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 11763,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11722:45:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11764,
                        "nodeType": "ExpressionStatement",
                        "src": "11722:45:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11748,
                    "nodeType": "StructuredDocumentation",
                    "src": "11314:283:48",
                    "text": "@notice Called to mint controlled tokens.  Ensures that token listener callbacks are fired.\n @param _to The user who is receiving the tokens\n @param _amount The amount of tokens they are receiving\n @param _controlledToken The token that is going to be minted"
                  },
                  "id": 11766,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "11611:5:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11756,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11750,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "11634:3:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11766,
                        "src": "11626:11:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11749,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11626:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11752,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11655:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11766,
                        "src": "11647:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11751,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11647:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11755,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "11680:16:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11766,
                        "src": "11672:24:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11754,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11753,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "11672:7:48"
                          },
                          "referencedDeclaration": 9297,
                          "src": "11672:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11616:86:48"
                  },
                  "returnParameters": {
                    "id": 11757,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11712:0:48"
                  },
                  "scope": 11959,
                  "src": "11602:172:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11800,
                    "nodeType": "Block",
                    "src": "12175:177:48",
                    "statements": [
                      {
                        "assignments": [
                          11777
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11777,
                            "mutability": "mutable",
                            "name": "_balanceCap",
                            "nameLocation": "12193:11:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11800,
                            "src": "12185:19:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11776,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "12185:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11779,
                        "initialValue": {
                          "id": 11778,
                          "name": "balanceCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10953,
                          "src": "12207:10:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12185:32:48"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11786,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 11780,
                            "name": "_balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11777,
                            "src": "12232:11:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 11783,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12252:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 11782,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12252:7:48",
                                    "typeDescriptions": {}
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  }
                                ],
                                "id": 11781,
                                "name": "type",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -27,
                                "src": "12247:4:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                  "typeString": "function () pure"
                                }
                              },
                              "id": 11784,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12247:13:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_meta_type_t_uint256",
                                "typeString": "type(uint256)"
                              }
                            },
                            "id": 11785,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "max",
                            "nodeType": "MemberAccess",
                            "src": "12247:17:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12232:32:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11789,
                        "nodeType": "IfStatement",
                        "src": "12228:49:48",
                        "trueBody": {
                          "expression": {
                            "hexValue": "74727565",
                            "id": 11787,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12273:4:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "true"
                          },
                          "functionReturnParameters": 11775,
                          "id": 11788,
                          "nodeType": "Return",
                          "src": "12266:11:48"
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 11797,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 11795,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "id": 11792,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11769,
                                      "src": "12313:5:48",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "expression": {
                                      "id": 11790,
                                      "name": "ticket",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10947,
                                      "src": "12296:6:48",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_ITicket_$9297",
                                        "typeString": "contract ITicket"
                                      }
                                    },
                                    "id": 11791,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "balanceOf",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 602,
                                    "src": "12296:16:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) view external returns (uint256)"
                                    }
                                  },
                                  "id": 11793,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "12296:23:48",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 11794,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11771,
                                  "src": "12322:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "12296:33:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 11796,
                                "name": "_balanceCap",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11777,
                                "src": "12333:11:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "12296:48:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 11798,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "12295:50:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 11775,
                        "id": 11799,
                        "nodeType": "Return",
                        "src": "12288:57:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11767,
                    "nodeType": "StructuredDocumentation",
                    "src": "11780:308:48",
                    "text": "@dev Checks if `user` can deposit in the Prize Pool based on the current balance cap.\n @param _user Address of the user depositing.\n @param _amount The amount of tokens to be deposited into the Prize Pool.\n @return True if the Prize Pool can receive the specified `amount` of tokens."
                  },
                  "id": 11801,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canDeposit",
                  "nameLocation": "12102:11:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11772,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11769,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "12122:5:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11801,
                        "src": "12114:13:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11768,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12114:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11771,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12137:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11801,
                        "src": "12129:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11770,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12129:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12113:32:48"
                  },
                  "returnParameters": {
                    "id": 11775,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11774,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11801,
                        "src": "12169:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11773,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "12169:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12168:6:48"
                  },
                  "scope": 11959,
                  "src": "12093:259:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11831,
                    "nodeType": "Block",
                    "src": "12677:180:48",
                    "statements": [
                      {
                        "assignments": [
                          11810
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11810,
                            "mutability": "mutable",
                            "name": "_liquidityCap",
                            "nameLocation": "12695:13:48",
                            "nodeType": "VariableDeclaration",
                            "scope": 11831,
                            "src": "12687:21:48",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11809,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "12687:7:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11812,
                        "initialValue": {
                          "id": 11811,
                          "name": "liquidityCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10956,
                          "src": "12711:12:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12687:36:48"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 11819,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 11813,
                            "name": "_liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11810,
                            "src": "12737:13:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 11816,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12759:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 11815,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12759:7:48",
                                    "typeDescriptions": {}
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  }
                                ],
                                "id": 11814,
                                "name": "type",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -27,
                                "src": "12754:4:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                  "typeString": "function () pure"
                                }
                              },
                              "id": 11817,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12754:13:48",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_meta_type_t_uint256",
                                "typeString": "type(uint256)"
                              }
                            },
                            "id": 11818,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "max",
                            "nodeType": "MemberAccess",
                            "src": "12754:17:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12737:34:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 11822,
                        "nodeType": "IfStatement",
                        "src": "12733:51:48",
                        "trueBody": {
                          "expression": {
                            "hexValue": "74727565",
                            "id": 11820,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12780:4:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "true"
                          },
                          "functionReturnParameters": 11808,
                          "id": 11821,
                          "nodeType": "Return",
                          "src": "12773:11:48"
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 11828,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 11826,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 11823,
                                    "name": "_ticketTotalSupply",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11913,
                                    "src": "12802:18:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                                      "typeString": "function () view returns (uint256)"
                                    }
                                  },
                                  "id": 11824,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "12802:20:48",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 11825,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11804,
                                  "src": "12825:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "12802:30:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 11827,
                                "name": "_liquidityCap",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11810,
                                "src": "12836:13:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "12802:47:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 11829,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "12801:49:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 11808,
                        "id": 11830,
                        "nodeType": "Return",
                        "src": "12794:56:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11802,
                    "nodeType": "StructuredDocumentation",
                    "src": "12358:242:48",
                    "text": "@dev Checks if the Prize Pool can receive liquidity based on the current cap\n @param _amount The amount of liquidity to be added to the Prize Pool\n @return True if the Prize Pool can receive the specified amount of liquidity"
                  },
                  "id": 11832,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAddLiquidity",
                  "nameLocation": "12614:16:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11805,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11804,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12639:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11832,
                        "src": "12631:15:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11803,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12631:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12630:17:48"
                  },
                  "returnParameters": {
                    "id": 11808,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11807,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11832,
                        "src": "12671:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11806,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "12671:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12670:6:48"
                  },
                  "scope": 11959,
                  "src": "12605:252:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11846,
                    "nodeType": "Block",
                    "src": "13152:52:48",
                    "statements": [
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              },
                              "id": 11843,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 11841,
                                "name": "ticket",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10947,
                                "src": "13170:6:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$9297",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 11842,
                                "name": "_controlledToken",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11836,
                                "src": "13180:16:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$9297",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "src": "13170:26:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 11844,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "13169:28:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 11840,
                        "id": 11845,
                        "nodeType": "Return",
                        "src": "13162:35:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11833,
                    "nodeType": "StructuredDocumentation",
                    "src": "12863:206:48",
                    "text": "@dev Checks if a specific token is controlled by the Prize Pool\n @param _controlledToken The address of the token to check\n @return True if the token is a controlled token, false otherwise"
                  },
                  "id": 11847,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isControlled",
                  "nameLocation": "13083:13:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11837,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11836,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "13105:16:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11847,
                        "src": "13097:24:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11835,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11834,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "13097:7:48"
                          },
                          "referencedDeclaration": 9297,
                          "src": "13097:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13096:26:48"
                  },
                  "returnParameters": {
                    "id": 11840,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11839,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11847,
                        "src": "13146:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11838,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "13146:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13145:6:48"
                  },
                  "scope": 11959,
                  "src": "13074:130:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11861,
                    "nodeType": "Block",
                    "src": "13388:82:48",
                    "statements": [
                      {
                        "expression": {
                          "id": 11855,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 11853,
                            "name": "balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10953,
                            "src": "13398:10:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 11854,
                            "name": "_balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11850,
                            "src": "13411:11:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "13398:24:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 11856,
                        "nodeType": "ExpressionStatement",
                        "src": "13398:24:48"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 11858,
                              "name": "_balanceCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11850,
                              "src": "13451:11:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11857,
                            "name": "BalanceCapSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8768,
                            "src": "13437:13:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 11859,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13437:26:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11860,
                        "nodeType": "EmitStatement",
                        "src": "13432:31:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11848,
                    "nodeType": "StructuredDocumentation",
                    "src": "13210:119:48",
                    "text": "@notice Allows the owner to set a balance cap per `token` for the pool.\n @param _balanceCap New balance cap."
                  },
                  "id": 11862,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setBalanceCap",
                  "nameLocation": "13343:14:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11850,
                        "mutability": "mutable",
                        "name": "_balanceCap",
                        "nameLocation": "13366:11:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11862,
                        "src": "13358:19:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11849,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13358:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13357:21:48"
                  },
                  "returnParameters": {
                    "id": 11852,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13388:0:48"
                  },
                  "scope": 11959,
                  "src": "13334:136:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11876,
                    "nodeType": "Block",
                    "src": "13650:90:48",
                    "statements": [
                      {
                        "expression": {
                          "id": 11870,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 11868,
                            "name": "liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10956,
                            "src": "13660:12:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 11869,
                            "name": "_liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11865,
                            "src": "13675:13:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "13660:28:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 11871,
                        "nodeType": "ExpressionStatement",
                        "src": "13660:28:48"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 11873,
                              "name": "_liquidityCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11865,
                              "src": "13719:13:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11872,
                            "name": "LiquidityCapSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8773,
                            "src": "13703:15:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 11874,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13703:30:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11875,
                        "nodeType": "EmitStatement",
                        "src": "13698:35:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11863,
                    "nodeType": "StructuredDocumentation",
                    "src": "13476:111:48",
                    "text": "@notice Allows the owner to set a liquidity cap for the pool\n @param _liquidityCap New liquidity cap"
                  },
                  "id": 11877,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setLiquidityCap",
                  "nameLocation": "13601:16:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11866,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11865,
                        "mutability": "mutable",
                        "name": "_liquidityCap",
                        "nameLocation": "13626:13:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11877,
                        "src": "13618:21:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11864,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13618:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13617:23:48"
                  },
                  "returnParameters": {
                    "id": 11867,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13650:0:48"
                  },
                  "scope": 11959,
                  "src": "13592:148:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11901,
                    "nodeType": "Block",
                    "src": "13947:179:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 11889,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 11884,
                                "name": "_prizeStrategy",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11880,
                                "src": "13965:14:48",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 11887,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "13991:1:48",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 11886,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "13983:7:48",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 11885,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "13983:7:48",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 11888,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "13983:10:48",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "13965:28:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                              "id": 11890,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "13995:34:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708",
                                "typeString": "literal_string \"PrizePool/prizeStrategy-not-zero\""
                              },
                              "value": "PrizePool/prizeStrategy-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708",
                                "typeString": "literal_string \"PrizePool/prizeStrategy-not-zero\""
                              }
                            ],
                            "id": 11883,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "13957:7:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11891,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13957:73:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11892,
                        "nodeType": "ExpressionStatement",
                        "src": "13957:73:48"
                      },
                      {
                        "expression": {
                          "id": 11895,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 11893,
                            "name": "prizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10950,
                            "src": "14041:13:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 11894,
                            "name": "_prizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11880,
                            "src": "14057:14:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "14041:30:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 11896,
                        "nodeType": "ExpressionStatement",
                        "src": "14041:30:48"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 11898,
                              "name": "_prizeStrategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11880,
                              "src": "14104:14:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 11897,
                            "name": "PrizeStrategySet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8778,
                            "src": "14087:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 11899,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14087:32:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11900,
                        "nodeType": "EmitStatement",
                        "src": "14082:37:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11878,
                    "nodeType": "StructuredDocumentation",
                    "src": "13746:136:48",
                    "text": "@notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n @param _prizeStrategy The new prize strategy"
                  },
                  "id": 11902,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setPrizeStrategy",
                  "nameLocation": "13896:17:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11881,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11880,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "13922:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11902,
                        "src": "13914:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11879,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "13914:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13913:24:48"
                  },
                  "returnParameters": {
                    "id": 11882,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13947:0:48"
                  },
                  "scope": 11959,
                  "src": "13887:239:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11912,
                    "nodeType": "Block",
                    "src": "14277:44:48",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 11908,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10947,
                              "src": "14294:6:48",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 11909,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "totalSupply",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 594,
                            "src": "14294:18:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_uint256_$",
                              "typeString": "function () view external returns (uint256)"
                            }
                          },
                          "id": 11910,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14294:20:48",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11907,
                        "id": 11911,
                        "nodeType": "Return",
                        "src": "14287:27:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11903,
                    "nodeType": "StructuredDocumentation",
                    "src": "14132:78:48",
                    "text": "@notice The current total of tickets.\n @return Ticket total supply."
                  },
                  "id": 11913,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_ticketTotalSupply",
                  "nameLocation": "14224:18:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11904,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "14242:2:48"
                  },
                  "returnParameters": {
                    "id": 11907,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11906,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11913,
                        "src": "14268:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11905,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14268:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14267:9:48"
                  },
                  "scope": 11959,
                  "src": "14215:106:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11922,
                    "nodeType": "Block",
                    "src": "14513:39:48",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 11919,
                            "name": "block",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -4,
                            "src": "14530:5:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_block",
                              "typeString": "block"
                            }
                          },
                          "id": 11920,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "timestamp",
                          "nodeType": "MemberAccess",
                          "src": "14530:15:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 11918,
                        "id": 11921,
                        "nodeType": "Return",
                        "src": "14523:22:48"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11914,
                    "nodeType": "StructuredDocumentation",
                    "src": "14327:117:48",
                    "text": "@dev Gets the current time as represented by the current block\n @return The timestamp of the current block"
                  },
                  "id": 11923,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "14458:12:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11915,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "14470:2:48"
                  },
                  "returnParameters": {
                    "id": 11918,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11917,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11923,
                        "src": "14504:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11916,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14504:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14503:9:48"
                  },
                  "scope": 11959,
                  "src": "14449:103:48",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 11924,
                    "nodeType": "StructuredDocumentation",
                    "src": "14629:406:48",
                    "text": "@notice Determines whether the passed token can be transferred out as an external award.\n @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n prize strategy should not be allowed to move those tokens.\n @param _externalToken The address of the token to check\n @return True if the token may be awarded, false otherwise"
                  },
                  "id": 11931,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "15049:17:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11927,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11926,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "15075:14:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11931,
                        "src": "15067:22:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11925,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "15067:7:48",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15066:24:48"
                  },
                  "returnParameters": {
                    "id": 11930,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11929,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11931,
                        "src": "15122:4:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11928,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "15122:4:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15121:6:48"
                  },
                  "scope": 11959,
                  "src": "15040:88:48",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 11932,
                    "nodeType": "StructuredDocumentation",
                    "src": "15134:98:48",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token"
                  },
                  "id": 11938,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "15246:6:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11933,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15252:2:48"
                  },
                  "returnParameters": {
                    "id": 11937,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11936,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11938,
                        "src": "15286:6:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11935,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11934,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "15286:6:48"
                          },
                          "referencedDeclaration": 663,
                          "src": "15286:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15285:8:48"
                  },
                  "scope": 11959,
                  "src": "15237:57:48",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 11939,
                    "nodeType": "StructuredDocumentation",
                    "src": "15300:153:48",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens"
                  },
                  "id": 11944,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "15467:8:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11940,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15475:2:48"
                  },
                  "returnParameters": {
                    "id": 11943,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11942,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11944,
                        "src": "15504:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11941,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15504:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15503:9:48"
                  },
                  "scope": 11959,
                  "src": "15458:55:48",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 11945,
                    "nodeType": "StructuredDocumentation",
                    "src": "15519:123:48",
                    "text": "@notice Supplies asset tokens to the yield source.\n @param _mintAmount The amount of asset tokens to be supplied"
                  },
                  "id": 11950,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "15656:7:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11948,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11947,
                        "mutability": "mutable",
                        "name": "_mintAmount",
                        "nameLocation": "15672:11:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11950,
                        "src": "15664:19:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11946,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15664:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15663:21:48"
                  },
                  "returnParameters": {
                    "id": 11949,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15701:0:48"
                  },
                  "scope": 11959,
                  "src": "15647:55:48",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 11951,
                    "nodeType": "StructuredDocumentation",
                    "src": "15708:198:48",
                    "text": "@notice Redeems asset tokens from the yield source.\n @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n @return The actual amount of tokens that were redeemed."
                  },
                  "id": 11958,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "15920:7:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11954,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11953,
                        "mutability": "mutable",
                        "name": "_redeemAmount",
                        "nameLocation": "15936:13:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 11958,
                        "src": "15928:21:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11952,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15928:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15927:23:48"
                  },
                  "returnParameters": {
                    "id": 11957,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11956,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11958,
                        "src": "15977:7:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11955,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15977:7:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15976:9:48"
                  },
                  "scope": 11959,
                  "src": "15911:75:48",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 11960,
              "src": "1138:14850:48",
              "usedErrors": []
            }
          ],
          "src": "37:15952:48"
        },
        "id": 48
      },
      "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "ERC165Checker": [
              2593
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC165": [
              2605
            ],
            "IERC20": [
              663
            ],
            "IERC721": [
              1233
            ],
            "IERC721Receiver": [
              1251
            ],
            "IPrizePool": [
              8967
            ],
            "ITicket": [
              9297
            ],
            "IYieldSource": [
              16357
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizePool": [
              11959
            ],
            "ReentrancyGuard": [
              39
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ],
            "YieldSourcePrizePool": [
              12207
            ]
          },
          "id": 12208,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11961,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:49"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 11962,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12208,
              "sourceUnit": 664,
              "src": "61:56:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 11963,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12208,
              "sourceUnit": 1118,
              "src": "118:65:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "@openzeppelin/contracts/utils/Address.sol",
              "id": 11964,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12208,
              "sourceUnit": 1549,
              "src": "184:51:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "file": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "id": 11965,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12208,
              "sourceUnit": 16358,
              "src": "236:73:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol",
              "file": "./PrizePool.sol",
              "id": 11966,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12208,
              "sourceUnit": 11960,
              "src": "311:25:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 11968,
                    "name": "PrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11959,
                    "src": "674:9:49"
                  },
                  "id": 11969,
                  "nodeType": "InheritanceSpecifier",
                  "src": "674:9:49"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 11967,
                "nodeType": "StructuredDocumentation",
                "src": "338:302:49",
                "text": " @title  PoolTogether V4 YieldSourcePrizePool\n @author PoolTogether Inc Team\n @notice The Yield Source Prize Pool uses a yield source contract to generate prizes.\n         Funds that are deposited into the prize pool are then deposited into a yield source. (i.e. Aave, Compound, etc...)"
              },
              "fullyImplemented": true,
              "id": 12207,
              "linearizedBaseContracts": [
                12207,
                11959,
                1251,
                39,
                3258,
                8967
              ],
              "name": "YieldSourcePrizePool",
              "nameLocation": "650:20:49",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 11973,
                  "libraryName": {
                    "id": 11970,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "696:9:49"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "690:27:49",
                  "typeName": {
                    "id": 11972,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 11971,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "710:6:49"
                    },
                    "referencedDeclaration": 663,
                    "src": "710:6:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 11976,
                  "libraryName": {
                    "id": 11974,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1548,
                    "src": "728:7:49"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "722:26:49",
                  "typeName": {
                    "id": 11975,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "740:7:49",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 11977,
                    "nodeType": "StructuredDocumentation",
                    "src": "754:40:49",
                    "text": "@notice Address of the yield source."
                  },
                  "functionSelector": "b2470e5c",
                  "id": 11980,
                  "mutability": "immutable",
                  "name": "yieldSource",
                  "nameLocation": "829:11:49",
                  "nodeType": "VariableDeclaration",
                  "scope": 12207,
                  "src": "799:41:49",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                    "typeString": "contract IYieldSource"
                  },
                  "typeName": {
                    "id": 11979,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 11978,
                      "name": "IYieldSource",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16357,
                      "src": "799:12:49"
                    },
                    "referencedDeclaration": 16357,
                    "src": "799:12:49",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IYieldSource_$16357",
                      "typeString": "contract IYieldSource"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11981,
                    "nodeType": "StructuredDocumentation",
                    "src": "847:114:49",
                    "text": "@dev Emitted when yield source prize pool is deployed.\n @param yieldSource Address of the yield source."
                  },
                  "id": 11985,
                  "name": "Deployed",
                  "nameLocation": "972:8:49",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11984,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11983,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "yieldSource",
                        "nameLocation": "997:11:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11985,
                        "src": "981:27:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11982,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "981:7:49",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "980:29:49"
                  },
                  "src": "966:44:49"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11986,
                    "nodeType": "StructuredDocumentation",
                    "src": "1016:126:49",
                    "text": "@notice Emitted when stray deposit token balance in this contract is swept\n @param amount The amount that was swept"
                  },
                  "id": 11990,
                  "name": "Swept",
                  "nameLocation": "1153:5:49",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11989,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11988,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1167:6:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11990,
                        "src": "1159:14:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11987,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1159:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1158:16:49"
                  },
                  "src": "1147:28:49"
                },
                {
                  "body": {
                    "id": 12074,
                    "nodeType": "Block",
                    "src": "1472:699:49",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12011,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 12005,
                                    "name": "_yieldSource",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11996,
                                    "src": "1511:12:49",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                      "typeString": "contract IYieldSource"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                      "typeString": "contract IYieldSource"
                                    }
                                  ],
                                  "id": 12004,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1503:7:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12003,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1503:7:49",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12006,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1503:21:49",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12009,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1536:1:49",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12008,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1528:7:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12007,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1528:7:49",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12010,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1528:10:49",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1503:35:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263652d6e6f742d7a65726f2d61646472657373",
                              "id": 12012,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1552:52:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221",
                                "typeString": "literal_string \"YieldSourcePrizePool/yield-source-not-zero-address\""
                              },
                              "value": "YieldSourcePrizePool/yield-source-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221",
                                "typeString": "literal_string \"YieldSourcePrizePool/yield-source-not-zero-address\""
                              }
                            ],
                            "id": 12002,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1482:7:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12013,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1482:132:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12014,
                        "nodeType": "ExpressionStatement",
                        "src": "1482:132:49"
                      },
                      {
                        "expression": {
                          "id": 12017,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12015,
                            "name": "yieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11980,
                            "src": "1625:11:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$16357",
                              "typeString": "contract IYieldSource"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12016,
                            "name": "_yieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11996,
                            "src": "1639:12:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$16357",
                              "typeString": "contract IYieldSource"
                            }
                          },
                          "src": "1625:26:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$16357",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "id": 12018,
                        "nodeType": "ExpressionStatement",
                        "src": "1625:26:49"
                      },
                      {
                        "assignments": [
                          12020,
                          12022
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12020,
                            "mutability": "mutable",
                            "name": "succeeded",
                            "nameLocation": "1735:9:49",
                            "nodeType": "VariableDeclaration",
                            "scope": 12074,
                            "src": "1730:14:49",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 12019,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "1730:4:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 12022,
                            "mutability": "mutable",
                            "name": "data",
                            "nameLocation": "1759:4:49",
                            "nodeType": "VariableDeclaration",
                            "scope": 12074,
                            "src": "1746:17:49",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 12021,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1746:5:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12035,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 12030,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11996,
                                      "src": "1830:12:49",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                        "typeString": "contract IYieldSource"
                                      }
                                    },
                                    "id": 12031,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "depositToken",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 16332,
                                    "src": "1830:25:49",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                      "typeString": "function () view external returns (address)"
                                    }
                                  },
                                  "id": 12032,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1830:34:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                ],
                                "expression": {
                                  "id": 12028,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1813:3:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 12029,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "1813:16:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 12033,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1813:52:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 12025,
                                  "name": "_yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11996,
                                  "src": "1775:12:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 12024,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1767:7:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 12023,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1767:7:49",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 12026,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1767:21:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 12027,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "staticcall",
                            "nodeType": "MemberAccess",
                            "src": "1767:32:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                            }
                          },
                          "id": 12034,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1767:108:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1729:146:49"
                      },
                      {
                        "assignments": [
                          12037
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12037,
                            "mutability": "mutable",
                            "name": "resultingAddress",
                            "nameLocation": "1893:16:49",
                            "nodeType": "VariableDeclaration",
                            "scope": 12074,
                            "src": "1885:24:49",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 12036,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1885:7:49",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12038,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1885:24:49"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12042,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 12039,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12022,
                              "src": "1923:4:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 12040,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "1923:11:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 12041,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1937:1:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1923:15:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12054,
                        "nodeType": "IfStatement",
                        "src": "1919:92:49",
                        "trueBody": {
                          "id": 12053,
                          "nodeType": "Block",
                          "src": "1940:71:49",
                          "statements": [
                            {
                              "expression": {
                                "id": 12051,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12043,
                                  "name": "resultingAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12037,
                                  "src": "1954:16:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 12046,
                                      "name": "data",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12022,
                                      "src": "1984:4:49",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      }
                                    },
                                    {
                                      "components": [
                                        {
                                          "id": 12048,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "1991:7:49",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_address_$",
                                            "typeString": "type(address)"
                                          },
                                          "typeName": {
                                            "id": 12047,
                                            "name": "address",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "1991:7:49",
                                            "typeDescriptions": {}
                                          }
                                        }
                                      ],
                                      "id": 12049,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "1990:9:49",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      },
                                      {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      }
                                    ],
                                    "expression": {
                                      "id": 12044,
                                      "name": "abi",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -1,
                                      "src": "1973:3:49",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_abi",
                                        "typeString": "abi"
                                      }
                                    },
                                    "id": 12045,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "decode",
                                    "nodeType": "MemberAccess",
                                    "src": "1973:10:49",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 12050,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1973:27:49",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address_payable",
                                    "typeString": "address payable"
                                  }
                                },
                                "src": "1954:46:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 12052,
                              "nodeType": "ExpressionStatement",
                              "src": "1954:46:49"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 12063,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12056,
                                "name": "succeeded",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12020,
                                "src": "2028:9:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 12062,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12057,
                                  "name": "resultingAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12037,
                                  "src": "2041:16:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 12060,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "2069:1:49",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      }
                                    ],
                                    "id": 12059,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2061:7:49",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 12058,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2061:7:49",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 12061,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2061:10:49",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2041:30:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "2028:43:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d7969656c642d736f75726365",
                              "id": 12064,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2073:43:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4",
                                "typeString": "literal_string \"YieldSourcePrizePool/invalid-yield-source\""
                              },
                              "value": "YieldSourcePrizePool/invalid-yield-source"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4",
                                "typeString": "literal_string \"YieldSourcePrizePool/invalid-yield-source\""
                              }
                            ],
                            "id": 12055,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2020:7:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12065,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2020:97:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12066,
                        "nodeType": "ExpressionStatement",
                        "src": "2020:97:49"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 12070,
                                  "name": "_yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11996,
                                  "src": "2150:12:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 12069,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2142:7:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 12068,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2142:7:49",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 12071,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2142:21:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 12067,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11985,
                            "src": "2133:8:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 12072,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2133:31:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12073,
                        "nodeType": "EmitStatement",
                        "src": "2128:36:49"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11991,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:213:49",
                    "text": "@notice Deploy the Prize Pool and Yield Service with the required contract connections\n @param _owner Address of the Yield Source Prize Pool owner\n @param _yieldSource Address of the yield source"
                  },
                  "id": 12075,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 11999,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 11993,
                          "src": "1464:6:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 12000,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 11998,
                        "name": "PrizePool",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 11959,
                        "src": "1454:9:49"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1454:17:49"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11997,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11993,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1419:6:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 12075,
                        "src": "1411:14:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11992,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1411:7:49",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11996,
                        "mutability": "mutable",
                        "name": "_yieldSource",
                        "nameLocation": "1440:12:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 12075,
                        "src": "1427:25:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IYieldSource_$16357",
                          "typeString": "contract IYieldSource"
                        },
                        "typeName": {
                          "id": 11995,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11994,
                            "name": "IYieldSource",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16357,
                            "src": "1427:12:49"
                          },
                          "referencedDeclaration": 16357,
                          "src": "1427:12:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$16357",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1410:43:49"
                  },
                  "returnParameters": {
                    "id": 12001,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1472:0:49"
                  },
                  "scope": 12207,
                  "src": "1399:772:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12102,
                    "nodeType": "Block",
                    "src": "2346:124:49",
                    "statements": [
                      {
                        "assignments": [
                          12084
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12084,
                            "mutability": "mutable",
                            "name": "balance",
                            "nameLocation": "2364:7:49",
                            "nodeType": "VariableDeclaration",
                            "scope": 12102,
                            "src": "2356:15:49",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12083,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2356:7:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12093,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 12090,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2401:4:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$12207",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$12207",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 12089,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2393:7:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 12088,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2393:7:49",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 12091,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2393:13:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 12085,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  12163
                                ],
                                "referencedDeclaration": 12163,
                                "src": "2374:6:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 12086,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2374:8:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 12087,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "2374:18:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 12092,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2374:33:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2356:51:49"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12095,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12084,
                              "src": "2425:7:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12094,
                            "name": "_supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              12191
                            ],
                            "referencedDeclaration": 12191,
                            "src": "2417:7:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 12096,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2417:16:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12097,
                        "nodeType": "ExpressionStatement",
                        "src": "2417:16:49"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 12099,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12084,
                              "src": "2455:7:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12098,
                            "name": "Swept",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11990,
                            "src": "2449:5:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 12100,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2449:14:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12101,
                        "nodeType": "EmitStatement",
                        "src": "2444:19:49"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12076,
                    "nodeType": "StructuredDocumentation",
                    "src": "2177:115:49",
                    "text": "@notice Sweeps any stray balance of deposit tokens into the yield source.\n @dev This becomes prize money"
                  },
                  "functionSelector": "35faa416",
                  "id": 12103,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 12079,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 12078,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 38,
                        "src": "2323:12:49"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2323:12:49"
                    },
                    {
                      "id": 12081,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 12080,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "2336:9:49"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2336:9:49"
                    }
                  ],
                  "name": "sweep",
                  "nameLocation": "2306:5:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12077,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2311:2:49"
                  },
                  "returnParameters": {
                    "id": 12082,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2346:0:49"
                  },
                  "scope": 12207,
                  "src": "2297:173:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11931
                  ],
                  "body": {
                    "id": 12131,
                    "nodeType": "Block",
                    "src": "2976:197:49",
                    "statements": [
                      {
                        "assignments": [
                          12114
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12114,
                            "mutability": "mutable",
                            "name": "_yieldSource",
                            "nameLocation": "2999:12:49",
                            "nodeType": "VariableDeclaration",
                            "scope": 12131,
                            "src": "2986:25:49",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$16357",
                              "typeString": "contract IYieldSource"
                            },
                            "typeName": {
                              "id": 12113,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12112,
                                "name": "IYieldSource",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16357,
                                "src": "2986:12:49"
                              },
                              "referencedDeclaration": 16357,
                              "src": "2986:12:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12116,
                        "initialValue": {
                          "id": 12115,
                          "name": "yieldSource",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 11980,
                          "src": "3014:11:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$16357",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2986:39:49"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 12128,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 12122,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12117,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12106,
                                  "src": "3056:14:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "id": 12120,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12114,
                                      "src": "3082:12:49",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                        "typeString": "contract IYieldSource"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                        "typeString": "contract IYieldSource"
                                      }
                                    ],
                                    "id": 12119,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "3074:7:49",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 12118,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3074:7:49",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 12121,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3074:21:49",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "3056:39:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 12127,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12123,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12106,
                                  "src": "3111:14:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "expression": {
                                      "id": 12124,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12114,
                                      "src": "3129:12:49",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                        "typeString": "contract IYieldSource"
                                      }
                                    },
                                    "id": 12125,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "depositToken",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 16332,
                                    "src": "3129:25:49",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                      "typeString": "function () view external returns (address)"
                                    }
                                  },
                                  "id": 12126,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3129:27:49",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "3111:45:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "3056:100:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 12129,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "3042:124:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 12111,
                        "id": 12130,
                        "nodeType": "Return",
                        "src": "3035:131:49"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12104,
                    "nodeType": "StructuredDocumentation",
                    "src": "2476:406:49",
                    "text": "@notice Determines whether the passed token can be transferred out as an external award.\n @dev Different yield sources will hold the deposits as another kind of token: such a Compound's cToken.  The\n prize strategy should not be allowed to move those tokens.\n @param _externalToken The address of the token to check\n @return True if the token may be awarded, false otherwise"
                  },
                  "id": 12132,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "2896:17:49",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12108,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2952:8:49"
                  },
                  "parameters": {
                    "id": 12107,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12106,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "2922:14:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 12132,
                        "src": "2914:22:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12105,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2914:7:49",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2913:24:49"
                  },
                  "returnParameters": {
                    "id": 12111,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12110,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12132,
                        "src": "2970:4:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12109,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2970:4:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2969:6:49"
                  },
                  "scope": 12207,
                  "src": "2887:286:49",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11944
                  ],
                  "body": {
                    "id": 12147,
                    "nodeType": "Block",
                    "src": "3393:65:49",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 12143,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "3445:4:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$12207",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$12207",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 12142,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3437:7:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 12141,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3437:7:49",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 12144,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3437:13:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 12139,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11980,
                              "src": "3410:11:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 12140,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOfToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16340,
                            "src": "3410:26:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) external returns (uint256)"
                            }
                          },
                          "id": 12145,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3410:41:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12138,
                        "id": 12146,
                        "nodeType": "Return",
                        "src": "3403:48:49"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12133,
                    "nodeType": "StructuredDocumentation",
                    "src": "3179:153:49",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens"
                  },
                  "id": 12148,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "3346:8:49",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12135,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3366:8:49"
                  },
                  "parameters": {
                    "id": 12134,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3354:2:49"
                  },
                  "returnParameters": {
                    "id": 12138,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12137,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12148,
                        "src": "3384:7:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12136,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3384:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3383:9:49"
                  },
                  "scope": 12207,
                  "src": "3337:121:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11938
                  ],
                  "body": {
                    "id": 12162,
                    "nodeType": "Block",
                    "src": "3652:58:49",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 12157,
                                  "name": "yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11980,
                                  "src": "3676:11:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                    "typeString": "contract IYieldSource"
                                  }
                                },
                                "id": 12158,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "depositToken",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 16332,
                                "src": "3676:24:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                  "typeString": "function () view external returns (address)"
                                }
                              },
                              "id": 12159,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3676:26:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 12156,
                            "name": "IERC20",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 663,
                            "src": "3669:6:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC20_$663_$",
                              "typeString": "type(contract IERC20)"
                            }
                          },
                          "id": 12160,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3669:34:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 12155,
                        "id": 12161,
                        "nodeType": "Return",
                        "src": "3662:41:49"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12149,
                    "nodeType": "StructuredDocumentation",
                    "src": "3464:125:49",
                    "text": "@notice Returns the address of the ERC20 asset token used for deposits.\n @return Address of the ERC20 asset token."
                  },
                  "id": 12163,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "3603:6:49",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12151,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3626:8:49"
                  },
                  "parameters": {
                    "id": 12150,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3609:2:49"
                  },
                  "returnParameters": {
                    "id": 12155,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12154,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12163,
                        "src": "3644:6:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 12153,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12152,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "3644:6:49"
                          },
                          "referencedDeclaration": 663,
                          "src": "3644:6:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3643:8:49"
                  },
                  "scope": 12207,
                  "src": "3594:116:49",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11950
                  ],
                  "body": {
                    "id": 12190,
                    "nodeType": "Block",
                    "src": "3900:145:49",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 12175,
                                  "name": "yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11980,
                                  "src": "3949:11:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 12174,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3941:7:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 12173,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3941:7:49",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 12176,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3941:20:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12177,
                              "name": "_mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12166,
                              "src": "3963:11:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 12170,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  12163
                                ],
                                "referencedDeclaration": 12163,
                                "src": "3910:6:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$663_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 12171,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3910:8:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 12172,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeIncreaseAllowance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1030,
                            "src": "3910:30:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 12178,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3910:65:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12179,
                        "nodeType": "ExpressionStatement",
                        "src": "3910:65:49"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12183,
                              "name": "_mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12166,
                              "src": "4011:11:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 12186,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "4032:4:49",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$12207",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$12207",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 12185,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4024:7:49",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 12184,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4024:7:49",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 12187,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4024:13:49",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 12180,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11980,
                              "src": "3985:11:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 12182,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "supplyTokenTo",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16348,
                            "src": "3985:25:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (uint256,address) external"
                            }
                          },
                          "id": 12188,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3985:53:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12189,
                        "nodeType": "ExpressionStatement",
                        "src": "3985:53:49"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12164,
                    "nodeType": "StructuredDocumentation",
                    "src": "3716:123:49",
                    "text": "@notice Supplies asset tokens to the yield source.\n @param _mintAmount The amount of asset tokens to be supplied"
                  },
                  "id": 12191,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "3853:7:49",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12168,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3891:8:49"
                  },
                  "parameters": {
                    "id": 12167,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12166,
                        "mutability": "mutable",
                        "name": "_mintAmount",
                        "nameLocation": "3869:11:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 12191,
                        "src": "3861:19:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12165,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3861:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3860:21:49"
                  },
                  "returnParameters": {
                    "id": 12169,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3900:0:49"
                  },
                  "scope": 12207,
                  "src": "3844:201:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11958
                  ],
                  "body": {
                    "id": 12205,
                    "nodeType": "Block",
                    "src": "4330:62:49",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12202,
                              "name": "_redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12194,
                              "src": "4371:13:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 12200,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11980,
                              "src": "4347:11:49",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$16357",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 12201,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "redeemToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16356,
                            "src": "4347:23:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) external returns (uint256)"
                            }
                          },
                          "id": 12203,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4347:38:49",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12199,
                        "id": 12204,
                        "nodeType": "Return",
                        "src": "4340:45:49"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12192,
                    "nodeType": "StructuredDocumentation",
                    "src": "4051:198:49",
                    "text": "@notice Redeems asset tokens from the yield source.\n @param _redeemAmount The amount of yield-bearing tokens to be redeemed\n @return The actual amount of tokens that were redeemed."
                  },
                  "id": 12206,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "4263:7:49",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12196,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4303:8:49"
                  },
                  "parameters": {
                    "id": 12195,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12194,
                        "mutability": "mutable",
                        "name": "_redeemAmount",
                        "nameLocation": "4279:13:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 12206,
                        "src": "4271:21:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12193,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4271:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4270:23:49"
                  },
                  "returnParameters": {
                    "id": 12199,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12198,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12206,
                        "src": "4321:7:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12197,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4321:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4320:9:49"
                  },
                  "scope": 12207,
                  "src": "4254:138:49",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12208,
              "src": "641:3753:49",
              "usedErrors": []
            }
          ],
          "src": "37:4358:49"
        },
        "id": 49
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              8967
            ],
            "IPrizeSplit": [
              9043
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeSplit": [
              12557
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 12558,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12209,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:50"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 12210,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12558,
              "sourceUnit": 3259,
              "src": "61:69:50",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol",
              "file": "../interfaces/IPrizeSplit.sol",
              "id": 12211,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12558,
              "sourceUnit": 9044,
              "src": "132:39:50",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 12213,
                    "name": "IPrizeSplit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9043,
                    "src": "277:11:50"
                  },
                  "id": 12214,
                  "nodeType": "InheritanceSpecifier",
                  "src": "277:11:50"
                },
                {
                  "baseName": {
                    "id": 12215,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3258,
                    "src": "290:7:50"
                  },
                  "id": 12216,
                  "nodeType": "InheritanceSpecifier",
                  "src": "290:7:50"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 12212,
                "nodeType": "StructuredDocumentation",
                "src": "173:71:50",
                "text": " @title PrizeSplit Interface\n @author PoolTogether Inc Team"
              },
              "fullyImplemented": false,
              "id": 12557,
              "linearizedBaseContracts": [
                12557,
                3258,
                9043
              ],
              "name": "PrizeSplit",
              "nameLocation": "263:10:50",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 12220,
                  "mutability": "mutable",
                  "name": "_prizeSplits",
                  "nameLocation": "385:12:50",
                  "nodeType": "VariableDeclaration",
                  "scope": 12557,
                  "src": "357:40:50",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                    "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 12218,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 12217,
                        "name": "PrizeSplitConfig",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 8987,
                        "src": "357:16:50"
                      },
                      "referencedDeclaration": 8987,
                      "src": "357:16:50",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                        "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                      }
                    },
                    "id": 12219,
                    "nodeType": "ArrayTypeName",
                    "src": "357:18:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr",
                      "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "functionSelector": "45a9f187",
                  "id": 12223,
                  "mutability": "constant",
                  "name": "ONE_AS_FIXED_POINT_3",
                  "nameLocation": "427:20:50",
                  "nodeType": "VariableDeclaration",
                  "scope": 12557,
                  "src": "404:50:50",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 12221,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "404:6:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "31303030",
                    "id": 12222,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "450:4:50",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1000_by_1",
                      "typeString": "int_const 1000"
                    },
                    "value": "1000"
                  },
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    9010
                  ],
                  "body": {
                    "id": 12237,
                    "nodeType": "Block",
                    "src": "691:54:50",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 12233,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12220,
                            "src": "708:12:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 12235,
                          "indexExpression": {
                            "id": 12234,
                            "name": "_prizeSplitIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12226,
                            "src": "721:16:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "708:30:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                          }
                        },
                        "functionReturnParameters": 12232,
                        "id": 12236,
                        "nodeType": "Return",
                        "src": "701:37:50"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12224,
                    "nodeType": "StructuredDocumentation",
                    "src": "517:27:50",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "cf713d6e",
                  "id": 12238,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplit",
                  "nameLocation": "558:13:50",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12228,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "636:8:50"
                  },
                  "parameters": {
                    "id": 12227,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12226,
                        "mutability": "mutable",
                        "name": "_prizeSplitIndex",
                        "nameLocation": "580:16:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12238,
                        "src": "572:24:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12225,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "572:7:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "571:26:50"
                  },
                  "returnParameters": {
                    "id": 12232,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12231,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12238,
                        "src": "662:23:50",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 12230,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12229,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8987,
                            "src": "662:16:50"
                          },
                          "referencedDeclaration": 8987,
                          "src": "662:16:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "661:25:50"
                  },
                  "scope": 12557,
                  "src": "549:196:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9018
                  ],
                  "body": {
                    "id": 12249,
                    "nodeType": "Block",
                    "src": "868:36:50",
                    "statements": [
                      {
                        "expression": {
                          "id": 12247,
                          "name": "_prizeSplits",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12220,
                          "src": "885:12:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                          }
                        },
                        "functionReturnParameters": 12246,
                        "id": 12248,
                        "nodeType": "Return",
                        "src": "878:19:50"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12239,
                    "nodeType": "StructuredDocumentation",
                    "src": "751:27:50",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "cf1e3b59",
                  "id": 12250,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplits",
                  "nameLocation": "792:14:50",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12241,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "823:8:50"
                  },
                  "parameters": {
                    "id": 12240,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "806:2:50"
                  },
                  "returnParameters": {
                    "id": 12246,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12245,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12250,
                        "src": "841:25:50",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12243,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12242,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8987,
                              "src": "841:16:50"
                            },
                            "referencedDeclaration": 8987,
                            "src": "841:16:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 12244,
                          "nodeType": "ArrayTypeName",
                          "src": "841:18:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "840:27:50"
                  },
                  "scope": 12557,
                  "src": "783:121:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9033
                  ],
                  "body": {
                    "id": 12394,
                    "nodeType": "Block",
                    "src": "1067:2160:50",
                    "statements": [
                      {
                        "assignments": [
                          12262
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12262,
                            "mutability": "mutable",
                            "name": "newPrizeSplitsLength",
                            "nameLocation": "1085:20:50",
                            "nodeType": "VariableDeclaration",
                            "scope": 12394,
                            "src": "1077:28:50",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12261,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1077:7:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12265,
                        "initialValue": {
                          "expression": {
                            "id": 12263,
                            "name": "_newPrizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12255,
                            "src": "1108:15:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_calldata_ptr_$dyn_calldata_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata[] calldata"
                            }
                          },
                          "id": 12264,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "1108:22:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1077:53:50"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12273,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12267,
                                "name": "newPrizeSplitsLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12262,
                                "src": "1148:20:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 12270,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1177:5:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      },
                                      "typeName": {
                                        "id": 12269,
                                        "name": "uint8",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1177:5:50",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      }
                                    ],
                                    "id": 12268,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1172:4:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 12271,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1172:11:50",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint8",
                                    "typeString": "type(uint8)"
                                  }
                                },
                                "id": 12272,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1172:15:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "1148:39:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c656e677468",
                              "id": 12274,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1189:39:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplits-length\""
                              },
                              "value": "PrizeSplit/invalid-prizesplits-length"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplits-length\""
                              }
                            ],
                            "id": 12266,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1140:7:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12275,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1140:89:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12276,
                        "nodeType": "ExpressionStatement",
                        "src": "1140:89:50"
                      },
                      {
                        "body": {
                          "id": 12354,
                          "nodeType": "Block",
                          "src": "1406:1207:50",
                          "statements": [
                            {
                              "assignments": [
                                12289
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12289,
                                  "mutability": "mutable",
                                  "name": "split",
                                  "nameLocation": "1444:5:50",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12354,
                                  "src": "1420:29:50",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                  },
                                  "typeName": {
                                    "id": 12288,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 12287,
                                      "name": "PrizeSplitConfig",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 8987,
                                      "src": "1420:16:50"
                                    },
                                    "referencedDeclaration": 8987,
                                    "src": "1420:16:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12293,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 12290,
                                  "name": "_newPrizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12255,
                                  "src": "1452:15:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_calldata_ptr_$dyn_calldata_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata[] calldata"
                                  }
                                },
                                "id": 12292,
                                "indexExpression": {
                                  "id": 12291,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12278,
                                  "src": "1468:5:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "1452:22:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_calldata_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "1420:54:50"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    "id": 12301,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "expression": {
                                        "id": 12295,
                                        "name": "split",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12289,
                                        "src": "1560:5:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                        }
                                      },
                                      "id": 12296,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "target",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 8984,
                                      "src": "1560:12:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "!=",
                                    "rightExpression": {
                                      "arguments": [
                                        {
                                          "hexValue": "30",
                                          "id": 12299,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "1584:1:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          },
                                          "value": "0"
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_rational_0_by_1",
                                            "typeString": "int_const 0"
                                          }
                                        ],
                                        "id": 12298,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "1576:7:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 12297,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "1576:7:50",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 12300,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1576:10:50",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    "src": "1560:26:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746172676574",
                                    "id": 12302,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1588:38:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                      "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                                    },
                                    "value": "PrizeSplit/invalid-prizesplit-target"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                      "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                                    }
                                  ],
                                  "id": 12294,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "1552:7:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 12303,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1552:75:50",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 12304,
                              "nodeType": "ExpressionStatement",
                              "src": "1552:75:50"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 12308,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 12305,
                                    "name": "_prizeSplits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12220,
                                    "src": "1786:12:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                    }
                                  },
                                  "id": 12306,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "1786:19:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "id": 12307,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12278,
                                  "src": "1809:5:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1786:28:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 12344,
                                "nodeType": "Block",
                                "src": "1879:594:50",
                                "statements": [
                                  {
                                    "assignments": [
                                      12318
                                    ],
                                    "declarations": [
                                      {
                                        "constant": false,
                                        "id": 12318,
                                        "mutability": "mutable",
                                        "name": "currentSplit",
                                        "nameLocation": "2002:12:50",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 12344,
                                        "src": "1978:36:50",
                                        "stateVariable": false,
                                        "storageLocation": "memory",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                        },
                                        "typeName": {
                                          "id": 12317,
                                          "nodeType": "UserDefinedTypeName",
                                          "pathNode": {
                                            "id": 12316,
                                            "name": "PrizeSplitConfig",
                                            "nodeType": "IdentifierPath",
                                            "referencedDeclaration": 8987,
                                            "src": "1978:16:50"
                                          },
                                          "referencedDeclaration": 8987,
                                          "src": "1978:16:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "id": 12322,
                                    "initialValue": {
                                      "baseExpression": {
                                        "id": 12319,
                                        "name": "_prizeSplits",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12220,
                                        "src": "2017:12:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                        }
                                      },
                                      "id": 12321,
                                      "indexExpression": {
                                        "id": 12320,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12278,
                                        "src": "2030:5:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "2017:19:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                      }
                                    },
                                    "nodeType": "VariableDeclarationStatement",
                                    "src": "1978:58:50"
                                  },
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      },
                                      "id": 12333,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        },
                                        "id": 12327,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "expression": {
                                            "id": 12323,
                                            "name": "split",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12289,
                                            "src": "2215:5:50",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 12324,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "target",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 8984,
                                          "src": "2215:12:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "!=",
                                        "rightExpression": {
                                          "expression": {
                                            "id": 12325,
                                            "name": "currentSplit",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12318,
                                            "src": "2231:12:50",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 12326,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "target",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 8984,
                                          "src": "2231:19:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        "src": "2215:35:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "||",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint16",
                                          "typeString": "uint16"
                                        },
                                        "id": 12332,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "expression": {
                                            "id": 12328,
                                            "name": "split",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12289,
                                            "src": "2274:5:50",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 12329,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "percentage",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 8986,
                                          "src": "2274:16:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint16",
                                            "typeString": "uint16"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "!=",
                                        "rightExpression": {
                                          "expression": {
                                            "id": 12330,
                                            "name": "currentSplit",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12318,
                                            "src": "2294:12:50",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 12331,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "percentage",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 8986,
                                          "src": "2294:23:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint16",
                                            "typeString": "uint16"
                                          }
                                        },
                                        "src": "2274:43:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "src": "2215:102:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 12342,
                                      "nodeType": "Block",
                                      "src": "2410:49:50",
                                      "statements": [
                                        {
                                          "id": 12341,
                                          "nodeType": "Continue",
                                          "src": "2432:8:50"
                                        }
                                      ]
                                    },
                                    "id": 12343,
                                    "nodeType": "IfStatement",
                                    "src": "2190:269:50",
                                    "trueBody": {
                                      "id": 12340,
                                      "nodeType": "Block",
                                      "src": "2336:68:50",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 12338,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "baseExpression": {
                                                "id": 12334,
                                                "name": "_prizeSplits",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 12220,
                                                "src": "2358:12:50",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                                }
                                              },
                                              "id": 12336,
                                              "indexExpression": {
                                                "id": 12335,
                                                "name": "index",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 12278,
                                                "src": "2371:5:50",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "isConstant": false,
                                              "isLValue": true,
                                              "isPure": false,
                                              "lValueRequested": true,
                                              "nodeType": "IndexAccess",
                                              "src": "2358:19:50",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 12337,
                                              "name": "split",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 12289,
                                              "src": "2380:5:50",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                                "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                              }
                                            },
                                            "src": "2358:27:50",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                            }
                                          },
                                          "id": 12339,
                                          "nodeType": "ExpressionStatement",
                                          "src": "2358:27:50"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              },
                              "id": 12345,
                              "nodeType": "IfStatement",
                              "src": "1782:691:50",
                              "trueBody": {
                                "id": 12315,
                                "nodeType": "Block",
                                "src": "1816:57:50",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 12312,
                                          "name": "split",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12289,
                                          "src": "1852:5:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        ],
                                        "expression": {
                                          "id": 12309,
                                          "name": "_prizeSplits",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12220,
                                          "src": "1834:12:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                          }
                                        },
                                        "id": 12311,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "push",
                                        "nodeType": "MemberAccess",
                                        "src": "1834:17:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr_$_t_struct$_PrizeSplitConfig_$8987_storage_$returns$__$bound_to$_t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr_$",
                                          "typeString": "function (struct IPrizeSplit.PrizeSplitConfig storage ref[] storage pointer,struct IPrizeSplit.PrizeSplitConfig storage ref)"
                                        }
                                      },
                                      "id": 12313,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1834:24:50",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 12314,
                                    "nodeType": "ExpressionStatement",
                                    "src": "1834:24:50"
                                  }
                                ]
                              }
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 12347,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12289,
                                      "src": "2564:5:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 12348,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "target",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 8984,
                                    "src": "2564:12:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 12349,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12289,
                                      "src": "2578:5:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 12350,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "percentage",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 8986,
                                    "src": "2578:16:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint16",
                                      "typeString": "uint16"
                                    }
                                  },
                                  {
                                    "id": 12351,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12278,
                                    "src": "2596:5:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint16",
                                      "typeString": "uint16"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 12346,
                                  "name": "PrizeSplitSet",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8996,
                                  "src": "2550:13:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint16_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint16,uint256)"
                                  }
                                },
                                "id": 12352,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2550:52:50",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 12353,
                              "nodeType": "EmitStatement",
                              "src": "2545:57:50"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12283,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12281,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12278,
                            "src": "1367:5:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 12282,
                            "name": "newPrizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12262,
                            "src": "1375:20:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1367:28:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12355,
                        "initializationExpression": {
                          "assignments": [
                            12278
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 12278,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "1356:5:50",
                              "nodeType": "VariableDeclaration",
                              "scope": 12355,
                              "src": "1348:13:50",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 12277,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1348:7:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 12280,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 12279,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1364:1:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1348:17:50"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 12285,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "1397:7:50",
                            "subExpression": {
                              "id": 12284,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12278,
                              "src": "1397:5:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 12286,
                          "nodeType": "ExpressionStatement",
                          "src": "1397:7:50"
                        },
                        "nodeType": "ForStatement",
                        "src": "1343:1270:50"
                      },
                      {
                        "body": {
                          "id": 12380,
                          "nodeType": "Block",
                          "src": "2791:203:50",
                          "statements": [
                            {
                              "assignments": [
                                12361
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12361,
                                  "mutability": "mutable",
                                  "name": "_index",
                                  "nameLocation": "2813:6:50",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12380,
                                  "src": "2805:14:50",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 12360,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2805:7:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12362,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2805:14:50"
                            },
                            {
                              "id": 12370,
                              "nodeType": "UncheckedBlock",
                              "src": "2833:75:50",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 12368,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "id": 12363,
                                      "name": "_index",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12361,
                                      "src": "2861:6:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 12367,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "id": 12364,
                                          "name": "_prizeSplits",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12220,
                                          "src": "2870:12:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                          }
                                        },
                                        "id": 12365,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "length",
                                        "nodeType": "MemberAccess",
                                        "src": "2870:19:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "hexValue": "31",
                                        "id": 12366,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "2892:1:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "src": "2870:23:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "2861:32:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "id": 12369,
                                  "nodeType": "ExpressionStatement",
                                  "src": "2861:32:50"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "id": 12371,
                                    "name": "_prizeSplits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12220,
                                    "src": "2921:12:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                    }
                                  },
                                  "id": 12373,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "pop",
                                  "nodeType": "MemberAccess",
                                  "src": "2921:16:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_arraypop_nonpayable$_t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr_$returns$__$bound_to$_t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr_$",
                                    "typeString": "function (struct IPrizeSplit.PrizeSplitConfig storage ref[] storage pointer)"
                                  }
                                },
                                "id": 12374,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2921:18:50",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 12375,
                              "nodeType": "ExpressionStatement",
                              "src": "2921:18:50"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 12377,
                                    "name": "_index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12361,
                                    "src": "2976:6:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 12376,
                                  "name": "PrizeSplitRemoved",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9001,
                                  "src": "2958:17:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256)"
                                  }
                                },
                                "id": 12378,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2958:25:50",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 12379,
                              "nodeType": "EmitStatement",
                              "src": "2953:30:50"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12359,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 12356,
                              "name": "_prizeSplits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12220,
                              "src": "2747:12:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                              }
                            },
                            "id": 12357,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2747:19:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "id": 12358,
                            "name": "newPrizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12262,
                            "src": "2769:20:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2747:42:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12381,
                        "nodeType": "WhileStatement",
                        "src": "2740:254:50"
                      },
                      {
                        "assignments": [
                          12383
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12383,
                            "mutability": "mutable",
                            "name": "totalPercentage",
                            "nameLocation": "3060:15:50",
                            "nodeType": "VariableDeclaration",
                            "scope": 12394,
                            "src": "3052:23:50",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12382,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3052:7:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12386,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 12384,
                            "name": "_totalPrizeSplitPercentageAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12489,
                            "src": "3078:32:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 12385,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3078:34:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3052:60:50"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12390,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12388,
                                "name": "totalPercentage",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12383,
                                "src": "3130:15:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 12389,
                                "name": "ONE_AS_FIXED_POINT_3",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12223,
                                "src": "3149:20:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3130:39:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d70657263656e746167652d746f74616c",
                              "id": 12391,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3171:48:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              },
                              "value": "PrizeSplit/invalid-prizesplit-percentage-total"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              }
                            ],
                            "id": 12387,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3122:7:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12392,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3122:98:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12393,
                        "nodeType": "ExpressionStatement",
                        "src": "3122:98:50"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12251,
                    "nodeType": "StructuredDocumentation",
                    "src": "910:27:50",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "063a2298",
                  "id": 12395,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 12259,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 12258,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "1053:9:50"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1053:9:50"
                    }
                  ],
                  "name": "setPrizeSplits",
                  "nameLocation": "951:14:50",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12257,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1036:8:50"
                  },
                  "parameters": {
                    "id": 12256,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12255,
                        "mutability": "mutable",
                        "name": "_newPrizeSplits",
                        "nameLocation": "994:15:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12395,
                        "src": "966:43:50",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12253,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12252,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 8987,
                              "src": "966:16:50"
                            },
                            "referencedDeclaration": 8987,
                            "src": "966:16:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 12254,
                          "nodeType": "ArrayTypeName",
                          "src": "966:18:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "965:45:50"
                  },
                  "returnParameters": {
                    "id": 12260,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1067:0:50"
                  },
                  "scope": 12557,
                  "src": "942:2285:50",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9042
                  ],
                  "body": {
                    "id": 12452,
                    "nodeType": "Block",
                    "src": "3405:695:50",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12411,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12408,
                                "name": "_prizeSplitIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12401,
                                "src": "3423:16:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "expression": {
                                  "id": 12409,
                                  "name": "_prizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12220,
                                  "src": "3442:12:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                  }
                                },
                                "id": 12410,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "3442:19:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "3423:38:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6974",
                              "id": 12412,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3463:35:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3",
                                "typeString": "literal_string \"PrizeSplit/nonexistent-prizesplit\""
                              },
                              "value": "PrizeSplit/nonexistent-prizesplit"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3",
                                "typeString": "literal_string \"PrizeSplit/nonexistent-prizesplit\""
                              }
                            ],
                            "id": 12407,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3415:7:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12413,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3415:84:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12414,
                        "nodeType": "ExpressionStatement",
                        "src": "3415:84:50"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12422,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 12416,
                                  "name": "_prizeSplit",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12399,
                                  "src": "3517:11:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                  }
                                },
                                "id": 12417,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "target",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8984,
                                "src": "3517:18:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12420,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3547:1:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12419,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3539:7:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12418,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3539:7:50",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12421,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3539:10:50",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3517:32:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746172676574",
                              "id": 12423,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3551:38:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                              },
                              "value": "PrizeSplit/invalid-prizesplit-target"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-target\""
                              }
                            ],
                            "id": 12415,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3509:7:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3509:81:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12425,
                        "nodeType": "ExpressionStatement",
                        "src": "3509:81:50"
                      },
                      {
                        "expression": {
                          "id": 12430,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 12426,
                              "name": "_prizeSplits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12220,
                              "src": "3642:12:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                              }
                            },
                            "id": 12428,
                            "indexExpression": {
                              "id": 12427,
                              "name": "_prizeSplitIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12401,
                              "src": "3655:16:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "3642:30:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12429,
                            "name": "_prizeSplit",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12399,
                            "src": "3675:11:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                            }
                          },
                          "src": "3642:44:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                          }
                        },
                        "id": 12431,
                        "nodeType": "ExpressionStatement",
                        "src": "3642:44:50"
                      },
                      {
                        "assignments": [
                          12433
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12433,
                            "mutability": "mutable",
                            "name": "totalPercentage",
                            "nameLocation": "3753:15:50",
                            "nodeType": "VariableDeclaration",
                            "scope": 12452,
                            "src": "3745:23:50",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12432,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3745:7:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12436,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 12434,
                            "name": "_totalPrizeSplitPercentageAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12489,
                            "src": "3771:32:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 12435,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3771:34:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3745:60:50"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12440,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12438,
                                "name": "totalPercentage",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12433,
                                "src": "3823:15:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 12439,
                                "name": "ONE_AS_FIXED_POINT_3",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12223,
                                "src": "3842:20:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3823:39:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d70657263656e746167652d746f74616c",
                              "id": 12441,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3864:48:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              },
                              "value": "PrizeSplit/invalid-prizesplit-percentage-total"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d",
                                "typeString": "literal_string \"PrizeSplit/invalid-prizesplit-percentage-total\""
                              }
                            ],
                            "id": 12437,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3815:7:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12442,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3815:98:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12443,
                        "nodeType": "ExpressionStatement",
                        "src": "3815:98:50"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 12445,
                                "name": "_prizeSplit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12399,
                                "src": "3999:11:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                }
                              },
                              "id": 12446,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "target",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8984,
                              "src": "3999:18:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 12447,
                                "name": "_prizeSplit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12399,
                                "src": "4031:11:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                }
                              },
                              "id": 12448,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "percentage",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8986,
                              "src": "4031:22:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              }
                            },
                            {
                              "id": 12449,
                              "name": "_prizeSplitIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12401,
                              "src": "4067:16:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 12444,
                            "name": "PrizeSplitSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8996,
                            "src": "3972:13:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint16_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint16,uint256)"
                            }
                          },
                          "id": 12450,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3972:121:50",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12451,
                        "nodeType": "EmitStatement",
                        "src": "3967:126:50"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12396,
                    "nodeType": "StructuredDocumentation",
                    "src": "3233:27:50",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "056ea84f",
                  "id": 12453,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 12405,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 12404,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "3391:9:50"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3391:9:50"
                    }
                  ],
                  "name": "setPrizeSplit",
                  "nameLocation": "3274:13:50",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12403,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3374:8:50"
                  },
                  "parameters": {
                    "id": 12402,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12399,
                        "mutability": "mutable",
                        "name": "_prizeSplit",
                        "nameLocation": "3312:11:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12453,
                        "src": "3288:35:50",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 12398,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12397,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8987,
                            "src": "3288:16:50"
                          },
                          "referencedDeclaration": 8987,
                          "src": "3288:16:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12401,
                        "mutability": "mutable",
                        "name": "_prizeSplitIndex",
                        "nameLocation": "3331:16:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12453,
                        "src": "3325:22:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 12400,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3325:5:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3287:61:50"
                  },
                  "returnParameters": {
                    "id": 12406,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3405:0:50"
                  },
                  "scope": 12557,
                  "src": "3265:835:50",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 12488,
                    "nodeType": "Block",
                    "src": "4507:289:50",
                    "statements": [
                      {
                        "assignments": [
                          12460
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12460,
                            "mutability": "mutable",
                            "name": "_tempTotalPercentage",
                            "nameLocation": "4525:20:50",
                            "nodeType": "VariableDeclaration",
                            "scope": 12488,
                            "src": "4517:28:50",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12459,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4517:7:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12461,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4517:28:50"
                      },
                      {
                        "assignments": [
                          12463
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12463,
                            "mutability": "mutable",
                            "name": "prizeSplitsLength",
                            "nameLocation": "4563:17:50",
                            "nodeType": "VariableDeclaration",
                            "scope": 12488,
                            "src": "4555:25:50",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12462,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4555:7:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12466,
                        "initialValue": {
                          "expression": {
                            "id": 12464,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12220,
                            "src": "4583:12:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 12465,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "4583:19:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4555:47:50"
                      },
                      {
                        "body": {
                          "id": 12484,
                          "nodeType": "Block",
                          "src": "4673:79:50",
                          "statements": [
                            {
                              "expression": {
                                "id": 12482,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12477,
                                  "name": "_tempTotalPercentage",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12460,
                                  "src": "4687:20:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "expression": {
                                    "baseExpression": {
                                      "id": 12478,
                                      "name": "_prizeSplits",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12220,
                                      "src": "4711:12:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                      }
                                    },
                                    "id": 12480,
                                    "indexExpression": {
                                      "id": 12479,
                                      "name": "index",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12468,
                                      "src": "4724:5:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "4711:19:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                    }
                                  },
                                  "id": 12481,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "percentage",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 8986,
                                  "src": "4711:30:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint16",
                                    "typeString": "uint16"
                                  }
                                },
                                "src": "4687:54:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 12483,
                              "nodeType": "ExpressionStatement",
                              "src": "4687:54:50"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12473,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12471,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12468,
                            "src": "4637:5:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 12472,
                            "name": "prizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12463,
                            "src": "4645:17:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4637:25:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12485,
                        "initializationExpression": {
                          "assignments": [
                            12468
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 12468,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "4626:5:50",
                              "nodeType": "VariableDeclaration",
                              "scope": 12485,
                              "src": "4618:13:50",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 12467,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4618:7:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 12470,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 12469,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4634:1:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "4618:17:50"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 12475,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "4664:7:50",
                            "subExpression": {
                              "id": 12474,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12468,
                              "src": "4664:5:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 12476,
                          "nodeType": "ExpressionStatement",
                          "src": "4664:7:50"
                        },
                        "nodeType": "ForStatement",
                        "src": "4613:139:50"
                      },
                      {
                        "expression": {
                          "id": 12486,
                          "name": "_tempTotalPercentage",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12460,
                          "src": "4769:20:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12458,
                        "id": 12487,
                        "nodeType": "Return",
                        "src": "4762:27:50"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12454,
                    "nodeType": "StructuredDocumentation",
                    "src": "4162:264:50",
                    "text": " @notice Calculates total prize split percentage amount.\n @dev Calculates total PrizeSplitConfig percentage(s) amount. Used to check the total does not exceed 100% of award distribution.\n @return Total prize split(s) percentage amount"
                  },
                  "id": 12489,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_totalPrizeSplitPercentageAmount",
                  "nameLocation": "4440:32:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12455,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4472:2:50"
                  },
                  "returnParameters": {
                    "id": 12458,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12457,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12489,
                        "src": "4498:7:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12456,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4498:7:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4497:9:50"
                  },
                  "scope": 12557,
                  "src": "4431:365:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12547,
                    "nodeType": "Block",
                    "src": "5118:606:50",
                    "statements": [
                      {
                        "assignments": [
                          12498
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12498,
                            "mutability": "mutable",
                            "name": "_prizeTemp",
                            "nameLocation": "5136:10:50",
                            "nodeType": "VariableDeclaration",
                            "scope": 12547,
                            "src": "5128:18:50",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12497,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5128:7:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12500,
                        "initialValue": {
                          "id": 12499,
                          "name": "_prize",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12492,
                          "src": "5149:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5128:27:50"
                      },
                      {
                        "assignments": [
                          12502
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12502,
                            "mutability": "mutable",
                            "name": "prizeSplitsLength",
                            "nameLocation": "5173:17:50",
                            "nodeType": "VariableDeclaration",
                            "scope": 12547,
                            "src": "5165:25:50",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12501,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5165:7:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12505,
                        "initialValue": {
                          "expression": {
                            "id": 12503,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12220,
                            "src": "5193:12:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 12504,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "5193:19:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5165:47:50"
                      },
                      {
                        "body": {
                          "id": 12543,
                          "nodeType": "Block",
                          "src": "5283:407:50",
                          "statements": [
                            {
                              "assignments": [
                                12518
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12518,
                                  "mutability": "mutable",
                                  "name": "split",
                                  "nameLocation": "5321:5:50",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12543,
                                  "src": "5297:29:50",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                  },
                                  "typeName": {
                                    "id": 12517,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 12516,
                                      "name": "PrizeSplitConfig",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 8987,
                                      "src": "5297:16:50"
                                    },
                                    "referencedDeclaration": 8987,
                                    "src": "5297:16:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage_ptr",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12522,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 12519,
                                  "name": "_prizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12220,
                                  "src": "5329:12:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$8987_storage_$dyn_storage",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                  }
                                },
                                "id": 12521,
                                "indexExpression": {
                                  "id": 12520,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12507,
                                  "src": "5342:5:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "5329:19:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_storage",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5297:51:50"
                            },
                            {
                              "assignments": [
                                12524
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12524,
                                  "mutability": "mutable",
                                  "name": "_splitAmount",
                                  "nameLocation": "5370:12:50",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12543,
                                  "src": "5362:20:50",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 12523,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5362:7:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12532,
                              "initialValue": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 12531,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 12528,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 12525,
                                        "name": "_prize",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12492,
                                        "src": "5386:6:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "expression": {
                                          "id": 12526,
                                          "name": "split",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12518,
                                          "src": "5395:5:50",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        },
                                        "id": 12527,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "percentage",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 8986,
                                        "src": "5395:16:50",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint16",
                                          "typeString": "uint16"
                                        }
                                      },
                                      "src": "5386:25:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 12529,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "5385:27:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "hexValue": "31303030",
                                  "id": 12530,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "5415:4:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1000_by_1",
                                    "typeString": "int_const 1000"
                                  },
                                  "value": "1000"
                                },
                                "src": "5385:34:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5362:57:50"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 12534,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12518,
                                      "src": "5515:5:50",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$8987_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 12535,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "target",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 8984,
                                    "src": "5515:12:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 12536,
                                    "name": "_splitAmount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12524,
                                    "src": "5529:12:50",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 12533,
                                  "name": "_awardPrizeSplitAmount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12556,
                                  "src": "5492:22:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 12537,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5492:50:50",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 12538,
                              "nodeType": "ExpressionStatement",
                              "src": "5492:50:50"
                            },
                            {
                              "expression": {
                                "id": 12541,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12539,
                                  "name": "_prizeTemp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12498,
                                  "src": "5653:10:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "-=",
                                "rightHandSide": {
                                  "id": 12540,
                                  "name": "_splitAmount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12524,
                                  "src": "5667:12:50",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5653:26:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 12542,
                              "nodeType": "ExpressionStatement",
                              "src": "5653:26:50"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12512,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12510,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12507,
                            "src": "5247:5:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 12511,
                            "name": "prizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12502,
                            "src": "5255:17:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5247:25:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12544,
                        "initializationExpression": {
                          "assignments": [
                            12507
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 12507,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "5236:5:50",
                              "nodeType": "VariableDeclaration",
                              "scope": 12544,
                              "src": "5228:13:50",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 12506,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5228:7:50",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 12509,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 12508,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5244:1:50",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5228:17:50"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 12514,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5274:7:50",
                            "subExpression": {
                              "id": 12513,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12507,
                              "src": "5274:5:50",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 12515,
                          "nodeType": "ExpressionStatement",
                          "src": "5274:7:50"
                        },
                        "nodeType": "ForStatement",
                        "src": "5223:467:50"
                      },
                      {
                        "expression": {
                          "id": 12545,
                          "name": "_prizeTemp",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12498,
                          "src": "5707:10:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12496,
                        "id": 12546,
                        "nodeType": "Return",
                        "src": "5700:17:50"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12490,
                    "nodeType": "StructuredDocumentation",
                    "src": "4802:236:50",
                    "text": " @notice Distributes prize split(s).\n @dev Distributes prize split(s) by awarding ticket or sponsorship tokens.\n @param _prize Starting prize award amount\n @return The remainder after splits are taken"
                  },
                  "id": 12548,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_distributePrizeSplits",
                  "nameLocation": "5052:22:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12493,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12492,
                        "mutability": "mutable",
                        "name": "_prize",
                        "nameLocation": "5083:6:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12548,
                        "src": "5075:14:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12491,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5075:7:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5074:16:50"
                  },
                  "returnParameters": {
                    "id": 12496,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12495,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12548,
                        "src": "5109:7:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12494,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5109:7:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5108:9:50"
                  },
                  "scope": 12557,
                  "src": "5043:681:50",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 12549,
                    "nodeType": "StructuredDocumentation",
                    "src": "5730:289:50",
                    "text": " @notice Mints ticket or sponsorship tokens to prize split recipient.\n @dev Mints ticket or sponsorship tokens to prize split recipient via the linked PrizePool contract.\n @param _target Recipient of minted tokens\n @param _amount Amount of minted tokens"
                  },
                  "id": 12556,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPrizeSplitAmount",
                  "nameLocation": "6033:22:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12554,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12551,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "6064:7:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12556,
                        "src": "6056:15:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12550,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6056:7:50",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12553,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6081:7:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 12556,
                        "src": "6073:15:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12552,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6073:7:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6055:34:50"
                  },
                  "returnParameters": {
                    "id": 12555,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6106:0:50"
                  },
                  "scope": 12557,
                  "src": "6024:83:50",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 12558,
              "src": "245:5864:50",
              "usedErrors": []
            }
          ],
          "src": "37:6073:50"
        },
        "id": 50
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              8967
            ],
            "IPrizeSplit": [
              9043
            ],
            "IStrategy": [
              9104
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeSplit": [
              12557
            ],
            "PrizeSplitStrategy": [
              12690
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 12691,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12559,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:51"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol",
              "file": "./PrizeSplit.sol",
              "id": 12560,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12691,
              "sourceUnit": 12558,
              "src": "61:26:51",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol",
              "file": "../interfaces/IStrategy.sol",
              "id": 12561,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12691,
              "sourceUnit": 9105,
              "src": "88:37:51",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 12562,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12691,
              "sourceUnit": 8968,
              "src": "126:38:51",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 12564,
                    "name": "PrizeSplit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12557,
                    "src": "908:10:51"
                  },
                  "id": 12565,
                  "nodeType": "InheritanceSpecifier",
                  "src": "908:10:51"
                },
                {
                  "baseName": {
                    "id": 12566,
                    "name": "IStrategy",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9104,
                    "src": "920:9:51"
                  },
                  "id": 12567,
                  "nodeType": "InheritanceSpecifier",
                  "src": "920:9:51"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 12563,
                "nodeType": "StructuredDocumentation",
                "src": "166:710:51",
                "text": " @title  PoolTogether V4 PrizeSplitStrategy\n @author PoolTogether Inc Team\n @notice Captures PrizePool interest for PrizeReserve and additional PrizeSplit recipients.\nThe PrizeSplitStrategy will have at minimum a single PrizeSplit with 100% of the captured\ninterest transfered to the PrizeReserve. Additional PrizeSplits can be added, depending on\nthe deployers requirements (i.e. percentage to charity). In contrast to previous PoolTogether\niterations, interest can be captured independent of a new Draw. Ideally (to save gas) interest\nis only captured when also distributing the captured prize(s) to applicable Prize Distributor(s)."
              },
              "fullyImplemented": true,
              "id": 12690,
              "linearizedBaseContracts": [
                12690,
                9104,
                12557,
                3258,
                9043
              ],
              "name": "PrizeSplitStrategy",
              "nameLocation": "886:18:51",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 12568,
                    "nodeType": "StructuredDocumentation",
                    "src": "936:44:51",
                    "text": " @notice PrizePool address"
                  },
                  "id": 12571,
                  "mutability": "immutable",
                  "name": "prizePool",
                  "nameLocation": "1015:9:51",
                  "nodeType": "VariableDeclaration",
                  "scope": 12690,
                  "src": "985:39:51",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizePool_$8967",
                    "typeString": "contract IPrizePool"
                  },
                  "typeName": {
                    "id": 12570,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 12569,
                      "name": "IPrizePool",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8967,
                      "src": "985:10:51"
                    },
                    "referencedDeclaration": 8967,
                    "src": "985:10:51",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizePool_$8967",
                      "typeString": "contract IPrizePool"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12572,
                    "nodeType": "StructuredDocumentation",
                    "src": "1031:126:51",
                    "text": " @notice Deployed Event\n @param owner Contract owner\n @param prizePool Linked PrizePool contract"
                  },
                  "id": 12579,
                  "name": "Deployed",
                  "nameLocation": "1168:8:51",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12578,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12574,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1193:5:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12579,
                        "src": "1177:21:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12573,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1177:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12577,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizePool",
                        "nameLocation": "1211:9:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12579,
                        "src": "1200:20:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$8967",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 12576,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12575,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8967,
                            "src": "1200:10:51"
                          },
                          "referencedDeclaration": 8967,
                          "src": "1200:10:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1176:45:51"
                  },
                  "src": "1162:60:51"
                },
                {
                  "body": {
                    "id": 12613,
                    "nodeType": "Block",
                    "src": "1503:218:51",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12600,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 12594,
                                    "name": "_prizePool",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12585,
                                    "src": "1542:10:51",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                      "typeString": "contract IPrizePool"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                      "typeString": "contract IPrizePool"
                                    }
                                  ],
                                  "id": 12593,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1534:7:51",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12592,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1534:7:51",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12595,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1534:19:51",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12598,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1565:1:51",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12597,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1557:7:51",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12596,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1557:7:51",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12599,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1557:10:51",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1534:33:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f742d7a65726f2d61646472657373",
                              "id": 12601,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1581:48:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6",
                                "typeString": "literal_string \"PrizeSplitStrategy/prize-pool-not-zero-address\""
                              },
                              "value": "PrizeSplitStrategy/prize-pool-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6",
                                "typeString": "literal_string \"PrizeSplitStrategy/prize-pool-not-zero-address\""
                              }
                            ],
                            "id": 12591,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1513:7:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12602,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1513:126:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12603,
                        "nodeType": "ExpressionStatement",
                        "src": "1513:126:51"
                      },
                      {
                        "expression": {
                          "id": 12606,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12604,
                            "name": "prizePool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12571,
                            "src": "1649:9:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizePool_$8967",
                              "typeString": "contract IPrizePool"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12605,
                            "name": "_prizePool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12585,
                            "src": "1661:10:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizePool_$8967",
                              "typeString": "contract IPrizePool"
                            }
                          },
                          "src": "1649:22:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "id": 12607,
                        "nodeType": "ExpressionStatement",
                        "src": "1649:22:51"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 12609,
                              "name": "_owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12582,
                              "src": "1695:6:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12610,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12585,
                              "src": "1703:10:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            ],
                            "id": 12608,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12579,
                            "src": "1686:8:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_contract$_IPrizePool_$8967_$returns$__$",
                              "typeString": "function (address,contract IPrizePool)"
                            }
                          },
                          "id": 12611,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1686:28:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12612,
                        "nodeType": "EmitStatement",
                        "src": "1681:33:51"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12580,
                    "nodeType": "StructuredDocumentation",
                    "src": "1277:154:51",
                    "text": " @notice Deploy the PrizeSplitStrategy smart contract.\n @param _owner     Owner address\n @param _prizePool PrizePool address"
                  },
                  "id": 12614,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 12588,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12582,
                          "src": "1495:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 12589,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 12587,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "1487:7:51"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1487:15:51"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12586,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12582,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1456:6:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12614,
                        "src": "1448:14:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12581,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1448:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12585,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "1475:10:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12614,
                        "src": "1464:21:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$8967",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 12584,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12583,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8967,
                            "src": "1464:10:51"
                          },
                          "referencedDeclaration": 8967,
                          "src": "1464:10:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1447:39:51"
                  },
                  "returnParameters": {
                    "id": 12590,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1503:0:51"
                  },
                  "scope": 12690,
                  "src": "1436:285:51",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    9103
                  ],
                  "body": {
                    "id": 12647,
                    "nodeType": "Block",
                    "src": "1871:238:51",
                    "statements": [
                      {
                        "assignments": [
                          12622
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12622,
                            "mutability": "mutable",
                            "name": "prize",
                            "nameLocation": "1889:5:51",
                            "nodeType": "VariableDeclaration",
                            "scope": 12647,
                            "src": "1881:13:51",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12621,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1881:7:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12626,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 12623,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12571,
                              "src": "1897:9:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 12624,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "captureAwardBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8837,
                            "src": "1897:29:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () external returns (uint256)"
                            }
                          },
                          "id": 12625,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1897:31:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1881:47:51"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12629,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12627,
                            "name": "prize",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12622,
                            "src": "1943:5:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 12628,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1952:1:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1943:10:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12632,
                        "nodeType": "IfStatement",
                        "src": "1939:24:51",
                        "trueBody": {
                          "expression": {
                            "hexValue": "30",
                            "id": 12630,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1962:1:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "functionReturnParameters": 12620,
                          "id": 12631,
                          "nodeType": "Return",
                          "src": "1955:8:51"
                        }
                      },
                      {
                        "assignments": [
                          12634
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12634,
                            "mutability": "mutable",
                            "name": "prizeRemaining",
                            "nameLocation": "1982:14:51",
                            "nodeType": "VariableDeclaration",
                            "scope": 12647,
                            "src": "1974:22:51",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12633,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1974:7:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12638,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 12636,
                              "name": "prize",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12622,
                              "src": "2022:5:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12635,
                            "name": "_distributePrizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12548,
                            "src": "1999:22:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) returns (uint256)"
                            }
                          },
                          "id": 12637,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1999:29:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1974:54:51"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12642,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12640,
                                "name": "prize",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12622,
                                "src": "2056:5:51",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 12641,
                                "name": "prizeRemaining",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12634,
                                "src": "2064:14:51",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2056:22:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12639,
                            "name": "Distributed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9097,
                            "src": "2044:11:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 12643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2044:35:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12644,
                        "nodeType": "EmitStatement",
                        "src": "2039:40:51"
                      },
                      {
                        "expression": {
                          "id": 12645,
                          "name": "prize",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12622,
                          "src": "2097:5:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12620,
                        "id": 12646,
                        "nodeType": "Return",
                        "src": "2090:12:51"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12615,
                    "nodeType": "StructuredDocumentation",
                    "src": "1783:25:51",
                    "text": "@inheritdoc IStrategy"
                  },
                  "functionSelector": "e4fc6b6d",
                  "id": 12648,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "distribute",
                  "nameLocation": "1822:10:51",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12617,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1844:8:51"
                  },
                  "parameters": {
                    "id": 12616,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1832:2:51"
                  },
                  "returnParameters": {
                    "id": 12620,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12619,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12648,
                        "src": "1862:7:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12618,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1862:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1861:9:51"
                  },
                  "scope": 12690,
                  "src": "1813:296:51",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    9025
                  ],
                  "body": {
                    "id": 12658,
                    "nodeType": "Block",
                    "src": "2215:33:51",
                    "statements": [
                      {
                        "expression": {
                          "id": 12656,
                          "name": "prizePool",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12571,
                          "src": "2232:9:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "functionReturnParameters": 12655,
                        "id": 12657,
                        "nodeType": "Return",
                        "src": "2225:16:51"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12649,
                    "nodeType": "StructuredDocumentation",
                    "src": "2115:27:51",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "884bf67c",
                  "id": 12659,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizePool",
                  "nameLocation": "2156:12:51",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12651,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2185:8:51"
                  },
                  "parameters": {
                    "id": 12650,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2168:2:51"
                  },
                  "returnParameters": {
                    "id": 12655,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12654,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12659,
                        "src": "2203:10:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$8967",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 12653,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12652,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8967,
                            "src": "2203:10:51"
                          },
                          "referencedDeclaration": 8967,
                          "src": "2203:10:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$8967",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2202:12:51"
                  },
                  "scope": 12690,
                  "src": "2147:101:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    12556
                  ],
                  "body": {
                    "id": 12688,
                    "nodeType": "Block",
                    "src": "2652:159:51",
                    "statements": [
                      {
                        "assignments": [
                          12670
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12670,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "2679:7:51",
                            "nodeType": "VariableDeclaration",
                            "scope": 12688,
                            "src": "2662:24:51",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IControlledToken_$8160",
                              "typeString": "contract IControlledToken"
                            },
                            "typeName": {
                              "id": 12669,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12668,
                                "name": "IControlledToken",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8160,
                                "src": "2662:16:51"
                              },
                              "referencedDeclaration": 8160,
                              "src": "2662:16:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IControlledToken_$8160",
                                "typeString": "contract IControlledToken"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12674,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 12671,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12571,
                              "src": "2689:9:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 12672,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8876,
                            "src": "2689:19:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$9297_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 12673,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2689:21:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2662:48:51"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12678,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12662,
                              "src": "2736:3:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12679,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12664,
                              "src": "2741:7:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 12675,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12571,
                              "src": "2720:9:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$8967",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 12677,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "award",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8825,
                            "src": "2720:15:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 12680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2720:29:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12681,
                        "nodeType": "ExpressionStatement",
                        "src": "2720:29:51"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 12683,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12662,
                              "src": "2782:3:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12684,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12664,
                              "src": "2787:7:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 12685,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12670,
                              "src": "2796:7:51",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IControlledToken_$8160",
                                "typeString": "contract IControlledToken"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_IControlledToken_$8160",
                                "typeString": "contract IControlledToken"
                              }
                            ],
                            "id": 12682,
                            "name": "PrizeSplitAwarded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8982,
                            "src": "2764:17:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_contract$_IControlledToken_$8160_$returns$__$",
                              "typeString": "function (address,uint256,contract IControlledToken)"
                            }
                          },
                          "id": 12686,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2764:40:51",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12687,
                        "nodeType": "EmitStatement",
                        "src": "2759:45:51"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12660,
                    "nodeType": "StructuredDocumentation",
                    "src": "2310:257:51",
                    "text": " @notice Award ticket tokens to prize split recipient.\n @dev Award ticket tokens to prize split recipient via the linked PrizePool contract.\n @param _to Recipient of minted tokens.\n @param _amount Amount of minted tokens."
                  },
                  "id": 12689,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPrizeSplitAmount",
                  "nameLocation": "2581:22:51",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 12666,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2643:8:51"
                  },
                  "parameters": {
                    "id": 12665,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12662,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "2612:3:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12689,
                        "src": "2604:11:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12661,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2604:7:51",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12664,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2625:7:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 12689,
                        "src": "2617:15:51",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12663,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2617:7:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2603:30:51"
                  },
                  "returnParameters": {
                    "id": 12667,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2652:0:51"
                  },
                  "scope": 12690,
                  "src": "2572:239:51",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12691,
              "src": "877:1936:51",
              "usedErrors": []
            }
          ],
          "src": "37:2777:51"
        },
        "id": 51
      },
      "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol",
          "exportedSymbols": {
            "Context": [
              1570
            ],
            "ERC20": [
              585
            ],
            "ERC20Mintable": [
              12756
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ]
          },
          "id": 12757,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12692,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:52"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "id": 12693,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12757,
              "sourceUnit": 586,
              "src": "61:55:52",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 12695,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 585,
                    "src": "374:5:52"
                  },
                  "id": 12696,
                  "nodeType": "InheritanceSpecifier",
                  "src": "374:5:52"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 12694,
                "nodeType": "StructuredDocumentation",
                "src": "118:229:52",
                "text": " @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n which have permission to mint (create) new tokens as they see fit.\n At construction, the deployer of the contract is the only minter."
              },
              "fullyImplemented": true,
              "id": 12756,
              "linearizedBaseContracts": [
                12756,
                585,
                688,
                663,
                1570
              ],
              "name": "ERC20Mintable",
              "nameLocation": "357:13:52",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 12707,
                    "nodeType": "Block",
                    "src": "464:2:52",
                    "statements": []
                  },
                  "id": 12708,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 12703,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12698,
                          "src": "448:5:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 12704,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12700,
                          "src": "455:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 12705,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 12702,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 585,
                        "src": "442:5:52"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "442:21:52"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12701,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12698,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "412:5:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12708,
                        "src": "398:19:52",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 12697,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "398:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12700,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "433:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12708,
                        "src": "419:21:52",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 12699,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "419:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "397:44:52"
                  },
                  "returnParameters": {
                    "id": 12706,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "464:0:52"
                  },
                  "scope": 12756,
                  "src": "386:80:52",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12721,
                    "nodeType": "Block",
                    "src": "656:39:52",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12717,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12711,
                              "src": "672:7:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12718,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12713,
                              "src": "681:6:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12716,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 445,
                            "src": "666:5:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 12719,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "666:22:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12720,
                        "nodeType": "ExpressionStatement",
                        "src": "666:22:52"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12709,
                    "nodeType": "StructuredDocumentation",
                    "src": "472:125:52",
                    "text": " @dev See {ERC20-_mint}.\n Requirements:\n - the caller must have the {MinterRole}."
                  },
                  "functionSelector": "40c10f19",
                  "id": 12722,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "611:4:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12714,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12711,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "624:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12722,
                        "src": "616:15:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12710,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "616:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12713,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "641:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12722,
                        "src": "633:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12712,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "633:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "615:33:52"
                  },
                  "returnParameters": {
                    "id": 12715,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "656:0:52"
                  },
                  "scope": 12756,
                  "src": "602:93:52",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12738,
                    "nodeType": "Block",
                    "src": "770:60:52",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12732,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12724,
                              "src": "786:7:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12733,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12726,
                              "src": "795:6:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12731,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 517,
                            "src": "780:5:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 12734,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "780:22:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12735,
                        "nodeType": "ExpressionStatement",
                        "src": "780:22:52"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 12736,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "819:4:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 12730,
                        "id": 12737,
                        "nodeType": "Return",
                        "src": "812:11:52"
                      }
                    ]
                  },
                  "functionSelector": "9dc29fac",
                  "id": 12739,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "710:4:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12727,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12724,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "723:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12739,
                        "src": "715:15:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12723,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "715:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12726,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "740:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12739,
                        "src": "732:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12725,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "732:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "714:33:52"
                  },
                  "returnParameters": {
                    "id": 12730,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12729,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12739,
                        "src": "764:4:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12728,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "764:4:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "763:6:52"
                  },
                  "scope": 12756,
                  "src": "701:129:52",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12754,
                    "nodeType": "Block",
                    "src": "939:44:52",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12749,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12741,
                              "src": "959:4:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12750,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12743,
                              "src": "965:2:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 12751,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12745,
                              "src": "969:6:52",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12748,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 389,
                            "src": "949:9:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 12752,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "949:27:52",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12753,
                        "nodeType": "ExpressionStatement",
                        "src": "949:27:52"
                      }
                    ]
                  },
                  "functionSelector": "1c9c7903",
                  "id": 12755,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "masterTransfer",
                  "nameLocation": "845:14:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12746,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12741,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "877:4:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12755,
                        "src": "869:12:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12740,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "869:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12743,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "899:2:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12755,
                        "src": "891:10:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12742,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "891:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12745,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "919:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 12755,
                        "src": "911:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12744,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "911:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "859:72:52"
                  },
                  "returnParameters": {
                    "id": 12747,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "939:0:52"
                  },
                  "scope": 12756,
                  "src": "836:147:52",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 12757,
              "src": "348:637:52",
              "usedErrors": []
            }
          ],
          "src": "37:949:52"
        },
        "id": 52
      },
      "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawBeacon": [
              4371
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeTierHistory": [
              15371
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionFactory": [
              13228
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 13229,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12758,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:53"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "id": 12759,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13229,
              "sourceUnit": 9298,
              "src": "61:64:53",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "id": 12760,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13229,
              "sourceUnit": 8588,
              "src": "126:81:53",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 12761,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13229,
              "sourceUnit": 3104,
              "src": "208:72:53",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol",
              "file": "./interfaces/IPrizeTierHistory.sol",
              "id": 12762,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13229,
              "sourceUnit": 15372,
              "src": "282:44:53",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 12764,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "738:10:53"
                  },
                  "id": 12765,
                  "nodeType": "InheritanceSpecifier",
                  "src": "738:10:53"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 12763,
                "nodeType": "StructuredDocumentation",
                "src": "328:372:53",
                "text": " @title Prize Distribution Factory\n @author PoolTogether Inc.\n @notice The Prize Distribution Factory populates a Prize Distribution Buffer for a prize pool.  It uses a Prize Tier History, Draw Buffer and Ticket\n to compute the correct prize distribution.  It automatically sets the cardinality based on the minPickCost and the total network ticket supply."
              },
              "fullyImplemented": true,
              "id": 13228,
              "linearizedBaseContracts": [
                13228,
                3103,
                3258
              ],
              "name": "PrizeDistributionFactory",
              "nameLocation": "710:24:53",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 12768,
                  "libraryName": {
                    "id": 12766,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 9517,
                    "src": "761:19:53"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "755:38:53",
                  "typeName": {
                    "id": 12767,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "785:7:53",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12769,
                    "nodeType": "StructuredDocumentation",
                    "src": "799:264:53",
                    "text": "@notice Emitted when a new Prize Distribution is pushed.\n @param drawId The draw id for which the prize dist was pushed\n @param totalNetworkTicketSupply The total network ticket supply that was used to compute the cardinality and portion of picks"
                  },
                  "id": 12775,
                  "name": "PrizeDistributionPushed",
                  "nameLocation": "1074:23:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12774,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12771,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1113:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12775,
                        "src": "1098:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12770,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1098:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12773,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1129:24:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12775,
                        "src": "1121:32:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12772,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1121:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1097:57:53"
                  },
                  "src": "1068:87:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 12776,
                    "nodeType": "StructuredDocumentation",
                    "src": "1161:273:53",
                    "text": "@notice Emitted when a Prize Distribution is set (overrides another)\n @param drawId The draw id for which the prize dist was set\n @param totalNetworkTicketSupply The total network ticket supply that was used to compute the cardinality and portion of picks"
                  },
                  "id": 12782,
                  "name": "PrizeDistributionSet",
                  "nameLocation": "1445:20:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 12781,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12778,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1481:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12782,
                        "src": "1466:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12777,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1466:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12780,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1497:24:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12782,
                        "src": "1489:32:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12779,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1489:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1465:57:53"
                  },
                  "src": "1439:84:53"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 12783,
                    "nodeType": "StructuredDocumentation",
                    "src": "1529:64:53",
                    "text": "@notice The prize tier history to pull tier information from"
                  },
                  "functionSelector": "3cd4b918",
                  "id": 12786,
                  "mutability": "immutable",
                  "name": "prizeTierHistory",
                  "nameLocation": "1633:16:53",
                  "nodeType": "VariableDeclaration",
                  "scope": 13228,
                  "src": "1598:51:53",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                    "typeString": "contract IPrizeTierHistory"
                  },
                  "typeName": {
                    "id": 12785,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 12784,
                      "name": "IPrizeTierHistory",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 15371,
                      "src": "1598:17:53"
                    },
                    "referencedDeclaration": 15371,
                    "src": "1598:17:53",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                      "typeString": "contract IPrizeTierHistory"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 12787,
                    "nodeType": "StructuredDocumentation",
                    "src": "1656:49:53",
                    "text": "@notice The draw buffer to pull the draw from"
                  },
                  "functionSelector": "ce343bb6",
                  "id": 12790,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "1739:10:53",
                  "nodeType": "VariableDeclaration",
                  "scope": 13228,
                  "src": "1710:39:53",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 12789,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 12788,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8409,
                      "src": "1710:11:53"
                    },
                    "referencedDeclaration": 8409,
                    "src": "1710:11:53",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 12791,
                    "nodeType": "StructuredDocumentation",
                    "src": "1756:117:53",
                    "text": "@notice The prize distribution buffer to push and set.  This contract must be the manager or owner of the buffer."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 12794,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1920:23:53",
                  "nodeType": "VariableDeclaration",
                  "scope": 13228,
                  "src": "1878:65:53",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 12793,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 12792,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8587,
                      "src": "1878:24:53"
                    },
                    "referencedDeclaration": 8587,
                    "src": "1878:24:53",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 12795,
                    "nodeType": "StructuredDocumentation",
                    "src": "1950:100:53",
                    "text": "@notice The ticket whose average total supply will be measured to calculate the portion of picks"
                  },
                  "functionSelector": "6cc25db7",
                  "id": 12798,
                  "mutability": "immutable",
                  "name": "ticket",
                  "nameLocation": "2080:6:53",
                  "nodeType": "VariableDeclaration",
                  "scope": 13228,
                  "src": "2055:31:53",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$9297",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 12797,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 12796,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9297,
                      "src": "2055:7:53"
                    },
                    "referencedDeclaration": 9297,
                    "src": "2055:7:53",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$9297",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 12799,
                    "nodeType": "StructuredDocumentation",
                    "src": "2093:78:53",
                    "text": "@notice The minimum cost of each pick.  Used to calculate the cardinality."
                  },
                  "functionSelector": "082d80ff",
                  "id": 12801,
                  "mutability": "immutable",
                  "name": "minPickCost",
                  "nameLocation": "2201:11:53",
                  "nodeType": "VariableDeclaration",
                  "scope": 13228,
                  "src": "2176:36:53",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 12800,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "2176:7:53",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12912,
                    "nodeType": "Block",
                    "src": "2469:620:53",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12829,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12824,
                                "name": "_owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12803,
                                "src": "2487:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12827,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2505:1:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12826,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2497:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12825,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2497:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12828,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2497:10:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2487:20:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5044432f6f776e65722d7a65726f",
                              "id": 12830,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2509:16:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_991aefb82934e4bcd364457a3dcd3651f35d3a5ae68c94d1920b7942f8c2a77e",
                                "typeString": "literal_string \"PDC/owner-zero\""
                              },
                              "value": "PDC/owner-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_991aefb82934e4bcd364457a3dcd3651f35d3a5ae68c94d1920b7942f8c2a77e",
                                "typeString": "literal_string \"PDC/owner-zero\""
                              }
                            ],
                            "id": 12823,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2479:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12831,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2479:47:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12832,
                        "nodeType": "ExpressionStatement",
                        "src": "2479:47:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12842,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 12836,
                                    "name": "_prizeTierHistory",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12806,
                                    "src": "2552:17:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                                      "typeString": "contract IPrizeTierHistory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                                      "typeString": "contract IPrizeTierHistory"
                                    }
                                  ],
                                  "id": 12835,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2544:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12834,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2544:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12837,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2544:26:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12840,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2582:1:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12839,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2574:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12838,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2574:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12841,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2574:10:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2544:40:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5044432f7074682d7a65726f",
                              "id": 12843,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2586:14:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_911ff912b881d890b2380e6f728f53a43d73a86f1fec87958febfd7b14c8d9b2",
                                "typeString": "literal_string \"PDC/pth-zero\""
                              },
                              "value": "PDC/pth-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_911ff912b881d890b2380e6f728f53a43d73a86f1fec87958febfd7b14c8d9b2",
                                "typeString": "literal_string \"PDC/pth-zero\""
                              }
                            ],
                            "id": 12833,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2536:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12844,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2536:65:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12845,
                        "nodeType": "ExpressionStatement",
                        "src": "2536:65:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12855,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 12849,
                                    "name": "_drawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12809,
                                    "src": "2627:11:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 12848,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2619:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12847,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2619:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12850,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2619:20:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12853,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2651:1:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12852,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2643:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12851,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2643:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12854,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2643:10:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2619:34:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5044432f64622d7a65726f",
                              "id": 12856,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2655:13:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_906a604d090908eb95a86e72d7404f097e78a489fa981d5dfa52fd586f810998",
                                "typeString": "literal_string \"PDC/db-zero\""
                              },
                              "value": "PDC/db-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_906a604d090908eb95a86e72d7404f097e78a489fa981d5dfa52fd586f810998",
                                "typeString": "literal_string \"PDC/db-zero\""
                              }
                            ],
                            "id": 12846,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2611:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12857,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2611:58:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12858,
                        "nodeType": "ExpressionStatement",
                        "src": "2611:58:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12868,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 12862,
                                    "name": "_prizeDistributionBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12812,
                                    "src": "2695:24:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  ],
                                  "id": 12861,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2687:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12860,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2687:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12863,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2687:33:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12866,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2732:1:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12865,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2724:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12864,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2724:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12867,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2724:10:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2687:47:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5044432f7064622d7a65726f",
                              "id": 12869,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2736:14:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4b6a084e55ce2a02dd1eaee0b8f72caa953f3ed6f5f0d571541ab2e8e83c9530",
                                "typeString": "literal_string \"PDC/pdb-zero\""
                              },
                              "value": "PDC/pdb-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4b6a084e55ce2a02dd1eaee0b8f72caa953f3ed6f5f0d571541ab2e8e83c9530",
                                "typeString": "literal_string \"PDC/pdb-zero\""
                              }
                            ],
                            "id": 12859,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2679:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12870,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2679:72:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12871,
                        "nodeType": "ExpressionStatement",
                        "src": "2679:72:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 12881,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 12875,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12815,
                                    "src": "2777:7:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 12874,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2769:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12873,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2769:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12876,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2769:16:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 12879,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2797:1:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 12878,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2789:7:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 12877,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2789:7:53",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 12880,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2789:10:53",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2769:30:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5044432f7469636b65742d7a65726f",
                              "id": 12882,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2801:17:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8eff9d63213830effddd352d6f4a50103a4e78538d2af639d3ae9ce00bee0c4c",
                                "typeString": "literal_string \"PDC/ticket-zero\""
                              },
                              "value": "PDC/ticket-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8eff9d63213830effddd352d6f4a50103a4e78538d2af639d3ae9ce00bee0c4c",
                                "typeString": "literal_string \"PDC/ticket-zero\""
                              }
                            ],
                            "id": 12872,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2761:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12883,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2761:58:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12884,
                        "nodeType": "ExpressionStatement",
                        "src": "2761:58:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12888,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12886,
                                "name": "_minPickCost",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12817,
                                "src": "2837:12:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 12887,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2852:1:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "2837:16:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5044432f7069636b2d636f73742d67742d7a65726f",
                              "id": 12889,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2855:23:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_503a092c54aaa3fa2f9b51b3dca33729a46ff840115098c67ea55b9ec72c4b24",
                                "typeString": "literal_string \"PDC/pick-cost-gt-zero\""
                              },
                              "value": "PDC/pick-cost-gt-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_503a092c54aaa3fa2f9b51b3dca33729a46ff840115098c67ea55b9ec72c4b24",
                                "typeString": "literal_string \"PDC/pick-cost-gt-zero\""
                              }
                            ],
                            "id": 12885,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2829:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12890,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2829:50:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12891,
                        "nodeType": "ExpressionStatement",
                        "src": "2829:50:53"
                      },
                      {
                        "expression": {
                          "id": 12894,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12892,
                            "name": "minPickCost",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12801,
                            "src": "2890:11:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12893,
                            "name": "_minPickCost",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12817,
                            "src": "2904:12:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2890:26:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 12895,
                        "nodeType": "ExpressionStatement",
                        "src": "2890:26:53"
                      },
                      {
                        "expression": {
                          "id": 12898,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12896,
                            "name": "prizeTierHistory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12786,
                            "src": "2926:16:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                              "typeString": "contract IPrizeTierHistory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12897,
                            "name": "_prizeTierHistory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12806,
                            "src": "2945:17:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                              "typeString": "contract IPrizeTierHistory"
                            }
                          },
                          "src": "2926:36:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                            "typeString": "contract IPrizeTierHistory"
                          }
                        },
                        "id": 12899,
                        "nodeType": "ExpressionStatement",
                        "src": "2926:36:53"
                      },
                      {
                        "expression": {
                          "id": 12902,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12900,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12790,
                            "src": "2972:10:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12901,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12809,
                            "src": "2985:11:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "2972:24:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 12903,
                        "nodeType": "ExpressionStatement",
                        "src": "2972:24:53"
                      },
                      {
                        "expression": {
                          "id": 12906,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12904,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12794,
                            "src": "3006:23:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12905,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12812,
                            "src": "3032:24:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "3006:50:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 12907,
                        "nodeType": "ExpressionStatement",
                        "src": "3006:50:53"
                      },
                      {
                        "expression": {
                          "id": 12910,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12908,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12798,
                            "src": "3066:6:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 12909,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12815,
                            "src": "3075:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "3066:16:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 12911,
                        "nodeType": "ExpressionStatement",
                        "src": "3066:16:53"
                      }
                    ]
                  },
                  "id": 12913,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 12820,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12803,
                          "src": "2461:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 12821,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 12819,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "2453:7:53"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2453:15:53"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12818,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12803,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2248:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12913,
                        "src": "2240:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12802,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2240:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12806,
                        "mutability": "mutable",
                        "name": "_prizeTierHistory",
                        "nameLocation": "2282:17:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12913,
                        "src": "2264:35:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                          "typeString": "contract IPrizeTierHistory"
                        },
                        "typeName": {
                          "id": 12805,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12804,
                            "name": "IPrizeTierHistory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15371,
                            "src": "2264:17:53"
                          },
                          "referencedDeclaration": 15371,
                          "src": "2264:17:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                            "typeString": "contract IPrizeTierHistory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12809,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "2321:11:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12913,
                        "src": "2309:23:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 12808,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12807,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "2309:11:53"
                          },
                          "referencedDeclaration": 8409,
                          "src": "2309:11:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12812,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "2367:24:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12913,
                        "src": "2342:49:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 12811,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12810,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "2342:24:53"
                          },
                          "referencedDeclaration": 8587,
                          "src": "2342:24:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12815,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "2409:7:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12913,
                        "src": "2401:15:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 12814,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12813,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "2401:7:53"
                          },
                          "referencedDeclaration": 9297,
                          "src": "2401:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12817,
                        "mutability": "mutable",
                        "name": "_minPickCost",
                        "nameLocation": "2434:12:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12913,
                        "src": "2426:20:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12816,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2426:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2230:222:53"
                  },
                  "returnParameters": {
                    "id": 12822,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2469:0:53"
                  },
                  "scope": 13228,
                  "src": "2219:870:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12950,
                    "nodeType": "Block",
                    "src": "3780:400:53",
                    "statements": [
                      {
                        "assignments": [
                          12930
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12930,
                            "mutability": "mutable",
                            "name": "prizeDistribution",
                            "nameLocation": "3852:17:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 12950,
                            "src": "3790:79:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            },
                            "typeName": {
                              "id": 12929,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12928,
                                "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8506,
                                "src": "3790:42:53"
                              },
                              "referencedDeclaration": 8506,
                              "src": "3790:42:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12935,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 12932,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12916,
                              "src": "3916:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12933,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12918,
                              "src": "3941:25:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12931,
                            "name": "calculatePrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13020,
                            "src": "3872:26:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint32_$_t_uint256_$returns$_t_struct$_PrizeDistribution_$8506_memory_ptr_$",
                              "typeString": "function (uint32,uint256) view returns (struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 12934,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3872:108:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3790:190:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12939,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12916,
                              "src": "4036:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12940,
                              "name": "prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12930,
                              "src": "4045:17:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            ],
                            "expression": {
                              "id": 12936,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12794,
                              "src": "3990:23:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 12938,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8575,
                            "src": "3990:45:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution memory) external returns (bool)"
                            }
                          },
                          "id": 12941,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3990:73:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12942,
                        "nodeType": "ExpressionStatement",
                        "src": "3990:73:53"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 12944,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12916,
                              "src": "4103:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12945,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12918,
                              "src": "4112:25:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12943,
                            "name": "PrizeDistributionPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12775,
                            "src": "4079:23:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,uint256)"
                            }
                          },
                          "id": 12946,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4079:59:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12947,
                        "nodeType": "EmitStatement",
                        "src": "4074:64:53"
                      },
                      {
                        "expression": {
                          "id": 12948,
                          "name": "prizeDistribution",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12930,
                          "src": "4156:17:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 12925,
                        "id": 12949,
                        "nodeType": "Return",
                        "src": "4149:24:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12914,
                    "nodeType": "StructuredDocumentation",
                    "src": "3095:482:53",
                    "text": " @notice Allows the owner or manager to push a new prize distribution onto the buffer.\n The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\n @param _drawId The draw id to compute for\n @param _totalNetworkTicketSupply The total supply of tickets across all prize pools for the network that the ticket belongs to.\n @return The resulting Prize Distribution"
                  },
                  "functionSelector": "0348b076",
                  "id": 12951,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 12921,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 12920,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "3689:18:53"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3689:18:53"
                    }
                  ],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "3591:21:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12919,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12916,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "3620:7:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12951,
                        "src": "3613:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12915,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3613:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12918,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "3637:25:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12951,
                        "src": "3629:33:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12917,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3629:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3612:51:53"
                  },
                  "returnParameters": {
                    "id": 12925,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12924,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12951,
                        "src": "3725:49:53",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 12923,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12922,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "3725:42:53"
                          },
                          "referencedDeclaration": 8506,
                          "src": "3725:42:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3724:51:53"
                  },
                  "scope": 13228,
                  "src": "3582:598:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 12988,
                    "nodeType": "Block",
                    "src": "4869:396:53",
                    "statements": [
                      {
                        "assignments": [
                          12968
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12968,
                            "mutability": "mutable",
                            "name": "prizeDistribution",
                            "nameLocation": "4941:17:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 12988,
                            "src": "4879:79:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            },
                            "typeName": {
                              "id": 12967,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12966,
                                "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8506,
                                "src": "4879:42:53"
                              },
                              "referencedDeclaration": 8506,
                              "src": "4879:42:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12973,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 12970,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12954,
                              "src": "5005:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12971,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12956,
                              "src": "5030:25:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12969,
                            "name": "calculatePrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13020,
                            "src": "4961:26:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint32_$_t_uint256_$returns$_t_struct$_PrizeDistribution_$8506_memory_ptr_$",
                              "typeString": "function (uint32,uint256) view returns (struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 12972,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4961:108:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4879:190:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12977,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12954,
                              "src": "5124:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12978,
                              "name": "prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12968,
                              "src": "5133:17:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            ],
                            "expression": {
                              "id": 12974,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12794,
                              "src": "5079:23:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 12976,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "setPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8586,
                            "src": "5079:44:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution memory) external returns (uint32)"
                            }
                          },
                          "id": 12979,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5079:72:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 12980,
                        "nodeType": "ExpressionStatement",
                        "src": "5079:72:53"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 12982,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12954,
                              "src": "5188:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12983,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12956,
                              "src": "5197:25:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12981,
                            "name": "PrizeDistributionSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12782,
                            "src": "5167:20:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,uint256)"
                            }
                          },
                          "id": 12984,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5167:56:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12985,
                        "nodeType": "EmitStatement",
                        "src": "5162:61:53"
                      },
                      {
                        "expression": {
                          "id": 12986,
                          "name": "prizeDistribution",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12968,
                          "src": "5241:17:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 12963,
                        "id": 12987,
                        "nodeType": "Return",
                        "src": "5234:24:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12952,
                    "nodeType": "StructuredDocumentation",
                    "src": "4186:490:53",
                    "text": " @notice Allows the owner or manager to override an existing prize distribution in the buffer.\n The PrizeTier and Draw for the given draw id will be pulled in, and the total network ticket supply will be used to calculate cardinality.\n @param _drawId The draw id to compute for\n @param _totalNetworkTicketSupply The total supply of tickets across all prize pools for the network that the ticket belongs to.\n @return The resulting Prize Distribution"
                  },
                  "functionSelector": "3ec018fc",
                  "id": 12989,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 12959,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 12958,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "4787:9:53"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4787:9:53"
                    }
                  ],
                  "name": "setPrizeDistribution",
                  "nameLocation": "4690:20:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12957,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12954,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4718:7:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12989,
                        "src": "4711:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12953,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4711:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12956,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "4735:25:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 12989,
                        "src": "4727:33:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12955,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4727:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4710:51:53"
                  },
                  "returnParameters": {
                    "id": 12963,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12962,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12989,
                        "src": "4814:49:53",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 12961,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12960,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "4814:42:53"
                          },
                          "referencedDeclaration": 8506,
                          "src": "4814:42:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4813:51:53"
                  },
                  "scope": 13228,
                  "src": "4681:584:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13019,
                    "nodeType": "Block",
                    "src": "5938:298:53",
                    "statements": [
                      {
                        "assignments": [
                          13004
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13004,
                            "mutability": "mutable",
                            "name": "draw",
                            "nameLocation": "5972:4:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13019,
                            "src": "5948:28:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            },
                            "typeName": {
                              "id": 13003,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13002,
                                "name": "IDrawBeacon.Draw",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8176,
                                "src": "5948:16:53"
                              },
                              "referencedDeclaration": 8176,
                              "src": "5948:16:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13009,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13007,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12992,
                              "src": "5998:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13005,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12790,
                              "src": "5979:10:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 13006,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8359,
                            "src": "5979:18:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_uint32_$returns$_t_struct$_Draw_$8176_memory_ptr_$",
                              "typeString": "function (uint32) view external returns (struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 13008,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5979:27:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5948:58:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13011,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12992,
                              "src": "6091:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13012,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12994,
                              "src": "6116:25:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 13013,
                                "name": "draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13004,
                                "src": "6159:4:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 13014,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "beaconPeriodSeconds",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8175,
                              "src": "6159:24:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13015,
                                "name": "draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13004,
                                "src": "6201:4:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 13016,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8171,
                              "src": "6201:14:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 13010,
                            "name": "calculatePrizeDistributionWithDrawData",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13146,
                            "src": "6035:38:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint32_$_t_uint256_$_t_uint32_$_t_uint64_$returns$_t_struct$_PrizeDistribution_$8506_memory_ptr_$",
                              "typeString": "function (uint32,uint256,uint32,uint64) view returns (struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 13017,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6035:194:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 12999,
                        "id": 13018,
                        "nodeType": "Return",
                        "src": "6016:213:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12990,
                    "nodeType": "StructuredDocumentation",
                    "src": "5271:459:53",
                    "text": " @notice Calculates what the prize distribution will be, given a draw id and total network ticket supply.\n @param _drawId The draw id to pull from the Draw Buffer and Prize Tier History\n @param _totalNetworkTicketSupply The total of all ticket supplies across all prize pools in this network\n @return PrizeDistribution using info from the Draw for the given draw id, total network ticket supply, and PrizeTier for the draw."
                  },
                  "functionSelector": "8bf02df8",
                  "id": 13020,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculatePrizeDistribution",
                  "nameLocation": "5744:26:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12995,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12992,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "5778:7:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13020,
                        "src": "5771:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12991,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5771:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12994,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "5795:25:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13020,
                        "src": "5787:33:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12993,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5787:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5770:51:53"
                  },
                  "returnParameters": {
                    "id": 12999,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12998,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13020,
                        "src": "5883:49:53",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 12997,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12996,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "5883:42:53"
                          },
                          "referencedDeclaration": 8506,
                          "src": "5883:42:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5882:51:53"
                  },
                  "scope": 13228,
                  "src": "5735:501:53",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 13145,
                    "nodeType": "Block",
                    "src": "7054:1255:53",
                    "statements": [
                      {
                        "assignments": [
                          13036
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13036,
                            "mutability": "mutable",
                            "name": "maxPicks",
                            "nameLocation": "7072:8:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13145,
                            "src": "7064:16:53",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13035,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7064:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13040,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13039,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13037,
                            "name": "_totalNetworkTicketSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13025,
                            "src": "7083:25:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 13038,
                            "name": "minPickCost",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12801,
                            "src": "7111:11:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "7083:39:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7064:58:53"
                      },
                      {
                        "assignments": [
                          13045
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13045,
                            "mutability": "mutable",
                            "name": "prizeDistribution",
                            "nameLocation": "7195:17:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13145,
                            "src": "7133:79:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            },
                            "typeName": {
                              "id": 13044,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13043,
                                "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8506,
                                "src": "7133:42:53"
                              },
                              "referencedDeclaration": 8506,
                              "src": "7133:42:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13051,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13047,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13023,
                              "src": "7260:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13048,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13027,
                              "src": "7285:20:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13049,
                              "name": "maxPicks",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13036,
                              "src": "7323:8:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13046,
                            "name": "_calculatePrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13227,
                            "src": "7215:27:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint32_$_t_uint32_$_t_uint256_$returns$_t_struct$_PrizeDistribution_$8506_memory_ptr_$",
                              "typeString": "function (uint32,uint32,uint256) view returns (struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 13050,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7215:130:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7133:212:53"
                      },
                      {
                        "assignments": [
                          13056
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13056,
                            "mutability": "mutable",
                            "name": "startTimestamps",
                            "nameLocation": "7372:15:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13145,
                            "src": "7356:31:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13054,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7356:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 13055,
                              "nodeType": "ArrayTypeName",
                              "src": "7356:8:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13062,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "31",
                              "id": 13060,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7403:1:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              }
                            ],
                            "id": 13059,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "7390:12:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13057,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7394:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 13058,
                              "nodeType": "ArrayTypeName",
                              "src": "7394:8:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 13061,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7390:15:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7356:49:53"
                      },
                      {
                        "assignments": [
                          13067
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13067,
                            "mutability": "mutable",
                            "name": "endTimestamps",
                            "nameLocation": "7431:13:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13145,
                            "src": "7415:29:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13065,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7415:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 13066,
                              "nodeType": "ArrayTypeName",
                              "src": "7415:8:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13073,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "31",
                              "id": 13071,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7460:1:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              }
                            ],
                            "id": 13070,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "7447:12:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint64[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13068,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7451:6:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 13069,
                              "nodeType": "ArrayTypeName",
                              "src": "7451:8:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 13072,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7447:15:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7415:47:53"
                      },
                      {
                        "expression": {
                          "id": 13081,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 13074,
                              "name": "startTimestamps",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13056,
                              "src": "7473:15:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            "id": 13076,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 13075,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7489:1:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7473:18:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "id": 13080,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 13077,
                              "name": "_drawTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13029,
                              "src": "7494:14:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "expression": {
                                "id": 13078,
                                "name": "prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13045,
                                "src": "7511:17:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                }
                              },
                              "id": 13079,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "startTimestampOffset",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8491,
                              "src": "7511:38:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "7494:55:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "7473:76:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 13082,
                        "nodeType": "ExpressionStatement",
                        "src": "7473:76:53"
                      },
                      {
                        "expression": {
                          "id": 13090,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 13083,
                              "name": "endTimestamps",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13067,
                              "src": "7559:13:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            "id": 13085,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 13084,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7573:1:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7559:16:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "id": 13089,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 13086,
                              "name": "_drawTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13029,
                              "src": "7578:14:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "expression": {
                                "id": 13087,
                                "name": "prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13045,
                                "src": "7595:17:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                  "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                }
                              },
                              "id": 13088,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "endTimestampOffset",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8493,
                              "src": "7595:36:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "7578:53:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "7559:72:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 13091,
                        "nodeType": "ExpressionStatement",
                        "src": "7559:72:53"
                      },
                      {
                        "assignments": [
                          13096
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13096,
                            "mutability": "mutable",
                            "name": "ticketAverageTotalSupplies",
                            "nameLocation": "7659:26:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13145,
                            "src": "7642:43:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13094,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "7642:7:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 13095,
                              "nodeType": "ArrayTypeName",
                              "src": "7642:9:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13102,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13099,
                              "name": "startTimestamps",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13056,
                              "src": "7739:15:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 13100,
                              "name": "endTimestamps",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13067,
                              "src": "7768:13:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            ],
                            "expression": {
                              "id": 13097,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12798,
                              "src": "7688:6:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 13098,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageTotalSuppliesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9296,
                            "src": "7688:37:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                            }
                          },
                          "id": 13101,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7688:103:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7642:149:53"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 13108,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 13104,
                                "name": "_totalNetworkTicketSupply",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13025,
                                "src": "7823:25:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "baseExpression": {
                                  "id": 13105,
                                  "name": "ticketAverageTotalSupplies",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13096,
                                  "src": "7852:26:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 13107,
                                "indexExpression": {
                                  "hexValue": "30",
                                  "id": 13106,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7879:1:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "7852:29:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7823:58:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5044462f696e76616c69642d6e6574776f726b2d737570706c79",
                              "id": 13109,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7895:28:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2e9b0b4ed351e34ee0787adc486f269a9758328e3248031262d3b0e01948b6ce",
                                "typeString": "literal_string \"PDF/invalid-network-supply\""
                              },
                              "value": "PDF/invalid-network-supply"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2e9b0b4ed351e34ee0787adc486f269a9758328e3248031262d3b0e01948b6ce",
                                "typeString": "literal_string \"PDF/invalid-network-supply\""
                              }
                            ],
                            "id": 13103,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7802:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13110,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7802:131:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13111,
                        "nodeType": "ExpressionStatement",
                        "src": "7802:131:53"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13114,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13112,
                            "name": "_totalNetworkTicketSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13025,
                            "src": "7948:25:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 13113,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7976:1:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7948:29:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 13141,
                          "nodeType": "Block",
                          "src": "8208:60:53",
                          "statements": [
                            {
                              "expression": {
                                "id": 13139,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "expression": {
                                    "id": 13135,
                                    "name": "prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13045,
                                    "src": "8222:17:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                    }
                                  },
                                  "id": 13137,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "memberName": "numberOfPicks",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 8499,
                                  "src": "8222:31:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint104",
                                    "typeString": "uint104"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 13138,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8256:1:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "8222:35:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint104",
                                  "typeString": "uint104"
                                }
                              },
                              "id": 13140,
                              "nodeType": "ExpressionStatement",
                              "src": "8222:35:53"
                            }
                          ]
                        },
                        "id": 13142,
                        "nodeType": "IfStatement",
                        "src": "7944:324:53",
                        "trueBody": {
                          "id": 13134,
                          "nodeType": "Block",
                          "src": "7979:223:53",
                          "statements": [
                            {
                              "expression": {
                                "id": 13132,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "expression": {
                                    "id": 13115,
                                    "name": "prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13045,
                                    "src": "7993:17:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                    }
                                  },
                                  "id": 13117,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "memberName": "numberOfPicks",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 8499,
                                  "src": "7993:31:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint104",
                                    "typeString": "uint104"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "expression": {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "id": 13128,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "components": [
                                              {
                                                "commonType": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                },
                                                "id": 13125,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "leftExpression": {
                                                  "expression": {
                                                    "id": 13120,
                                                    "name": "prizeDistribution",
                                                    "nodeType": "Identifier",
                                                    "overloadedDeclarations": [],
                                                    "referencedDeclaration": 13045,
                                                    "src": "8053:17:53",
                                                    "typeDescriptions": {
                                                      "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                                      "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                                                    }
                                                  },
                                                  "id": 13121,
                                                  "isConstant": false,
                                                  "isLValue": true,
                                                  "isPure": false,
                                                  "lValueRequested": false,
                                                  "memberName": "numberOfPicks",
                                                  "nodeType": "MemberAccess",
                                                  "referencedDeclaration": 8499,
                                                  "src": "8053:31:53",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint104",
                                                    "typeString": "uint104"
                                                  }
                                                },
                                                "nodeType": "BinaryOperation",
                                                "operator": "*",
                                                "rightExpression": {
                                                  "baseExpression": {
                                                    "id": 13122,
                                                    "name": "ticketAverageTotalSupplies",
                                                    "nodeType": "Identifier",
                                                    "overloadedDeclarations": [],
                                                    "referencedDeclaration": 13096,
                                                    "src": "8087:26:53",
                                                    "typeDescriptions": {
                                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                      "typeString": "uint256[] memory"
                                                    }
                                                  },
                                                  "id": 13124,
                                                  "indexExpression": {
                                                    "hexValue": "30",
                                                    "id": 13123,
                                                    "isConstant": false,
                                                    "isLValue": false,
                                                    "isPure": true,
                                                    "kind": "number",
                                                    "lValueRequested": false,
                                                    "nodeType": "Literal",
                                                    "src": "8114:1:53",
                                                    "typeDescriptions": {
                                                      "typeIdentifier": "t_rational_0_by_1",
                                                      "typeString": "int_const 0"
                                                    },
                                                    "value": "0"
                                                  },
                                                  "isConstant": false,
                                                  "isLValue": true,
                                                  "isPure": false,
                                                  "lValueRequested": false,
                                                  "nodeType": "IndexAccess",
                                                  "src": "8087:29:53",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "src": "8053:63:53",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              }
                                            ],
                                            "id": 13126,
                                            "isConstant": false,
                                            "isInlineArray": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "TupleExpression",
                                            "src": "8052:65:53",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "/",
                                          "rightExpression": {
                                            "id": 13127,
                                            "name": "_totalNetworkTicketSupply",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 13025,
                                            "src": "8140:25:53",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "src": "8052:113:53",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 13119,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "8027:7:53",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint256_$",
                                          "typeString": "type(uint256)"
                                        },
                                        "typeName": {
                                          "id": 13118,
                                          "name": "uint256",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8027:7:53",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 13129,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8027:152:53",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 13130,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "toUint104",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9466,
                                    "src": "8027:162:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint104_$bound_to$_t_uint256_$",
                                      "typeString": "function (uint256) pure returns (uint104)"
                                    }
                                  },
                                  "id": 13131,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8027:164:53",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint104",
                                    "typeString": "uint104"
                                  }
                                },
                                "src": "7993:198:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint104",
                                  "typeString": "uint104"
                                }
                              },
                              "id": 13133,
                              "nodeType": "ExpressionStatement",
                              "src": "7993:198:53"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 13143,
                          "name": "prizeDistribution",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13045,
                          "src": "8285:17:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 13034,
                        "id": 13144,
                        "nodeType": "Return",
                        "src": "8278:24:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13021,
                    "nodeType": "StructuredDocumentation",
                    "src": "6242:538:53",
                    "text": " @notice Calculates what the prize distribution will be, given a draw id and total network ticket supply.\n @param _drawId The draw from which to use the Draw and\n @param _totalNetworkTicketSupply The sum of all ticket supplies across all prize pools on the network\n @param _beaconPeriodSeconds The beacon period in seconds\n @param _drawTimestamp The timestamp at which the draw RNG request started.\n @return A PrizeDistribution based on the given params and PrizeTier for the passed draw id"
                  },
                  "functionSelector": "6665f32b",
                  "id": 13146,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculatePrizeDistributionWithDrawData",
                  "nameLocation": "6794:38:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13030,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13023,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "6849:7:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13146,
                        "src": "6842:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13022,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6842:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13025,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "6874:25:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13146,
                        "src": "6866:33:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13024,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6866:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13027,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "6916:20:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13146,
                        "src": "6909:27:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13026,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6909:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13029,
                        "mutability": "mutable",
                        "name": "_drawTimestamp",
                        "nameLocation": "6953:14:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13146,
                        "src": "6946:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 13028,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6946:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6832:141:53"
                  },
                  "returnParameters": {
                    "id": 13034,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13033,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13146,
                        "src": "7003:49:53",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 13032,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13031,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "7003:42:53"
                          },
                          "referencedDeclaration": 8506,
                          "src": "7003:42:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7002:51:53"
                  },
                  "scope": 13228,
                  "src": "6785:1524:53",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 13226,
                    "nodeType": "Block",
                    "src": "8926:954:53",
                    "statements": [
                      {
                        "assignments": [
                          13163
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13163,
                            "mutability": "mutable",
                            "name": "prizeTier",
                            "nameLocation": "8971:9:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "8936:44:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier"
                            },
                            "typeName": {
                              "id": 13162,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13161,
                                "name": "IPrizeTierHistory.PrizeTier",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15287,
                                "src": "8936:27:53"
                              },
                              "referencedDeclaration": 15287,
                              "src": "8936:27:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13168,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13166,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13149,
                              "src": "9013:7:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13164,
                              "name": "prizeTierHistory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12786,
                              "src": "8983:16:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeTierHistory_$15371",
                                "typeString": "contract IPrizeTierHistory"
                              }
                            },
                            "id": 13165,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeTier",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15325,
                            "src": "8983:29:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_uint32_$returns$_t_struct$_PrizeTier_$15287_memory_ptr_$",
                              "typeString": "function (uint32) view external returns (struct IPrizeTierHistory.PrizeTier memory)"
                            }
                          },
                          "id": 13167,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8983:38:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8936:85:53"
                      },
                      {
                        "assignments": [
                          13170
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13170,
                            "mutability": "mutable",
                            "name": "cardinality",
                            "nameLocation": "9038:11:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9032:17:53",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 13169,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "9032:5:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13171,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9032:17:53"
                      },
                      {
                        "body": {
                          "id": 13175,
                          "nodeType": "Block",
                          "src": "9062:38:53",
                          "statements": [
                            {
                              "expression": {
                                "id": 13173,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "9076:13:53",
                                "subExpression": {
                                  "id": 13172,
                                  "name": "cardinality",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13170,
                                  "src": "9076:11:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "id": 13174,
                              "nodeType": "ExpressionStatement",
                              "src": "9076:13:53"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13187,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 13185,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 13179,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "hexValue": "32",
                                    "id": 13176,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9109:1:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "**",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 13177,
                                      "name": "prizeTier",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13163,
                                      "src": "9112:9:53",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                        "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                      }
                                    },
                                    "id": 13178,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 15272,
                                    "src": "9112:22:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "9109:25:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 13180,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "9108:27:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "**",
                            "rightExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "id": 13183,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 13181,
                                    "name": "cardinality",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13170,
                                    "src": "9138:11:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "+",
                                  "rightExpression": {
                                    "hexValue": "31",
                                    "id": 13182,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9152:1:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    },
                                    "value": "1"
                                  },
                                  "src": "9138:15:53",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                }
                              ],
                              "id": 13184,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "9137:17:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "src": "9108:46:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 13186,
                            "name": "_maxPicks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13153,
                            "src": "9157:9:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9108:58:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13188,
                        "nodeType": "DoWhileStatement",
                        "src": "9059:109:53"
                      },
                      {
                        "assignments": [
                          13193
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13193,
                            "mutability": "mutable",
                            "name": "prizeDistribution",
                            "nameLocation": "9240:17:53",
                            "nodeType": "VariableDeclaration",
                            "scope": 13226,
                            "src": "9178:79:53",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                              "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                            },
                            "typeName": {
                              "id": 13192,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13191,
                                "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 8506,
                                "src": "9178:42:53"
                              },
                              "referencedDeclaration": 8506,
                              "src": "9178:42:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13223,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13196,
                                "name": "prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13163,
                                "src": "9335:9:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                }
                              },
                              "id": 13197,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15272,
                              "src": "9335:22:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 13198,
                              "name": "cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13170,
                              "src": "9393:11:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 13199,
                              "name": "_startTimestampOffset",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13151,
                              "src": "9444:21:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13200,
                                "name": "prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13163,
                                "src": "9503:9:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                }
                              },
                              "id": 13201,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "endTimestampOffset",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15280,
                              "src": "9503:28:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13202,
                                "name": "prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13163,
                                "src": "9566:9:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                }
                              },
                              "id": 13203,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "maxPicksPerUser",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15276,
                              "src": "9566:25:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13204,
                                "name": "prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13163,
                                "src": "9625:9:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                }
                              },
                              "id": 13205,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "expiryDuration",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15278,
                              "src": "9625:24:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "arguments": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 13214,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "components": [
                                          {
                                            "commonType": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            "id": 13211,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftExpression": {
                                              "hexValue": "32",
                                              "id": 13208,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "kind": "number",
                                              "lValueRequested": false,
                                              "nodeType": "Literal",
                                              "src": "9691:1:53",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_rational_2_by_1",
                                                "typeString": "int_const 2"
                                              },
                                              "value": "2"
                                            },
                                            "nodeType": "BinaryOperation",
                                            "operator": "**",
                                            "rightExpression": {
                                              "expression": {
                                                "id": 13209,
                                                "name": "prizeTier",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 13163,
                                                "src": "9694:9:53",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                                }
                                              },
                                              "id": 13210,
                                              "isConstant": false,
                                              "isLValue": true,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "memberName": "bitRangeSize",
                                              "nodeType": "MemberAccess",
                                              "referencedDeclaration": 15272,
                                              "src": "9694:22:53",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "9691:25:53",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          }
                                        ],
                                        "id": 13212,
                                        "isConstant": false,
                                        "isInlineArray": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "TupleExpression",
                                        "src": "9690:27:53",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "**",
                                      "rightExpression": {
                                        "id": 13213,
                                        "name": "cardinality",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13170,
                                        "src": "9719:11:53",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "9690:40:53",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 13207,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "9682:7:53",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 13206,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "9682:7:53",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 13215,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "9682:49:53",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 13216,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint104",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 9466,
                                "src": "9682:59:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint104_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint104)"
                                }
                              },
                              "id": 13217,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9682:61:53",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint104",
                                "typeString": "uint104"
                              }
                            },
                            {
                              "expression": {
                                "id": 13218,
                                "name": "prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13163,
                                "src": "9768:9:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                }
                              },
                              "id": 13219,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "tiers",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15286,
                              "src": "9768:15:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                                "typeString": "uint32[16] memory"
                              }
                            },
                            {
                              "expression": {
                                "id": 13220,
                                "name": "prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13163,
                                "src": "9808:9:53",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                }
                              },
                              "id": 13221,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "prize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15282,
                              "src": "9808:15:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint104",
                                "typeString": "uint104"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                                "typeString": "uint32[16] memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 13194,
                              "name": "IPrizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8587,
                              "src": "9260:24:53",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_IPrizeDistributionBuffer_$8587_$",
                                "typeString": "type(contract IPrizeDistributionBuffer)"
                              }
                            },
                            "id": 13195,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "PrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8506,
                            "src": "9260:42:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_PrizeDistribution_$8506_storage_ptr_$",
                              "typeString": "type(struct IPrizeDistributionBuffer.PrizeDistribution storage pointer)"
                            }
                          },
                          "id": 13222,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "bitRangeSize",
                            "matchCardinality",
                            "startTimestampOffset",
                            "endTimestampOffset",
                            "maxPicksPerUser",
                            "expiryDuration",
                            "numberOfPicks",
                            "tiers",
                            "prize"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "9260:578:53",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9178:660:53"
                      },
                      {
                        "expression": {
                          "id": 13224,
                          "name": "prizeDistribution",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13193,
                          "src": "9856:17:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 13158,
                        "id": 13225,
                        "nodeType": "Return",
                        "src": "9849:24:53"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13147,
                    "nodeType": "StructuredDocumentation",
                    "src": "8315:392:53",
                    "text": " @notice Gets the PrizeDistributionBuffer for a drawId\n @param _drawId drawId\n @param _startTimestampOffset The start timestamp offset to use for the prize distribution\n @param _maxPicks The maximum picks that the distribution should allow.  The Prize Distribution's numberOfPicks will be less than or equal to this number.\n @return prizeDistribution"
                  },
                  "id": 13227,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeDistribution",
                  "nameLocation": "8721:27:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13154,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13149,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "8765:7:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8758:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13148,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8758:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13151,
                        "mutability": "mutable",
                        "name": "_startTimestampOffset",
                        "nameLocation": "8789:21:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8782:28:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13150,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8782:6:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13153,
                        "mutability": "mutable",
                        "name": "_maxPicks",
                        "nameLocation": "8828:9:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8820:17:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13152,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8820:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8748:95:53"
                  },
                  "returnParameters": {
                    "id": 13158,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13157,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13227,
                        "src": "8875:49:53",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 13156,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13155,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "8875:42:53"
                          },
                          "referencedDeclaration": 8506,
                          "src": "8875:42:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8874:51:53"
                  },
                  "scope": 13228,
                  "src": "8712:1168:53",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 13229,
              "src": "701:9181:53",
              "usedErrors": []
            }
          ],
          "src": "37:9846:53"
        },
        "id": 53
      },
      "@pooltogether/v4-periphery/contracts/PrizeFlush.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "IPrizeFlush": [
              15266
            ],
            "IReserve": [
              9090
            ],
            "IStrategy": [
              9104
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "PrizeFlush": [
              13532
            ]
          },
          "id": 13533,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 13230,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:54"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 13231,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13533,
              "sourceUnit": 664,
              "src": "60:56:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 13232,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13533,
              "sourceUnit": 3104,
              "src": "117:72:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol",
              "file": "./interfaces/IPrizeFlush.sol",
              "id": 13233,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13533,
              "sourceUnit": 15267,
              "src": "191:38:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 13235,
                    "name": "IPrizeFlush",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15266,
                    "src": "699:11:54"
                  },
                  "id": 13236,
                  "nodeType": "InheritanceSpecifier",
                  "src": "699:11:54"
                },
                {
                  "baseName": {
                    "id": 13237,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "712:10:54"
                  },
                  "id": 13238,
                  "nodeType": "InheritanceSpecifier",
                  "src": "712:10:54"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 13234,
                "nodeType": "StructuredDocumentation",
                "src": "231:444:54",
                "text": " @title  PoolTogether V4 PrizeFlush\n @author PoolTogether Inc Team\n @notice The PrizeFlush contract helps capture interest from the PrizePool and move collected funds\nto a designated PrizeDistributor contract. When deployed, the destination, reserve and strategy\naddresses are set and used as static parameters during every \"flush\" execution. The parameters can be\nreset by the Owner if necessary."
              },
              "fullyImplemented": true,
              "id": 13532,
              "linearizedBaseContracts": [
                13532,
                3103,
                3258,
                15266
              ],
              "name": "PrizeFlush",
              "nameLocation": "685:10:54",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 13239,
                    "nodeType": "StructuredDocumentation",
                    "src": "729:128:54",
                    "text": " @notice Destination address for captured interest.\n @dev Should be set to the PrizeDistributor address."
                  },
                  "id": 13241,
                  "mutability": "mutable",
                  "name": "destination",
                  "nameLocation": "879:11:54",
                  "nodeType": "VariableDeclaration",
                  "scope": 13532,
                  "src": "862:28:54",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13240,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "862:7:54",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13242,
                    "nodeType": "StructuredDocumentation",
                    "src": "897:28:54",
                    "text": "@notice Reserve address."
                  },
                  "id": 13245,
                  "mutability": "mutable",
                  "name": "reserve",
                  "nameLocation": "948:7:54",
                  "nodeType": "VariableDeclaration",
                  "scope": 13532,
                  "src": "930:25:54",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IReserve_$9090",
                    "typeString": "contract IReserve"
                  },
                  "typeName": {
                    "id": 13244,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13243,
                      "name": "IReserve",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9090,
                      "src": "930:8:54"
                    },
                    "referencedDeclaration": 9090,
                    "src": "930:8:54",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IReserve_$9090",
                      "typeString": "contract IReserve"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13246,
                    "nodeType": "StructuredDocumentation",
                    "src": "962:29:54",
                    "text": "@notice Strategy address."
                  },
                  "id": 13249,
                  "mutability": "mutable",
                  "name": "strategy",
                  "nameLocation": "1015:8:54",
                  "nodeType": "VariableDeclaration",
                  "scope": 13532,
                  "src": "996:27:54",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IStrategy_$9104",
                    "typeString": "contract IStrategy"
                  },
                  "typeName": {
                    "id": 13248,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13247,
                      "name": "IStrategy",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9104,
                      "src": "996:9:54"
                    },
                    "referencedDeclaration": 9104,
                    "src": "996:9:54",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IStrategy_$9104",
                      "typeString": "contract IStrategy"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 13250,
                    "nodeType": "StructuredDocumentation",
                    "src": "1030:198:54",
                    "text": " @notice Emitted when contract has been deployed.\n @param destination Destination address\n @param reserve Strategy address\n @param strategy Reserve address"
                  },
                  "id": 13260,
                  "name": "Deployed",
                  "nameLocation": "1239:8:54",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 13259,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13252,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "destination",
                        "nameLocation": "1273:11:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13260,
                        "src": "1257:27:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13251,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1257:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13255,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "reserve",
                        "nameLocation": "1311:7:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13260,
                        "src": "1294:24:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 13254,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13253,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "1294:8:54"
                          },
                          "referencedDeclaration": 9090,
                          "src": "1294:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13258,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "strategy",
                        "nameLocation": "1346:8:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13260,
                        "src": "1328:26:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 13257,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13256,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "1328:9:54"
                          },
                          "referencedDeclaration": 9104,
                          "src": "1328:9:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1247:113:54"
                  },
                  "src": "1233:128:54"
                },
                {
                  "body": {
                    "id": 13295,
                    "nodeType": "Block",
                    "src": "1792:169:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13278,
                              "name": "_destination",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13265,
                              "src": "1818:12:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 13277,
                            "name": "_setDestination",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13481,
                            "src": "1802:15:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 13279,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1802:29:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13280,
                        "nodeType": "ExpressionStatement",
                        "src": "1802:29:54"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13282,
                              "name": "_reserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13271,
                              "src": "1853:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            ],
                            "id": 13281,
                            "name": "_setReserve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13506,
                            "src": "1841:11:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IReserve_$9090_$returns$__$",
                              "typeString": "function (contract IReserve)"
                            }
                          },
                          "id": 13283,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1841:21:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13284,
                        "nodeType": "ExpressionStatement",
                        "src": "1841:21:54"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13286,
                              "name": "_strategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13268,
                              "src": "1885:9:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            ],
                            "id": 13285,
                            "name": "_setStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13531,
                            "src": "1872:12:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IStrategy_$9104_$returns$__$",
                              "typeString": "function (contract IStrategy)"
                            }
                          },
                          "id": 13287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1872:23:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13288,
                        "nodeType": "ExpressionStatement",
                        "src": "1872:23:54"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 13290,
                              "name": "_destination",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13265,
                              "src": "1920:12:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13291,
                              "name": "_reserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13271,
                              "src": "1934:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            },
                            {
                              "id": 13292,
                              "name": "_strategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13268,
                              "src": "1944:9:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              },
                              {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            ],
                            "id": 13289,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13260,
                            "src": "1911:8:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_contract$_IReserve_$9090_$_t_contract$_IStrategy_$9104_$returns$__$",
                              "typeString": "function (address,contract IReserve,contract IStrategy)"
                            }
                          },
                          "id": 13293,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1911:43:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13294,
                        "nodeType": "EmitStatement",
                        "src": "1906:48:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13261,
                    "nodeType": "StructuredDocumentation",
                    "src": "1416:227:54",
                    "text": " @notice Deploy Prize Flush.\n @param _owner Prize Flush owner address\n @param _destination Destination address\n @param _strategy Strategy address\n @param _reserve Reserve address"
                  },
                  "id": 13296,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 13274,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13263,
                          "src": "1784:6:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 13275,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 13273,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "1776:7:54"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1776:15:54"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13272,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13263,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1677:6:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13296,
                        "src": "1669:14:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13262,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1669:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13265,
                        "mutability": "mutable",
                        "name": "_destination",
                        "nameLocation": "1701:12:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13296,
                        "src": "1693:20:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13264,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1693:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13268,
                        "mutability": "mutable",
                        "name": "_strategy",
                        "nameLocation": "1733:9:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13296,
                        "src": "1723:19:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 13267,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13266,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "1723:9:54"
                          },
                          "referencedDeclaration": 9104,
                          "src": "1723:9:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13271,
                        "mutability": "mutable",
                        "name": "_reserve",
                        "nameLocation": "1761:8:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13296,
                        "src": "1752:17:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 13270,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13269,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "1752:8:54"
                          },
                          "referencedDeclaration": 9090,
                          "src": "1752:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1659:116:54"
                  },
                  "returnParameters": {
                    "id": 13276,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1792:0:54"
                  },
                  "scope": 13532,
                  "src": "1648:313:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    15217
                  ],
                  "body": {
                    "id": 13305,
                    "nodeType": "Block",
                    "src": "2122:35:54",
                    "statements": [
                      {
                        "expression": {
                          "id": 13303,
                          "name": "destination",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13241,
                          "src": "2139:11:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 13302,
                        "id": 13304,
                        "nodeType": "Return",
                        "src": "2132:18:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13297,
                    "nodeType": "StructuredDocumentation",
                    "src": "2023:27:54",
                    "text": "@inheritdoc IPrizeFlush"
                  },
                  "functionSelector": "16ad9542",
                  "id": 13306,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDestination",
                  "nameLocation": "2064:14:54",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13299,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2095:8:54"
                  },
                  "parameters": {
                    "id": 13298,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2078:2:54"
                  },
                  "returnParameters": {
                    "id": 13302,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13301,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13306,
                        "src": "2113:7:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13300,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2113:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2112:9:54"
                  },
                  "scope": 13532,
                  "src": "2055:102:54",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15224
                  ],
                  "body": {
                    "id": 13316,
                    "nodeType": "Block",
                    "src": "2259:31:54",
                    "statements": [
                      {
                        "expression": {
                          "id": 13314,
                          "name": "reserve",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13245,
                          "src": "2276:7:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "functionReturnParameters": 13313,
                        "id": 13315,
                        "nodeType": "Return",
                        "src": "2269:14:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13307,
                    "nodeType": "StructuredDocumentation",
                    "src": "2163:27:54",
                    "text": "@inheritdoc IPrizeFlush"
                  },
                  "functionSelector": "59bf5d39",
                  "id": 13317,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserve",
                  "nameLocation": "2204:10:54",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13309,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2231:8:54"
                  },
                  "parameters": {
                    "id": 13308,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2214:2:54"
                  },
                  "returnParameters": {
                    "id": 13313,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13312,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13317,
                        "src": "2249:8:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 13311,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13310,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "2249:8:54"
                          },
                          "referencedDeclaration": 9090,
                          "src": "2249:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2248:10:54"
                  },
                  "scope": 13532,
                  "src": "2195:95:54",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15231
                  ],
                  "body": {
                    "id": 13327,
                    "nodeType": "Block",
                    "src": "2394:32:54",
                    "statements": [
                      {
                        "expression": {
                          "id": 13325,
                          "name": "strategy",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13249,
                          "src": "2411:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "functionReturnParameters": 13324,
                        "id": 13326,
                        "nodeType": "Return",
                        "src": "2404:15:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13318,
                    "nodeType": "StructuredDocumentation",
                    "src": "2296:27:54",
                    "text": "@inheritdoc IPrizeFlush"
                  },
                  "functionSelector": "07da0603",
                  "id": 13328,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getStrategy",
                  "nameLocation": "2337:11:54",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13320,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2365:8:54"
                  },
                  "parameters": {
                    "id": 13319,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2348:2:54"
                  },
                  "returnParameters": {
                    "id": 13324,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13323,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13328,
                        "src": "2383:9:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 13322,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13321,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "2383:9:54"
                          },
                          "referencedDeclaration": 9104,
                          "src": "2383:9:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2382:11:54"
                  },
                  "scope": 13532,
                  "src": "2328:98:54",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15239
                  ],
                  "body": {
                    "id": 13349,
                    "nodeType": "Block",
                    "src": "2556:118:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13340,
                              "name": "_destination",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13331,
                              "src": "2582:12:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 13339,
                            "name": "_setDestination",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13481,
                            "src": "2566:15:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 13341,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2566:29:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13342,
                        "nodeType": "ExpressionStatement",
                        "src": "2566:29:54"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 13344,
                              "name": "_destination",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13331,
                              "src": "2625:12:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 13343,
                            "name": "DestinationSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15199,
                            "src": "2610:14:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 13345,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2610:28:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13346,
                        "nodeType": "EmitStatement",
                        "src": "2605:33:54"
                      },
                      {
                        "expression": {
                          "id": 13347,
                          "name": "_destination",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13331,
                          "src": "2655:12:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 13338,
                        "id": 13348,
                        "nodeType": "Return",
                        "src": "2648:19:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13329,
                    "nodeType": "StructuredDocumentation",
                    "src": "2432:27:54",
                    "text": "@inheritdoc IPrizeFlush"
                  },
                  "functionSelector": "0a0a05e6",
                  "id": 13350,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13335,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13334,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "2528:9:54"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2528:9:54"
                    }
                  ],
                  "name": "setDestination",
                  "nameLocation": "2473:14:54",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13333,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2519:8:54"
                  },
                  "parameters": {
                    "id": 13332,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13331,
                        "mutability": "mutable",
                        "name": "_destination",
                        "nameLocation": "2496:12:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13350,
                        "src": "2488:20:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13330,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2488:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2487:22:54"
                  },
                  "returnParameters": {
                    "id": 13338,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13337,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13350,
                        "src": "2547:7:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13336,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2547:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2546:9:54"
                  },
                  "scope": 13532,
                  "src": "2464:210:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15249
                  ],
                  "body": {
                    "id": 13373,
                    "nodeType": "Block",
                    "src": "2798:98:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13364,
                              "name": "_reserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13354,
                              "src": "2820:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            ],
                            "id": 13363,
                            "name": "_setReserve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13506,
                            "src": "2808:11:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IReserve_$9090_$returns$__$",
                              "typeString": "function (contract IReserve)"
                            }
                          },
                          "id": 13365,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2808:21:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13366,
                        "nodeType": "ExpressionStatement",
                        "src": "2808:21:54"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 13368,
                              "name": "_reserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13354,
                              "src": "2855:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            ],
                            "id": 13367,
                            "name": "ReserveSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15211,
                            "src": "2844:10:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IReserve_$9090_$returns$__$",
                              "typeString": "function (contract IReserve)"
                            }
                          },
                          "id": 13369,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2844:20:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13370,
                        "nodeType": "EmitStatement",
                        "src": "2839:25:54"
                      },
                      {
                        "expression": {
                          "id": 13371,
                          "name": "_reserve",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13354,
                          "src": "2881:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "functionReturnParameters": 13362,
                        "id": 13372,
                        "nodeType": "Return",
                        "src": "2874:15:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13351,
                    "nodeType": "StructuredDocumentation",
                    "src": "2680:27:54",
                    "text": "@inheritdoc IPrizeFlush"
                  },
                  "functionSelector": "9cecc80a",
                  "id": 13374,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13358,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13357,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "2769:9:54"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2769:9:54"
                    }
                  ],
                  "name": "setReserve",
                  "nameLocation": "2721:10:54",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13356,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2760:8:54"
                  },
                  "parameters": {
                    "id": 13355,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13354,
                        "mutability": "mutable",
                        "name": "_reserve",
                        "nameLocation": "2741:8:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13374,
                        "src": "2732:17:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 13353,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13352,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "2732:8:54"
                          },
                          "referencedDeclaration": 9090,
                          "src": "2732:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2731:19:54"
                  },
                  "returnParameters": {
                    "id": 13362,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13361,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13374,
                        "src": "2788:8:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 13360,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13359,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "2788:8:54"
                          },
                          "referencedDeclaration": 9090,
                          "src": "2788:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2787:10:54"
                  },
                  "scope": 13532,
                  "src": "2712:184:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15259
                  ],
                  "body": {
                    "id": 13397,
                    "nodeType": "Block",
                    "src": "3024:103:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13388,
                              "name": "_strategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13378,
                              "src": "3047:9:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            ],
                            "id": 13387,
                            "name": "_setStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13531,
                            "src": "3034:12:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IStrategy_$9104_$returns$__$",
                              "typeString": "function (contract IStrategy)"
                            }
                          },
                          "id": 13389,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3034:23:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13390,
                        "nodeType": "ExpressionStatement",
                        "src": "3034:23:54"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 13392,
                              "name": "_strategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13378,
                              "src": "3084:9:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            ],
                            "id": 13391,
                            "name": "StrategySet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15205,
                            "src": "3072:11:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IStrategy_$9104_$returns$__$",
                              "typeString": "function (contract IStrategy)"
                            }
                          },
                          "id": 13393,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3072:22:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13394,
                        "nodeType": "EmitStatement",
                        "src": "3067:27:54"
                      },
                      {
                        "expression": {
                          "id": 13395,
                          "name": "_strategy",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13378,
                          "src": "3111:9:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "functionReturnParameters": 13386,
                        "id": 13396,
                        "nodeType": "Return",
                        "src": "3104:16:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13375,
                    "nodeType": "StructuredDocumentation",
                    "src": "2902:27:54",
                    "text": "@inheritdoc IPrizeFlush"
                  },
                  "functionSelector": "33a100ca",
                  "id": 13398,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13382,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13381,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "2994:9:54"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2994:9:54"
                    }
                  ],
                  "name": "setStrategy",
                  "nameLocation": "2943:11:54",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13380,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2985:8:54"
                  },
                  "parameters": {
                    "id": 13379,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13378,
                        "mutability": "mutable",
                        "name": "_strategy",
                        "nameLocation": "2965:9:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13398,
                        "src": "2955:19:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 13377,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13376,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "2955:9:54"
                          },
                          "referencedDeclaration": 9104,
                          "src": "2955:9:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2954:21:54"
                  },
                  "returnParameters": {
                    "id": 13386,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13385,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13398,
                        "src": "3013:9:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 13384,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13383,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "3013:9:54"
                          },
                          "referencedDeclaration": 9104,
                          "src": "3013:9:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3012:11:54"
                  },
                  "scope": 13532,
                  "src": "2934:193:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15265
                  ],
                  "body": {
                    "id": 13459,
                    "nodeType": "Block",
                    "src": "3234:839:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13407,
                              "name": "strategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13249,
                              "src": "3338:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IStrategy_$9104",
                                "typeString": "contract IStrategy"
                              }
                            },
                            "id": 13409,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "distribute",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9103,
                            "src": "3338:19:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () external returns (uint256)"
                            }
                          },
                          "id": 13410,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3338:21:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 13411,
                        "nodeType": "ExpressionStatement",
                        "src": "3338:21:54"
                      },
                      {
                        "assignments": [
                          13414
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13414,
                            "mutability": "mutable",
                            "name": "_reserve",
                            "nameLocation": "3489:8:54",
                            "nodeType": "VariableDeclaration",
                            "scope": 13459,
                            "src": "3480:17:54",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IReserve_$9090",
                              "typeString": "contract IReserve"
                            },
                            "typeName": {
                              "id": 13413,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13412,
                                "name": "IReserve",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 9090,
                                "src": "3480:8:54"
                              },
                              "referencedDeclaration": 9090,
                              "src": "3480:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13416,
                        "initialValue": {
                          "id": 13415,
                          "name": "reserve",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13245,
                          "src": "3500:7:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3480:27:54"
                      },
                      {
                        "assignments": [
                          13419
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13419,
                            "mutability": "mutable",
                            "name": "_token",
                            "nameLocation": "3524:6:54",
                            "nodeType": "VariableDeclaration",
                            "scope": 13459,
                            "src": "3517:13:54",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$663",
                              "typeString": "contract IERC20"
                            },
                            "typeName": {
                              "id": 13418,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13417,
                                "name": "IERC20",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 663,
                                "src": "3517:6:54"
                              },
                              "referencedDeclaration": 663,
                              "src": "3517:6:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13423,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13420,
                              "name": "_reserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13414,
                              "src": "3533:8:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IReserve_$9090",
                                "typeString": "contract IReserve"
                              }
                            },
                            "id": 13421,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9071,
                            "src": "3533:17:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_IERC20_$663_$",
                              "typeString": "function () view external returns (contract IERC20)"
                            }
                          },
                          "id": 13422,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3533:19:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3517:35:54"
                      },
                      {
                        "assignments": [
                          13425
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13425,
                            "mutability": "mutable",
                            "name": "_amount",
                            "nameLocation": "3570:7:54",
                            "nodeType": "VariableDeclaration",
                            "scope": 13459,
                            "src": "3562:15:54",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13424,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3562:7:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13433,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13430,
                                  "name": "_reserve",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13414,
                                  "src": "3605:8:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IReserve_$9090",
                                    "typeString": "contract IReserve"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IReserve_$9090",
                                    "typeString": "contract IReserve"
                                  }
                                ],
                                "id": 13429,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3597:7:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13428,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3597:7:54",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13431,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3597:17:54",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 13426,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13419,
                              "src": "3580:6:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 13427,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "3580:16:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 13432,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3580:35:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3562:53:54"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13436,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13434,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13425,
                            "src": "3755:7:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 13435,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3765:1:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3755:11:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13456,
                        "nodeType": "IfStatement",
                        "src": "3751:293:54",
                        "trueBody": {
                          "id": 13455,
                          "nodeType": "Block",
                          "src": "3768:276:54",
                          "statements": [
                            {
                              "assignments": [
                                13438
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 13438,
                                  "mutability": "mutable",
                                  "name": "_destination",
                                  "nameLocation": "3790:12:54",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 13455,
                                  "src": "3782:20:54",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  "typeName": {
                                    "id": 13437,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3782:7:54",
                                    "stateMutability": "nonpayable",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 13440,
                              "initialValue": {
                                "id": 13439,
                                "name": "destination",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13241,
                                "src": "3805:11:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "3782:34:54"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 13444,
                                    "name": "_destination",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13438,
                                    "src": "3936:12:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 13445,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13425,
                                    "src": "3950:7:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "id": 13441,
                                    "name": "_reserve",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13414,
                                    "src": "3916:8:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IReserve_$9090",
                                      "typeString": "contract IReserve"
                                    }
                                  },
                                  "id": 13443,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "withdrawTo",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 9089,
                                  "src": "3916:19:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256) external"
                                  }
                                },
                                "id": 13446,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3916:42:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 13447,
                              "nodeType": "ExpressionStatement",
                              "src": "3916:42:54"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 13449,
                                    "name": "_destination",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13438,
                                    "src": "3986:12:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 13450,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13425,
                                    "src": "4000:7:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 13448,
                                  "name": "Flushed",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15194,
                                  "src": "3978:7:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 13451,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3978:30:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 13452,
                              "nodeType": "EmitStatement",
                              "src": "3973:35:54"
                            },
                            {
                              "expression": {
                                "hexValue": "74727565",
                                "id": 13453,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4029:4:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "true"
                              },
                              "functionReturnParameters": 13406,
                              "id": 13454,
                              "nodeType": "Return",
                              "src": "4022:11:54"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "hexValue": "66616c7365",
                          "id": 13457,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4061:5:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "false"
                        },
                        "functionReturnParameters": 13406,
                        "id": 13458,
                        "nodeType": "Return",
                        "src": "4054:12:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13399,
                    "nodeType": "StructuredDocumentation",
                    "src": "3133:27:54",
                    "text": "@inheritdoc IPrizeFlush"
                  },
                  "functionSelector": "6b9f96ea",
                  "id": 13460,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13403,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13402,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "3200:18:54"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3200:18:54"
                    }
                  ],
                  "name": "flush",
                  "nameLocation": "3174:5:54",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13401,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3191:8:54"
                  },
                  "parameters": {
                    "id": 13400,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3179:2:54"
                  },
                  "returnParameters": {
                    "id": 13406,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13405,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13460,
                        "src": "3228:4:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 13404,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3228:4:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3227:6:54"
                  },
                  "scope": 13532,
                  "src": "3165:908:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13480,
                    "nodeType": "Block",
                    "src": "4357:126:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 13472,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 13467,
                                "name": "_destination",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13463,
                                "src": "4375:12:54",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 13470,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4399:1:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 13469,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4391:7:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 13468,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4391:7:54",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 13471,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4391:10:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4375:26:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "466c7573682f64657374696e6174696f6e2d6e6f742d7a65726f2d61646472657373",
                              "id": 13473,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4403:36:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4",
                                "typeString": "literal_string \"Flush/destination-not-zero-address\""
                              },
                              "value": "Flush/destination-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_826ae510ab8ff344639396c74fa00d7f3326f92f4df58e146b4f9c5ae21a99c4",
                                "typeString": "literal_string \"Flush/destination-not-zero-address\""
                              }
                            ],
                            "id": 13466,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4367:7:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13474,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4367:73:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13475,
                        "nodeType": "ExpressionStatement",
                        "src": "4367:73:54"
                      },
                      {
                        "expression": {
                          "id": 13478,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13476,
                            "name": "destination",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13241,
                            "src": "4450:11:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 13477,
                            "name": "_destination",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13463,
                            "src": "4464:12:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "4450:26:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 13479,
                        "nodeType": "ExpressionStatement",
                        "src": "4450:26:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13461,
                    "nodeType": "StructuredDocumentation",
                    "src": "4135:161:54",
                    "text": " @notice Set global destination variable.\n @dev `_destination` cannot be the zero address.\n @param _destination Destination address"
                  },
                  "id": 13481,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDestination",
                  "nameLocation": "4310:15:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13464,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13463,
                        "mutability": "mutable",
                        "name": "_destination",
                        "nameLocation": "4334:12:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13481,
                        "src": "4326:20:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13462,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4326:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4325:22:54"
                  },
                  "returnParameters": {
                    "id": 13465,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4357:0:54"
                  },
                  "scope": 13532,
                  "src": "4301:182:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13505,
                    "nodeType": "Block",
                    "src": "4688:119:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 13497,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 13491,
                                    "name": "_reserve",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13485,
                                    "src": "4714:8:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IReserve_$9090",
                                      "typeString": "contract IReserve"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IReserve_$9090",
                                      "typeString": "contract IReserve"
                                    }
                                  ],
                                  "id": 13490,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4706:7:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 13489,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4706:7:54",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 13492,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4706:17:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 13495,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4735:1:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 13494,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4727:7:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 13493,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4727:7:54",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 13496,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4727:10:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4706:31:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "466c7573682f726573657276652d6e6f742d7a65726f2d61646472657373",
                              "id": 13498,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4739:32:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06",
                                "typeString": "literal_string \"Flush/reserve-not-zero-address\""
                              },
                              "value": "Flush/reserve-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_82209188e6d2c811e662f31a83e2de2297486518d2bf64a47a74e7f2e8a1bd06",
                                "typeString": "literal_string \"Flush/reserve-not-zero-address\""
                              }
                            ],
                            "id": 13488,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4698:7:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13499,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4698:74:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13500,
                        "nodeType": "ExpressionStatement",
                        "src": "4698:74:54"
                      },
                      {
                        "expression": {
                          "id": 13503,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13501,
                            "name": "reserve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13245,
                            "src": "4782:7:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IReserve_$9090",
                              "typeString": "contract IReserve"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 13502,
                            "name": "_reserve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13485,
                            "src": "4792:8:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IReserve_$9090",
                              "typeString": "contract IReserve"
                            }
                          },
                          "src": "4782:18:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "id": 13504,
                        "nodeType": "ExpressionStatement",
                        "src": "4782:18:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13482,
                    "nodeType": "StructuredDocumentation",
                    "src": "4489:145:54",
                    "text": " @notice Set global reserve variable.\n @dev `_reserve` cannot be the zero address.\n @param _reserve Reserve address"
                  },
                  "id": 13506,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setReserve",
                  "nameLocation": "4648:11:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13486,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13485,
                        "mutability": "mutable",
                        "name": "_reserve",
                        "nameLocation": "4669:8:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13506,
                        "src": "4660:17:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 13484,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13483,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "4660:8:54"
                          },
                          "referencedDeclaration": 9090,
                          "src": "4660:8:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4659:19:54"
                  },
                  "returnParameters": {
                    "id": 13487,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4688:0:54"
                  },
                  "scope": 13532,
                  "src": "4639:168:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13530,
                    "nodeType": "Block",
                    "src": "5019:123:54",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 13522,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 13516,
                                    "name": "_strategy",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13510,
                                    "src": "5045:9:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IStrategy_$9104",
                                      "typeString": "contract IStrategy"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IStrategy_$9104",
                                      "typeString": "contract IStrategy"
                                    }
                                  ],
                                  "id": 13515,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5037:7:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 13514,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5037:7:54",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 13517,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5037:18:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 13520,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5067:1:54",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 13519,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5059:7:54",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 13518,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5059:7:54",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 13521,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5059:10:54",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "5037:32:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "466c7573682f73747261746567792d6e6f742d7a65726f2d61646472657373",
                              "id": 13523,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5071:33:54",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e",
                                "typeString": "literal_string \"Flush/strategy-not-zero-address\""
                              },
                              "value": "Flush/strategy-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1cea23d77fd3586d4ea3be16d4149974c2d658b9c1ec6750981631ace0840d3e",
                                "typeString": "literal_string \"Flush/strategy-not-zero-address\""
                              }
                            ],
                            "id": 13513,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5029:7:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13524,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5029:76:54",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13525,
                        "nodeType": "ExpressionStatement",
                        "src": "5029:76:54"
                      },
                      {
                        "expression": {
                          "id": 13528,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 13526,
                            "name": "strategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13249,
                            "src": "5115:8:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IStrategy_$9104",
                              "typeString": "contract IStrategy"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 13527,
                            "name": "_strategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13510,
                            "src": "5126:9:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IStrategy_$9104",
                              "typeString": "contract IStrategy"
                            }
                          },
                          "src": "5115:20:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "id": 13529,
                        "nodeType": "ExpressionStatement",
                        "src": "5115:20:54"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13507,
                    "nodeType": "StructuredDocumentation",
                    "src": "4813:149:54",
                    "text": " @notice Set global strategy variable.\n @dev `_strategy` cannot be the zero address.\n @param _strategy Strategy address"
                  },
                  "id": 13531,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setStrategy",
                  "nameLocation": "4976:12:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13511,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13510,
                        "mutability": "mutable",
                        "name": "_strategy",
                        "nameLocation": "4999:9:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 13531,
                        "src": "4989:19:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 13509,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13508,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "4989:9:54"
                          },
                          "referencedDeclaration": 9104,
                          "src": "4989:9:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4988:21:54"
                  },
                  "returnParameters": {
                    "id": 13512,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5019:0:54"
                  },
                  "scope": 13532,
                  "src": "4967:175:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 13533,
              "src": "676:4468:54",
              "usedErrors": []
            }
          ],
          "src": "37:5108:54"
        },
        "id": 54
      },
      "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawBeacon": [
              4371
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IERC20": [
              663
            ],
            "IPrizeTierHistory": [
              15371
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "PrizeTierHistory": [
              14075
            ],
            "RNGInterface": [
              3314
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 14076,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 13534,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:55"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 13535,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14076,
              "sourceUnit": 3104,
              "src": "60:72:55",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol",
              "file": "./interfaces/IPrizeTierHistory.sol",
              "id": 13536,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14076,
              "sourceUnit": 15372,
              "src": "133:44:55",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 13538,
                    "name": "IPrizeTierHistory",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15371,
                    "src": "365:17:55"
                  },
                  "id": 13539,
                  "nodeType": "InheritanceSpecifier",
                  "src": "365:17:55"
                },
                {
                  "baseName": {
                    "id": 13540,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "384:10:55"
                  },
                  "id": 13541,
                  "nodeType": "InheritanceSpecifier",
                  "src": "384:10:55"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 13537,
                "nodeType": "StructuredDocumentation",
                "src": "179:156:55",
                "text": " @title  PoolTogether V4 IPrizeTierHistory\n @author PoolTogether Inc Team\n @notice IPrizeTierHistory is the base contract for PrizeTierHistory"
              },
              "fullyImplemented": true,
              "id": 14075,
              "linearizedBaseContracts": [
                14075,
                3103,
                3258,
                15371
              ],
              "name": "PrizeTierHistory",
              "nameLocation": "345:16:55",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 13542,
                    "nodeType": "StructuredDocumentation",
                    "src": "454:55:55",
                    "text": " @notice History of PrizeTier updates"
                  },
                  "id": 13546,
                  "mutability": "mutable",
                  "name": "history",
                  "nameLocation": "535:7:55",
                  "nodeType": "VariableDeclaration",
                  "scope": 14075,
                  "src": "514:28:55",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                    "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 13544,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 13543,
                        "name": "PrizeTier",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 15287,
                        "src": "514:9:55"
                      },
                      "referencedDeclaration": 15287,
                      "src": "514:9:55",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                        "typeString": "struct IPrizeTierHistory.PrizeTier"
                      }
                    },
                    "id": 13545,
                    "nodeType": "ArrayTypeName",
                    "src": "514:11:55",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                      "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13554,
                    "nodeType": "Block",
                    "src": "641:2:55",
                    "statements": []
                  },
                  "id": 13555,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 13551,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13548,
                          "src": "633:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 13552,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 13550,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "625:7:55"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "625:15:55"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13549,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13548,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "617:6:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13555,
                        "src": "609:14:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13547,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "609:7:55",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "608:16:55"
                  },
                  "returnParameters": {
                    "id": 13553,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "641:0:55"
                  },
                  "scope": 14075,
                  "src": "597:46:55",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    15310
                  ],
                  "body": {
                    "id": 13608,
                    "nodeType": "Block",
                    "src": "828:579:55",
                    "statements": [
                      {
                        "assignments": [
                          13568
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13568,
                            "mutability": "mutable",
                            "name": "_history",
                            "nameLocation": "857:8:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13608,
                            "src": "838:27:55",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13566,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 13565,
                                  "name": "PrizeTier",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 15287,
                                  "src": "838:9:55"
                                },
                                "referencedDeclaration": 15287,
                                "src": "838:9:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier"
                                }
                              },
                              "id": 13567,
                              "nodeType": "ArrayTypeName",
                              "src": "838:11:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13570,
                        "initialValue": {
                          "id": 13569,
                          "name": "history",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13546,
                          "src": "868:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                            "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "838:37:55"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13574,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13571,
                              "name": "_history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13568,
                              "src": "890:8:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier memory[] memory"
                              }
                            },
                            "id": 13572,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "890:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 13573,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "908:1:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "890:19:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13595,
                        "nodeType": "IfStatement",
                        "src": "886:406:55",
                        "trueBody": {
                          "id": 13594,
                          "nodeType": "Block",
                          "src": "911:381:55",
                          "statements": [
                            {
                              "assignments": [
                                13577
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 13577,
                                  "mutability": "mutable",
                                  "name": "_newestPrizeTier",
                                  "nameLocation": "990:16:55",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 13594,
                                  "src": "973:33:55",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier"
                                  },
                                  "typeName": {
                                    "id": 13576,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 13575,
                                      "name": "PrizeTier",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 15287,
                                      "src": "973:9:55"
                                    },
                                    "referencedDeclaration": 15287,
                                    "src": "973:9:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                                      "typeString": "struct IPrizeTierHistory.PrizeTier"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 13584,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 13578,
                                  "name": "history",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13546,
                                  "src": "1009:7:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                                  }
                                },
                                "id": 13583,
                                "indexExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 13582,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 13579,
                                      "name": "history",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13546,
                                      "src": "1017:7:55",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                        "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                                      }
                                    },
                                    "id": 13580,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "length",
                                    "nodeType": "MemberAccess",
                                    "src": "1017:14:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "hexValue": "31",
                                    "id": 13581,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1034:1:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    },
                                    "value": "1"
                                  },
                                  "src": "1017:18:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "1009:27:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "973:63:55"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    "id": 13590,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "expression": {
                                        "id": 13586,
                                        "name": "_nextPrizeTier",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13558,
                                        "src": "1158:14:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                          "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                        }
                                      },
                                      "id": 13587,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "drawId",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 15274,
                                      "src": "1158:21:55",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": ">",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 13588,
                                        "name": "_newestPrizeTier",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13577,
                                        "src": "1182:16:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                          "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                        }
                                      },
                                      "id": 13589,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "drawId",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 15274,
                                      "src": "1182:23:55",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "src": "1158:47:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5072697a6554696572486973746f72792f6e6f6e2d73657175656e7469616c2d7072697a652d74696572",
                                    "id": 13591,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1223:44:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_ae288eadfb51e869d9361d1b46deeab4581e563b2304ae0e2386e76f4332061a",
                                      "typeString": "literal_string \"PrizeTierHistory/non-sequential-prize-tier\""
                                    },
                                    "value": "PrizeTierHistory/non-sequential-prize-tier"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_ae288eadfb51e869d9361d1b46deeab4581e563b2304ae0e2386e76f4332061a",
                                      "typeString": "literal_string \"PrizeTierHistory/non-sequential-prize-tier\""
                                    }
                                  ],
                                  "id": 13585,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "1133:7:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 13592,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1133:148:55",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 13593,
                              "nodeType": "ExpressionStatement",
                              "src": "1133:148:55"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13599,
                              "name": "_nextPrizeTier",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13558,
                              "src": "1315:14:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            ],
                            "expression": {
                              "id": 13596,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "1302:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13598,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "push",
                            "nodeType": "MemberAccess",
                            "src": "1302:12:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr_$_t_struct$_PrizeTier_$15287_storage_$returns$__$bound_to$_t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr_$",
                              "typeString": "function (struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer,struct IPrizeTierHistory.PrizeTier storage ref)"
                            }
                          },
                          "id": 13600,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1302:28:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13601,
                        "nodeType": "ExpressionStatement",
                        "src": "1302:28:55"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13603,
                                "name": "_nextPrizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13558,
                                "src": "1362:14:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                }
                              },
                              "id": 13604,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15274,
                              "src": "1362:21:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13605,
                              "name": "_nextPrizeTier",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13558,
                              "src": "1385:14:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            ],
                            "id": 13602,
                            "name": "PrizeTierPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15295,
                            "src": "1346:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeTier_$15287_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeTierHistory.PrizeTier memory)"
                            }
                          },
                          "id": 13606,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1346:54:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13607,
                        "nodeType": "EmitStatement",
                        "src": "1341:59:55"
                      }
                    ]
                  },
                  "functionSelector": "3659f543",
                  "id": 13609,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13562,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13561,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "809:18:55"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "809:18:55"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "751:4:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13560,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "800:8:55"
                  },
                  "parameters": {
                    "id": 13559,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13558,
                        "mutability": "mutable",
                        "name": "_nextPrizeTier",
                        "nameLocation": "775:14:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13609,
                        "src": "756:33:55",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 13557,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13556,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "756:9:55"
                          },
                          "referencedDeclaration": 15287,
                          "src": "756:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "755:35:55"
                  },
                  "returnParameters": {
                    "id": 13563,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "828:0:55"
                  },
                  "scope": 14075,
                  "src": "742:665:55",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15316
                  ],
                  "body": {
                    "id": 13688,
                    "nodeType": "Block",
                    "src": "1526:640:55",
                    "statements": [
                      {
                        "assignments": [
                          13619
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13619,
                            "mutability": "mutable",
                            "name": "cardinality",
                            "nameLocation": "1544:11:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13688,
                            "src": "1536:19:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13618,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1536:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13622,
                        "initialValue": {
                          "expression": {
                            "id": 13620,
                            "name": "history",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13546,
                            "src": "1558:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                            }
                          },
                          "id": 13621,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "1558:14:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1536:36:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 13626,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 13624,
                                "name": "cardinality",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13619,
                                "src": "1590:11:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 13625,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1604:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1590:15:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f6e6f2d7072697a652d7469657273",
                              "id": 13627,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1607:33:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9d51ddb2d2465fa780c557595db38037821c93a2c58e1a1214090c3403a3ed11",
                                "typeString": "literal_string \"PrizeTierHistory/no-prize-tiers\""
                              },
                              "value": "PrizeTierHistory/no-prize-tiers"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9d51ddb2d2465fa780c557595db38037821c93a2c58e1a1214090c3403a3ed11",
                                "typeString": "literal_string \"PrizeTierHistory/no-prize-tiers\""
                              }
                            ],
                            "id": 13623,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1582:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13628,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1582:59:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13629,
                        "nodeType": "ExpressionStatement",
                        "src": "1582:59:55"
                      },
                      {
                        "assignments": [
                          13631
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13631,
                            "mutability": "mutable",
                            "name": "leftSide",
                            "nameLocation": "1660:8:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13688,
                            "src": "1652:16:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13630,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1652:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13633,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 13632,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1671:1:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1652:20:55"
                      },
                      {
                        "assignments": [
                          13635
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13635,
                            "mutability": "mutable",
                            "name": "rightSide",
                            "nameLocation": "1690:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13688,
                            "src": "1682:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13634,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1682:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13639,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13638,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13636,
                            "name": "cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13619,
                            "src": "1702:11:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 13637,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1716:1:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "1702:15:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1682:35:55"
                      },
                      {
                        "assignments": [
                          13641
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13641,
                            "mutability": "mutable",
                            "name": "oldestDrawId",
                            "nameLocation": "1734:12:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13688,
                            "src": "1727:19:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 13640,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1727:6:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13646,
                        "initialValue": {
                          "expression": {
                            "baseExpression": {
                              "id": 13642,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "1749:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13644,
                            "indexExpression": {
                              "id": 13643,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13631,
                              "src": "1757:8:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "1749:17:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "id": 13645,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15274,
                          "src": "1749:24:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1727:46:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 13651,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13648,
                                  "name": "_prizeTier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13612,
                                  "src": "1792:10:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                  }
                                },
                                "id": 13649,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15274,
                                "src": "1792:17:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 13650,
                                "name": "oldestDrawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13641,
                                "src": "1813:12:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "1792:33:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f647261772d69642d6f75742d6f662d72616e6765",
                              "id": 13652,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1827:39:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_764ec7a6b7e4908a60075f7876c755b0e5ecbf10c6b118e6e2bc41b0c5331b8e",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-out-of-range\""
                              },
                              "value": "PrizeTierHistory/draw-id-out-of-range"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_764ec7a6b7e4908a60075f7876c755b0e5ecbf10c6b118e6e2bc41b0c5331b8e",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-out-of-range\""
                              }
                            ],
                            "id": 13647,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1784:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13653,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1784:83:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13654,
                        "nodeType": "ExpressionStatement",
                        "src": "1784:83:55"
                      },
                      {
                        "assignments": [
                          13656
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13656,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "1886:5:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13688,
                            "src": "1878:13:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13655,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1878:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13664,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13658,
                                "name": "_prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13612,
                                "src": "1913:10:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                }
                              },
                              "id": 13659,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15274,
                              "src": "1913:17:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13660,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13631,
                              "src": "1932:8:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13661,
                              "name": "rightSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13635,
                              "src": "1942:9:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13662,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "1953:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            ],
                            "id": 13657,
                            "name": "_binarySearchIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14050,
                            "src": "1894:18:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint32_$_t_uint256_$_t_uint256_$_t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr_$returns$_t_uint256_$",
                              "typeString": "function (uint32,uint256,uint256,struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer) view returns (uint256)"
                            }
                          },
                          "id": 13663,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1894:67:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1878:83:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 13672,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "baseExpression": {
                                    "id": 13666,
                                    "name": "history",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13546,
                                    "src": "1980:7:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                      "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                                    }
                                  },
                                  "id": 13668,
                                  "indexExpression": {
                                    "id": 13667,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13656,
                                    "src": "1988:5:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "1980:14:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                                  }
                                },
                                "id": 13669,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15274,
                                "src": "1980:21:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 13670,
                                  "name": "_prizeTier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13612,
                                  "src": "2005:10:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                  }
                                },
                                "id": 13671,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15274,
                                "src": "2005:17:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "1980:42:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f647261772d69642d6d7573742d6d61746368",
                              "id": 13673,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2024:37:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_81a6ac4d93386e4664148708e39265397ab15a87169e5bfa62b60a00d4fcc0e9",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-must-match\""
                              },
                              "value": "PrizeTierHistory/draw-id-must-match"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_81a6ac4d93386e4664148708e39265397ab15a87169e5bfa62b60a00d4fcc0e9",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-must-match\""
                              }
                            ],
                            "id": 13665,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1972:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13674,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1972:90:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13675,
                        "nodeType": "ExpressionStatement",
                        "src": "1972:90:55"
                      },
                      {
                        "expression": {
                          "id": 13680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 13676,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "2073:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13678,
                            "indexExpression": {
                              "id": 13677,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13656,
                              "src": "2081:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "2073:14:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 13679,
                            "name": "_prizeTier",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13612,
                            "src": "2090:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                            }
                          },
                          "src": "2073:27:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                            "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                          }
                        },
                        "id": 13681,
                        "nodeType": "ExpressionStatement",
                        "src": "2073:27:55"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13683,
                                "name": "_prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13612,
                                "src": "2129:10:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                }
                              },
                              "id": 13684,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15274,
                              "src": "2129:17:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13685,
                              "name": "_prizeTier",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13612,
                              "src": "2148:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            ],
                            "id": 13682,
                            "name": "PrizeTierSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15303,
                            "src": "2116:12:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeTier_$15287_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeTierHistory.PrizeTier memory)"
                            }
                          },
                          "id": 13686,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2116:43:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13687,
                        "nodeType": "EmitStatement",
                        "src": "2111:48:55"
                      }
                    ]
                  },
                  "functionSelector": "d365027d",
                  "id": 13689,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13616,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13615,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "1516:9:55"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1516:9:55"
                    }
                  ],
                  "name": "replace",
                  "nameLocation": "1459:7:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13614,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1507:8:55"
                  },
                  "parameters": {
                    "id": 13613,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13612,
                        "mutability": "mutable",
                        "name": "_prizeTier",
                        "nameLocation": "1486:10:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13689,
                        "src": "1467:29:55",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 13611,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13610,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "1467:9:55"
                          },
                          "referencedDeclaration": 15287,
                          "src": "1467:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1466:31:55"
                  },
                  "returnParameters": {
                    "id": 13617,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1526:0:55"
                  },
                  "scope": 14075,
                  "src": "1450:716:55",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15356
                  ],
                  "body": {
                    "id": 13745,
                    "nodeType": "Block",
                    "src": "2395:393:55",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 13704,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13701,
                                  "name": "history",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13546,
                                  "src": "2413:7:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                                  }
                                },
                                "id": 13702,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2413:14:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 13703,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2430:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "2413:18:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f686973746f72792d656d707479",
                              "id": 13705,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2433:32:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_748fa13d4b59fda362aebd6d03b9a11bf7419fb82d27d4759ad31da474fa0b94",
                                "typeString": "literal_string \"PrizeTierHistory/history-empty\""
                              },
                              "value": "PrizeTierHistory/history-empty"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_748fa13d4b59fda362aebd6d03b9a11bf7419fb82d27d4759ad31da474fa0b94",
                                "typeString": "literal_string \"PrizeTierHistory/history-empty\""
                              }
                            ],
                            "id": 13700,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2405:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13706,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2405:61:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13707,
                        "nodeType": "ExpressionStatement",
                        "src": "2405:61:55"
                      },
                      {
                        "assignments": [
                          13710
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13710,
                            "mutability": "mutable",
                            "name": "_newestPrizeTier",
                            "nameLocation": "2493:16:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13745,
                            "src": "2476:33:55",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier"
                            },
                            "typeName": {
                              "id": 13709,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13708,
                                "name": "PrizeTier",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15287,
                                "src": "2476:9:55"
                              },
                              "referencedDeclaration": 15287,
                              "src": "2476:9:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13717,
                        "initialValue": {
                          "baseExpression": {
                            "id": 13711,
                            "name": "history",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13546,
                            "src": "2512:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                            }
                          },
                          "id": 13716,
                          "indexExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 13715,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 13712,
                                "name": "history",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13546,
                                "src": "2520:7:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                                }
                              },
                              "id": 13713,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2520:14:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 13714,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2537:1:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "2520:18:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2512:27:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                            "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2476:63:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 13723,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13719,
                                  "name": "_prizeTier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13692,
                                  "src": "2557:10:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                  }
                                },
                                "id": 13720,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15274,
                                "src": "2557:17:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "expression": {
                                  "id": 13721,
                                  "name": "_newestPrizeTier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13710,
                                  "src": "2578:16:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                  }
                                },
                                "id": 13722,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15274,
                                "src": "2578:23:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2557:44:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f696e76616c69642d647261772d6964",
                              "id": 13724,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2603:34:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b879ff06e19fd1e2f2ae270b6dbae5992e47f536f5db6d07eec27d494965bb8c",
                                "typeString": "literal_string \"PrizeTierHistory/invalid-draw-id\""
                              },
                              "value": "PrizeTierHistory/invalid-draw-id"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b879ff06e19fd1e2f2ae270b6dbae5992e47f536f5db6d07eec27d494965bb8c",
                                "typeString": "literal_string \"PrizeTierHistory/invalid-draw-id\""
                              }
                            ],
                            "id": 13718,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2549:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13725,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2549:89:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13726,
                        "nodeType": "ExpressionStatement",
                        "src": "2549:89:55"
                      },
                      {
                        "expression": {
                          "id": 13734,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 13727,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "2648:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13732,
                            "indexExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 13731,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13728,
                                  "name": "history",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13546,
                                  "src": "2656:7:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                                  }
                                },
                                "id": 13729,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2656:14:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 13730,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2673:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "2656:18:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "2648:27:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 13733,
                            "name": "_prizeTier",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13692,
                            "src": "2678:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                            }
                          },
                          "src": "2648:40:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                            "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                          }
                        },
                        "id": 13735,
                        "nodeType": "ExpressionStatement",
                        "src": "2648:40:55"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13737,
                                "name": "_prizeTier",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13692,
                                "src": "2716:10:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                                }
                              },
                              "id": 13738,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15274,
                              "src": "2716:17:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13739,
                              "name": "_prizeTier",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13692,
                              "src": "2735:10:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                              }
                            ],
                            "id": 13736,
                            "name": "PrizeTierSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15303,
                            "src": "2703:12:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeTier_$15287_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeTierHistory.PrizeTier memory)"
                            }
                          },
                          "id": 13740,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2703:43:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13741,
                        "nodeType": "EmitStatement",
                        "src": "2698:48:55"
                      },
                      {
                        "expression": {
                          "expression": {
                            "id": 13742,
                            "name": "_prizeTier",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13692,
                            "src": "2764:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier calldata"
                            }
                          },
                          "id": 13743,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15274,
                          "src": "2764:17:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 13699,
                        "id": 13744,
                        "nodeType": "Return",
                        "src": "2757:24:55"
                      }
                    ]
                  },
                  "functionSelector": "f1143765",
                  "id": 13746,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13696,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13695,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "2356:9:55"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2356:9:55"
                    }
                  ],
                  "name": "popAndPush",
                  "nameLocation": "2272:10:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13694,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2339:8:55"
                  },
                  "parameters": {
                    "id": 13693,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13692,
                        "mutability": "mutable",
                        "name": "_prizeTier",
                        "nameLocation": "2302:10:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13746,
                        "src": "2283:29:55",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 13691,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13690,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "2283:9:55"
                          },
                          "referencedDeclaration": 15287,
                          "src": "2283:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2282:31:55"
                  },
                  "returnParameters": {
                    "id": 13699,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13698,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13746,
                        "src": "2383:6:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13697,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2383:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2382:8:55"
                  },
                  "scope": 14075,
                  "src": "2263:525:55",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15325
                  ],
                  "body": {
                    "id": 13766,
                    "nodeType": "Block",
                    "src": "2973:113:55",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 13758,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 13756,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13748,
                                "src": "2991:7:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 13757,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3001:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "2991:11:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f647261772d69642d6e6f742d7a65726f",
                              "id": 13759,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3004:35:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f5807091b05c9526c66502840ce61b173492452ea59d28722ef71ac844aba374",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-not-zero\""
                              },
                              "value": "PrizeTierHistory/draw-id-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f5807091b05c9526c66502840ce61b173492452ea59d28722ef71ac844aba374",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-not-zero\""
                              }
                            ],
                            "id": 13755,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2983:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13760,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2983:57:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13761,
                        "nodeType": "ExpressionStatement",
                        "src": "2983:57:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13763,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13748,
                              "src": "3071:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13762,
                            "name": "_getPrizeTier",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13919,
                            "src": "3057:13:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint32_$returns$_t_struct$_PrizeTier_$15287_memory_ptr_$",
                              "typeString": "function (uint32) view returns (struct IPrizeTierHistory.PrizeTier memory)"
                            }
                          },
                          "id": 13764,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3057:22:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                          }
                        },
                        "functionReturnParameters": 13754,
                        "id": 13765,
                        "nodeType": "Return",
                        "src": "3050:29:55"
                      }
                    ]
                  },
                  "functionSelector": "4aac253d",
                  "id": 13767,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeTier",
                  "nameLocation": "2894:12:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13750,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2937:8:55"
                  },
                  "parameters": {
                    "id": 13749,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13748,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "2914:7:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13767,
                        "src": "2907:14:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13747,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2907:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2906:16:55"
                  },
                  "returnParameters": {
                    "id": 13754,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13753,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13767,
                        "src": "2955:16:55",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 13752,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13751,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "2955:9:55"
                          },
                          "referencedDeclaration": 15287,
                          "src": "2955:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2954:18:55"
                  },
                  "scope": 14075,
                  "src": "2885:201:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15331
                  ],
                  "body": {
                    "id": 13778,
                    "nodeType": "Block",
                    "src": "3196:41:55",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "baseExpression": {
                              "id": 13773,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "3213:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13775,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 13774,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3221:1:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "3213:10:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "id": 13776,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15274,
                          "src": "3213:17:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 13772,
                        "id": 13777,
                        "nodeType": "Return",
                        "src": "3206:24:55"
                      }
                    ]
                  },
                  "functionSelector": "39dd7f08",
                  "id": 13779,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDrawId",
                  "nameLocation": "3138:15:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13769,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3170:8:55"
                  },
                  "parameters": {
                    "id": 13768,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3153:2:55"
                  },
                  "returnParameters": {
                    "id": 13772,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13771,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13779,
                        "src": "3188:6:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13770,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3188:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3187:8:55"
                  },
                  "scope": 14075,
                  "src": "3129:108:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15336
                  ],
                  "body": {
                    "id": 13793,
                    "nodeType": "Block",
                    "src": "3347:58:55",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "baseExpression": {
                              "id": 13785,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "3364:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13790,
                            "indexExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 13789,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13786,
                                  "name": "history",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13546,
                                  "src": "3372:7:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                                  }
                                },
                                "id": 13787,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "3372:14:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 13788,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3389:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "3372:18:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "3364:27:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "id": 13791,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15274,
                          "src": "3364:34:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 13784,
                        "id": 13792,
                        "nodeType": "Return",
                        "src": "3357:41:55"
                      }
                    ]
                  },
                  "functionSelector": "472b619c",
                  "id": 13794,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDrawId",
                  "nameLocation": "3289:15:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13781,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3321:8:55"
                  },
                  "parameters": {
                    "id": 13780,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3304:2:55"
                  },
                  "returnParameters": {
                    "id": 13784,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13783,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13794,
                        "src": "3339:6:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13782,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3339:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3338:8:55"
                  },
                  "scope": 14075,
                  "src": "3280:125:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15347
                  ],
                  "body": {
                    "id": 13843,
                    "nodeType": "Block",
                    "src": "3590:304:55",
                    "statements": [
                      {
                        "assignments": [
                          13809
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13809,
                            "mutability": "mutable",
                            "name": "_data",
                            "nameLocation": "3619:5:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13843,
                            "src": "3600:24:55",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13807,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 13806,
                                  "name": "PrizeTier",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 15287,
                                  "src": "3600:9:55"
                                },
                                "referencedDeclaration": 15287,
                                "src": "3600:9:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier"
                                }
                              },
                              "id": 13808,
                              "nodeType": "ArrayTypeName",
                              "src": "3600:11:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13817,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13814,
                                "name": "_drawIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13797,
                                "src": "3643:8:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                  "typeString": "uint32[] calldata"
                                }
                              },
                              "id": 13815,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "3643:15:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13813,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "3627:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct IPrizeTierHistory.PrizeTier memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 13811,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 13810,
                                  "name": "PrizeTier",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 15287,
                                  "src": "3631:9:55"
                                },
                                "referencedDeclaration": 15287,
                                "src": "3631:9:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier"
                                }
                              },
                              "id": 13812,
                              "nodeType": "ArrayTypeName",
                              "src": "3631:11:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                              }
                            }
                          },
                          "id": 13816,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3627:32:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3600:59:55"
                      },
                      {
                        "body": {
                          "id": 13839,
                          "nodeType": "Block",
                          "src": "3727:139:55",
                          "statements": [
                            {
                              "expression": {
                                "id": 13837,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 13829,
                                    "name": "_data",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13809,
                                    "src": "3741:5:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct IPrizeTierHistory.PrizeTier memory[] memory"
                                    }
                                  },
                                  "id": 13831,
                                  "indexExpression": {
                                    "id": 13830,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13819,
                                    "src": "3747:5:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "3741:12:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "baseExpression": {
                                        "id": 13833,
                                        "name": "_drawIds",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13797,
                                        "src": "3770:8:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                          "typeString": "uint32[] calldata"
                                        }
                                      },
                                      "id": 13835,
                                      "indexExpression": {
                                        "id": 13834,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13819,
                                        "src": "3779:5:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "3770:15:55",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "id": 13832,
                                    "name": "_getPrizeTier",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13919,
                                    "src": "3756:13:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_uint32_$returns$_t_struct$_PrizeTier_$15287_memory_ptr_$",
                                      "typeString": "function (uint32) view returns (struct IPrizeTierHistory.PrizeTier memory)"
                                    }
                                  },
                                  "id": 13836,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3756:30:55",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                  }
                                },
                                "src": "3741:45:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                                }
                              },
                              "id": 13838,
                              "nodeType": "ExpressionStatement",
                              "src": "3741:45:55"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13825,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13822,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13819,
                            "src": "3693:5:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 13823,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13797,
                              "src": "3701:8:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            "id": 13824,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "3701:15:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3693:23:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13840,
                        "initializationExpression": {
                          "assignments": [
                            13819
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 13819,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "3682:5:55",
                              "nodeType": "VariableDeclaration",
                              "scope": 13840,
                              "src": "3674:13:55",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 13818,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3674:7:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 13821,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 13820,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3690:1:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "3674:17:55"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 13827,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "3718:7:55",
                            "subExpression": {
                              "id": 13826,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13819,
                              "src": "3718:5:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 13828,
                          "nodeType": "ExpressionStatement",
                          "src": "3718:7:55"
                        },
                        "nodeType": "ForStatement",
                        "src": "3669:197:55"
                      },
                      {
                        "expression": {
                          "id": 13841,
                          "name": "_data",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13809,
                          "src": "3882:5:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier memory[] memory"
                          }
                        },
                        "functionReturnParameters": 13804,
                        "id": 13842,
                        "nodeType": "Return",
                        "src": "3875:12:55"
                      }
                    ]
                  },
                  "functionSelector": "4e602cd8",
                  "id": 13844,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeTierList",
                  "nameLocation": "3457:16:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13799,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3540:8:55"
                  },
                  "parameters": {
                    "id": 13798,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13797,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "3492:8:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13844,
                        "src": "3474:26:55",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13795,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "3474:6:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 13796,
                          "nodeType": "ArrayTypeName",
                          "src": "3474:8:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3473:28:55"
                  },
                  "returnParameters": {
                    "id": 13804,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13803,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13844,
                        "src": "3566:18:55",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13801,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13800,
                              "name": "PrizeTier",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 15287,
                              "src": "3566:9:55"
                            },
                            "referencedDeclaration": 15287,
                            "src": "3566:9:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier"
                            }
                          },
                          "id": 13802,
                          "nodeType": "ArrayTypeName",
                          "src": "3566:11:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3565:20:55"
                  },
                  "scope": 14075,
                  "src": "3448:446:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13918,
                    "nodeType": "Block",
                    "src": "3980:592:55",
                    "statements": [
                      {
                        "assignments": [
                          13853
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13853,
                            "mutability": "mutable",
                            "name": "cardinality",
                            "nameLocation": "3998:11:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13918,
                            "src": "3990:19:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13852,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3990:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13856,
                        "initialValue": {
                          "expression": {
                            "id": 13854,
                            "name": "history",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13546,
                            "src": "4012:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                            }
                          },
                          "id": 13855,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "4012:14:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3990:36:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 13860,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 13858,
                                "name": "cardinality",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13853,
                                "src": "4044:11:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 13859,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4058:1:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4044:15:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f6e6f2d7072697a652d7469657273",
                              "id": 13861,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4061:33:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9d51ddb2d2465fa780c557595db38037821c93a2c58e1a1214090c3403a3ed11",
                                "typeString": "literal_string \"PrizeTierHistory/no-prize-tiers\""
                              },
                              "value": "PrizeTierHistory/no-prize-tiers"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9d51ddb2d2465fa780c557595db38037821c93a2c58e1a1214090c3403a3ed11",
                                "typeString": "literal_string \"PrizeTierHistory/no-prize-tiers\""
                              }
                            ],
                            "id": 13857,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4036:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13862,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4036:59:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13863,
                        "nodeType": "ExpressionStatement",
                        "src": "4036:59:55"
                      },
                      {
                        "assignments": [
                          13865
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13865,
                            "mutability": "mutable",
                            "name": "leftSide",
                            "nameLocation": "4114:8:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13918,
                            "src": "4106:16:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13864,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4106:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13867,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 13866,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4125:1:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4106:20:55"
                      },
                      {
                        "assignments": [
                          13869
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13869,
                            "mutability": "mutable",
                            "name": "rightSide",
                            "nameLocation": "4144:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13918,
                            "src": "4136:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13868,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4136:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13873,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13872,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13870,
                            "name": "cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13853,
                            "src": "4156:11:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 13871,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4170:1:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "4156:15:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4136:35:55"
                      },
                      {
                        "assignments": [
                          13875
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13875,
                            "mutability": "mutable",
                            "name": "oldestDrawId",
                            "nameLocation": "4188:12:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13918,
                            "src": "4181:19:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 13874,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4181:6:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13880,
                        "initialValue": {
                          "expression": {
                            "baseExpression": {
                              "id": 13876,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "4203:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13878,
                            "indexExpression": {
                              "id": 13877,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13865,
                              "src": "4211:8:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4203:17:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "id": 13879,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15274,
                          "src": "4203:24:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4181:46:55"
                      },
                      {
                        "assignments": [
                          13882
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13882,
                            "mutability": "mutable",
                            "name": "newestDrawId",
                            "nameLocation": "4244:12:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 13918,
                            "src": "4237:19:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 13881,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4237:6:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13887,
                        "initialValue": {
                          "expression": {
                            "baseExpression": {
                              "id": 13883,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "4259:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13885,
                            "indexExpression": {
                              "id": 13884,
                              "name": "rightSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13869,
                              "src": "4267:9:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4259:18:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "id": 13886,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15274,
                          "src": "4259:25:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4237:47:55"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 13891,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 13889,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13846,
                                "src": "4303:7:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 13890,
                                "name": "oldestDrawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13875,
                                "src": "4314:12:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "4303:23:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6554696572486973746f72792f647261772d69642d6f75742d6f662d72616e6765",
                              "id": 13892,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4328:39:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_764ec7a6b7e4908a60075f7876c755b0e5ecbf10c6b118e6e2bc41b0c5331b8e",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-out-of-range\""
                              },
                              "value": "PrizeTierHistory/draw-id-out-of-range"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_764ec7a6b7e4908a60075f7876c755b0e5ecbf10c6b118e6e2bc41b0c5331b8e",
                                "typeString": "literal_string \"PrizeTierHistory/draw-id-out-of-range\""
                              }
                            ],
                            "id": 13888,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4295:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13893,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4295:73:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13894,
                        "nodeType": "ExpressionStatement",
                        "src": "4295:73:55"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13897,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13895,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13846,
                            "src": "4382:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">=",
                          "rightExpression": {
                            "id": 13896,
                            "name": "newestDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13882,
                            "src": "4393:12:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "4382:23:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13902,
                        "nodeType": "IfStatement",
                        "src": "4378:54:55",
                        "trueBody": {
                          "expression": {
                            "baseExpression": {
                              "id": 13898,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "4414:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13900,
                            "indexExpression": {
                              "id": 13899,
                              "name": "rightSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13869,
                              "src": "4422:9:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4414:18:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "functionReturnParameters": 13851,
                          "id": 13901,
                          "nodeType": "Return",
                          "src": "4407:25:55"
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13905,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13903,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13846,
                            "src": "4446:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 13904,
                            "name": "oldestDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13875,
                            "src": "4457:12:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "4446:23:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13910,
                        "nodeType": "IfStatement",
                        "src": "4442:53:55",
                        "trueBody": {
                          "expression": {
                            "baseExpression": {
                              "id": 13906,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "4478:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            },
                            "id": 13908,
                            "indexExpression": {
                              "id": 13907,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13865,
                              "src": "4486:8:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4478:17:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                            }
                          },
                          "functionReturnParameters": 13851,
                          "id": 13909,
                          "nodeType": "Return",
                          "src": "4471:24:55"
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13912,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13846,
                              "src": "4527:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13913,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13865,
                              "src": "4536:8:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13914,
                              "name": "rightSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13869,
                              "src": "4546:9:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13915,
                              "name": "history",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13546,
                              "src": "4557:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                                "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                              }
                            ],
                            "id": 13911,
                            "name": "_binarySearch",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13945,
                            "src": "4513:13:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint32_$_t_uint256_$_t_uint256_$_t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr_$returns$_t_struct$_PrizeTier_$15287_memory_ptr_$",
                              "typeString": "function (uint32,uint256,uint256,struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer) view returns (struct IPrizeTierHistory.PrizeTier memory)"
                            }
                          },
                          "id": 13916,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4513:52:55",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier memory"
                          }
                        },
                        "functionReturnParameters": 13851,
                        "id": 13917,
                        "nodeType": "Return",
                        "src": "4506:59:55"
                      }
                    ]
                  },
                  "id": 13919,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getPrizeTier",
                  "nameLocation": "3909:13:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13847,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13846,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "3930:7:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13919,
                        "src": "3923:14:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13845,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3923:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3922:16:55"
                  },
                  "returnParameters": {
                    "id": 13851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13850,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13919,
                        "src": "3962:16:55",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 13849,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13848,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "3962:9:55"
                          },
                          "referencedDeclaration": 15287,
                          "src": "3962:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3961:18:55"
                  },
                  "scope": 14075,
                  "src": "3900:672:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13944,
                    "nodeType": "Block",
                    "src": "4763:92:55",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 13935,
                            "name": "_history",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13929,
                            "src": "4780:8:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer"
                            }
                          },
                          "id": 13942,
                          "indexExpression": {
                            "arguments": [
                              {
                                "id": 13937,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13921,
                                "src": "4808:7:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 13938,
                                "name": "leftSide",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13923,
                                "src": "4817:8:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              {
                                "id": 13939,
                                "name": "rightSide",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13925,
                                "src": "4827:9:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              {
                                "id": 13940,
                                "name": "_history",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13929,
                                "src": "4838:8:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                                  "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer"
                                }
                              ],
                              "id": 13936,
                              "name": "_binarySearchIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14050,
                              "src": "4789:18:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_uint32_$_t_uint256_$_t_uint256_$_t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr_$returns$_t_uint256_$",
                                "typeString": "function (uint32,uint256,uint256,struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer) view returns (uint256)"
                              }
                            },
                            "id": 13941,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "4789:58:55",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4780:68:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                            "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                          }
                        },
                        "functionReturnParameters": 13934,
                        "id": 13943,
                        "nodeType": "Return",
                        "src": "4773:75:55"
                      }
                    ]
                  },
                  "id": 13945,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_binarySearch",
                  "nameLocation": "4587:13:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13930,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13921,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4617:7:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13945,
                        "src": "4610:14:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13920,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4610:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13923,
                        "mutability": "mutable",
                        "name": "leftSide",
                        "nameLocation": "4642:8:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13945,
                        "src": "4634:16:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13922,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4634:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13925,
                        "mutability": "mutable",
                        "name": "rightSide",
                        "nameLocation": "4668:9:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13945,
                        "src": "4660:17:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13924,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4660:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13929,
                        "mutability": "mutable",
                        "name": "_history",
                        "nameLocation": "4707:8:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 13945,
                        "src": "4687:28:55",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13927,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13926,
                              "name": "PrizeTier",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 15287,
                              "src": "4687:9:55"
                            },
                            "referencedDeclaration": 15287,
                            "src": "4687:9:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier"
                            }
                          },
                          "id": 13928,
                          "nodeType": "ArrayTypeName",
                          "src": "4687:11:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4600:121:55"
                  },
                  "returnParameters": {
                    "id": 13934,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13933,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13945,
                        "src": "4745:16:55",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 13932,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13931,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "4745:9:55"
                          },
                          "referencedDeclaration": 15287,
                          "src": "4745:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4744:18:55"
                  },
                  "scope": 14075,
                  "src": "4578:277:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14049,
                    "nodeType": "Block",
                    "src": "5044:889:55",
                    "statements": [
                      {
                        "assignments": [
                          13961
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13961,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "5062:5:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 14049,
                            "src": "5054:13:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13960,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5054:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13962,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5054:13:55"
                      },
                      {
                        "assignments": [
                          13964
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13964,
                            "mutability": "mutable",
                            "name": "leftSide",
                            "nameLocation": "5085:8:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 14049,
                            "src": "5077:16:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13963,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5077:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13966,
                        "initialValue": {
                          "id": 13965,
                          "name": "_leftSide",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13949,
                          "src": "5096:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5077:28:55"
                      },
                      {
                        "assignments": [
                          13968
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13968,
                            "mutability": "mutable",
                            "name": "rightSide",
                            "nameLocation": "5123:9:55",
                            "nodeType": "VariableDeclaration",
                            "scope": 14049,
                            "src": "5115:17:55",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13967,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5115:7:55",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13970,
                        "initialValue": {
                          "id": 13969,
                          "name": "_rightSide",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13951,
                          "src": "5135:10:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5115:30:55"
                      },
                      {
                        "body": {
                          "id": 14045,
                          "nodeType": "Block",
                          "src": "5168:737:55",
                          "statements": [
                            {
                              "assignments": [
                                13973
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 13973,
                                  "mutability": "mutable",
                                  "name": "center",
                                  "nameLocation": "5190:6:55",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 14045,
                                  "src": "5182:14:55",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 13972,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5182:7:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 13982,
                              "initialValue": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 13981,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 13974,
                                  "name": "leftSide",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13964,
                                  "src": "5199:8:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 13980,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "components": [
                                      {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 13977,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 13975,
                                          "name": "rightSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13968,
                                          "src": "5211:9:55",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "-",
                                        "rightExpression": {
                                          "id": 13976,
                                          "name": "leftSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13964,
                                          "src": "5223:8:55",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "5211:20:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "id": 13978,
                                    "isConstant": false,
                                    "isInlineArray": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "TupleExpression",
                                    "src": "5210:22:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "/",
                                  "rightExpression": {
                                    "hexValue": "32",
                                    "id": 13979,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5235:1:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "src": "5210:26:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5199:37:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5182:54:55"
                            },
                            {
                              "assignments": [
                                13984
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 13984,
                                  "mutability": "mutable",
                                  "name": "centerPrizeTierID",
                                  "nameLocation": "5257:17:55",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 14045,
                                  "src": "5250:24:55",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 13983,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5250:6:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 13989,
                              "initialValue": {
                                "expression": {
                                  "baseExpression": {
                                    "id": 13985,
                                    "name": "_history",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13955,
                                    "src": "5277:8:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                                      "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage pointer"
                                    }
                                  },
                                  "id": 13987,
                                  "indexExpression": {
                                    "id": 13986,
                                    "name": "center",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13973,
                                    "src": "5286:6:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "5277:16:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                                    "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                                  }
                                },
                                "id": 13988,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15274,
                                "src": "5277:23:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5250:50:55"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 13992,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 13990,
                                  "name": "centerPrizeTierID",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13984,
                                  "src": "5319:17:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "id": 13991,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13947,
                                  "src": "5340:7:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "5319:28:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 13999,
                              "nodeType": "IfStatement",
                              "src": "5315:104:55",
                              "trueBody": {
                                "id": 13998,
                                "nodeType": "Block",
                                "src": "5349:70:55",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 13995,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 13993,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13961,
                                        "src": "5367:5:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "id": 13994,
                                        "name": "center",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13973,
                                        "src": "5375:6:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "5367:14:55",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 13996,
                                    "nodeType": "ExpressionStatement",
                                    "src": "5367:14:55"
                                  },
                                  {
                                    "id": 13997,
                                    "nodeType": "Break",
                                    "src": "5399:5:55"
                                  }
                                ]
                              }
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 14002,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14000,
                                  "name": "centerPrizeTierID",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13984,
                                  "src": "5437:17:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "id": 14001,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13947,
                                  "src": "5457:7:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "5437:27:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "condition": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 14012,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 14010,
                                    "name": "centerPrizeTierID",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13984,
                                    "src": "5530:17:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">",
                                  "rightExpression": {
                                    "id": 14011,
                                    "name": "_drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13947,
                                    "src": "5550:7:55",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "src": "5530:27:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "id": 14020,
                                "nodeType": "IfStatement",
                                "src": "5526:88:55",
                                "trueBody": {
                                  "id": 14019,
                                  "nodeType": "Block",
                                  "src": "5559:55:55",
                                  "statements": [
                                    {
                                      "expression": {
                                        "id": 14017,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftHandSide": {
                                          "id": 14013,
                                          "name": "rightSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13968,
                                          "src": "5577:9:55",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "Assignment",
                                        "operator": "=",
                                        "rightHandSide": {
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "id": 14016,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "id": 14014,
                                            "name": "center",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 13973,
                                            "src": "5589:6:55",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "-",
                                          "rightExpression": {
                                            "hexValue": "31",
                                            "id": 14015,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "5598:1:55",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_1_by_1",
                                              "typeString": "int_const 1"
                                            },
                                            "value": "1"
                                          },
                                          "src": "5589:10:55",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "5577:22:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "id": 14018,
                                      "nodeType": "ExpressionStatement",
                                      "src": "5577:22:55"
                                    }
                                  ]
                                }
                              },
                              "id": 14021,
                              "nodeType": "IfStatement",
                              "src": "5433:181:55",
                              "trueBody": {
                                "id": 14009,
                                "nodeType": "Block",
                                "src": "5466:54:55",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 14007,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 14003,
                                        "name": "leftSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13964,
                                        "src": "5484:8:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 14006,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 14004,
                                          "name": "center",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13973,
                                          "src": "5495:6:55",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 14005,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "5504:1:55",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "5495:10:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "5484:21:55",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 14008,
                                    "nodeType": "ExpressionStatement",
                                    "src": "5484:21:55"
                                  }
                                ]
                              }
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14024,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14022,
                                  "name": "leftSide",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13964,
                                  "src": "5632:8:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "id": 14023,
                                  "name": "rightSide",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13968,
                                  "src": "5644:9:55",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5632:21:55",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 14044,
                              "nodeType": "IfStatement",
                              "src": "5628:267:55",
                              "trueBody": {
                                "id": 14043,
                                "nodeType": "Block",
                                "src": "5655:240:55",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      "id": 14027,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 14025,
                                        "name": "centerPrizeTierID",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13984,
                                        "src": "5677:17:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": ">=",
                                      "rightExpression": {
                                        "id": 14026,
                                        "name": "_drawId",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13947,
                                        "src": "5698:7:55",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "5677:28:55",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 14041,
                                      "nodeType": "Block",
                                      "src": "5799:82:55",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 14038,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 14036,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 13961,
                                              "src": "5821:5:55",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 14037,
                                              "name": "center",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 13973,
                                              "src": "5829:6:55",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "src": "5821:14:55",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "id": 14039,
                                          "nodeType": "ExpressionStatement",
                                          "src": "5821:14:55"
                                        },
                                        {
                                          "id": 14040,
                                          "nodeType": "Break",
                                          "src": "5857:5:55"
                                        }
                                      ]
                                    },
                                    "id": 14042,
                                    "nodeType": "IfStatement",
                                    "src": "5673:208:55",
                                    "trueBody": {
                                      "id": 14035,
                                      "nodeType": "Block",
                                      "src": "5707:86:55",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 14032,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 14028,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 13961,
                                              "src": "5729:5:55",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 14031,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 14029,
                                                "name": "center",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 13973,
                                                "src": "5737:6:55",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 14030,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "5746:1:55",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "5737:10:55",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "src": "5729:18:55",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "id": 14033,
                                          "nodeType": "ExpressionStatement",
                                          "src": "5729:18:55"
                                        },
                                        {
                                          "id": 14034,
                                          "nodeType": "Break",
                                          "src": "5769:5:55"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "hexValue": "74727565",
                          "id": 13971,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5162:4:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "id": 14046,
                        "nodeType": "WhileStatement",
                        "src": "5155:750:55"
                      },
                      {
                        "expression": {
                          "id": 14047,
                          "name": "index",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13961,
                          "src": "5921:5:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13959,
                        "id": 14048,
                        "nodeType": "Return",
                        "src": "5914:12:55"
                      }
                    ]
                  },
                  "id": 14050,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_binarySearchIndex",
                  "nameLocation": "4870:18:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13947,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4905:7:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 14050,
                        "src": "4898:14:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13946,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4898:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13949,
                        "mutability": "mutable",
                        "name": "_leftSide",
                        "nameLocation": "4930:9:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 14050,
                        "src": "4922:17:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13948,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4922:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13951,
                        "mutability": "mutable",
                        "name": "_rightSide",
                        "nameLocation": "4957:10:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 14050,
                        "src": "4949:18:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13950,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4949:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13955,
                        "mutability": "mutable",
                        "name": "_history",
                        "nameLocation": "4997:8:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 14050,
                        "src": "4977:28:55",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13953,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13952,
                              "name": "PrizeTier",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 15287,
                              "src": "4977:9:55"
                            },
                            "referencedDeclaration": 15287,
                            "src": "4977:9:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier"
                            }
                          },
                          "id": 13954,
                          "nodeType": "ArrayTypeName",
                          "src": "4977:11:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4888:123:55"
                  },
                  "returnParameters": {
                    "id": 13959,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13958,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14050,
                        "src": "5035:7:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13957,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5035:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5034:9:55"
                  },
                  "scope": 14075,
                  "src": "4861:1072:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    15364
                  ],
                  "body": {
                    "id": 14063,
                    "nodeType": "Block",
                    "src": "6033:38:55",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 14059,
                            "name": "history",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13546,
                            "src": "6050:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                            }
                          },
                          "id": 14061,
                          "indexExpression": {
                            "id": 14060,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14052,
                            "src": "6058:5:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6050:14:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage",
                            "typeString": "struct IPrizeTierHistory.PrizeTier storage ref"
                          }
                        },
                        "functionReturnParameters": 14058,
                        "id": 14062,
                        "nodeType": "Return",
                        "src": "6043:21:55"
                      }
                    ]
                  },
                  "functionSelector": "e4dd2690",
                  "id": 14064,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeTierAtIndex",
                  "nameLocation": "5948:19:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14054,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5997:8:55"
                  },
                  "parameters": {
                    "id": 14053,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14052,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "5976:5:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 14064,
                        "src": "5968:13:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14051,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5968:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5967:15:55"
                  },
                  "returnParameters": {
                    "id": 14058,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14057,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14064,
                        "src": "6015:16:55",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 14056,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14055,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "6015:9:55"
                          },
                          "referencedDeclaration": 15287,
                          "src": "6015:9:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6014:18:55"
                  },
                  "scope": 14075,
                  "src": "5939:132:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15370
                  ],
                  "body": {
                    "id": 14073,
                    "nodeType": "Block",
                    "src": "6135:38:55",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 14070,
                            "name": "history",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13546,
                            "src": "6152:7:55",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage",
                              "typeString": "struct IPrizeTierHistory.PrizeTier storage ref[] storage ref"
                            }
                          },
                          "id": 14071,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "6152:14:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14069,
                        "id": 14072,
                        "nodeType": "Return",
                        "src": "6145:21:55"
                      }
                    ]
                  },
                  "functionSelector": "06661abd",
                  "id": 14074,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "count",
                  "nameLocation": "6086:5:55",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14066,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6108:8:55"
                  },
                  "parameters": {
                    "id": 14065,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6091:2:55"
                  },
                  "returnParameters": {
                    "id": 14069,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14068,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14074,
                        "src": "6126:7:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14067,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6126:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6125:9:55"
                  },
                  "scope": 14075,
                  "src": "6077:96:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 14076,
              "src": "336:5839:55",
              "usedErrors": []
            }
          ],
          "src": "36:6140:55"
        },
        "id": 55
      },
      "@pooltogether/v4-periphery/contracts/TwabRewards.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-periphery/contracts/TwabRewards.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "ITicket": [
              9297
            ],
            "ITwabRewards": [
              15493
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ],
            "TwabRewards": [
              15183
            ]
          },
          "id": 15184,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 14077,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:56"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 14078,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15184,
              "sourceUnit": 664,
              "src": "61:56:56",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 14079,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15184,
              "sourceUnit": 1118,
              "src": "118:65:56",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "id": 14080,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15184,
              "sourceUnit": 9298,
              "src": "184:64:56",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol",
              "file": "./interfaces/ITwabRewards.sol",
              "id": 14081,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15184,
              "sourceUnit": 15494,
              "src": "250:39:56",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 14083,
                    "name": "ITwabRewards",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15493,
                    "src": "985:12:56"
                  },
                  "id": 14084,
                  "nodeType": "InheritanceSpecifier",
                  "src": "985:12:56"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 14082,
                "nodeType": "StructuredDocumentation",
                "src": "291:669:56",
                "text": " @title PoolTogether V4 TwabRewards\n @author PoolTogether Inc Team\n @notice Contract to distribute rewards to depositors in a pool.\n This contract supports the creation of several promotions that can run simultaneously.\n In order to calculate user rewards, we use the TWAB (Time-Weighted Average Balance) from the Ticket contract.\n This way, users simply need to hold their tickets to be eligible to claim rewards.\n Rewards are calculated based on the average amount of tickets they hold during the epoch duration.\n @dev This contract supports only one prize pool ticket.\n @dev This contract does not support the use of fee on transfer tokens."
              },
              "fullyImplemented": true,
              "id": 15183,
              "linearizedBaseContracts": [
                15183,
                15493
              ],
              "name": "TwabRewards",
              "nameLocation": "970:11:56",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 14088,
                  "libraryName": {
                    "id": 14085,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1117,
                    "src": "1010:9:56"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1004:27:56",
                  "typeName": {
                    "id": 14087,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 14086,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 663,
                      "src": "1024:6:56"
                    },
                    "referencedDeclaration": 663,
                    "src": "1024:6:56",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$663",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 14089,
                    "nodeType": "StructuredDocumentation",
                    "src": "1091:67:56",
                    "text": "@notice Prize pool ticket for which the promotions are created."
                  },
                  "functionSelector": "6cc25db7",
                  "id": 14092,
                  "mutability": "immutable",
                  "name": "ticket",
                  "nameLocation": "1188:6:56",
                  "nodeType": "VariableDeclaration",
                  "scope": 15183,
                  "src": "1163:31:56",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$9297",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 14091,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 14090,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 9297,
                      "src": "1163:7:56"
                    },
                    "referencedDeclaration": 9297,
                    "src": "1163:7:56",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$9297",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 14093,
                    "nodeType": "StructuredDocumentation",
                    "src": "1201:78:56",
                    "text": "@notice Period during which the promotion owner can't destroy a promotion."
                  },
                  "functionSelector": "c1a287e2",
                  "id": 14096,
                  "mutability": "constant",
                  "name": "GRACE_PERIOD",
                  "nameLocation": "1307:12:56",
                  "nodeType": "VariableDeclaration",
                  "scope": 15183,
                  "src": "1284:45:56",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 14094,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1284:6:56",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "value": {
                    "hexValue": "3630",
                    "id": 14095,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1322:7:56",
                    "subdenomination": "days",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_5184000_by_1",
                      "typeString": "int_const 5184000"
                    },
                    "value": "60"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 14097,
                    "nodeType": "StructuredDocumentation",
                    "src": "1336:39:56",
                    "text": "@notice Settings of each promotion."
                  },
                  "id": 14102,
                  "mutability": "mutable",
                  "name": "_promotions",
                  "nameLocation": "1419:11:56",
                  "nodeType": "VariableDeclaration",
                  "scope": 15183,
                  "src": "1380:50:56",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                    "typeString": "mapping(uint256 => struct ITwabRewards.Promotion)"
                  },
                  "typeName": {
                    "id": 14101,
                    "keyType": {
                      "id": 14098,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1388:7:56",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1380:29:56",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                      "typeString": "mapping(uint256 => struct ITwabRewards.Promotion)"
                    },
                    "valueType": {
                      "id": 14100,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 14099,
                        "name": "Promotion",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 15393,
                        "src": "1399:9:56"
                      },
                      "referencedDeclaration": 15393,
                      "src": "1399:9:56",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                        "typeString": "struct ITwabRewards.Promotion"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 14103,
                    "nodeType": "StructuredDocumentation",
                    "src": "1437:186:56",
                    "text": " @notice Latest recorded promotion id.\n @dev Starts at 0 and is incremented by 1 for each new promotion. So the first promotion will have id 1, the second 2, etc."
                  },
                  "id": 14105,
                  "mutability": "mutable",
                  "name": "_latestPromotionId",
                  "nameLocation": "1645:18:56",
                  "nodeType": "VariableDeclaration",
                  "scope": 15183,
                  "src": "1628:35:56",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 14104,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1628:7:56",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 14106,
                    "nodeType": "StructuredDocumentation",
                    "src": "1670:231:56",
                    "text": " @notice Keeps track of claimed rewards per user.\n @dev _claimedEpochs[promotionId][user] => claimedEpochs\n @dev We pack epochs claimed by a user into a uint256. So we can't store more than 256 epochs."
                  },
                  "id": 14112,
                  "mutability": "mutable",
                  "name": "_claimedEpochs",
                  "nameLocation": "1963:14:56",
                  "nodeType": "VariableDeclaration",
                  "scope": 15183,
                  "src": "1906:71:56",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$",
                    "typeString": "mapping(uint256 => mapping(address => uint256))"
                  },
                  "typeName": {
                    "id": 14111,
                    "keyType": {
                      "id": 14107,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1914:7:56",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1906:47:56",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$",
                      "typeString": "mapping(uint256 => mapping(address => uint256))"
                    },
                    "valueType": {
                      "id": 14110,
                      "keyType": {
                        "id": 14108,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1933:7:56",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1925:27:56",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                        "typeString": "mapping(address => uint256)"
                      },
                      "valueType": {
                        "id": 14109,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1944:7:56",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14113,
                    "nodeType": "StructuredDocumentation",
                    "src": "2028:123:56",
                    "text": " @notice Emitted when a promotion is created.\n @param promotionId Id of the newly created promotion"
                  },
                  "id": 14117,
                  "name": "PromotionCreated",
                  "nameLocation": "2162:16:56",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14116,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14115,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "promotionId",
                        "nameLocation": "2195:11:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14117,
                        "src": "2179:27:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14114,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2179:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2178:29:56"
                  },
                  "src": "2156:52:56"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14118,
                    "nodeType": "StructuredDocumentation",
                    "src": "2214:343:56",
                    "text": " @notice Emitted when a promotion is ended.\n @param promotionId Id of the promotion being ended\n @param recipient Address of the recipient that will receive the remaining rewards\n @param amount Amount of tokens transferred to the recipient\n @param epochNumber Epoch number at which the promotion ended"
                  },
                  "id": 14128,
                  "name": "PromotionEnded",
                  "nameLocation": "2568:14:56",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14127,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14120,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "promotionId",
                        "nameLocation": "2608:11:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14128,
                        "src": "2592:27:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14119,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2592:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14122,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "2645:9:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14128,
                        "src": "2629:25:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14121,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2629:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14124,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2672:6:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14128,
                        "src": "2664:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14123,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2664:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14126,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "epochNumber",
                        "nameLocation": "2694:11:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14128,
                        "src": "2688:17:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 14125,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2688:5:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2582:129:56"
                  },
                  "src": "2562:150:56"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14129,
                    "nodeType": "StructuredDocumentation",
                    "src": "2718:283:56",
                    "text": " @notice Emitted when a promotion is destroyed.\n @param promotionId Id of the promotion being destroyed\n @param recipient Address of the recipient that will receive the unclaimed rewards\n @param amount Amount of tokens transferred to the recipient"
                  },
                  "id": 14137,
                  "name": "PromotionDestroyed",
                  "nameLocation": "3012:18:56",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14136,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14131,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "promotionId",
                        "nameLocation": "3056:11:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14137,
                        "src": "3040:27:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14130,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3040:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14133,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "3093:9:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14137,
                        "src": "3077:25:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14132,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3077:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14135,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3120:6:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14137,
                        "src": "3112:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14134,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3112:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3030:102:56"
                  },
                  "src": "3006:127:56"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14138,
                    "nodeType": "StructuredDocumentation",
                    "src": "3139:206:56",
                    "text": " @notice Emitted when a promotion is extended.\n @param promotionId Id of the promotion being extended\n @param numberOfEpochs Number of epochs the promotion has been extended by"
                  },
                  "id": 14144,
                  "name": "PromotionExtended",
                  "nameLocation": "3356:17:56",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14143,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14140,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "promotionId",
                        "nameLocation": "3390:11:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14144,
                        "src": "3374:27:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14139,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3374:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14142,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "numberOfEpochs",
                        "nameLocation": "3411:14:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14144,
                        "src": "3403:22:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14141,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3403:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3373:53:56"
                  },
                  "src": "3350:77:56"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14145,
                    "nodeType": "StructuredDocumentation",
                    "src": "3433:353:56",
                    "text": " @notice Emitted when rewards have been claimed.\n @param promotionId Id of the promotion for which epoch rewards were claimed\n @param epochIds Ids of the epochs being claimed\n @param user Address of the user for which the rewards were claimed\n @param amount Amount of tokens transferred to the recipient address"
                  },
                  "id": 14156,
                  "name": "RewardsClaimed",
                  "nameLocation": "3797:14:56",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14155,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14147,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "promotionId",
                        "nameLocation": "3837:11:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14156,
                        "src": "3821:27:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14146,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3821:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14150,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "epochIds",
                        "nameLocation": "3866:8:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14156,
                        "src": "3858:16:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint8_$dyn_memory_ptr",
                          "typeString": "uint8[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 14148,
                            "name": "uint8",
                            "nodeType": "ElementaryTypeName",
                            "src": "3858:5:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 14149,
                          "nodeType": "ArrayTypeName",
                          "src": "3858:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint8_$dyn_storage_ptr",
                            "typeString": "uint8[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14152,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3900:4:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14156,
                        "src": "3884:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14151,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3884:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14154,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3922:6:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14156,
                        "src": "3914:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14153,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3914:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3811:123:56"
                  },
                  "src": "3791:144:56"
                },
                {
                  "body": {
                    "id": 14171,
                    "nodeType": "Block",
                    "src": "4168:66:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14164,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14160,
                              "src": "4193:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 14163,
                            "name": "_requireTicket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14853,
                            "src": "4178:14:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_contract$_ITicket_$9297_$returns$__$",
                              "typeString": "function (contract ITicket) view"
                            }
                          },
                          "id": 14165,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4178:23:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14166,
                        "nodeType": "ExpressionStatement",
                        "src": "4178:23:56"
                      },
                      {
                        "expression": {
                          "id": 14169,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14167,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14092,
                            "src": "4211:6:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14168,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14160,
                            "src": "4220:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$9297",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "4211:16:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 14170,
                        "nodeType": "ExpressionStatement",
                        "src": "4211:16:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14157,
                    "nodeType": "StructuredDocumentation",
                    "src": "3990:144:56",
                    "text": " @notice Constructor of the contract.\n @param _ticket Prize Pool ticket address for which the promotions will be created"
                  },
                  "id": 14172,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14161,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14160,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "4159:7:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14172,
                        "src": "4151:15:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14159,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14158,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "4151:7:56"
                          },
                          "referencedDeclaration": 9297,
                          "src": "4151:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4150:17:56"
                  },
                  "returnParameters": {
                    "id": 14162,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4168:0:56"
                  },
                  "scope": 15183,
                  "src": "4139:95:56",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    15410
                  ],
                  "body": {
                    "id": 14291,
                    "nodeType": "Block",
                    "src": "4546:1134:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14193,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14191,
                                "name": "_tokensPerEpoch",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14180,
                                "src": "4564:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 14192,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4582:1:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4564:19:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f746f6b656e732d6e6f742d7a65726f",
                              "id": 14194,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4585:29:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c6f7ac1dcdce3bc28b85466caf824b1387f611789721f883874bf669506444f3",
                                "typeString": "literal_string \"TwabRewards/tokens-not-zero\""
                              },
                              "value": "TwabRewards/tokens-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c6f7ac1dcdce3bc28b85466caf824b1387f611789721f883874bf669506444f3",
                                "typeString": "literal_string \"TwabRewards/tokens-not-zero\""
                              }
                            ],
                            "id": 14190,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4556:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14195,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4556:59:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14196,
                        "nodeType": "ExpressionStatement",
                        "src": "4556:59:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint48",
                                "typeString": "uint48"
                              },
                              "id": 14200,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14198,
                                "name": "_epochDuration",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14182,
                                "src": "4633:14:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint48",
                                  "typeString": "uint48"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 14199,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4650:1:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4633:18:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f6475726174696f6e2d6e6f742d7a65726f",
                              "id": 14201,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4653:31:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_cdb930037ba7e66733e60cda749fe49ed74d0ed31187b87bc850d525a4f8eb22",
                                "typeString": "literal_string \"TwabRewards/duration-not-zero\""
                              },
                              "value": "TwabRewards/duration-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_cdb930037ba7e66733e60cda749fe49ed74d0ed31187b87bc850d525a4f8eb22",
                                "typeString": "literal_string \"TwabRewards/duration-not-zero\""
                              }
                            ],
                            "id": 14197,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4625:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14202,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4625:60:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14203,
                        "nodeType": "ExpressionStatement",
                        "src": "4625:60:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14205,
                              "name": "_numberOfEpochs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14184,
                              "src": "4718:15:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 14204,
                            "name": "_requireNumberOfEpochs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14867,
                            "src": "4695:22:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$returns$__$",
                              "typeString": "function (uint8) pure"
                            }
                          },
                          "id": 14206,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4695:39:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14207,
                        "nodeType": "ExpressionStatement",
                        "src": "4695:39:56"
                      },
                      {
                        "assignments": [
                          14209
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14209,
                            "mutability": "mutable",
                            "name": "_nextPromotionId",
                            "nameLocation": "4753:16:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14291,
                            "src": "4745:24:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14208,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4745:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14213,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14212,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14210,
                            "name": "_latestPromotionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14105,
                            "src": "4772:18:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 14211,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4793:1:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "4772:22:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4745:49:56"
                      },
                      {
                        "expression": {
                          "id": 14216,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14214,
                            "name": "_latestPromotionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14105,
                            "src": "4804:18:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14215,
                            "name": "_nextPromotionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14209,
                            "src": "4825:16:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4804:37:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14217,
                        "nodeType": "ExpressionStatement",
                        "src": "4804:37:56"
                      },
                      {
                        "assignments": [
                          14219
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14219,
                            "mutability": "mutable",
                            "name": "_amount",
                            "nameLocation": "4860:7:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14291,
                            "src": "4852:15:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14218,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4852:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14223,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14222,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14220,
                            "name": "_tokensPerEpoch",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14180,
                            "src": "4870:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "*",
                          "rightExpression": {
                            "id": 14221,
                            "name": "_numberOfEpochs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14184,
                            "src": "4888:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "4870:33:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4852:51:56"
                      },
                      {
                        "expression": {
                          "id": 14242,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 14224,
                              "name": "_promotions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14102,
                              "src": "4914:11:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                                "typeString": "mapping(uint256 => struct ITwabRewards.Promotion storage ref)"
                              }
                            },
                            "id": 14226,
                            "indexExpression": {
                              "id": 14225,
                              "name": "_nextPromotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14209,
                              "src": "4926:16:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "4914:29:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                              "typeString": "struct ITwabRewards.Promotion storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 14228,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "4979:3:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 14229,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "4979:10:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 14230,
                                "name": "_startTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14178,
                                "src": "5019:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              {
                                "id": 14231,
                                "name": "_numberOfEpochs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14184,
                                "src": "5064:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              {
                                "id": 14232,
                                "name": "_epochDuration",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14182,
                                "src": "5108:14:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint48",
                                  "typeString": "uint48"
                                }
                              },
                              {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 14235,
                                      "name": "block",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -4,
                                      "src": "5154:5:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_block",
                                        "typeString": "block"
                                      }
                                    },
                                    "id": 14236,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "timestamp",
                                    "nodeType": "MemberAccess",
                                    "src": "5154:15:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 14234,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5147:6:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint48_$",
                                    "typeString": "type(uint48)"
                                  },
                                  "typeName": {
                                    "id": 14233,
                                    "name": "uint48",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5147:6:56",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14237,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5147:23:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint48",
                                  "typeString": "uint48"
                                }
                              },
                              {
                                "id": 14238,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14176,
                                "src": "5191:6:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_IERC20_$663",
                                  "typeString": "contract IERC20"
                                }
                              },
                              {
                                "id": 14239,
                                "name": "_tokensPerEpoch",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14180,
                                "src": "5227:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              {
                                "id": 14240,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14219,
                                "src": "5274:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                },
                                {
                                  "typeIdentifier": "t_uint48",
                                  "typeString": "uint48"
                                },
                                {
                                  "typeIdentifier": "t_uint48",
                                  "typeString": "uint48"
                                },
                                {
                                  "typeIdentifier": "t_contract$_IERC20_$663",
                                  "typeString": "contract IERC20"
                                },
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 14227,
                              "name": "Promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15393,
                              "src": "4946:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_struct$_Promotion_$15393_storage_ptr_$",
                                "typeString": "type(struct ITwabRewards.Promotion storage pointer)"
                              }
                            },
                            "id": 14241,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "structConstructorCall",
                            "lValueRequested": false,
                            "names": [
                              "creator",
                              "startTimestamp",
                              "numberOfEpochs",
                              "epochDuration",
                              "createdAt",
                              "token",
                              "tokensPerEpoch",
                              "rewardsUnclaimed"
                            ],
                            "nodeType": "FunctionCall",
                            "src": "4946:346:56",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion memory"
                            }
                          },
                          "src": "4914:378:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                            "typeString": "struct ITwabRewards.Promotion storage ref"
                          }
                        },
                        "id": 14243,
                        "nodeType": "ExpressionStatement",
                        "src": "4914:378:56"
                      },
                      {
                        "assignments": [
                          14245
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14245,
                            "mutability": "mutable",
                            "name": "_beforeBalance",
                            "nameLocation": "5311:14:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14291,
                            "src": "5303:22:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14244,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5303:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14253,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14250,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "5353:4:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                ],
                                "id": 14249,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5345:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14248,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5345:7:56",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14251,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5345:13:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 14246,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14176,
                              "src": "5328:6:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14247,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "5328:16:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 14252,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5328:31:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5303:56:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14257,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5394:3:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 14258,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5394:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 14261,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "5414:4:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                ],
                                "id": 14260,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5406:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14259,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5406:7:56",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14262,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5406:13:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14263,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14219,
                              "src": "5421:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 14254,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14176,
                              "src": "5370:6:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14256,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 950,
                            "src": "5370:23:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 14264,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5370:59:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14265,
                        "nodeType": "ExpressionStatement",
                        "src": "5370:59:56"
                      },
                      {
                        "assignments": [
                          14267
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14267,
                            "mutability": "mutable",
                            "name": "_afterBalance",
                            "nameLocation": "5448:13:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14291,
                            "src": "5440:21:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14266,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5440:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14275,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14272,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "5489:4:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                ],
                                "id": 14271,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5481:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14270,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5481:7:56",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14273,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5481:13:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 14268,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14176,
                              "src": "5464:6:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14269,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 602,
                            "src": "5464:16:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 14274,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5464:31:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5440:55:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14281,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14279,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14277,
                                  "name": "_beforeBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14245,
                                  "src": "5514:14:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 14278,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14219,
                                  "src": "5531:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5514:24:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 14280,
                                "name": "_afterBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14267,
                                "src": "5542:13:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5514:41:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f70726f6d6f2d616d6f756e742d64696666",
                              "id": 14282,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5557:31:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_0a3635a26aeb32c86a405883952163514b60bff7b61a71a1ecaecf37ec6316e9",
                                "typeString": "literal_string \"TwabRewards/promo-amount-diff\""
                              },
                              "value": "TwabRewards/promo-amount-diff"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_0a3635a26aeb32c86a405883952163514b60bff7b61a71a1ecaecf37ec6316e9",
                                "typeString": "literal_string \"TwabRewards/promo-amount-diff\""
                              }
                            ],
                            "id": 14276,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5506:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14283,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5506:83:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14284,
                        "nodeType": "ExpressionStatement",
                        "src": "5506:83:56"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14286,
                              "name": "_nextPromotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14209,
                              "src": "5622:16:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14285,
                            "name": "PromotionCreated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14117,
                            "src": "5605:16:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5605:34:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14288,
                        "nodeType": "EmitStatement",
                        "src": "5600:39:56"
                      },
                      {
                        "expression": {
                          "id": 14289,
                          "name": "_nextPromotionId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14209,
                          "src": "5657:16:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14189,
                        "id": 14290,
                        "nodeType": "Return",
                        "src": "5650:23:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14173,
                    "nodeType": "StructuredDocumentation",
                    "src": "4296:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "66cfae5e",
                  "id": 14292,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "createPromotion",
                  "nameLocation": "4338:15:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14186,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4519:8:56"
                  },
                  "parameters": {
                    "id": 14185,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14176,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "4370:6:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14292,
                        "src": "4363:13:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 14175,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14174,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "4363:6:56"
                          },
                          "referencedDeclaration": 663,
                          "src": "4363:6:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14178,
                        "mutability": "mutable",
                        "name": "_startTimestamp",
                        "nameLocation": "4393:15:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14292,
                        "src": "4386:22:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 14177,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4386:6:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14180,
                        "mutability": "mutable",
                        "name": "_tokensPerEpoch",
                        "nameLocation": "4426:15:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14292,
                        "src": "4418:23:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14179,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4418:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14182,
                        "mutability": "mutable",
                        "name": "_epochDuration",
                        "nameLocation": "4458:14:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14292,
                        "src": "4451:21:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint48",
                          "typeString": "uint48"
                        },
                        "typeName": {
                          "id": 14181,
                          "name": "uint48",
                          "nodeType": "ElementaryTypeName",
                          "src": "4451:6:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint48",
                            "typeString": "uint48"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14184,
                        "mutability": "mutable",
                        "name": "_numberOfEpochs",
                        "nameLocation": "4488:15:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14292,
                        "src": "4482:21:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 14183,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "4482:5:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4353:156:56"
                  },
                  "returnParameters": {
                    "id": 14189,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14188,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14292,
                        "src": "4537:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14187,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4537:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4536:9:56"
                  },
                  "scope": 15183,
                  "src": "4329:1351:56",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15420
                  ],
                  "body": {
                    "id": 14368,
                    "nodeType": "Block",
                    "src": "5809:609:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14309,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14304,
                                "name": "_to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14297,
                                "src": "5827:3:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14307,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5842:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14306,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5834:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14305,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5834:7:56",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14308,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5834:10:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "5827:17:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f70617965652d6e6f742d7a65726f2d61646472",
                              "id": 14310,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5846:33:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_120b18e984190ca107f4335c65e4c9bb979c938e4381860f47714638ec2f4b44",
                                "typeString": "literal_string \"TwabRewards/payee-not-zero-addr\""
                              },
                              "value": "TwabRewards/payee-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_120b18e984190ca107f4335c65e4c9bb979c938e4381860f47714638ec2f4b44",
                                "typeString": "literal_string \"TwabRewards/payee-not-zero-addr\""
                              }
                            ],
                            "id": 14303,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5819:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14311,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5819:61:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14312,
                        "nodeType": "ExpressionStatement",
                        "src": "5819:61:56"
                      },
                      {
                        "assignments": [
                          14315
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14315,
                            "mutability": "mutable",
                            "name": "_promotion",
                            "nameLocation": "5908:10:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14368,
                            "src": "5891:27:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion"
                            },
                            "typeName": {
                              "id": 14314,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14313,
                                "name": "Promotion",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15393,
                                "src": "5891:9:56"
                              },
                              "referencedDeclaration": 15393,
                              "src": "5891:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                                "typeString": "struct ITwabRewards.Promotion"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14319,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14317,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14295,
                              "src": "5935:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14316,
                            "name": "_getPromotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14932,
                            "src": "5921:13:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                              "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                            }
                          },
                          "id": 14318,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5921:27:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                            "typeString": "struct ITwabRewards.Promotion memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5891:57:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14321,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14315,
                              "src": "5983:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14320,
                            "name": "_requirePromotionCreator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14902,
                            "src": "5958:24:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$__$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) view"
                            }
                          },
                          "id": 14322,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5958:36:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14323,
                        "nodeType": "ExpressionStatement",
                        "src": "5958:36:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14325,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14315,
                              "src": "6028:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14324,
                            "name": "_requirePromotionActive",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14885,
                            "src": "6004:23:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$__$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) view"
                            }
                          },
                          "id": 14326,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6004:35:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14327,
                        "nodeType": "ExpressionStatement",
                        "src": "6004:35:56"
                      },
                      {
                        "assignments": [
                          14329
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14329,
                            "mutability": "mutable",
                            "name": "_epochNumber",
                            "nameLocation": "6056:12:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14368,
                            "src": "6050:18:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 14328,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "6050:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14336,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14333,
                                  "name": "_promotion",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14315,
                                  "src": "6096:10:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                    "typeString": "struct ITwabRewards.Promotion memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                    "typeString": "struct ITwabRewards.Promotion memory"
                                  }
                                ],
                                "id": 14332,
                                "name": "_getCurrentEpochId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14988,
                                "src": "6077:18:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                                  "typeString": "function (struct ITwabRewards.Promotion memory) view returns (uint256)"
                                }
                              },
                              "id": 14334,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6077:30:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14331,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6071:5:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 14330,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "6071:5:56",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 14335,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6071:37:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6050:58:56"
                      },
                      {
                        "expression": {
                          "id": 14342,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "baseExpression": {
                                "id": 14337,
                                "name": "_promotions",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14102,
                                "src": "6118:11:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                                  "typeString": "mapping(uint256 => struct ITwabRewards.Promotion storage ref)"
                                }
                              },
                              "id": 14339,
                              "indexExpression": {
                                "id": 14338,
                                "name": "_promotionId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14295,
                                "src": "6130:12:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "6118:25:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                                "typeString": "struct ITwabRewards.Promotion storage ref"
                              }
                            },
                            "id": 14340,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "numberOfEpochs",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15381,
                            "src": "6118:40:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14341,
                            "name": "_epochNumber",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14329,
                            "src": "6161:12:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "6118:55:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 14343,
                        "nodeType": "ExpressionStatement",
                        "src": "6118:55:56"
                      },
                      {
                        "assignments": [
                          14345
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14345,
                            "mutability": "mutable",
                            "name": "_remainingRewards",
                            "nameLocation": "6192:17:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14368,
                            "src": "6184:25:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14344,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6184:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14349,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14347,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14315,
                              "src": "6233:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14346,
                            "name": "_getRemainingRewards",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15138,
                            "src": "6212:20:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) view returns (uint256)"
                            }
                          },
                          "id": 14348,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6212:32:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6184:60:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14355,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14297,
                              "src": "6284:3:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14356,
                              "name": "_remainingRewards",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14345,
                              "src": "6289:17:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 14350,
                                "name": "_promotion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14315,
                                "src": "6254:10:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                  "typeString": "struct ITwabRewards.Promotion memory"
                                }
                              },
                              "id": 14353,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "token",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15388,
                              "src": "6254:16:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14354,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "6254:29:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 14357,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6254:53:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14358,
                        "nodeType": "ExpressionStatement",
                        "src": "6254:53:56"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14360,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14295,
                              "src": "6338:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14361,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14297,
                              "src": "6352:3:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14362,
                              "name": "_remainingRewards",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14345,
                              "src": "6357:17:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14363,
                              "name": "_epochNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14329,
                              "src": "6376:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 14359,
                            "name": "PromotionEnded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14128,
                            "src": "6323:14:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$_t_uint8_$returns$__$",
                              "typeString": "function (uint256,address,uint256,uint8)"
                            }
                          },
                          "id": 14364,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6323:66:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14365,
                        "nodeType": "EmitStatement",
                        "src": "6318:71:56"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14366,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "6407:4:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14302,
                        "id": 14367,
                        "nodeType": "Return",
                        "src": "6400:11:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14293,
                    "nodeType": "StructuredDocumentation",
                    "src": "5686:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "120468a0",
                  "id": 14369,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "endPromotion",
                  "nameLocation": "5728:12:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14299,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5785:8:56"
                  },
                  "parameters": {
                    "id": 14298,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14295,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "5749:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14369,
                        "src": "5741:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14294,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5741:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14297,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5771:3:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14369,
                        "src": "5763:11:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14296,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5763:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5740:35:56"
                  },
                  "returnParameters": {
                    "id": 14302,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14301,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14369,
                        "src": "5803:4:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14300,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5803:4:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5802:6:56"
                  },
                  "scope": 15183,
                  "src": "5719:699:56",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15430
                  ],
                  "body": {
                    "id": 14459,
                    "nodeType": "Block",
                    "src": "6551:905:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14386,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14381,
                                "name": "_to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14374,
                                "src": "6569:3:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14384,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "6584:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14383,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "6576:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14382,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "6576:7:56",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14385,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "6576:10:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "6569:17:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f70617965652d6e6f742d7a65726f2d61646472",
                              "id": 14387,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6588:33:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_120b18e984190ca107f4335c65e4c9bb979c938e4381860f47714638ec2f4b44",
                                "typeString": "literal_string \"TwabRewards/payee-not-zero-addr\""
                              },
                              "value": "TwabRewards/payee-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_120b18e984190ca107f4335c65e4c9bb979c938e4381860f47714638ec2f4b44",
                                "typeString": "literal_string \"TwabRewards/payee-not-zero-addr\""
                              }
                            ],
                            "id": 14380,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6561:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14388,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6561:61:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14389,
                        "nodeType": "ExpressionStatement",
                        "src": "6561:61:56"
                      },
                      {
                        "assignments": [
                          14392
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14392,
                            "mutability": "mutable",
                            "name": "_promotion",
                            "nameLocation": "6650:10:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14459,
                            "src": "6633:27:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion"
                            },
                            "typeName": {
                              "id": 14391,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14390,
                                "name": "Promotion",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15393,
                                "src": "6633:9:56"
                              },
                              "referencedDeclaration": 15393,
                              "src": "6633:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                                "typeString": "struct ITwabRewards.Promotion"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14396,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14394,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14372,
                              "src": "6677:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14393,
                            "name": "_getPromotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14932,
                            "src": "6663:13:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                              "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                            }
                          },
                          "id": 14395,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6663:27:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                            "typeString": "struct ITwabRewards.Promotion memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6633:57:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14398,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14392,
                              "src": "6725:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14397,
                            "name": "_requirePromotionCreator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14902,
                            "src": "6700:24:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$__$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) view"
                            }
                          },
                          "id": 14399,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6700:36:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14400,
                        "nodeType": "ExpressionStatement",
                        "src": "6700:36:56"
                      },
                      {
                        "assignments": [
                          14402
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14402,
                            "mutability": "mutable",
                            "name": "_promotionEndTimestamp",
                            "nameLocation": "6755:22:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14459,
                            "src": "6747:30:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14401,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6747:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14406,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14404,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14392,
                              "src": "6806:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14403,
                            "name": "_getPromotionEndTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14953,
                            "src": "6780:25:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) pure returns (uint256)"
                            }
                          },
                          "id": 14405,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6780:37:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6747:70:56"
                      },
                      {
                        "assignments": [
                          14408
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14408,
                            "mutability": "mutable",
                            "name": "_promotionCreatedAt",
                            "nameLocation": "6835:19:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14459,
                            "src": "6827:27:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14407,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6827:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14411,
                        "initialValue": {
                          "expression": {
                            "id": 14409,
                            "name": "_promotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14392,
                            "src": "6857:10:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion memory"
                            }
                          },
                          "id": 14410,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "createdAt",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15385,
                          "src": "6857:20:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint48",
                            "typeString": "uint48"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6827:50:56"
                      },
                      {
                        "assignments": [
                          14413
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14413,
                            "mutability": "mutable",
                            "name": "_gracePeriodEndTimestamp",
                            "nameLocation": "6896:24:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14459,
                            "src": "6888:32:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14412,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6888:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14423,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14422,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "condition": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 14416,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 14414,
                                    "name": "_promotionEndTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14402,
                                    "src": "6937:22:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "<",
                                  "rightExpression": {
                                    "id": 14415,
                                    "name": "_promotionCreatedAt",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14408,
                                    "src": "6962:19:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "6937:44:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "falseExpression": {
                                  "id": 14418,
                                  "name": "_promotionEndTimestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14402,
                                  "src": "7038:22:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 14419,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "Conditional",
                                "src": "6937:123:56",
                                "trueExpression": {
                                  "id": 14417,
                                  "name": "_promotionCreatedAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14408,
                                  "src": "7000:19:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "id": 14420,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "6923:147:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 14421,
                            "name": "GRACE_PERIOD",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14096,
                            "src": "7073:12:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "6923:162:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6888:197:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14428,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 14425,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "7104:5:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 14426,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "7104:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 14427,
                                "name": "_gracePeriodEndTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14413,
                                "src": "7123:24:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7104:43:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f67726163652d706572696f642d616374697665",
                              "id": 14429,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7149:33:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3f8a3e54a59de187161c727d7b8d00a3581a0e45c6e8cf1e9459044f5b676893",
                                "typeString": "literal_string \"TwabRewards/grace-period-active\""
                              },
                              "value": "TwabRewards/grace-period-active"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3f8a3e54a59de187161c727d7b8d00a3581a0e45c6e8cf1e9459044f5b676893",
                                "typeString": "literal_string \"TwabRewards/grace-period-active\""
                              }
                            ],
                            "id": 14424,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7096:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14430,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7096:87:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14431,
                        "nodeType": "ExpressionStatement",
                        "src": "7096:87:56"
                      },
                      {
                        "assignments": [
                          14433
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14433,
                            "mutability": "mutable",
                            "name": "_rewardsUnclaimed",
                            "nameLocation": "7202:17:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14459,
                            "src": "7194:25:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14432,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7194:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14436,
                        "initialValue": {
                          "expression": {
                            "id": 14434,
                            "name": "_promotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14392,
                            "src": "7222:10:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion memory"
                            }
                          },
                          "id": 14435,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "rewardsUnclaimed",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15392,
                          "src": "7222:27:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7194:55:56"
                      },
                      {
                        "expression": {
                          "id": 14440,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "7259:32:56",
                          "subExpression": {
                            "baseExpression": {
                              "id": 14437,
                              "name": "_promotions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14102,
                              "src": "7266:11:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                                "typeString": "mapping(uint256 => struct ITwabRewards.Promotion storage ref)"
                              }
                            },
                            "id": 14439,
                            "indexExpression": {
                              "id": 14438,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14372,
                              "src": "7278:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7266:25:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                              "typeString": "struct ITwabRewards.Promotion storage ref"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14441,
                        "nodeType": "ExpressionStatement",
                        "src": "7259:32:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14447,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14374,
                              "src": "7332:3:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14448,
                              "name": "_rewardsUnclaimed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14433,
                              "src": "7337:17:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 14442,
                                "name": "_promotion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14392,
                                "src": "7302:10:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                  "typeString": "struct ITwabRewards.Promotion memory"
                                }
                              },
                              "id": 14445,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "token",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15388,
                              "src": "7302:16:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14446,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "7302:29:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 14449,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7302:53:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14450,
                        "nodeType": "ExpressionStatement",
                        "src": "7302:53:56"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14452,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14372,
                              "src": "7390:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14453,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14374,
                              "src": "7404:3:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14454,
                              "name": "_rewardsUnclaimed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14433,
                              "src": "7409:17:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14451,
                            "name": "PromotionDestroyed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14137,
                            "src": "7371:18:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (uint256,address,uint256)"
                            }
                          },
                          "id": 14455,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7371:56:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14456,
                        "nodeType": "EmitStatement",
                        "src": "7366:61:56"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14457,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "7445:4:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14379,
                        "id": 14458,
                        "nodeType": "Return",
                        "src": "7438:11:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14370,
                    "nodeType": "StructuredDocumentation",
                    "src": "6424:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "20555db1",
                  "id": 14460,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "destroyPromotion",
                  "nameLocation": "6466:16:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14376,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6527:8:56"
                  },
                  "parameters": {
                    "id": 14375,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14372,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "6491:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14460,
                        "src": "6483:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14371,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6483:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14374,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6513:3:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14460,
                        "src": "6505:11:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14373,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6505:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6482:35:56"
                  },
                  "returnParameters": {
                    "id": 14379,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14378,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14460,
                        "src": "6545:4:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14377,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6545:4:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6544:6:56"
                  },
                  "scope": 15183,
                  "src": "6457:999:56",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15440
                  ],
                  "body": {
                    "id": 14549,
                    "nodeType": "Block",
                    "src": "7626:779:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14472,
                              "name": "_numberOfEpochs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14465,
                              "src": "7659:15:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 14471,
                            "name": "_requireNumberOfEpochs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14867,
                            "src": "7636:22:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$returns$__$",
                              "typeString": "function (uint8) pure"
                            }
                          },
                          "id": 14473,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7636:39:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14474,
                        "nodeType": "ExpressionStatement",
                        "src": "7636:39:56"
                      },
                      {
                        "assignments": [
                          14477
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14477,
                            "mutability": "mutable",
                            "name": "_promotion",
                            "nameLocation": "7703:10:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14549,
                            "src": "7686:27:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion"
                            },
                            "typeName": {
                              "id": 14476,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14475,
                                "name": "Promotion",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15393,
                                "src": "7686:9:56"
                              },
                              "referencedDeclaration": 15393,
                              "src": "7686:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                                "typeString": "struct ITwabRewards.Promotion"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14481,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14479,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14463,
                              "src": "7730:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14478,
                            "name": "_getPromotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14932,
                            "src": "7716:13:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                              "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                            }
                          },
                          "id": 14480,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7716:27:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                            "typeString": "struct ITwabRewards.Promotion memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7686:57:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14483,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14477,
                              "src": "7777:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14482,
                            "name": "_requirePromotionActive",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14885,
                            "src": "7753:23:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$__$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) view"
                            }
                          },
                          "id": 14484,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7753:35:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14485,
                        "nodeType": "ExpressionStatement",
                        "src": "7753:35:56"
                      },
                      {
                        "assignments": [
                          14487
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14487,
                            "mutability": "mutable",
                            "name": "_currentNumberOfEpochs",
                            "nameLocation": "7805:22:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14549,
                            "src": "7799:28:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 14486,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "7799:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14490,
                        "initialValue": {
                          "expression": {
                            "id": 14488,
                            "name": "_promotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14477,
                            "src": "7830:10:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion memory"
                            }
                          },
                          "id": 14489,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "numberOfEpochs",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15381,
                          "src": "7830:25:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7799:56:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 14501,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14492,
                                "name": "_numberOfEpochs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14465,
                                "src": "7887:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    },
                                    "id": 14499,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "expression": {
                                        "arguments": [
                                          {
                                            "id": 14495,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "nodeType": "ElementaryTypeNameExpression",
                                            "src": "7912:5:56",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_uint8_$",
                                              "typeString": "type(uint8)"
                                            },
                                            "typeName": {
                                              "id": 14494,
                                              "name": "uint8",
                                              "nodeType": "ElementaryTypeName",
                                              "src": "7912:5:56",
                                              "typeDescriptions": {}
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_type$_t_uint8_$",
                                              "typeString": "type(uint8)"
                                            }
                                          ],
                                          "id": 14493,
                                          "name": "type",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": -27,
                                          "src": "7907:4:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                            "typeString": "function () pure"
                                          }
                                        },
                                        "id": 14496,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "7907:11:56",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_magic_meta_type_t_uint8",
                                          "typeString": "type(uint8)"
                                        }
                                      },
                                      "id": 14497,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "memberName": "max",
                                      "nodeType": "MemberAccess",
                                      "src": "7907:15:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "id": 14498,
                                      "name": "_currentNumberOfEpochs",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14487,
                                      "src": "7925:22:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    },
                                    "src": "7907:40:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  }
                                ],
                                "id": 14500,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "7906:42:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "7887:61:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f65706f6368732d6f7665722d6c696d6974",
                              "id": 14502,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7962:31:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b8a1f4a0a7a3c02a36bcf293aced058b829181e3dbeb981da9917650b8f083c5",
                                "typeString": "literal_string \"TwabRewards/epochs-over-limit\""
                              },
                              "value": "TwabRewards/epochs-over-limit"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b8a1f4a0a7a3c02a36bcf293aced058b829181e3dbeb981da9917650b8f083c5",
                                "typeString": "literal_string \"TwabRewards/epochs-over-limit\""
                              }
                            ],
                            "id": 14491,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7866:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14503,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7866:137:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14504,
                        "nodeType": "ExpressionStatement",
                        "src": "7866:137:56"
                      },
                      {
                        "expression": {
                          "id": 14512,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "baseExpression": {
                                "id": 14505,
                                "name": "_promotions",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14102,
                                "src": "8014:11:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                                  "typeString": "mapping(uint256 => struct ITwabRewards.Promotion storage ref)"
                                }
                              },
                              "id": 14507,
                              "indexExpression": {
                                "id": 14506,
                                "name": "_promotionId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14463,
                                "src": "8026:12:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "8014:25:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                                "typeString": "struct ITwabRewards.Promotion storage ref"
                              }
                            },
                            "id": 14508,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "numberOfEpochs",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15381,
                            "src": "8014:40:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 14511,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 14509,
                              "name": "_currentNumberOfEpochs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14487,
                              "src": "8057:22:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "id": 14510,
                              "name": "_numberOfEpochs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14465,
                              "src": "8082:15:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "src": "8057:40:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "8014:83:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 14513,
                        "nodeType": "ExpressionStatement",
                        "src": "8014:83:56"
                      },
                      {
                        "assignments": [
                          14515
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14515,
                            "mutability": "mutable",
                            "name": "_amount",
                            "nameLocation": "8116:7:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14549,
                            "src": "8108:15:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14514,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8108:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14520,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14519,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14516,
                            "name": "_numberOfEpochs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14465,
                            "src": "8126:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "*",
                          "rightExpression": {
                            "expression": {
                              "id": 14517,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14477,
                              "src": "8144:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            },
                            "id": 14518,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tokensPerEpoch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15390,
                            "src": "8144:25:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8126:43:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8108:61:56"
                      },
                      {
                        "expression": {
                          "id": 14526,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "baseExpression": {
                                "id": 14521,
                                "name": "_promotions",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14102,
                                "src": "8180:11:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                                  "typeString": "mapping(uint256 => struct ITwabRewards.Promotion storage ref)"
                                }
                              },
                              "id": 14523,
                              "indexExpression": {
                                "id": 14522,
                                "name": "_promotionId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14463,
                                "src": "8192:12:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "8180:25:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                                "typeString": "struct ITwabRewards.Promotion storage ref"
                              }
                            },
                            "id": 14524,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "rewardsUnclaimed",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15392,
                            "src": "8180:42:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 14525,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14515,
                            "src": "8226:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8180:53:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14527,
                        "nodeType": "ExpressionStatement",
                        "src": "8180:53:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14533,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "8277:3:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 14534,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "8277:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 14537,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "8297:4:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_TwabRewards_$15183",
                                    "typeString": "contract TwabRewards"
                                  }
                                ],
                                "id": 14536,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8289:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14535,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8289:7:56",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14538,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8289:13:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14539,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14515,
                              "src": "8304:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 14528,
                                "name": "_promotion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14477,
                                "src": "8243:10:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                  "typeString": "struct ITwabRewards.Promotion memory"
                                }
                              },
                              "id": 14531,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "token",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15388,
                              "src": "8243:16:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14532,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 950,
                            "src": "8243:33:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 14540,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8243:69:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14541,
                        "nodeType": "ExpressionStatement",
                        "src": "8243:69:56"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14543,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14463,
                              "src": "8346:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14544,
                              "name": "_numberOfEpochs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14465,
                              "src": "8360:15:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 14542,
                            "name": "PromotionExtended",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14144,
                            "src": "8328:17:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$",
                              "typeString": "function (uint256,uint256)"
                            }
                          },
                          "id": 14545,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8328:48:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14546,
                        "nodeType": "EmitStatement",
                        "src": "8323:53:56"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14547,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "8394:4:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14470,
                        "id": 14548,
                        "nodeType": "Return",
                        "src": "8387:11:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14461,
                    "nodeType": "StructuredDocumentation",
                    "src": "7462:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "096fe668",
                  "id": 14550,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "extendPromotion",
                  "nameLocation": "7504:15:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14467,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7590:8:56"
                  },
                  "parameters": {
                    "id": 14466,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14463,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "7528:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14550,
                        "src": "7520:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14462,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7520:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14465,
                        "mutability": "mutable",
                        "name": "_numberOfEpochs",
                        "nameLocation": "7548:15:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14550,
                        "src": "7542:21:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 14464,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "7542:5:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7519:45:56"
                  },
                  "returnParameters": {
                    "id": 14470,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14469,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14550,
                        "src": "7616:4:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14468,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7616:4:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7615:6:56"
                  },
                  "scope": 15183,
                  "src": "7495:910:56",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15453
                  ],
                  "body": {
                    "id": 14662,
                    "nodeType": "Block",
                    "src": "8597:938:56",
                    "statements": [
                      {
                        "assignments": [
                          14566
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14566,
                            "mutability": "mutable",
                            "name": "_promotion",
                            "nameLocation": "8624:10:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14662,
                            "src": "8607:27:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion"
                            },
                            "typeName": {
                              "id": 14565,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14564,
                                "name": "Promotion",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15393,
                                "src": "8607:9:56"
                              },
                              "referencedDeclaration": 15393,
                              "src": "8607:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                                "typeString": "struct ITwabRewards.Promotion"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14570,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14568,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14555,
                              "src": "8651:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14567,
                            "name": "_getPromotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14932,
                            "src": "8637:13:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                              "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                            }
                          },
                          "id": 14569,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8637:27:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                            "typeString": "struct ITwabRewards.Promotion memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8607:57:56"
                      },
                      {
                        "assignments": [
                          14572
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14572,
                            "mutability": "mutable",
                            "name": "_rewardsAmount",
                            "nameLocation": "8683:14:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14662,
                            "src": "8675:22:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14571,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8675:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14573,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8675:22:56"
                      },
                      {
                        "assignments": [
                          14575
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14575,
                            "mutability": "mutable",
                            "name": "_userClaimedEpochs",
                            "nameLocation": "8715:18:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14662,
                            "src": "8707:26:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14574,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8707:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14581,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 14576,
                              "name": "_claimedEpochs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14112,
                              "src": "8736:14:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(uint256 => mapping(address => uint256))"
                              }
                            },
                            "id": 14578,
                            "indexExpression": {
                              "id": 14577,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14555,
                              "src": "8751:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "8736:28:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 14580,
                          "indexExpression": {
                            "id": 14579,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14553,
                            "src": "8765:5:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "8736:35:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8707:64:56"
                      },
                      {
                        "assignments": [
                          14583
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14583,
                            "mutability": "mutable",
                            "name": "_epochIdsLength",
                            "nameLocation": "8789:15:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14662,
                            "src": "8781:23:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14582,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8781:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14586,
                        "initialValue": {
                          "expression": {
                            "id": 14584,
                            "name": "_epochIds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14558,
                            "src": "8807:9:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                              "typeString": "uint8[] calldata"
                            }
                          },
                          "id": 14585,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "8807:16:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8781:42:56"
                      },
                      {
                        "body": {
                          "id": 14627,
                          "nodeType": "Block",
                          "src": "8892:327:56",
                          "statements": [
                            {
                              "assignments": [
                                14598
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 14598,
                                  "mutability": "mutable",
                                  "name": "_epochId",
                                  "nameLocation": "8912:8:56",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 14627,
                                  "src": "8906:14:56",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 14597,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8906:5:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 14602,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 14599,
                                  "name": "_epochIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14558,
                                  "src": "8923:9:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                                    "typeString": "uint8[] calldata"
                                  }
                                },
                                "id": 14601,
                                "indexExpression": {
                                  "id": 14600,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14588,
                                  "src": "8933:5:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "8923:16:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "8906:33:56"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 14608,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "UnaryOperation",
                                    "operator": "!",
                                    "prefix": true,
                                    "src": "8962:46:56",
                                    "subExpression": {
                                      "arguments": [
                                        {
                                          "id": 14605,
                                          "name": "_userClaimedEpochs",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14575,
                                          "src": "8979:18:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        {
                                          "id": 14606,
                                          "name": "_epochId",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14598,
                                          "src": "8999:8:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        ],
                                        "id": 14604,
                                        "name": "_isClaimedEpoch",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15182,
                                        "src": "8963:15:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint8_$returns$_t_bool_$",
                                          "typeString": "function (uint256,uint8) pure returns (bool)"
                                        }
                                      },
                                      "id": 14607,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8963:45:56",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "54776162526577617264732f726577617264732d636c61696d6564",
                                    "id": 14609,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9010:29:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_stringliteral_6ece751e4320e807ee58cf601f121de24374355db23963c7d942b8cd30d4202b",
                                      "typeString": "literal_string \"TwabRewards/rewards-claimed\""
                                    },
                                    "value": "TwabRewards/rewards-claimed"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    {
                                      "typeIdentifier": "t_stringliteral_6ece751e4320e807ee58cf601f121de24374355db23963c7d942b8cd30d4202b",
                                      "typeString": "literal_string \"TwabRewards/rewards-claimed\""
                                    }
                                  ],
                                  "id": 14603,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "8954:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 14610,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8954:86:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14611,
                              "nodeType": "ExpressionStatement",
                              "src": "8954:86:56"
                            },
                            {
                              "expression": {
                                "id": 14618,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 14612,
                                  "name": "_rewardsAmount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14572,
                                  "src": "9055:14:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 14614,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14553,
                                      "src": "9096:5:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "id": 14615,
                                      "name": "_promotion",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14566,
                                      "src": "9103:10:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                        "typeString": "struct ITwabRewards.Promotion memory"
                                      }
                                    },
                                    {
                                      "id": 14616,
                                      "name": "_epochId",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14598,
                                      "src": "9115:8:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                        "typeString": "struct ITwabRewards.Promotion memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 14613,
                                    "name": "_calculateRewardAmount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15107,
                                    "src": "9073:22:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_address_$_t_struct$_Promotion_$15393_memory_ptr_$_t_uint8_$returns$_t_uint256_$",
                                      "typeString": "function (address,struct ITwabRewards.Promotion memory,uint8) view returns (uint256)"
                                    }
                                  },
                                  "id": 14617,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "9073:51:56",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "9055:69:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14619,
                              "nodeType": "ExpressionStatement",
                              "src": "9055:69:56"
                            },
                            {
                              "expression": {
                                "id": 14625,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 14620,
                                  "name": "_userClaimedEpochs",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14575,
                                  "src": "9138:18:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 14622,
                                      "name": "_userClaimedEpochs",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14575,
                                      "src": "9179:18:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "id": 14623,
                                      "name": "_epochId",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14598,
                                      "src": "9199:8:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 14621,
                                    "name": "_updateClaimedEpoch",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15159,
                                    "src": "9159:19:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint8_$returns$_t_uint256_$",
                                      "typeString": "function (uint256,uint8) pure returns (uint256)"
                                    }
                                  },
                                  "id": 14624,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "9159:49:56",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "9138:70:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14626,
                              "nodeType": "ExpressionStatement",
                              "src": "9138:70:56"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14593,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14591,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14588,
                            "src": "8858:5:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 14592,
                            "name": "_epochIdsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14583,
                            "src": "8866:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8858:23:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14628,
                        "initializationExpression": {
                          "assignments": [
                            14588
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 14588,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "8847:5:56",
                              "nodeType": "VariableDeclaration",
                              "scope": 14628,
                              "src": "8839:13:56",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 14587,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8839:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 14590,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 14589,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8855:1:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8839:17:56"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 14595,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8883:7:56",
                            "subExpression": {
                              "id": 14594,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14588,
                              "src": "8883:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 14596,
                          "nodeType": "ExpressionStatement",
                          "src": "8883:7:56"
                        },
                        "nodeType": "ForStatement",
                        "src": "8834:385:56"
                      },
                      {
                        "expression": {
                          "id": 14635,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 14629,
                                "name": "_claimedEpochs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14112,
                                "src": "9229:14:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$",
                                  "typeString": "mapping(uint256 => mapping(address => uint256))"
                                }
                              },
                              "id": 14632,
                              "indexExpression": {
                                "id": 14630,
                                "name": "_promotionId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14555,
                                "src": "9244:12:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "9229:28:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 14633,
                            "indexExpression": {
                              "id": 14631,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14553,
                              "src": "9258:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "9229:35:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14634,
                            "name": "_userClaimedEpochs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14575,
                            "src": "9267:18:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9229:56:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14636,
                        "nodeType": "ExpressionStatement",
                        "src": "9229:56:56"
                      },
                      {
                        "expression": {
                          "id": 14642,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "baseExpression": {
                                "id": 14637,
                                "name": "_promotions",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14102,
                                "src": "9295:11:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                                  "typeString": "mapping(uint256 => struct ITwabRewards.Promotion storage ref)"
                                }
                              },
                              "id": 14639,
                              "indexExpression": {
                                "id": 14638,
                                "name": "_promotionId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14555,
                                "src": "9307:12:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "9295:25:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                                "typeString": "struct ITwabRewards.Promotion storage ref"
                              }
                            },
                            "id": 14640,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "rewardsUnclaimed",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15392,
                            "src": "9295:42:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "id": 14641,
                            "name": "_rewardsAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14572,
                            "src": "9341:14:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9295:60:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14643,
                        "nodeType": "ExpressionStatement",
                        "src": "9295:60:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14649,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14553,
                              "src": "9396:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14650,
                              "name": "_rewardsAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14572,
                              "src": "9403:14:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 14644,
                                "name": "_promotion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14566,
                                "src": "9366:10:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                  "typeString": "struct ITwabRewards.Promotion memory"
                                }
                              },
                              "id": 14647,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "token",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 15388,
                              "src": "9366:16:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$663",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14648,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 924,
                            "src": "9366:29:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$663_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$663_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 14651,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9366:52:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14652,
                        "nodeType": "ExpressionStatement",
                        "src": "9366:52:56"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14654,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14555,
                              "src": "9449:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 14655,
                              "name": "_epochIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14558,
                              "src": "9463:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                                "typeString": "uint8[] calldata"
                              }
                            },
                            {
                              "id": 14656,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14553,
                              "src": "9474:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14657,
                              "name": "_rewardsAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14572,
                              "src": "9481:14:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                                "typeString": "uint8[] calldata"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14653,
                            "name": "RewardsClaimed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14156,
                            "src": "9434:14:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_array$_t_uint8_$dyn_memory_ptr_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (uint256,uint8[] memory,address,uint256)"
                            }
                          },
                          "id": 14658,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9434:62:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14659,
                        "nodeType": "EmitStatement",
                        "src": "9429:67:56"
                      },
                      {
                        "expression": {
                          "id": 14660,
                          "name": "_rewardsAmount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14572,
                          "src": "9514:14:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14563,
                        "id": 14661,
                        "nodeType": "Return",
                        "src": "9507:21:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14551,
                    "nodeType": "StructuredDocumentation",
                    "src": "8411:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "b2456c3a",
                  "id": 14663,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claimRewards",
                  "nameLocation": "8453:12:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14560,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8570:8:56"
                  },
                  "parameters": {
                    "id": 14559,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14553,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "8483:5:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "8475:13:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14552,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8475:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14555,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "8506:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "8498:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14554,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8498:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14558,
                        "mutability": "mutable",
                        "name": "_epochIds",
                        "nameLocation": "8545:9:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "8528:26:56",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                          "typeString": "uint8[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 14556,
                            "name": "uint8",
                            "nodeType": "ElementaryTypeName",
                            "src": "8528:5:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 14557,
                          "nodeType": "ArrayTypeName",
                          "src": "8528:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint8_$dyn_storage_ptr",
                            "typeString": "uint8[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8465:95:56"
                  },
                  "returnParameters": {
                    "id": 14563,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14562,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14663,
                        "src": "8588:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14561,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8588:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8587:9:56"
                  },
                  "scope": 15183,
                  "src": "8444:1091:56",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15462
                  ],
                  "body": {
                    "id": 14677,
                    "nodeType": "Block",
                    "src": "9668:51:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14674,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14666,
                              "src": "9699:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14673,
                            "name": "_getPromotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14932,
                            "src": "9685:13:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                              "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                            }
                          },
                          "id": 14675,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9685:27:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                            "typeString": "struct ITwabRewards.Promotion memory"
                          }
                        },
                        "functionReturnParameters": 14672,
                        "id": 14676,
                        "nodeType": "Return",
                        "src": "9678:34:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14664,
                    "nodeType": "StructuredDocumentation",
                    "src": "9541:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "14fdecca",
                  "id": 14678,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPromotion",
                  "nameLocation": "9583:12:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14668,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9632:8:56"
                  },
                  "parameters": {
                    "id": 14667,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14666,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "9604:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14678,
                        "src": "9596:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14665,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9596:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9595:22:56"
                  },
                  "returnParameters": {
                    "id": 14672,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14671,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14678,
                        "src": "9650:16:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 14670,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14669,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "9650:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "9650:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9649:18:56"
                  },
                  "scope": 15183,
                  "src": "9574:145:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15470
                  ],
                  "body": {
                    "id": 14693,
                    "nodeType": "Block",
                    "src": "9848:71:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14689,
                                  "name": "_promotionId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14681,
                                  "src": "9898:12:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 14688,
                                "name": "_getPromotion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14932,
                                "src": "9884:13:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                                  "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                                }
                              },
                              "id": 14690,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9884:27:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14687,
                            "name": "_getCurrentEpochId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14988,
                            "src": "9865:18:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) view returns (uint256)"
                            }
                          },
                          "id": 14691,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9865:47:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14686,
                        "id": 14692,
                        "nodeType": "Return",
                        "src": "9858:54:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14679,
                    "nodeType": "StructuredDocumentation",
                    "src": "9725:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "f824d0fb",
                  "id": 14694,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getCurrentEpochId",
                  "nameLocation": "9767:17:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14683,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9821:8:56"
                  },
                  "parameters": {
                    "id": 14682,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14681,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "9793:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14694,
                        "src": "9785:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14680,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9785:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9784:22:56"
                  },
                  "returnParameters": {
                    "id": 14686,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14685,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14694,
                        "src": "9839:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14684,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9839:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9838:9:56"
                  },
                  "scope": 15183,
                  "src": "9758:161:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15478
                  ],
                  "body": {
                    "id": 14709,
                    "nodeType": "Block",
                    "src": "10050:73:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14705,
                                  "name": "_promotionId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14697,
                                  "src": "10102:12:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 14704,
                                "name": "_getPromotion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14932,
                                "src": "10088:13:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                                  "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                                }
                              },
                              "id": 14706,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10088:27:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            ],
                            "id": 14703,
                            "name": "_getRemainingRewards",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15138,
                            "src": "10067:20:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                              "typeString": "function (struct ITwabRewards.Promotion memory) view returns (uint256)"
                            }
                          },
                          "id": 14707,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10067:49:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14702,
                        "id": 14708,
                        "nodeType": "Return",
                        "src": "10060:56:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14695,
                    "nodeType": "StructuredDocumentation",
                    "src": "9925:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "a4958845",
                  "id": 14710,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRemainingRewards",
                  "nameLocation": "9967:19:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14699,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10023:8:56"
                  },
                  "parameters": {
                    "id": 14698,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14697,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "9995:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14710,
                        "src": "9987:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14696,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9987:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9986:22:56"
                  },
                  "returnParameters": {
                    "id": 14702,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14701,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14710,
                        "src": "10041:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14700,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10041:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10040:9:56"
                  },
                  "scope": 15183,
                  "src": "9958:165:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15492
                  ],
                  "body": {
                    "id": 14794,
                    "nodeType": "Block",
                    "src": "10333:577:56",
                    "statements": [
                      {
                        "assignments": [
                          14727
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14727,
                            "mutability": "mutable",
                            "name": "_promotion",
                            "nameLocation": "10360:10:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14794,
                            "src": "10343:27:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion"
                            },
                            "typeName": {
                              "id": 14726,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14725,
                                "name": "Promotion",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15393,
                                "src": "10343:9:56"
                              },
                              "referencedDeclaration": 15393,
                              "src": "10343:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                                "typeString": "struct ITwabRewards.Promotion"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14731,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14729,
                              "name": "_promotionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14715,
                              "src": "10387:12:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14728,
                            "name": "_getPromotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14932,
                            "src": "10373:13:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_struct$_Promotion_$15393_memory_ptr_$",
                              "typeString": "function (uint256) view returns (struct ITwabRewards.Promotion memory)"
                            }
                          },
                          "id": 14730,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10373:27:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                            "typeString": "struct ITwabRewards.Promotion memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10343:57:56"
                      },
                      {
                        "assignments": [
                          14733
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14733,
                            "mutability": "mutable",
                            "name": "_epochIdsLength",
                            "nameLocation": "10419:15:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14794,
                            "src": "10411:23:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14732,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "10411:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14736,
                        "initialValue": {
                          "expression": {
                            "id": 14734,
                            "name": "_epochIds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14718,
                            "src": "10437:9:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                              "typeString": "uint8[] calldata"
                            }
                          },
                          "id": 14735,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "10437:16:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10411:42:56"
                      },
                      {
                        "assignments": [
                          14741
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14741,
                            "mutability": "mutable",
                            "name": "_rewardsAmount",
                            "nameLocation": "10480:14:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14794,
                            "src": "10463:31:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 14739,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10463:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14740,
                              "nodeType": "ArrayTypeName",
                              "src": "10463:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14747,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 14745,
                              "name": "_epochIdsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14733,
                              "src": "10511:15:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14744,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "10497:13:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (uint256[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 14742,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10501:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14743,
                              "nodeType": "ArrayTypeName",
                              "src": "10501:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 14746,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10497:30:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10463:64:56"
                      },
                      {
                        "body": {
                          "id": 14790,
                          "nodeType": "Block",
                          "src": "10596:276:56",
                          "statements": [
                            {
                              "condition": {
                                "arguments": [
                                  {
                                    "baseExpression": {
                                      "baseExpression": {
                                        "id": 14759,
                                        "name": "_claimedEpochs",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14112,
                                        "src": "10630:14:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_mapping$_t_uint256_$_t_mapping$_t_address_$_t_uint256_$_$",
                                          "typeString": "mapping(uint256 => mapping(address => uint256))"
                                        }
                                      },
                                      "id": 14761,
                                      "indexExpression": {
                                        "id": 14760,
                                        "name": "_promotionId",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14715,
                                        "src": "10645:12:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "10630:28:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                        "typeString": "mapping(address => uint256)"
                                      }
                                    },
                                    "id": 14763,
                                    "indexExpression": {
                                      "id": 14762,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14713,
                                      "src": "10659:5:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "10630:35:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "id": 14766,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14749,
                                        "src": "10673:5:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 14765,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "10667:5:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      },
                                      "typeName": {
                                        "id": 14764,
                                        "name": "uint8",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "10667:5:56",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 14767,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "10667:12:56",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  ],
                                  "id": 14758,
                                  "name": "_isClaimedEpoch",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15182,
                                  "src": "10614:15:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint8_$returns$_t_bool_$",
                                    "typeString": "function (uint256,uint8) pure returns (bool)"
                                  }
                                },
                                "id": 14768,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10614:66:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 14788,
                                "nodeType": "Block",
                                "src": "10746:116:56",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 14786,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 14776,
                                          "name": "_rewardsAmount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14741,
                                          "src": "10764:14:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 14778,
                                        "indexExpression": {
                                          "id": 14777,
                                          "name": "index",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14749,
                                          "src": "10779:5:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "10764:21:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 14780,
                                            "name": "_user",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14713,
                                            "src": "10811:5:56",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          },
                                          {
                                            "id": 14781,
                                            "name": "_promotion",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14727,
                                            "src": "10818:10:56",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                              "typeString": "struct ITwabRewards.Promotion memory"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 14782,
                                              "name": "_epochIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14718,
                                              "src": "10830:9:56",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                                                "typeString": "uint8[] calldata"
                                              }
                                            },
                                            "id": 14784,
                                            "indexExpression": {
                                              "id": 14783,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14749,
                                              "src": "10840:5:56",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "10830:16:56",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            },
                                            {
                                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                              "typeString": "struct ITwabRewards.Promotion memory"
                                            },
                                            {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          ],
                                          "id": 14779,
                                          "name": "_calculateRewardAmount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15107,
                                          "src": "10788:22:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_view$_t_address_$_t_struct$_Promotion_$15393_memory_ptr_$_t_uint8_$returns$_t_uint256_$",
                                            "typeString": "function (address,struct ITwabRewards.Promotion memory,uint8) view returns (uint256)"
                                          }
                                        },
                                        "id": 14785,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "10788:59:56",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "10764:83:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 14787,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10764:83:56"
                                  }
                                ]
                              },
                              "id": 14789,
                              "nodeType": "IfStatement",
                              "src": "10610:252:56",
                              "trueBody": {
                                "id": 14775,
                                "nodeType": "Block",
                                "src": "10682:58:56",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 14773,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 14769,
                                          "name": "_rewardsAmount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14741,
                                          "src": "10700:14:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 14771,
                                        "indexExpression": {
                                          "id": 14770,
                                          "name": "index",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14749,
                                          "src": "10715:5:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "10700:21:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "hexValue": "30",
                                        "id": 14772,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "10724:1:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      },
                                      "src": "10700:25:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 14774,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10700:25:56"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14754,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14752,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14749,
                            "src": "10562:5:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 14753,
                            "name": "_epochIdsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14733,
                            "src": "10570:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "10562:23:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14791,
                        "initializationExpression": {
                          "assignments": [
                            14749
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 14749,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "10551:5:56",
                              "nodeType": "VariableDeclaration",
                              "scope": 14791,
                              "src": "10543:13:56",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 14748,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10543:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 14751,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 14750,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10559:1:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "10543:17:56"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 14756,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "10587:7:56",
                            "subExpression": {
                              "id": 14755,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14749,
                              "src": "10587:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 14757,
                          "nodeType": "ExpressionStatement",
                          "src": "10587:7:56"
                        },
                        "nodeType": "ForStatement",
                        "src": "10538:334:56"
                      },
                      {
                        "expression": {
                          "id": 14792,
                          "name": "_rewardsAmount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14741,
                          "src": "10889:14:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 14724,
                        "id": 14793,
                        "nodeType": "Return",
                        "src": "10882:21:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14711,
                    "nodeType": "StructuredDocumentation",
                    "src": "10129:28:56",
                    "text": "@inheritdoc ITwabRewards"
                  },
                  "functionSelector": "0b011a16",
                  "id": 14795,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRewardsAmount",
                  "nameLocation": "10171:16:56",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14720,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10297:8:56"
                  },
                  "parameters": {
                    "id": 14719,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14713,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "10205:5:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14795,
                        "src": "10197:13:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14712,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10197:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14715,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "10228:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14795,
                        "src": "10220:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14714,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10220:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14718,
                        "mutability": "mutable",
                        "name": "_epochIds",
                        "nameLocation": "10267:9:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14795,
                        "src": "10250:26:56",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                          "typeString": "uint8[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 14716,
                            "name": "uint8",
                            "nodeType": "ElementaryTypeName",
                            "src": "10250:5:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 14717,
                          "nodeType": "ArrayTypeName",
                          "src": "10250:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint8_$dyn_storage_ptr",
                            "typeString": "uint8[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10187:95:56"
                  },
                  "returnParameters": {
                    "id": 14724,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14723,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14795,
                        "src": "10315:16:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 14721,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "10315:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 14722,
                          "nodeType": "ArrayTypeName",
                          "src": "10315:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10314:18:56"
                  },
                  "scope": 15183,
                  "src": "10162:748:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 14852,
                    "nodeType": "Block",
                    "src": "11147:385:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14811,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14805,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14799,
                                    "src": "11173:7:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$9297",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 14804,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "11165:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14803,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11165:7:56",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14806,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11165:16:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14809,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "11193:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14808,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "11185:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14807,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11185:7:56",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14810,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11185:10:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "11165:30:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f7469636b65742d6e6f742d7a65726f2d61646472",
                              "id": 14812,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11197:34:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_281bcab599be56849c28ecd534f34a76aa30e0c09734f7a92b3d9ec028cb4a46",
                                "typeString": "literal_string \"TwabRewards/ticket-not-zero-addr\""
                              },
                              "value": "TwabRewards/ticket-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_281bcab599be56849c28ecd534f34a76aa30e0c09734f7a92b3d9ec028cb4a46",
                                "typeString": "literal_string \"TwabRewards/ticket-not-zero-addr\""
                              }
                            ],
                            "id": 14802,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11157:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14813,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11157:75:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14814,
                        "nodeType": "ExpressionStatement",
                        "src": "11157:75:56"
                      },
                      {
                        "assignments": [
                          14816,
                          14818
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14816,
                            "mutability": "mutable",
                            "name": "succeeded",
                            "nameLocation": "11249:9:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14852,
                            "src": "11244:14:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 14815,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "11244:4:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 14818,
                            "mutability": "mutable",
                            "name": "data",
                            "nameLocation": "11273:4:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14852,
                            "src": "11260:17:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 14817,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "11260:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14831,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 14826,
                                      "name": "_ticket",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14799,
                                      "src": "11339:7:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_ITicket_$9297",
                                        "typeString": "contract ITicket"
                                      }
                                    },
                                    "id": 14827,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "controller",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 8133,
                                    "src": "11339:18:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                      "typeString": "function () view external returns (address)"
                                    }
                                  },
                                  "id": 14828,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "11339:27:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                ],
                                "expression": {
                                  "id": 14824,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "11322:3:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 14825,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "11322:16:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 14829,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11322:45:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14821,
                                  "name": "_ticket",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14799,
                                  "src": "11289:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ITicket_$9297",
                                    "typeString": "contract ITicket"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ITicket_$9297",
                                    "typeString": "contract ITicket"
                                  }
                                ],
                                "id": 14820,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "11281:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14819,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "11281:7:56",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14822,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11281:16:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 14823,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "staticcall",
                            "nodeType": "MemberAccess",
                            "src": "11281:27:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_barestaticcall_view$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes memory) view returns (bool,bytes memory)"
                            }
                          },
                          "id": 14830,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11281:96:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11243:134:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 14848,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 14838,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14833,
                                  "name": "succeeded",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14816,
                                  "src": "11409:9:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "&&",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 14837,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 14834,
                                      "name": "data",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14818,
                                      "src": "11422:4:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      }
                                    },
                                    "id": 14835,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "length",
                                    "nodeType": "MemberAccess",
                                    "src": "11422:11:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 14836,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "11436:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "11422:15:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "11409:28:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint160",
                                  "typeString": "uint160"
                                },
                                "id": 14847,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "id": 14841,
                                      "name": "data",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14818,
                                      "src": "11452:4:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      }
                                    },
                                    {
                                      "components": [
                                        {
                                          "id": 14843,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "11459:7:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_uint160_$",
                                            "typeString": "type(uint160)"
                                          },
                                          "typeName": {
                                            "id": 14842,
                                            "name": "uint160",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "11459:7:56",
                                            "typeDescriptions": {}
                                          }
                                        }
                                      ],
                                      "id": 14844,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "11458:9:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint160_$",
                                        "typeString": "type(uint160)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      },
                                      {
                                        "typeIdentifier": "t_type$_t_uint160_$",
                                        "typeString": "type(uint160)"
                                      }
                                    ],
                                    "expression": {
                                      "id": 14839,
                                      "name": "abi",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -1,
                                      "src": "11441:3:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_abi",
                                        "typeString": "abi"
                                      }
                                    },
                                    "id": 14840,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "decode",
                                    "nodeType": "MemberAccess",
                                    "src": "11441:10:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 14845,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "11441:27:56",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint160",
                                    "typeString": "uint160"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 14846,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "11472:1:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "11441:32:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "11409:64:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f696e76616c69642d7469636b6574",
                              "id": 14849,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11487:28:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_50e4a61330740088384d1945d9d5f8422f8f82aac6581c2a850d5d71e218e833",
                                "typeString": "literal_string \"TwabRewards/invalid-ticket\""
                              },
                              "value": "TwabRewards/invalid-ticket"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_50e4a61330740088384d1945d9d5f8422f8f82aac6581c2a850d5d71e218e833",
                                "typeString": "literal_string \"TwabRewards/invalid-ticket\""
                              }
                            ],
                            "id": 14832,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11388:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14850,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11388:137:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14851,
                        "nodeType": "ExpressionStatement",
                        "src": "11388:137:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14796,
                    "nodeType": "StructuredDocumentation",
                    "src": "10972:115:56",
                    "text": " @notice Determine if address passed is actually a ticket.\n @param _ticket Address to check"
                  },
                  "id": 14853,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireTicket",
                  "nameLocation": "11101:14:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14800,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14799,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "11124:7:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14853,
                        "src": "11116:15:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$9297",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14798,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14797,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9297,
                            "src": "11116:7:56"
                          },
                          "referencedDeclaration": 9297,
                          "src": "11116:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$9297",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11115:17:56"
                  },
                  "returnParameters": {
                    "id": 14801,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11147:0:56"
                  },
                  "scope": 15183,
                  "src": "11092:440:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14866,
                    "nodeType": "Block",
                    "src": "11775:76:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 14862,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14860,
                                "name": "_numberOfEpochs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14856,
                                "src": "11793:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 14861,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "11811:1:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "11793:19:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f65706f6368732d6e6f742d7a65726f",
                              "id": 14863,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11814:29:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_6d25aa3ac7446a2e46c5eb520beee2f3bf2b36175cd91764266c27374b2789a4",
                                "typeString": "literal_string \"TwabRewards/epochs-not-zero\""
                              },
                              "value": "TwabRewards/epochs-not-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_6d25aa3ac7446a2e46c5eb520beee2f3bf2b36175cd91764266c27374b2789a4",
                                "typeString": "literal_string \"TwabRewards/epochs-not-zero\""
                              }
                            ],
                            "id": 14859,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11785:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14864,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11785:59:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14865,
                        "nodeType": "ExpressionStatement",
                        "src": "11785:59:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14854,
                    "nodeType": "StructuredDocumentation",
                    "src": "11538:163:56",
                    "text": " @notice Allow a promotion to be created or extended only by a positive number of epochs.\n @param _numberOfEpochs Number of epochs to check"
                  },
                  "id": 14867,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireNumberOfEpochs",
                  "nameLocation": "11715:22:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14857,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14856,
                        "mutability": "mutable",
                        "name": "_numberOfEpochs",
                        "nameLocation": "11744:15:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14867,
                        "src": "11738:21:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 14855,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "11738:5:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11737:23:56"
                  },
                  "returnParameters": {
                    "id": 14858,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11775:0:56"
                  },
                  "scope": 15183,
                  "src": "11706:145:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14884,
                    "nodeType": "Block",
                    "src": "12044:149:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14880,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14876,
                                    "name": "_promotion",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14871,
                                    "src": "12101:10:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                      "typeString": "struct ITwabRewards.Promotion memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                      "typeString": "struct ITwabRewards.Promotion memory"
                                    }
                                  ],
                                  "id": 14875,
                                  "name": "_getPromotionEndTimestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14953,
                                  "src": "12075:25:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                                    "typeString": "function (struct ITwabRewards.Promotion memory) pure returns (uint256)"
                                  }
                                },
                                "id": 14877,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12075:37:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "expression": {
                                  "id": 14878,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "12115:5:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 14879,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "12115:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "12075:55:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f70726f6d6f74696f6e2d696e616374697665",
                              "id": 14881,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12144:32:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_614c97b1b57049857cf921940a9971691bfc6e6a6468b657f4400e939cdf04fb",
                                "typeString": "literal_string \"TwabRewards/promotion-inactive\""
                              },
                              "value": "TwabRewards/promotion-inactive"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_614c97b1b57049857cf921940a9971691bfc6e6a6468b657f4400e939cdf04fb",
                                "typeString": "literal_string \"TwabRewards/promotion-inactive\""
                              }
                            ],
                            "id": 14874,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "12054:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14882,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12054:132:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14883,
                        "nodeType": "ExpressionStatement",
                        "src": "12054:132:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14868,
                    "nodeType": "StructuredDocumentation",
                    "src": "11857:106:56",
                    "text": " @notice Determine if a promotion is active.\n @param _promotion Promotion to check"
                  },
                  "id": 14885,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requirePromotionActive",
                  "nameLocation": "11977:23:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14872,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14871,
                        "mutability": "mutable",
                        "name": "_promotion",
                        "nameLocation": "12018:10:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14885,
                        "src": "12001:27:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 14870,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14869,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "12001:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "12001:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12000:29:56"
                  },
                  "returnParameters": {
                    "id": 14873,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12044:0:56"
                  },
                  "scope": 15183,
                  "src": "11968:225:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14901,
                    "nodeType": "Block",
                    "src": "12401:92:56",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14897,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 14893,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "12419:3:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 14894,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "12419:10:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 14895,
                                  "name": "_promotion",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14889,
                                  "src": "12433:10:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                    "typeString": "struct ITwabRewards.Promotion memory"
                                  }
                                },
                                "id": 14896,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "creator",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15377,
                                "src": "12433:18:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "12419:32:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f6f6e6c792d70726f6d6f2d63726561746f72",
                              "id": 14898,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12453:32:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_ffdb670ceeaaf2b4ba3226c5ea1b3a3e577a2dd58ae96f028381dd84eb663b83",
                                "typeString": "literal_string \"TwabRewards/only-promo-creator\""
                              },
                              "value": "TwabRewards/only-promo-creator"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_ffdb670ceeaaf2b4ba3226c5ea1b3a3e577a2dd58ae96f028381dd84eb663b83",
                                "typeString": "literal_string \"TwabRewards/only-promo-creator\""
                              }
                            ],
                            "id": 14892,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "12411:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14899,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12411:75:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14900,
                        "nodeType": "ExpressionStatement",
                        "src": "12411:75:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14886,
                    "nodeType": "StructuredDocumentation",
                    "src": "12199:120:56",
                    "text": " @notice Determine if msg.sender is the promotion creator.\n @param _promotion Promotion to check"
                  },
                  "id": 14902,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requirePromotionCreator",
                  "nameLocation": "12333:24:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14890,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14889,
                        "mutability": "mutable",
                        "name": "_promotion",
                        "nameLocation": "12375:10:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14902,
                        "src": "12358:27:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 14888,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14887,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "12358:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "12358:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12357:29:56"
                  },
                  "returnParameters": {
                    "id": 14891,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12401:0:56"
                  },
                  "scope": 15183,
                  "src": "12324:169:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14931,
                    "nodeType": "Block",
                    "src": "12806:183:56",
                    "statements": [
                      {
                        "assignments": [
                          14913
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14913,
                            "mutability": "mutable",
                            "name": "_promotion",
                            "nameLocation": "12833:10:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14931,
                            "src": "12816:27:56",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion"
                            },
                            "typeName": {
                              "id": 14912,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14911,
                                "name": "Promotion",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15393,
                                "src": "12816:9:56"
                              },
                              "referencedDeclaration": 15393,
                              "src": "12816:9:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                                "typeString": "struct ITwabRewards.Promotion"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14917,
                        "initialValue": {
                          "baseExpression": {
                            "id": 14914,
                            "name": "_promotions",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14102,
                            "src": "12846:11:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Promotion_$15393_storage_$",
                              "typeString": "mapping(uint256 => struct ITwabRewards.Promotion storage ref)"
                            }
                          },
                          "id": 14916,
                          "indexExpression": {
                            "id": 14915,
                            "name": "_promotionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14905,
                            "src": "12858:12:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "12846:25:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage",
                            "typeString": "struct ITwabRewards.Promotion storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12816:55:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14925,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 14919,
                                  "name": "_promotion",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14913,
                                  "src": "12889:10:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                    "typeString": "struct ITwabRewards.Promotion memory"
                                  }
                                },
                                "id": 14920,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "creator",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15377,
                                "src": "12889:18:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14923,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "12919:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 14922,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12911:7:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14921,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12911:7:56",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14924,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12911:10:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "12889:32:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f696e76616c69642d70726f6d6f74696f6e",
                              "id": 14926,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12923:31:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2e1bfaef8c258345be7a8cb9e1498a5804118f52f63137c023d18156de76309e",
                                "typeString": "literal_string \"TwabRewards/invalid-promotion\""
                              },
                              "value": "TwabRewards/invalid-promotion"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2e1bfaef8c258345be7a8cb9e1498a5804118f52f63137c023d18156de76309e",
                                "typeString": "literal_string \"TwabRewards/invalid-promotion\""
                              }
                            ],
                            "id": 14918,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "12881:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14927,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12881:74:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14928,
                        "nodeType": "ExpressionStatement",
                        "src": "12881:74:56"
                      },
                      {
                        "expression": {
                          "id": 14929,
                          "name": "_promotion",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14913,
                          "src": "12972:10:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                            "typeString": "struct ITwabRewards.Promotion memory"
                          }
                        },
                        "functionReturnParameters": 14910,
                        "id": 14930,
                        "nodeType": "Return",
                        "src": "12965:17:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14903,
                    "nodeType": "StructuredDocumentation",
                    "src": "12499:216:56",
                    "text": " @notice Get settings for a specific promotion.\n @dev Will revert if the promotion does not exist.\n @param _promotionId Promotion id to get settings for\n @return Promotion settings"
                  },
                  "id": 14932,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getPromotion",
                  "nameLocation": "12729:13:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14906,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14905,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "12751:12:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14932,
                        "src": "12743:20:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14904,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12743:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12742:22:56"
                  },
                  "returnParameters": {
                    "id": 14910,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14909,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14932,
                        "src": "12788:16:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 14908,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14907,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "12788:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "12788:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12787:18:56"
                  },
                  "scope": 15183,
                  "src": "12720:269:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14952,
                    "nodeType": "Block",
                    "src": "13286:156:56",
                    "statements": [
                      {
                        "id": 14951,
                        "nodeType": "UncheckedBlock",
                        "src": "13296:140:56",
                        "statements": [
                          {
                            "expression": {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 14949,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 14941,
                                  "name": "_promotion",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14936,
                                  "src": "13343:10:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                    "typeString": "struct ITwabRewards.Promotion memory"
                                  }
                                },
                                "id": 14942,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "startTimestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15379,
                                "src": "13343:25:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint48",
                                      "typeString": "uint48"
                                    },
                                    "id": 14947,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "expression": {
                                        "id": 14943,
                                        "name": "_promotion",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14936,
                                        "src": "13372:10:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                          "typeString": "struct ITwabRewards.Promotion memory"
                                        }
                                      },
                                      "id": 14944,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "epochDuration",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 15383,
                                      "src": "13372:24:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint48",
                                        "typeString": "uint48"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "*",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 14945,
                                        "name": "_promotion",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14936,
                                        "src": "13399:10:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                          "typeString": "struct ITwabRewards.Promotion memory"
                                        }
                                      },
                                      "id": 14946,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "numberOfEpochs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 15381,
                                      "src": "13399:25:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    },
                                    "src": "13372:52:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint48",
                                      "typeString": "uint48"
                                    }
                                  }
                                ],
                                "id": 14948,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "13371:54:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint48",
                                  "typeString": "uint48"
                                }
                              },
                              "src": "13343:82:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "functionReturnParameters": 14940,
                            "id": 14950,
                            "nodeType": "Return",
                            "src": "13320:105:56"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14933,
                    "nodeType": "StructuredDocumentation",
                    "src": "12995:162:56",
                    "text": " @notice Compute promotion end timestamp.\n @param _promotion Promotion to compute end timestamp for\n @return Promotion end timestamp"
                  },
                  "id": 14953,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getPromotionEndTimestamp",
                  "nameLocation": "13171:25:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14937,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14936,
                        "mutability": "mutable",
                        "name": "_promotion",
                        "nameLocation": "13214:10:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14953,
                        "src": "13197:27:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 14935,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14934,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "13197:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "13197:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13196:29:56"
                  },
                  "returnParameters": {
                    "id": 14940,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14939,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14953,
                        "src": "13273:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14938,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13273:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13272:9:56"
                  },
                  "scope": 15183,
                  "src": "13162:280:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14987,
                    "nodeType": "Block",
                    "src": "14103:329:56",
                    "statements": [
                      {
                        "assignments": [
                          14963
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14963,
                            "mutability": "mutable",
                            "name": "_currentEpochId",
                            "nameLocation": "14121:15:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 14987,
                            "src": "14113:23:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14962,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "14113:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14964,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14113:23:56"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14969,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 14965,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "14151:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 14966,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "src": "14151:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "expression": {
                              "id": 14967,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14957,
                              "src": "14169:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            },
                            "id": 14968,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "startTimestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15379,
                            "src": "14169:25:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "14151:43:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14984,
                        "nodeType": "IfStatement",
                        "src": "14147:246:56",
                        "trueBody": {
                          "id": 14983,
                          "nodeType": "Block",
                          "src": "14196:197:56",
                          "statements": [
                            {
                              "id": 14982,
                              "nodeType": "UncheckedBlock",
                              "src": "14210:173:56",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 14980,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "id": 14970,
                                      "name": "_currentEpochId",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14963,
                                      "src": "14238:15:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 14979,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "components": [
                                          {
                                            "commonType": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            "id": 14975,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftExpression": {
                                              "expression": {
                                                "id": 14971,
                                                "name": "block",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": -4,
                                                "src": "14277:5:56",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_magic_block",
                                                  "typeString": "block"
                                                }
                                              },
                                              "id": 14972,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "memberName": "timestamp",
                                              "nodeType": "MemberAccess",
                                              "src": "14277:15:56",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "nodeType": "BinaryOperation",
                                            "operator": "-",
                                            "rightExpression": {
                                              "expression": {
                                                "id": 14973,
                                                "name": "_promotion",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 14957,
                                                "src": "14295:10:56",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                                  "typeString": "struct ITwabRewards.Promotion memory"
                                                }
                                              },
                                              "id": 14974,
                                              "isConstant": false,
                                              "isLValue": true,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "memberName": "startTimestamp",
                                              "nodeType": "MemberAccess",
                                              "referencedDeclaration": 15379,
                                              "src": "14295:25:56",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint64",
                                                "typeString": "uint64"
                                              }
                                            },
                                            "src": "14277:43:56",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          }
                                        ],
                                        "id": 14976,
                                        "isConstant": false,
                                        "isInlineArray": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "TupleExpression",
                                        "src": "14276:45:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "/",
                                      "rightExpression": {
                                        "expression": {
                                          "id": 14977,
                                          "name": "_promotion",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14957,
                                          "src": "14344:10:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                            "typeString": "struct ITwabRewards.Promotion memory"
                                          }
                                        },
                                        "id": 14978,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "epochDuration",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 15383,
                                        "src": "14344:24:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint48",
                                          "typeString": "uint48"
                                        }
                                      },
                                      "src": "14276:92:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "14238:130:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "id": 14981,
                                  "nodeType": "ExpressionStatement",
                                  "src": "14238:130:56"
                                }
                              ]
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 14985,
                          "name": "_currentEpochId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14963,
                          "src": "14410:15:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14961,
                        "id": 14986,
                        "nodeType": "Return",
                        "src": "14403:22:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14954,
                    "nodeType": "StructuredDocumentation",
                    "src": "13448:561:56",
                    "text": " @notice Get the current epoch id of a promotion.\n @dev Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\n @dev We return the current epoch id if the promotion has not ended.\n If the current timestamp is before the promotion start timestamp, we return 0.\n Otherwise, we return the epoch id at the current timestamp. This could be greater than the number of epochs of the promotion.\n @param _promotion Promotion to get current epoch for\n @return Epoch id"
                  },
                  "id": 14988,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getCurrentEpochId",
                  "nameLocation": "14023:18:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14958,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14957,
                        "mutability": "mutable",
                        "name": "_promotion",
                        "nameLocation": "14059:10:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 14988,
                        "src": "14042:27:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 14956,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14955,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "14042:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "14042:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14041:29:56"
                  },
                  "returnParameters": {
                    "id": 14961,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14960,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14988,
                        "src": "14094:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14959,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14094:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14093:9:56"
                  },
                  "scope": 15183,
                  "src": "14014:418:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15106,
                    "nodeType": "Block",
                    "src": "15093:1156:56",
                    "statements": [
                      {
                        "assignments": [
                          15002
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15002,
                            "mutability": "mutable",
                            "name": "_epochDuration",
                            "nameLocation": "15110:14:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 15106,
                            "src": "15103:21:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 15001,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "15103:6:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15005,
                        "initialValue": {
                          "expression": {
                            "id": 15003,
                            "name": "_promotion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14994,
                            "src": "15127:10:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                              "typeString": "struct ITwabRewards.Promotion memory"
                            }
                          },
                          "id": 15004,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "epochDuration",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 15383,
                          "src": "15127:24:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint48",
                            "typeString": "uint48"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15103:48:56"
                      },
                      {
                        "assignments": [
                          15007
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15007,
                            "mutability": "mutable",
                            "name": "_epochStartTimestamp",
                            "nameLocation": "15168:20:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 15106,
                            "src": "15161:27:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 15006,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "15161:6:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15015,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 15014,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 15008,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14994,
                              "src": "15191:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            },
                            "id": 15009,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "startTimestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15379,
                            "src": "15191:25:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 15012,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 15010,
                                  "name": "_epochDuration",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15002,
                                  "src": "15220:14:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 15011,
                                  "name": "_epochId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14996,
                                  "src": "15237:8:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "15220:25:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "id": 15013,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "15219:27:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "15191:55:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15161:85:56"
                      },
                      {
                        "assignments": [
                          15017
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15017,
                            "mutability": "mutable",
                            "name": "_epochEndTimestamp",
                            "nameLocation": "15263:18:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 15106,
                            "src": "15256:25:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 15016,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "15256:6:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15021,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 15020,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15018,
                            "name": "_epochStartTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15007,
                            "src": "15284:20:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 15019,
                            "name": "_epochDuration",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15002,
                            "src": "15307:14:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "15284:37:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15256:65:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15026,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15023,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "15340:5:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 15024,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "15340:15:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 15025,
                                "name": "_epochEndTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15017,
                                "src": "15359:18:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "src": "15340:37:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f65706f63682d6e6f742d6f766572",
                              "id": 15027,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15379:28:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3dc26021cd073e9a783a66252b1c7eaa87ec56b58c19dfc886955c416e482a6a",
                                "typeString": "literal_string \"TwabRewards/epoch-not-over\""
                              },
                              "value": "TwabRewards/epoch-not-over"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3dc26021cd073e9a783a66252b1c7eaa87ec56b58c19dfc886955c416e482a6a",
                                "typeString": "literal_string \"TwabRewards/epoch-not-over\""
                              }
                            ],
                            "id": 15022,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15332:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15028,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15332:76:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15029,
                        "nodeType": "ExpressionStatement",
                        "src": "15332:76:56"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 15034,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15031,
                                "name": "_epochId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14996,
                                "src": "15426:8:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "expression": {
                                  "id": 15032,
                                  "name": "_promotion",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14994,
                                  "src": "15437:10:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                    "typeString": "struct ITwabRewards.Promotion memory"
                                  }
                                },
                                "id": 15033,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "numberOfEpochs",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15381,
                                "src": "15437:25:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "15426:36:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "54776162526577617264732f696e76616c69642d65706f63682d6964",
                              "id": 15035,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15464:30:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5dc04c5f8ce53b07da3fcd1ef6d8a3d4a55d8b32baa198b6e2aafad0a9817201",
                                "typeString": "literal_string \"TwabRewards/invalid-epoch-id\""
                              },
                              "value": "TwabRewards/invalid-epoch-id"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5dc04c5f8ce53b07da3fcd1ef6d8a3d4a55d8b32baa198b6e2aafad0a9817201",
                                "typeString": "literal_string \"TwabRewards/invalid-epoch-id\""
                              }
                            ],
                            "id": 15030,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15418:7:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15036,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15418:77:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15037,
                        "nodeType": "ExpressionStatement",
                        "src": "15418:77:56"
                      },
                      {
                        "assignments": [
                          15039
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15039,
                            "mutability": "mutable",
                            "name": "_averageBalance",
                            "nameLocation": "15514:15:56",
                            "nodeType": "VariableDeclaration",
                            "scope": 15106,
                            "src": "15506:23:56",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15038,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "15506:7:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15046,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 15042,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14991,
                              "src": "15577:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15043,
                              "name": "_epochStartTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15007,
                              "src": "15596:20:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 15044,
                              "name": "_epochEndTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15017,
                              "src": "15630:18:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 15040,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14092,
                              "src": "15532:6:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$9297",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 15041,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalanceBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 9250,
                            "src": "15532:31:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$_t_uint64_$_t_uint64_$returns$_t_uint256_$",
                              "typeString": "function (address,uint64,uint64) view external returns (uint256)"
                            }
                          },
                          "id": 15045,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15532:126:56",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15506:152:56"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15049,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15047,
                            "name": "_averageBalance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15039,
                            "src": "15673:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 15048,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "15691:1:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "15673:19:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15103,
                        "nodeType": "IfStatement",
                        "src": "15669:555:56",
                        "trueBody": {
                          "id": 15102,
                          "nodeType": "Block",
                          "src": "15694:530:56",
                          "statements": [
                            {
                              "assignments": [
                                15054
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15054,
                                  "mutability": "mutable",
                                  "name": "_epochStartTimestamps",
                                  "nameLocation": "15724:21:56",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15102,
                                  "src": "15708:37:56",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                    "typeString": "uint64[]"
                                  },
                                  "typeName": {
                                    "baseType": {
                                      "id": 15052,
                                      "name": "uint64",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "15708:6:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "id": 15053,
                                    "nodeType": "ArrayTypeName",
                                    "src": "15708:8:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                      "typeString": "uint64[]"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15060,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "hexValue": "31",
                                    "id": 15058,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "15761:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    },
                                    "value": "1"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    }
                                  ],
                                  "id": 15057,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "NewExpression",
                                  "src": "15748:12:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                                    "typeString": "function (uint256) pure returns (uint64[] memory)"
                                  },
                                  "typeName": {
                                    "baseType": {
                                      "id": 15055,
                                      "name": "uint64",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "15752:6:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "id": 15056,
                                    "nodeType": "ArrayTypeName",
                                    "src": "15752:8:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                      "typeString": "uint64[]"
                                    }
                                  }
                                },
                                "id": 15059,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "15748:15:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                  "typeString": "uint64[] memory"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "15708:55:56"
                            },
                            {
                              "expression": {
                                "id": 15065,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 15061,
                                    "name": "_epochStartTimestamps",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15054,
                                    "src": "15777:21:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                      "typeString": "uint64[] memory"
                                    }
                                  },
                                  "id": 15063,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 15062,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "15799:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "15777:24:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 15064,
                                  "name": "_epochStartTimestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15007,
                                  "src": "15804:20:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "15777:47:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 15066,
                              "nodeType": "ExpressionStatement",
                              "src": "15777:47:56"
                            },
                            {
                              "assignments": [
                                15071
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15071,
                                  "mutability": "mutable",
                                  "name": "_epochEndTimestamps",
                                  "nameLocation": "15855:19:56",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15102,
                                  "src": "15839:35:56",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                    "typeString": "uint64[]"
                                  },
                                  "typeName": {
                                    "baseType": {
                                      "id": 15069,
                                      "name": "uint64",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "15839:6:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "id": 15070,
                                    "nodeType": "ArrayTypeName",
                                    "src": "15839:8:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                      "typeString": "uint64[]"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15077,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "hexValue": "31",
                                    "id": 15075,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "15890:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    },
                                    "value": "1"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    }
                                  ],
                                  "id": 15074,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "NewExpression",
                                  "src": "15877:12:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$",
                                    "typeString": "function (uint256) pure returns (uint64[] memory)"
                                  },
                                  "typeName": {
                                    "baseType": {
                                      "id": 15072,
                                      "name": "uint64",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "15881:6:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "id": 15073,
                                    "nodeType": "ArrayTypeName",
                                    "src": "15881:8:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                      "typeString": "uint64[]"
                                    }
                                  }
                                },
                                "id": 15076,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "15877:15:56",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                  "typeString": "uint64[] memory"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "15839:53:56"
                            },
                            {
                              "expression": {
                                "id": 15082,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 15078,
                                    "name": "_epochEndTimestamps",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15071,
                                    "src": "15906:19:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                      "typeString": "uint64[] memory"
                                    }
                                  },
                                  "id": 15080,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 15079,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "15926:1:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "15906:22:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 15081,
                                  "name": "_epochEndTimestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15017,
                                  "src": "15931:18:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "15906:43:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 15083,
                              "nodeType": "ExpressionStatement",
                              "src": "15906:43:56"
                            },
                            {
                              "assignments": [
                                15085
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15085,
                                  "mutability": "mutable",
                                  "name": "_averageTotalSupply",
                                  "nameLocation": "15972:19:56",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15102,
                                  "src": "15964:27:56",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 15084,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "15964:7:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15093,
                              "initialValue": {
                                "baseExpression": {
                                  "arguments": [
                                    {
                                      "id": 15088,
                                      "name": "_epochStartTimestamps",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15054,
                                      "src": "16049:21:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      }
                                    },
                                    {
                                      "id": 15089,
                                      "name": "_epochEndTimestamps",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15071,
                                      "src": "16088:19:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      },
                                      {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      }
                                    ],
                                    "expression": {
                                      "id": 15086,
                                      "name": "ticket",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14092,
                                      "src": "15994:6:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_ITicket_$9297",
                                        "typeString": "contract ITicket"
                                      }
                                    },
                                    "id": 15087,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getAverageTotalSuppliesBetween",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 9296,
                                    "src": "15994:37:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$_t_array$_t_uint64_$dyn_memory_ptr_$_t_array$_t_uint64_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                      "typeString": "function (uint64[] memory,uint64[] memory) view external returns (uint256[] memory)"
                                    }
                                  },
                                  "id": 15090,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "15994:127:56",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 15092,
                                "indexExpression": {
                                  "hexValue": "30",
                                  "id": 15091,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "16122:1:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "15994:130:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "15964:160:56"
                            },
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 15100,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 15097,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "id": 15094,
                                          "name": "_promotion",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14994,
                                          "src": "16147:10:56",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                            "typeString": "struct ITwabRewards.Promotion memory"
                                          }
                                        },
                                        "id": 15095,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "tokensPerEpoch",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 15390,
                                        "src": "16147:25:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "id": 15096,
                                        "name": "_averageBalance",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15039,
                                        "src": "16175:15:56",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "16147:43:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 15098,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "16146:45:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "id": 15099,
                                  "name": "_averageTotalSupply",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15085,
                                  "src": "16194:19:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "16146:67:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 15000,
                              "id": 15101,
                              "nodeType": "Return",
                              "src": "16139:74:56"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "hexValue": "30",
                          "id": 15104,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "16241:1:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "functionReturnParameters": 15000,
                        "id": 15105,
                        "nodeType": "Return",
                        "src": "16234:8:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14989,
                    "nodeType": "StructuredDocumentation",
                    "src": "14438:496:56",
                    "text": " @notice Get reward amount for a specific user.\n @dev Rewards can only be calculated once the epoch is over.\n @dev Will revert if `_epochId` is over the total number of epochs or if epoch is not over.\n @dev Will return 0 if the user average balance of tickets is 0.\n @param _user User to get reward amount for\n @param _promotion Promotion from which the epoch is\n @param _epochId Epoch id to get reward amount for\n @return Reward amount"
                  },
                  "id": 15107,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateRewardAmount",
                  "nameLocation": "14948:22:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14997,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14991,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "14988:5:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "14980:13:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14990,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "14980:7:56",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14994,
                        "mutability": "mutable",
                        "name": "_promotion",
                        "nameLocation": "15020:10:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "15003:27:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 14993,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14992,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "15003:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "15003:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14996,
                        "mutability": "mutable",
                        "name": "_epochId",
                        "nameLocation": "15046:8:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "15040:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 14995,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "15040:5:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14970:90:56"
                  },
                  "returnParameters": {
                    "id": 15000,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14999,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "15084:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14998,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15084:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15083:9:56"
                  },
                  "scope": 15183,
                  "src": "14939:1310:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15137,
                    "nodeType": "Block",
                    "src": "16574:240:56",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15121,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 15116,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "16588:5:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 15117,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "src": "16588:15:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 15119,
                                "name": "_promotion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15111,
                                "src": "16632:10:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                  "typeString": "struct ITwabRewards.Promotion memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                  "typeString": "struct ITwabRewards.Promotion memory"
                                }
                              ],
                              "id": 15118,
                              "name": "_getPromotionEndTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14953,
                              "src": "16606:25:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                                "typeString": "function (struct ITwabRewards.Promotion memory) pure returns (uint256)"
                              }
                            },
                            "id": 15120,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "16606:37:56",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "16588:55:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15125,
                        "nodeType": "IfStatement",
                        "src": "16584:94:56",
                        "trueBody": {
                          "id": 15124,
                          "nodeType": "Block",
                          "src": "16645:33:56",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 15122,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "16666:1:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 15115,
                              "id": 15123,
                              "nodeType": "Return",
                              "src": "16659:8:56"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15135,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 15126,
                              "name": "_promotion",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15111,
                              "src": "16707:10:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                "typeString": "struct ITwabRewards.Promotion memory"
                              }
                            },
                            "id": 15127,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tokensPerEpoch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15390,
                            "src": "16707:25:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "*",
                          "rightExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 15133,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 15128,
                                    "name": "_promotion",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15111,
                                    "src": "16748:10:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                      "typeString": "struct ITwabRewards.Promotion memory"
                                    }
                                  },
                                  "id": 15129,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "numberOfEpochs",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 15381,
                                  "src": "16748:25:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "id": 15131,
                                      "name": "_promotion",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15111,
                                      "src": "16795:10:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                        "typeString": "struct ITwabRewards.Promotion memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                                        "typeString": "struct ITwabRewards.Promotion memory"
                                      }
                                    ],
                                    "id": 15130,
                                    "name": "_getCurrentEpochId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14988,
                                    "src": "16776:18:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_struct$_Promotion_$15393_memory_ptr_$returns$_t_uint256_$",
                                      "typeString": "function (struct ITwabRewards.Promotion memory) view returns (uint256)"
                                    }
                                  },
                                  "id": 15132,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "16776:30:56",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "16748:58:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "id": 15134,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "16747:60:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "16707:100:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15115,
                        "id": 15136,
                        "nodeType": "Return",
                        "src": "16688:119:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15108,
                    "nodeType": "StructuredDocumentation",
                    "src": "16255:223:56",
                    "text": " @notice Get the total amount of tokens left to be rewarded.\n @param _promotion Promotion to get the total amount of tokens left to be rewarded for\n @return Amount of tokens left to be rewarded"
                  },
                  "id": 15138,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getRemainingRewards",
                  "nameLocation": "16492:20:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15112,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15111,
                        "mutability": "mutable",
                        "name": "_promotion",
                        "nameLocation": "16530:10:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15138,
                        "src": "16513:27:56",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 15110,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15109,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "16513:9:56"
                          },
                          "referencedDeclaration": 15393,
                          "src": "16513:9:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16512:29:56"
                  },
                  "returnParameters": {
                    "id": 15115,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15114,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15138,
                        "src": "16565:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15113,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16565:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16564:9:56"
                  },
                  "scope": 15183,
                  "src": "16483:331:56",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15158,
                    "nodeType": "Block",
                    "src": "17642:69:56",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15156,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15148,
                            "name": "_userClaimedEpochs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15141,
                            "src": "17659:18:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "|",
                          "rightExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 15154,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "31",
                                      "id": 15151,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "17689:1:56",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_1_by_1",
                                        "typeString": "int_const 1"
                                      },
                                      "value": "1"
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_rational_1_by_1",
                                        "typeString": "int_const 1"
                                      }
                                    ],
                                    "id": 15150,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "17681:7:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 15149,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "17681:7:56",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 15152,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "17681:10:56",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<<",
                                "rightExpression": {
                                  "id": 15153,
                                  "name": "_epochId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15143,
                                  "src": "17695:8:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "17681:22:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "id": 15155,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "17680:24:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "17659:45:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15147,
                        "id": 15157,
                        "nodeType": "Return",
                        "src": "17652:52:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15139,
                    "nodeType": "StructuredDocumentation",
                    "src": "16820:684:56",
                    "text": " @notice Set boolean value for a specific epoch.\n @dev Bits are stored in a uint256 from right to left.\nLet's take the example of the following 8 bits word. 0110 0011\nTo set the boolean value to 1 for the epoch id 2, we need to create a mask by shifting 1 to the left by 2 bits.\nWe get: 0000 0001 << 2 = 0000 0100\nWe then OR the mask with the word to set the value.\nWe get: 0110 0011 | 0000 0100 = 0110 0111\n @param _userClaimedEpochs Tightly packed epoch ids with their boolean values\n @param _epochId Id of the epoch to set the boolean for\n @return Tightly packed epoch ids with the newly boolean value set"
                  },
                  "id": 15159,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_updateClaimedEpoch",
                  "nameLocation": "17518:19:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15144,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15141,
                        "mutability": "mutable",
                        "name": "_userClaimedEpochs",
                        "nameLocation": "17546:18:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15159,
                        "src": "17538:26:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15140,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "17538:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15143,
                        "mutability": "mutable",
                        "name": "_epochId",
                        "nameLocation": "17572:8:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15159,
                        "src": "17566:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 15142,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "17566:5:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17537:44:56"
                  },
                  "returnParameters": {
                    "id": 15147,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15146,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15159,
                        "src": "17629:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15145,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "17629:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17628:9:56"
                  },
                  "scope": 15183,
                  "src": "17509:202:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15181,
                    "nodeType": "Block",
                    "src": "18649:74:56",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15179,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 15177,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 15171,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 15169,
                                    "name": "_userClaimedEpochs",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15162,
                                    "src": "18667:18:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">>",
                                  "rightExpression": {
                                    "id": 15170,
                                    "name": "_epochId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15164,
                                    "src": "18689:8:56",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "18667:30:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 15172,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "18666:32:56",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "&",
                            "rightExpression": {
                              "arguments": [
                                {
                                  "hexValue": "31",
                                  "id": 15175,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "18709:1:56",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  }
                                ],
                                "id": 15174,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "18701:7:56",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint256_$",
                                  "typeString": "type(uint256)"
                                },
                                "typeName": {
                                  "id": 15173,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "18701:7:56",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 15176,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "18701:10:56",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "18666:45:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 15178,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "18715:1:56",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "18666:50:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 15168,
                        "id": 15180,
                        "nodeType": "Return",
                        "src": "18659:57:56"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15160,
                    "nodeType": "StructuredDocumentation",
                    "src": "17717:801:56",
                    "text": " @notice Check if rewards of an epoch for a given promotion have already been claimed by the user.\n @dev Bits are stored in a uint256 from right to left.\nLet's take the example of the following 8 bits word. 0110 0111\nTo retrieve the boolean value for the epoch id 2, we need to shift the word to the right by 2 bits.\nWe get: 0110 0111 >> 2 = 0001 1001\nWe then get the value of the last bit by masking with 1.\nWe get: 0001 1001 & 0000 0001 = 0000 0001 = 1\nWe then return the boolean value true since the last bit is 1.\n @param _userClaimedEpochs Record of epochs already claimed by the user\n @param _epochId Epoch id to check\n @return true if the rewards have already been claimed for the given epoch, false otherwise"
                  },
                  "id": 15182,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isClaimedEpoch",
                  "nameLocation": "18532:15:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15165,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15162,
                        "mutability": "mutable",
                        "name": "_userClaimedEpochs",
                        "nameLocation": "18556:18:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15182,
                        "src": "18548:26:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15161,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "18548:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15164,
                        "mutability": "mutable",
                        "name": "_epochId",
                        "nameLocation": "18582:8:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 15182,
                        "src": "18576:14:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 15163,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "18576:5:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18547:44:56"
                  },
                  "returnParameters": {
                    "id": 15168,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15167,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15182,
                        "src": "18639:4:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15166,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "18639:4:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18638:6:56"
                  },
                  "scope": 15183,
                  "src": "18523:200:56",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 15184,
              "src": "961:17764:56",
              "usedErrors": []
            }
          ],
          "src": "37:18689:56"
        },
        "id": 56
      },
      "@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-periphery/contracts/interfaces/IPrizeFlush.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "IPrizeFlush": [
              15266
            ],
            "IReserve": [
              9090
            ],
            "IStrategy": [
              9104
            ]
          },
          "id": 15267,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15185,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:57"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IReserve.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IReserve.sol",
              "id": 15186,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15267,
              "sourceUnit": 9091,
              "src": "61:65:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol",
              "id": 15187,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15267,
              "sourceUnit": 9105,
              "src": "127:66:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 15266,
              "linearizedBaseContracts": [
                15266
              ],
              "name": "IPrizeFlush",
              "nameLocation": "205:11:57",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15188,
                    "nodeType": "StructuredDocumentation",
                    "src": "223:174:57",
                    "text": " @notice Emit when the flush function has executed.\n @param destination Address receiving funds\n @param amount      Amount of tokens transferred"
                  },
                  "id": 15194,
                  "name": "Flushed",
                  "nameLocation": "408:7:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15193,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15190,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "destination",
                        "nameLocation": "432:11:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15194,
                        "src": "416:27:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15189,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "416:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15192,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "453:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15194,
                        "src": "445:14:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15191,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "445:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "415:45:57"
                  },
                  "src": "402:59:57"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15195,
                    "nodeType": "StructuredDocumentation",
                    "src": "467:102:57",
                    "text": " @notice Emit when destination is set.\n @param destination Destination address"
                  },
                  "id": 15199,
                  "name": "DestinationSet",
                  "nameLocation": "580:14:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15198,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15197,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "destination",
                        "nameLocation": "603:11:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15199,
                        "src": "595:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15196,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "595:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "594:21:57"
                  },
                  "src": "574:42:57"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15200,
                    "nodeType": "StructuredDocumentation",
                    "src": "622:93:57",
                    "text": " @notice Emit when strategy is set.\n @param strategy Strategy address"
                  },
                  "id": 15205,
                  "name": "StrategySet",
                  "nameLocation": "726:11:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15204,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15203,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "strategy",
                        "nameLocation": "748:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15205,
                        "src": "738:18:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 15202,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15201,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "738:9:57"
                          },
                          "referencedDeclaration": 9104,
                          "src": "738:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "737:20:57"
                  },
                  "src": "720:38:57"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15206,
                    "nodeType": "StructuredDocumentation",
                    "src": "764:90:57",
                    "text": " @notice Emit when reserve is set.\n @param reserve Reserve address"
                  },
                  "id": 15211,
                  "name": "ReserveSet",
                  "nameLocation": "865:10:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15210,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15209,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "reserve",
                        "nameLocation": "885:7:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15211,
                        "src": "876:16:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 15208,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15207,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "876:8:57"
                          },
                          "referencedDeclaration": 9090,
                          "src": "876:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "875:18:57"
                  },
                  "src": "859:35:57"
                },
                {
                  "documentation": {
                    "id": 15212,
                    "nodeType": "StructuredDocumentation",
                    "src": "900:45:57",
                    "text": "@notice Read global destination variable."
                  },
                  "functionSelector": "16ad9542",
                  "id": 15217,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDestination",
                  "nameLocation": "959:14:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15213,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "973:2:57"
                  },
                  "returnParameters": {
                    "id": 15216,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15215,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15217,
                        "src": "999:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15214,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "999:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "998:9:57"
                  },
                  "scope": 15266,
                  "src": "950:58:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15218,
                    "nodeType": "StructuredDocumentation",
                    "src": "1014:41:57",
                    "text": "@notice Read global reserve variable."
                  },
                  "functionSelector": "59bf5d39",
                  "id": 15224,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserve",
                  "nameLocation": "1069:10:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15219,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1079:2:57"
                  },
                  "returnParameters": {
                    "id": 15223,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15222,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15224,
                        "src": "1105:8:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 15221,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15220,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "1105:8:57"
                          },
                          "referencedDeclaration": 9090,
                          "src": "1105:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1104:10:57"
                  },
                  "scope": 15266,
                  "src": "1060:55:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15225,
                    "nodeType": "StructuredDocumentation",
                    "src": "1121:42:57",
                    "text": "@notice Read global strategy variable."
                  },
                  "functionSelector": "07da0603",
                  "id": 15231,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getStrategy",
                  "nameLocation": "1177:11:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15226,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1188:2:57"
                  },
                  "returnParameters": {
                    "id": 15230,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15229,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15231,
                        "src": "1214:9:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 15228,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15227,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "1214:9:57"
                          },
                          "referencedDeclaration": 9104,
                          "src": "1214:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1213:11:57"
                  },
                  "scope": 15266,
                  "src": "1168:57:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15232,
                    "nodeType": "StructuredDocumentation",
                    "src": "1231:44:57",
                    "text": "@notice Set global destination variable."
                  },
                  "functionSelector": "0a0a05e6",
                  "id": 15239,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDestination",
                  "nameLocation": "1289:14:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15235,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15234,
                        "mutability": "mutable",
                        "name": "_destination",
                        "nameLocation": "1312:12:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15239,
                        "src": "1304:20:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15233,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1304:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1303:22:57"
                  },
                  "returnParameters": {
                    "id": 15238,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15237,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15239,
                        "src": "1344:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15236,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1344:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1343:9:57"
                  },
                  "scope": 15266,
                  "src": "1280:73:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15240,
                    "nodeType": "StructuredDocumentation",
                    "src": "1359:40:57",
                    "text": "@notice Set global reserve variable."
                  },
                  "functionSelector": "9cecc80a",
                  "id": 15249,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setReserve",
                  "nameLocation": "1413:10:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15244,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15243,
                        "mutability": "mutable",
                        "name": "_reserve",
                        "nameLocation": "1433:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15249,
                        "src": "1424:17:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 15242,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15241,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "1424:8:57"
                          },
                          "referencedDeclaration": 9090,
                          "src": "1424:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1423:19:57"
                  },
                  "returnParameters": {
                    "id": 15248,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15247,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15249,
                        "src": "1461:8:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IReserve_$9090",
                          "typeString": "contract IReserve"
                        },
                        "typeName": {
                          "id": 15246,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15245,
                            "name": "IReserve",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9090,
                            "src": "1461:8:57"
                          },
                          "referencedDeclaration": 9090,
                          "src": "1461:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IReserve_$9090",
                            "typeString": "contract IReserve"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1460:10:57"
                  },
                  "scope": 15266,
                  "src": "1404:67:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15250,
                    "nodeType": "StructuredDocumentation",
                    "src": "1477:41:57",
                    "text": "@notice Set global strategy variable."
                  },
                  "functionSelector": "33a100ca",
                  "id": 15259,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setStrategy",
                  "nameLocation": "1532:11:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15254,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15253,
                        "mutability": "mutable",
                        "name": "_strategy",
                        "nameLocation": "1554:9:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 15259,
                        "src": "1544:19:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 15252,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15251,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "1544:9:57"
                          },
                          "referencedDeclaration": 9104,
                          "src": "1544:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1543:21:57"
                  },
                  "returnParameters": {
                    "id": 15258,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15257,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15259,
                        "src": "1583:9:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IStrategy_$9104",
                          "typeString": "contract IStrategy"
                        },
                        "typeName": {
                          "id": 15256,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15255,
                            "name": "IStrategy",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9104,
                            "src": "1583:9:57"
                          },
                          "referencedDeclaration": 9104,
                          "src": "1583:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IStrategy_$9104",
                            "typeString": "contract IStrategy"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1582:11:57"
                  },
                  "scope": 15266,
                  "src": "1523:71:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15260,
                    "nodeType": "StructuredDocumentation",
                    "src": "1600:244:57",
                    "text": " @notice Migrate interest from PrizePool to PrizeDistributor in a single transaction.\n @dev    Captures interest, checkpoint data and transfers tokens to final destination.\n @return True if operation is successful."
                  },
                  "functionSelector": "6b9f96ea",
                  "id": 15265,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "flush",
                  "nameLocation": "1858:5:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15261,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1863:2:57"
                  },
                  "returnParameters": {
                    "id": 15264,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15263,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15265,
                        "src": "1884:4:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15262,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1884:4:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1883:6:57"
                  },
                  "scope": 15266,
                  "src": "1849:41:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15267,
              "src": "195:1697:57",
              "usedErrors": []
            }
          ],
          "src": "37:1856:57"
        },
        "id": 57
      },
      "@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-periphery/contracts/interfaces/IPrizeTierHistory.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawBeacon": [
              4371
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IERC20": [
              663
            ],
            "IPrizeTierHistory": [
              15371
            ],
            "Ownable": [
              3258
            ],
            "RNGInterface": [
              3314
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 15372,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15268,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:58"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
              "id": 15269,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15372,
              "sourceUnit": 4372,
              "src": "59:56:58",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 15270,
                "nodeType": "StructuredDocumentation",
                "src": "117:156:58",
                "text": " @title  PoolTogether V4 IPrizeTierHistory\n @author PoolTogether Inc Team\n @notice IPrizeTierHistory is the base contract for PrizeTierHistory"
              },
              "fullyImplemented": false,
              "id": 15371,
              "linearizedBaseContracts": [
                15371
              ],
              "name": "IPrizeTierHistory",
              "nameLocation": "284:17:58",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IPrizeTierHistory.PrizeTier",
                  "id": 15287,
                  "members": [
                    {
                      "constant": false,
                      "id": 15272,
                      "mutability": "mutable",
                      "name": "bitRangeSize",
                      "nameLocation": "432:12:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 15287,
                      "src": "426:18:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 15271,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "426:5:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15274,
                      "mutability": "mutable",
                      "name": "drawId",
                      "nameLocation": "461:6:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 15287,
                      "src": "454:13:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 15273,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "454:6:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15276,
                      "mutability": "mutable",
                      "name": "maxPicksPerUser",
                      "nameLocation": "484:15:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 15287,
                      "src": "477:22:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 15275,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "477:6:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15278,
                      "mutability": "mutable",
                      "name": "expiryDuration",
                      "nameLocation": "516:14:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 15287,
                      "src": "509:21:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 15277,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "509:6:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15280,
                      "mutability": "mutable",
                      "name": "endTimestampOffset",
                      "nameLocation": "547:18:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 15287,
                      "src": "540:25:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 15279,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "540:6:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15282,
                      "mutability": "mutable",
                      "name": "prize",
                      "nameLocation": "583:5:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 15287,
                      "src": "575:13:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 15281,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "575:7:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15286,
                      "mutability": "mutable",
                      "name": "tiers",
                      "nameLocation": "609:5:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 15287,
                      "src": "598:16:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                        "typeString": "uint32[16]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 15283,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "598:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 15285,
                        "length": {
                          "hexValue": "3136",
                          "id": 15284,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "605:2:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_16_by_1",
                            "typeString": "int_const 16"
                          },
                          "value": "16"
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "598:10:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                          "typeString": "uint32[16]"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PrizeTier",
                  "nameLocation": "406:9:58",
                  "nodeType": "StructDefinition",
                  "scope": 15371,
                  "src": "399:222:58",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15288,
                    "nodeType": "StructuredDocumentation",
                    "src": "627:147:58",
                    "text": " @notice Emit when new PrizeTier is added to history\n @param drawId    Draw ID\n @param prizeTier PrizeTier parameters"
                  },
                  "id": 15295,
                  "name": "PrizeTierPushed",
                  "nameLocation": "785:15:58",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15294,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15290,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "816:6:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15295,
                        "src": "801:21:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15289,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "801:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15293,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeTier",
                        "nameLocation": "834:9:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15295,
                        "src": "824:19:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 15292,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15291,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "824:9:58"
                          },
                          "referencedDeclaration": 15287,
                          "src": "824:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "800:44:58"
                  },
                  "src": "779:66:58"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15296,
                    "nodeType": "StructuredDocumentation",
                    "src": "851:154:58",
                    "text": " @notice Emit when existing PrizeTier is updated in history\n @param drawId    Draw ID\n @param prizeTier PrizeTier parameters"
                  },
                  "id": 15303,
                  "name": "PrizeTierSet",
                  "nameLocation": "1016:12:58",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15302,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15298,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1044:6:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15303,
                        "src": "1029:21:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15297,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1029:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15301,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeTier",
                        "nameLocation": "1062:9:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15303,
                        "src": "1052:19:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 15300,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15299,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "1052:9:58"
                          },
                          "referencedDeclaration": 15287,
                          "src": "1052:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1028:44:58"
                  },
                  "src": "1010:63:58"
                },
                {
                  "documentation": {
                    "id": 15304,
                    "nodeType": "StructuredDocumentation",
                    "src": "1079:189:58",
                    "text": " @notice Push PrizeTierHistory struct onto history array.\n @dev    Callable only by owner or manager,\n @param drawPrizeDistribution New PrizeTierHistory struct"
                  },
                  "functionSelector": "3659f543",
                  "id": 15310,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "1282:4:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15308,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15307,
                        "mutability": "mutable",
                        "name": "drawPrizeDistribution",
                        "nameLocation": "1306:21:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15310,
                        "src": "1287:40:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 15306,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15305,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "1287:9:58"
                          },
                          "referencedDeclaration": 15287,
                          "src": "1287:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1286:42:58"
                  },
                  "returnParameters": {
                    "id": 15309,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1337:0:58"
                  },
                  "scope": 15371,
                  "src": "1273:65:58",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "d365027d",
                  "id": 15316,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "replace",
                  "nameLocation": "1353:7:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15314,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15313,
                        "mutability": "mutable",
                        "name": "_prizeTier",
                        "nameLocation": "1380:10:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15316,
                        "src": "1361:29:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 15312,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15311,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "1361:9:58"
                          },
                          "referencedDeclaration": 15287,
                          "src": "1361:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1360:31:58"
                  },
                  "returnParameters": {
                    "id": 15315,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1400:0:58"
                  },
                  "scope": 15371,
                  "src": "1344:57:58",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15317,
                    "nodeType": "StructuredDocumentation",
                    "src": "1407:129:58",
                    "text": " @notice Read PrizeTierHistory struct from history array.\n @param drawId Draw ID\n @return prizeTier"
                  },
                  "functionSelector": "4aac253d",
                  "id": 15325,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeTier",
                  "nameLocation": "1550:12:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15320,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15319,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1570:6:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15325,
                        "src": "1563:13:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15318,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1563:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1562:15:58"
                  },
                  "returnParameters": {
                    "id": 15324,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15323,
                        "mutability": "mutable",
                        "name": "prizeTier",
                        "nameLocation": "1618:9:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15325,
                        "src": "1601:26:58",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 15322,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15321,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "1601:9:58"
                          },
                          "referencedDeclaration": 15287,
                          "src": "1601:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1600:28:58"
                  },
                  "scope": 15371,
                  "src": "1541:88:58",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15326,
                    "nodeType": "StructuredDocumentation",
                    "src": "1635:121:58",
                    "text": " @notice Read first Draw ID used to initialize history\n @return Draw ID of first PrizeTier record"
                  },
                  "functionSelector": "39dd7f08",
                  "id": 15331,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDrawId",
                  "nameLocation": "1770:15:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15327,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1785:2:58"
                  },
                  "returnParameters": {
                    "id": 15330,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15329,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15331,
                        "src": "1811:6:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15328,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1811:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1810:8:58"
                  },
                  "scope": 15371,
                  "src": "1761:58:58",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "472b619c",
                  "id": 15336,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDrawId",
                  "nameLocation": "1834:15:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15332,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1849:2:58"
                  },
                  "returnParameters": {
                    "id": 15335,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15334,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15336,
                        "src": "1875:6:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15333,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1875:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1874:8:58"
                  },
                  "scope": 15371,
                  "src": "1825:58:58",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15337,
                    "nodeType": "StructuredDocumentation",
                    "src": "1889:138:58",
                    "text": " @notice Read PrizeTierHistory List from history array.\n @param drawIds Draw ID array\n @return prizeTierList"
                  },
                  "functionSelector": "4e602cd8",
                  "id": 15347,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeTierList",
                  "nameLocation": "2041:16:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15341,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15340,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "2076:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15347,
                        "src": "2058:25:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15338,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2058:6:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 15339,
                          "nodeType": "ArrayTypeName",
                          "src": "2058:8:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2057:27:58"
                  },
                  "returnParameters": {
                    "id": 15346,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15345,
                        "mutability": "mutable",
                        "name": "prizeTierList",
                        "nameLocation": "2151:13:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15347,
                        "src": "2132:32:58",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15343,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 15342,
                              "name": "PrizeTier",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 15287,
                              "src": "2132:9:58"
                            },
                            "referencedDeclaration": 15287,
                            "src": "2132:9:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                              "typeString": "struct IPrizeTierHistory.PrizeTier"
                            }
                          },
                          "id": 15344,
                          "nodeType": "ArrayTypeName",
                          "src": "2132:11:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeTier_$15287_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2131:34:58"
                  },
                  "scope": 15371,
                  "src": "2032:134:58",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15348,
                    "nodeType": "StructuredDocumentation",
                    "src": "2172:227:58",
                    "text": " @notice Push PrizeTierHistory struct onto history array.\n @dev    Callable only by owner.\n @param prizeTier Updated PrizeTierHistory struct\n @return drawId Draw ID linked to PrizeTierHistory"
                  },
                  "functionSelector": "f1143765",
                  "id": 15356,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "popAndPush",
                  "nameLocation": "2413:10:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15352,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15351,
                        "mutability": "mutable",
                        "name": "prizeTier",
                        "nameLocation": "2443:9:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15356,
                        "src": "2424:28:58",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_calldata_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 15350,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15349,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "2424:9:58"
                          },
                          "referencedDeclaration": 15287,
                          "src": "2424:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2423:30:58"
                  },
                  "returnParameters": {
                    "id": 15355,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15354,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2479:6:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15356,
                        "src": "2472:13:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15353,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2472:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2471:15:58"
                  },
                  "scope": 15371,
                  "src": "2404:83:58",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "e4dd2690",
                  "id": 15364,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeTierAtIndex",
                  "nameLocation": "2502:19:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15359,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15358,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "2530:5:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 15364,
                        "src": "2522:13:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15357,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2522:7:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2521:15:58"
                  },
                  "returnParameters": {
                    "id": 15363,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15362,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15364,
                        "src": "2560:16:58",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeTier_$15287_memory_ptr",
                          "typeString": "struct IPrizeTierHistory.PrizeTier"
                        },
                        "typeName": {
                          "id": 15361,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15360,
                            "name": "PrizeTier",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15287,
                            "src": "2560:9:58"
                          },
                          "referencedDeclaration": 15287,
                          "src": "2560:9:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeTier_$15287_storage_ptr",
                            "typeString": "struct IPrizeTierHistory.PrizeTier"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2559:18:58"
                  },
                  "scope": 15371,
                  "src": "2493:85:58",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15365,
                    "nodeType": "StructuredDocumentation",
                    "src": "2584:137:58",
                    "text": " @notice Returns the number of Prize Tier structs pushed\n @return The number of prize tiers that have been pushed"
                  },
                  "functionSelector": "06661abd",
                  "id": 15370,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "count",
                  "nameLocation": "2735:5:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15366,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2740:2:58"
                  },
                  "returnParameters": {
                    "id": 15369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15368,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15370,
                        "src": "2766:7:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15367,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2766:7:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2765:9:58"
                  },
                  "scope": 15371,
                  "src": "2726:49:58",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15372,
              "src": "274:2503:58",
              "usedErrors": []
            }
          ],
          "src": "36:2742:58"
        },
        "id": 58
      },
      "@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-periphery/contracts/interfaces/ITwabRewards.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "ITwabRewards": [
              15493
            ]
          },
          "id": 15494,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15373,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:59"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 15374,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15494,
              "sourceUnit": 664,
              "src": "61:56:59",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 15375,
                "nodeType": "StructuredDocumentation",
                "src": "119:123:59",
                "text": " @title  PoolTogether V4 ITwabRewards\n @author PoolTogether Inc Team\n @notice TwabRewards contract interface."
              },
              "fullyImplemented": false,
              "id": 15493,
              "linearizedBaseContracts": [
                15493
              ],
              "name": "ITwabRewards",
              "nameLocation": "253:12:59",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "ITwabRewards.Promotion",
                  "id": 15393,
                  "members": [
                    {
                      "constant": false,
                      "id": 15377,
                      "mutability": "mutable",
                      "name": "creator",
                      "nameLocation": "941:7:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "933:15:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      },
                      "typeName": {
                        "id": 15376,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "933:7:59",
                        "stateMutability": "nonpayable",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15379,
                      "mutability": "mutable",
                      "name": "startTimestamp",
                      "nameLocation": "965:14:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "958:21:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 15378,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "958:6:59",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15381,
                      "mutability": "mutable",
                      "name": "numberOfEpochs",
                      "nameLocation": "995:14:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "989:20:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 15380,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "989:5:59",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15383,
                      "mutability": "mutable",
                      "name": "epochDuration",
                      "nameLocation": "1026:13:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "1019:20:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint48",
                        "typeString": "uint48"
                      },
                      "typeName": {
                        "id": 15382,
                        "name": "uint48",
                        "nodeType": "ElementaryTypeName",
                        "src": "1019:6:59",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint48",
                          "typeString": "uint48"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15385,
                      "mutability": "mutable",
                      "name": "createdAt",
                      "nameLocation": "1056:9:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "1049:16:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint48",
                        "typeString": "uint48"
                      },
                      "typeName": {
                        "id": 15384,
                        "name": "uint48",
                        "nodeType": "ElementaryTypeName",
                        "src": "1049:6:59",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint48",
                          "typeString": "uint48"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15388,
                      "mutability": "mutable",
                      "name": "token",
                      "nameLocation": "1082:5:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "1075:12:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_contract$_IERC20_$663",
                        "typeString": "contract IERC20"
                      },
                      "typeName": {
                        "id": 15387,
                        "nodeType": "UserDefinedTypeName",
                        "pathNode": {
                          "id": 15386,
                          "name": "IERC20",
                          "nodeType": "IdentifierPath",
                          "referencedDeclaration": 663,
                          "src": "1075:6:59"
                        },
                        "referencedDeclaration": 663,
                        "src": "1075:6:59",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15390,
                      "mutability": "mutable",
                      "name": "tokensPerEpoch",
                      "nameLocation": "1105:14:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "1097:22:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 15389,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1097:7:59",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15392,
                      "mutability": "mutable",
                      "name": "rewardsUnclaimed",
                      "nameLocation": "1137:16:59",
                      "nodeType": "VariableDeclaration",
                      "scope": 15393,
                      "src": "1129:24:59",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 15391,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1129:7:59",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Promotion",
                  "nameLocation": "913:9:59",
                  "nodeType": "StructDefinition",
                  "scope": 15493,
                  "src": "906:254:59",
                  "visibility": "public"
                },
                {
                  "documentation": {
                    "id": 15394,
                    "nodeType": "StructuredDocumentation",
                    "src": "1166:902:59",
                    "text": " @notice Creates a new promotion.\n @dev For sake of simplicity, `msg.sender` will be the creator of the promotion.\n @dev `_latestPromotionId` starts at 0 and is incremented by 1 for each new promotion.\n So the first promotion will have id 1, the second 2, etc.\n @dev The transaction will revert if the amount of reward tokens provided is not equal to `_tokensPerEpoch * _numberOfEpochs`.\n This scenario could happen if the token supplied is a fee on transfer one.\n @param _token Address of the token to be distributed\n @param _startTimestamp Timestamp at which the promotion starts\n @param _tokensPerEpoch Number of tokens to be distributed per epoch\n @param _epochDuration Duration of one epoch in seconds\n @param _numberOfEpochs Number of epochs the promotion will last for\n @return Id of the newly created promotion"
                  },
                  "functionSelector": "66cfae5e",
                  "id": 15410,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "createPromotion",
                  "nameLocation": "2082:15:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15406,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15397,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "2114:6:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15410,
                        "src": "2107:13:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$663",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 15396,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15395,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 663,
                            "src": "2107:6:59"
                          },
                          "referencedDeclaration": 663,
                          "src": "2107:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$663",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15399,
                        "mutability": "mutable",
                        "name": "_startTimestamp",
                        "nameLocation": "2137:15:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15410,
                        "src": "2130:22:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15398,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2130:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15401,
                        "mutability": "mutable",
                        "name": "_tokensPerEpoch",
                        "nameLocation": "2170:15:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15410,
                        "src": "2162:23:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15400,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2162:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15403,
                        "mutability": "mutable",
                        "name": "_epochDuration",
                        "nameLocation": "2202:14:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15410,
                        "src": "2195:21:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint48",
                          "typeString": "uint48"
                        },
                        "typeName": {
                          "id": 15402,
                          "name": "uint48",
                          "nodeType": "ElementaryTypeName",
                          "src": "2195:6:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint48",
                            "typeString": "uint48"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15405,
                        "mutability": "mutable",
                        "name": "_numberOfEpochs",
                        "nameLocation": "2232:15:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15410,
                        "src": "2226:21:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 15404,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2226:5:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2097:156:59"
                  },
                  "returnParameters": {
                    "id": 15409,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15408,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15410,
                        "src": "2272:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15407,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2272:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2271:9:59"
                  },
                  "scope": 15493,
                  "src": "2073:208:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15411,
                    "nodeType": "StructuredDocumentation",
                    "src": "2287:366:59",
                    "text": " @notice End currently active promotion and send promotion tokens back to the creator.\n @dev Will only send back tokens from the epochs that have not completed.\n @param _promotionId Promotion id to end\n @param _to Address that will receive the remaining tokens if there are any left\n @return true if operation was successful"
                  },
                  "functionSelector": "120468a0",
                  "id": 15420,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "endPromotion",
                  "nameLocation": "2667:12:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15416,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15413,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "2688:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15420,
                        "src": "2680:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15412,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2680:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15415,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "2710:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15420,
                        "src": "2702:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15414,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2702:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2679:35:59"
                  },
                  "returnParameters": {
                    "id": 15419,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15418,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15420,
                        "src": "2733:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15417,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2733:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2732:6:59"
                  },
                  "scope": 15493,
                  "src": "2658:81:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15421,
                    "nodeType": "StructuredDocumentation",
                    "src": "2745:518:59",
                    "text": " @notice Delete an inactive promotion and send promotion tokens back to the creator.\n @dev Will send back all the tokens that have not been claimed yet by users.\n @dev This function will revert if the promotion is still active.\n @dev This function will revert if the grace period is not over yet.\n @param _promotionId Promotion id to destroy\n @param _to Address that will receive the remaining tokens if there are any left\n @return True if operation was successful"
                  },
                  "functionSelector": "20555db1",
                  "id": 15430,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "destroyPromotion",
                  "nameLocation": "3277:16:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15426,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15423,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "3302:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15430,
                        "src": "3294:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15422,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3294:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15425,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "3324:3:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15430,
                        "src": "3316:11:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15424,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3316:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3293:35:59"
                  },
                  "returnParameters": {
                    "id": 15429,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15428,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15430,
                        "src": "3347:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15427,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3347:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3346:6:59"
                  },
                  "scope": 15493,
                  "src": "3268:85:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15431,
                    "nodeType": "StructuredDocumentation",
                    "src": "3359:229:59",
                    "text": " @notice Extend promotion by adding more epochs.\n @param _promotionId Id of the promotion to extend\n @param _numberOfEpochs Number of epochs to add\n @return True if the operation was successful"
                  },
                  "functionSelector": "096fe668",
                  "id": 15440,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "extendPromotion",
                  "nameLocation": "3602:15:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15436,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15433,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "3626:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15440,
                        "src": "3618:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15432,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3618:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15435,
                        "mutability": "mutable",
                        "name": "_numberOfEpochs",
                        "nameLocation": "3646:15:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15440,
                        "src": "3640:21:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 15434,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3640:5:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3617:45:59"
                  },
                  "returnParameters": {
                    "id": 15439,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15438,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15440,
                        "src": "3681:4:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15437,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3681:4:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3680:6:59"
                  },
                  "scope": 15493,
                  "src": "3593:94:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15441,
                    "nodeType": "StructuredDocumentation",
                    "src": "3693:418:59",
                    "text": " @notice Claim rewards for a given promotion and epoch.\n @dev Rewards can be claimed on behalf of a user.\n @dev Rewards can only be claimed for a past epoch.\n @param _user Address of the user to claim rewards for\n @param _promotionId Id of the promotion to claim rewards for\n @param _epochIds Epoch ids to claim rewards for\n @return Total amount of rewards claimed"
                  },
                  "functionSelector": "b2456c3a",
                  "id": 15453,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claimRewards",
                  "nameLocation": "4125:12:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15449,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15443,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4155:5:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15453,
                        "src": "4147:13:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15442,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4147:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15445,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "4178:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15453,
                        "src": "4170:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15444,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4170:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15448,
                        "mutability": "mutable",
                        "name": "_epochIds",
                        "nameLocation": "4217:9:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15453,
                        "src": "4200:26:59",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                          "typeString": "uint8[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15446,
                            "name": "uint8",
                            "nodeType": "ElementaryTypeName",
                            "src": "4200:5:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 15447,
                          "nodeType": "ArrayTypeName",
                          "src": "4200:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint8_$dyn_storage_ptr",
                            "typeString": "uint8[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4137:95:59"
                  },
                  "returnParameters": {
                    "id": 15452,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15451,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15453,
                        "src": "4251:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15450,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4251:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4250:9:59"
                  },
                  "scope": 15493,
                  "src": "4116:144:59",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15454,
                    "nodeType": "StructuredDocumentation",
                    "src": "4266:166:59",
                    "text": " @notice Get settings for a specific promotion.\n @param _promotionId Id of the promotion to get settings for\n @return Promotion settings"
                  },
                  "functionSelector": "14fdecca",
                  "id": 15462,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPromotion",
                  "nameLocation": "4446:12:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15457,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15456,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "4467:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15462,
                        "src": "4459:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15455,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4459:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4458:22:59"
                  },
                  "returnParameters": {
                    "id": 15461,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15460,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15462,
                        "src": "4504:16:59",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Promotion_$15393_memory_ptr",
                          "typeString": "struct ITwabRewards.Promotion"
                        },
                        "typeName": {
                          "id": 15459,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15458,
                            "name": "Promotion",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15393,
                            "src": "4504:9:59"
                          },
                          "referencedDeclaration": 15393,
                          "src": "4504:9:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Promotion_$15393_storage_ptr",
                            "typeString": "struct ITwabRewards.Promotion"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4503:18:59"
                  },
                  "scope": 15493,
                  "src": "4437:85:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15463,
                    "nodeType": "StructuredDocumentation",
                    "src": "4528:304:59",
                    "text": " @notice Get the current epoch id of a promotion.\n @dev Epoch ids and their boolean values are tightly packed and stored in a uint256, so epoch id starts at 0.\n @param _promotionId Id of the promotion to get current epoch for\n @return Current epoch id of the promotion"
                  },
                  "functionSelector": "f824d0fb",
                  "id": 15470,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getCurrentEpochId",
                  "nameLocation": "4846:17:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15466,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15465,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "4872:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15470,
                        "src": "4864:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15464,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4864:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4863:22:59"
                  },
                  "returnParameters": {
                    "id": 15469,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15468,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15470,
                        "src": "4909:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15467,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4909:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4908:9:59"
                  },
                  "scope": 15493,
                  "src": "4837:81:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15471,
                    "nodeType": "StructuredDocumentation",
                    "src": "4924:235:59",
                    "text": " @notice Get the total amount of tokens left to be rewarded.\n @param _promotionId Id of the promotion to get the total amount of tokens left to be rewarded for\n @return Amount of tokens left to be rewarded"
                  },
                  "functionSelector": "a4958845",
                  "id": 15478,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRemainingRewards",
                  "nameLocation": "5173:19:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15474,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15473,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "5201:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15478,
                        "src": "5193:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15472,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5193:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5192:22:59"
                  },
                  "returnParameters": {
                    "id": 15477,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15476,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15478,
                        "src": "5238:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15475,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5238:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5237:9:59"
                  },
                  "scope": 15493,
                  "src": "5164:83:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15479,
                    "nodeType": "StructuredDocumentation",
                    "src": "5253:654:59",
                    "text": " @notice Get amount of tokens to be rewarded for a given epoch.\n @dev Rewards amount can only be retrieved for epochs that are over.\n @dev Will revert if `_epochId` is over the total number of epochs or if epoch is not over.\n @dev Will return 0 if the user average balance of tickets is 0.\n @dev Will be 0 if user has already claimed rewards for the epoch.\n @param _user Address of the user to get amount of rewards for\n @param _promotionId Id of the promotion from which the epoch is\n @param _epochIds Epoch ids to get reward amount for\n @return Amount of tokens per epoch to be rewarded"
                  },
                  "functionSelector": "0b011a16",
                  "id": 15492,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRewardsAmount",
                  "nameLocation": "5921:16:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15487,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15481,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "5955:5:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15492,
                        "src": "5947:13:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15480,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5947:7:59",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15483,
                        "mutability": "mutable",
                        "name": "_promotionId",
                        "nameLocation": "5978:12:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15492,
                        "src": "5970:20:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15482,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5970:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15486,
                        "mutability": "mutable",
                        "name": "_epochIds",
                        "nameLocation": "6017:9:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 15492,
                        "src": "6000:26:59",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint8_$dyn_calldata_ptr",
                          "typeString": "uint8[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15484,
                            "name": "uint8",
                            "nodeType": "ElementaryTypeName",
                            "src": "6000:5:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 15485,
                          "nodeType": "ArrayTypeName",
                          "src": "6000:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint8_$dyn_storage_ptr",
                            "typeString": "uint8[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5937:95:59"
                  },
                  "returnParameters": {
                    "id": 15491,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15490,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15492,
                        "src": "6056:16:59",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15488,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6056:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15489,
                          "nodeType": "ArrayTypeName",
                          "src": "6056:9:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6055:18:59"
                  },
                  "scope": 15493,
                  "src": "5912:162:59",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15494,
              "src": "243:5833:59",
              "usedErrors": []
            }
          ],
          "src": "37:6040:59"
        },
        "id": 59
      },
      "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "BeaconTimelockTrigger": [
              15584
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IBeaconTimelockTrigger": [
              16199
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributionFactory": [
              16284
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 15585,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15495,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:60"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 15496,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15585,
              "sourceUnit": 8333,
              "src": "59:68:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 15497,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15585,
              "sourceUnit": 8410,
              "src": "128:68:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15498,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15585,
              "sourceUnit": 3104,
              "src": "197:72:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol",
              "file": "./interfaces/IBeaconTimelockTrigger.sol",
              "id": 15499,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15585,
              "sourceUnit": 16200,
              "src": "270:49:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./interfaces/IPrizeDistributionFactory.sol",
              "id": 15500,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15585,
              "sourceUnit": 16285,
              "src": "320:52:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15501,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15585,
              "sourceUnit": 16275,
              "src": "373:50:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15503,
                    "name": "IBeaconTimelockTrigger",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16199,
                    "src": "905:22:60"
                  },
                  "id": 15504,
                  "nodeType": "InheritanceSpecifier",
                  "src": "905:22:60"
                },
                {
                  "baseName": {
                    "id": 15505,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "929:10:60"
                  },
                  "id": 15506,
                  "nodeType": "InheritanceSpecifier",
                  "src": "929:10:60"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15502,
                "nodeType": "StructuredDocumentation",
                "src": "425:445:60",
                "text": " @title  PoolTogether V4 BeaconTimelockTrigger\n @author PoolTogether Inc Team\n @notice The BeaconTimelockTrigger smart contract is an upgrade of the L1TimelockTimelock smart contract.\nReducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will\nonly pass the total supply of all tickets in a \"PrizePool Network\" to the prize distribution factory contract."
              },
              "fullyImplemented": true,
              "id": 15584,
              "linearizedBaseContracts": [
                15584,
                3103,
                3258,
                16199
              ],
              "name": "BeaconTimelockTrigger",
              "nameLocation": "880:21:60",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 15507,
                    "nodeType": "StructuredDocumentation",
                    "src": "1000:47:60",
                    "text": "@notice PrizeDistributionFactory reference."
                  },
                  "functionSelector": "78e072a9",
                  "id": 15510,
                  "mutability": "immutable",
                  "name": "prizeDistributionFactory",
                  "nameLocation": "1095:24:60",
                  "nodeType": "VariableDeclaration",
                  "scope": 15584,
                  "src": "1052:67:60",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                    "typeString": "contract IPrizeDistributionFactory"
                  },
                  "typeName": {
                    "id": 15509,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15508,
                      "name": "IPrizeDistributionFactory",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16284,
                      "src": "1052:25:60"
                    },
                    "referencedDeclaration": 16284,
                    "src": "1052:25:60",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                      "typeString": "contract IPrizeDistributionFactory"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15511,
                    "nodeType": "StructuredDocumentation",
                    "src": "1126:45:60",
                    "text": "@notice DrawCalculatorTimelock reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 15514,
                  "mutability": "immutable",
                  "name": "timelock",
                  "nameLocation": "1217:8:60",
                  "nodeType": "VariableDeclaration",
                  "scope": 15584,
                  "src": "1176:49:60",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 15513,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15512,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16274,
                      "src": "1176:23:60"
                    },
                    "referencedDeclaration": 16274,
                    "src": "1176:23:60",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15542,
                    "nodeType": "Block",
                    "src": "1697:160:60",
                    "statements": [
                      {
                        "expression": {
                          "id": 15531,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15529,
                            "name": "prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15510,
                            "src": "1707:24:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15530,
                            "name": "_prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15520,
                            "src": "1734:25:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "src": "1707:52:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "id": 15532,
                        "nodeType": "ExpressionStatement",
                        "src": "1707:52:60"
                      },
                      {
                        "expression": {
                          "id": 15535,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15533,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15514,
                            "src": "1769:8:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15534,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15523,
                            "src": "1780:9:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "1769:20:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 15536,
                        "nodeType": "ExpressionStatement",
                        "src": "1769:20:60"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15538,
                              "name": "_prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15520,
                              "src": "1813:25:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            {
                              "id": 15539,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15523,
                              "src": "1840:9:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                                "typeString": "contract IPrizeDistributionFactory"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 15537,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16179,
                            "src": "1804:8:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IPrizeDistributionFactory_$16284_$_t_contract$_IDrawCalculatorTimelock_$16274_$returns$__$",
                              "typeString": "function (contract IPrizeDistributionFactory,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 15540,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1804:46:60",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15541,
                        "nodeType": "EmitStatement",
                        "src": "1799:51:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15515,
                    "nodeType": "StructuredDocumentation",
                    "src": "1281:249:60",
                    "text": " @notice Initialize BeaconTimelockTrigger smart contract.\n @param _owner The smart contract owner\n @param _prizeDistributionFactory PrizeDistributionFactory address\n @param _timelock DrawCalculatorTimelock address"
                  },
                  "id": 15543,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15526,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15517,
                          "src": "1689:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15527,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15525,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "1681:7:60"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1681:15:60"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15524,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15517,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1564:6:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 15543,
                        "src": "1556:14:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15516,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1556:7:60",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15520,
                        "mutability": "mutable",
                        "name": "_prizeDistributionFactory",
                        "nameLocation": "1606:25:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 15543,
                        "src": "1580:51:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 15519,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15518,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16284,
                            "src": "1580:25:60"
                          },
                          "referencedDeclaration": 16284,
                          "src": "1580:25:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15523,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "1665:9:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 15543,
                        "src": "1641:33:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15522,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15521,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "1641:23:60"
                          },
                          "referencedDeclaration": 16274,
                          "src": "1641:23:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1546:134:60"
                  },
                  "returnParameters": {
                    "id": 15528,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1697:0:60"
                  },
                  "scope": 15584,
                  "src": "1535:322:60",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    16198
                  ],
                  "body": {
                    "id": 15582,
                    "nodeType": "Block",
                    "src": "2051:338:60",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15558,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15547,
                                "src": "2075:5:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15559,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "2075:12:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 15564,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15560,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15547,
                                  "src": "2089:5:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15561,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8171,
                                "src": "2089:15:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 15562,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15547,
                                  "src": "2107:5:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15563,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8175,
                                "src": "2107:25:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2089:43:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 15555,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15514,
                              "src": "2061:8:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 15557,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16246,
                            "src": "2061:13:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 15565,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2061:72:60",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15566,
                        "nodeType": "ExpressionStatement",
                        "src": "2061:72:60"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15570,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15547,
                                "src": "2190:5:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15571,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "2190:12:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15572,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15549,
                              "src": "2204:25:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 15567,
                              "name": "prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15510,
                              "src": "2143:24:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            "id": 15569,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16283,
                            "src": "2143:46:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,uint256) external"
                            }
                          },
                          "id": 15573,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2143:87:60",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15574,
                        "nodeType": "ExpressionStatement",
                        "src": "2143:87:60"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15576,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15547,
                                "src": "2302:5:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15577,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "2302:12:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15578,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15547,
                              "src": "2328:5:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            {
                              "id": 15579,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15549,
                              "src": "2347:25:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15575,
                            "name": "DrawLockedAndTotalNetworkTicketSupplyPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16189,
                            "src": "2245:43:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$8176_memory_ptr_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory,uint256)"
                            }
                          },
                          "id": 15580,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2245:137:60",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15581,
                        "nodeType": "EmitStatement",
                        "src": "2240:142:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15544,
                    "nodeType": "StructuredDocumentation",
                    "src": "1863:38:60",
                    "text": "@inheritdoc IBeaconTimelockTrigger"
                  },
                  "functionSelector": "a913c9da",
                  "id": 15583,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15553,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15552,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "2028:18:60"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2028:18:60"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "1915:4:60",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15551,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2011:8:60"
                  },
                  "parameters": {
                    "id": 15550,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15547,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "1944:5:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 15583,
                        "src": "1920:29:60",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15546,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15545,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "1920:16:60"
                          },
                          "referencedDeclaration": 8176,
                          "src": "1920:16:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15549,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "1959:25:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 15583,
                        "src": "1951:33:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15548,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1951:7:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1919:66:60"
                  },
                  "returnParameters": {
                    "id": 15554,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2051:0:60"
                  },
                  "scope": 15584,
                  "src": "1906:483:60",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15585,
              "src": "871:1520:60",
              "usedErrors": []
            }
          ],
          "src": "36:2356:60"
        },
        "id": 60
      },
      "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawCalculatorTimelock": [
              15824
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 15825,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15586,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:61"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15587,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15825,
              "sourceUnit": 3104,
              "src": "61:72:61",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15588,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15825,
              "sourceUnit": 16275,
              "src": "135:50:61",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15590,
                    "name": "IDrawCalculatorTimelock",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16274,
                    "src": "760:23:61"
                  },
                  "id": 15591,
                  "nodeType": "InheritanceSpecifier",
                  "src": "760:23:61"
                },
                {
                  "baseName": {
                    "id": 15592,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "785:10:61"
                  },
                  "id": 15593,
                  "nodeType": "InheritanceSpecifier",
                  "src": "785:10:61"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15589,
                "nodeType": "StructuredDocumentation",
                "src": "187:537:61",
                "text": " @title  PoolTogether V4 OracleTimelock\n @author PoolTogether Inc Team\n @notice OracleTimelock(s) acts as an intermediary between multiple V4 smart contracts.\nThe OracleTimelock is responsible for pushing Draws to a DrawBuffer and routing\nclaim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\nto include a \"cooldown\" period for all new Draws. Allowing the correction of a\nmaliciously set Draw in the unfortunate event an Owner is compromised."
              },
              "fullyImplemented": true,
              "id": 15824,
              "linearizedBaseContracts": [
                15824,
                3103,
                3258,
                16274
              ],
              "name": "DrawCalculatorTimelock",
              "nameLocation": "734:22:61",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 15594,
                    "nodeType": "StructuredDocumentation",
                    "src": "856:46:61",
                    "text": "@notice Internal DrawCalculator reference."
                  },
                  "id": 15597,
                  "mutability": "immutable",
                  "name": "calculator",
                  "nameLocation": "942:10:61",
                  "nodeType": "VariableDeclaration",
                  "scope": 15824,
                  "src": "907:45:61",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                    "typeString": "contract IDrawCalculator"
                  },
                  "typeName": {
                    "id": 15596,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15595,
                      "name": "IDrawCalculator",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8482,
                      "src": "907:15:61"
                    },
                    "referencedDeclaration": 8482,
                    "src": "907:15:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                      "typeString": "contract IDrawCalculator"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15598,
                    "nodeType": "StructuredDocumentation",
                    "src": "959:47:61",
                    "text": "@notice Internal Timelock struct reference."
                  },
                  "id": 15601,
                  "mutability": "mutable",
                  "name": "timelock",
                  "nameLocation": "1029:8:61",
                  "nodeType": "VariableDeclaration",
                  "scope": 15824,
                  "src": "1011:26:61",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                    "typeString": "struct IDrawCalculatorTimelock.Timelock"
                  },
                  "typeName": {
                    "id": 15600,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15599,
                      "name": "Timelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16207,
                      "src": "1011:8:61"
                    },
                    "referencedDeclaration": 16207,
                    "src": "1011:8:61",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                      "typeString": "struct IDrawCalculatorTimelock.Timelock"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15602,
                    "nodeType": "StructuredDocumentation",
                    "src": "1088:147:61",
                    "text": " @notice Deployed event when the constructor is called\n @param drawCalculator DrawCalculator address bound to this timelock"
                  },
                  "id": 15607,
                  "name": "Deployed",
                  "nameLocation": "1246:8:61",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15606,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15605,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawCalculator",
                        "nameLocation": "1279:14:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15607,
                        "src": "1255:38:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 15604,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15603,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "1255:15:61"
                          },
                          "referencedDeclaration": 8482,
                          "src": "1255:15:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1254:40:61"
                  },
                  "src": "1240:55:61"
                },
                {
                  "body": {
                    "id": 15627,
                    "nodeType": "Block",
                    "src": "1652:78:61",
                    "statements": [
                      {
                        "expression": {
                          "id": 15621,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15619,
                            "name": "calculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15597,
                            "src": "1662:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15620,
                            "name": "_calculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15613,
                            "src": "1675:11:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "src": "1662:24:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "id": 15622,
                        "nodeType": "ExpressionStatement",
                        "src": "1662:24:61"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15624,
                              "name": "_calculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15613,
                              "src": "1711:11:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 15623,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15607,
                            "src": "1702:8:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawCalculator_$8482_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 15625,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1702:21:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15626,
                        "nodeType": "EmitStatement",
                        "src": "1697:26:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15608,
                    "nodeType": "StructuredDocumentation",
                    "src": "1345:229:61",
                    "text": " @notice Initialize DrawCalculatorTimelockTrigger smart contract.\n @param _owner                       Address of the DrawCalculator owner.\n @param _calculator                 DrawCalculator address."
                  },
                  "id": 15628,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15616,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15610,
                          "src": "1644:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15617,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15615,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "1636:7:61"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1636:15:61"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15614,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15610,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1599:6:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15628,
                        "src": "1591:14:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15609,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1591:7:61",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15613,
                        "mutability": "mutable",
                        "name": "_calculator",
                        "nameLocation": "1623:11:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15628,
                        "src": "1607:27:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 15612,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15611,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "1607:15:61"
                          },
                          "referencedDeclaration": 8482,
                          "src": "1607:15:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1590:45:61"
                  },
                  "returnParameters": {
                    "id": 15618,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1652:0:61"
                  },
                  "scope": 15824,
                  "src": "1579:151:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    16236
                  ],
                  "body": {
                    "id": 15682,
                    "nodeType": "Block",
                    "src": "2011:361:61",
                    "statements": [
                      {
                        "assignments": [
                          15647
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15647,
                            "mutability": "mutable",
                            "name": "_timelock",
                            "nameLocation": "2037:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 15682,
                            "src": "2021:25:61",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock"
                            },
                            "typeName": {
                              "id": 15646,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 15645,
                                "name": "Timelock",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16207,
                                "src": "2021:8:61"
                              },
                              "referencedDeclaration": 16207,
                              "src": "2021:8:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15649,
                        "initialValue": {
                          "id": 15648,
                          "name": "timelock",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15601,
                          "src": "2049:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2021:36:61"
                      },
                      {
                        "body": {
                          "id": 15673,
                          "nodeType": "Block",
                          "src": "2113:194:61",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 15666,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 15661,
                                    "name": "drawIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15634,
                                    "src": "2198:7:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                      "typeString": "uint32[] calldata"
                                    }
                                  },
                                  "id": 15663,
                                  "indexExpression": {
                                    "id": 15662,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15651,
                                    "src": "2206:1:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2198:10:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 15664,
                                    "name": "_timelock",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15647,
                                    "src": "2212:9:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                      "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                    }
                                  },
                                  "id": 15665,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "drawId",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 16206,
                                  "src": "2212:16:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "2198:30:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 15672,
                              "nodeType": "IfStatement",
                              "src": "2194:103:61",
                              "trueBody": {
                                "id": 15671,
                                "nodeType": "Block",
                                "src": "2230:67:61",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 15668,
                                          "name": "_timelock",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15647,
                                          "src": "2272:9:61",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                            "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                            "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                          }
                                        ],
                                        "id": 15667,
                                        "name": "_requireTimelockElapsed",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15823,
                                        "src": "2248:23:61",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$16207_memory_ptr_$returns$__$",
                                          "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view"
                                        }
                                      },
                                      "id": 15669,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "2248:34:61",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 15670,
                                    "nodeType": "ExpressionStatement",
                                    "src": "2248:34:61"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15657,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15654,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15651,
                            "src": "2088:1:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 15655,
                              "name": "drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15634,
                              "src": "2092:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            "id": 15656,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2092:14:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2088:18:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15674,
                        "initializationExpression": {
                          "assignments": [
                            15651
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 15651,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "2081:1:61",
                              "nodeType": "VariableDeclaration",
                              "scope": 15674,
                              "src": "2073:9:61",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 15650,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2073:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 15653,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 15652,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2085:1:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2073:13:61"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15659,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2108:3:61",
                            "subExpression": {
                              "id": 15658,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15651,
                              "src": "2108:1:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15660,
                          "nodeType": "ExpressionStatement",
                          "src": "2108:3:61"
                        },
                        "nodeType": "ForStatement",
                        "src": "2068:239:61"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15677,
                              "name": "user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15631,
                              "src": "2345:4:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15678,
                              "name": "drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15634,
                              "src": "2351:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            {
                              "id": 15679,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15636,
                              "src": "2360:4:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              },
                              {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            ],
                            "expression": {
                              "id": 15675,
                              "name": "calculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15597,
                              "src": "2324:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                                "typeString": "contract IDrawCalculator"
                              }
                            },
                            "id": 15676,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "calculate",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8455,
                            "src": "2324:20:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$_t_array$_t_uint32_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                              "typeString": "function (address,uint32[] memory,bytes memory) view external returns (uint256[] memory,bytes memory)"
                            }
                          },
                          "id": 15680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2324:41:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "functionReturnParameters": 15644,
                        "id": 15681,
                        "nodeType": "Return",
                        "src": "2317:48:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15629,
                    "nodeType": "StructuredDocumentation",
                    "src": "1792:39:61",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "aaca392e",
                  "id": 15683,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "1845:9:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15638,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1961:8:61"
                  },
                  "parameters": {
                    "id": 15637,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15631,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1872:4:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15683,
                        "src": "1864:12:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15630,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1864:7:61",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15634,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1904:7:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15683,
                        "src": "1886:25:61",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15632,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1886:6:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 15633,
                          "nodeType": "ArrayTypeName",
                          "src": "1886:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15636,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "1936:4:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15683,
                        "src": "1921:19:61",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 15635,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1921:5:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1854:92:61"
                  },
                  "returnParameters": {
                    "id": 15644,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15641,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15683,
                        "src": "1979:16:61",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15639,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1979:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15640,
                          "nodeType": "ArrayTypeName",
                          "src": "1979:9:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15643,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15683,
                        "src": "1997:12:61",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 15642,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1997:5:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1978:32:61"
                  },
                  "scope": 15824,
                  "src": "1836:536:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16246
                  ],
                  "body": {
                    "id": 15729,
                    "nodeType": "Block",
                    "src": "2559:315:61",
                    "statements": [
                      {
                        "assignments": [
                          15698
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15698,
                            "mutability": "mutable",
                            "name": "_timelock",
                            "nameLocation": "2585:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 15729,
                            "src": "2569:25:61",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock"
                            },
                            "typeName": {
                              "id": 15697,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 15696,
                                "name": "Timelock",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16207,
                                "src": "2569:8:61"
                              },
                              "referencedDeclaration": 16207,
                              "src": "2569:8:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15700,
                        "initialValue": {
                          "id": 15699,
                          "name": "timelock",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15601,
                          "src": "2597:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2569:36:61"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 15707,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15702,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15686,
                                "src": "2623:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 15706,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 15703,
                                    "name": "_timelock",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15698,
                                    "src": "2634:9:61",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                      "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                    }
                                  },
                                  "id": 15704,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "drawId",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 16206,
                                  "src": "2634:16:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "hexValue": "31",
                                  "id": 15705,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2653:1:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "2634:20:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2623:31:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f4d2f6e6f742d6472617769642d706c75732d6f6e65",
                              "id": 15708,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2656:24:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_a71dbedad0a9bb0ec5b3d22a69b03c3a407fe8d356a0633da67309c7fc7e9844",
                                "typeString": "literal_string \"OM/not-drawid-plus-one\""
                              },
                              "value": "OM/not-drawid-plus-one"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_a71dbedad0a9bb0ec5b3d22a69b03c3a407fe8d356a0633da67309c7fc7e9844",
                                "typeString": "literal_string \"OM/not-drawid-plus-one\""
                              }
                            ],
                            "id": 15701,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2615:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15709,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2615:66:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15710,
                        "nodeType": "ExpressionStatement",
                        "src": "2615:66:61"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15712,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15698,
                              "src": "2716:9:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            ],
                            "id": 15711,
                            "name": "_requireTimelockElapsed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15823,
                            "src": "2692:23:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$16207_memory_ptr_$returns$__$",
                              "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view"
                            }
                          },
                          "id": 15713,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2692:34:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15714,
                        "nodeType": "ExpressionStatement",
                        "src": "2692:34:61"
                      },
                      {
                        "expression": {
                          "id": 15720,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15715,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15601,
                            "src": "2736:8:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 15717,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15686,
                                "src": "2766:7:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 15718,
                                "name": "_timestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15688,
                                "src": "2786:10:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              ],
                              "id": 15716,
                              "name": "Timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16207,
                              "src": "2747:8:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_struct$_Timelock_$16207_storage_ptr_$",
                                "typeString": "type(struct IDrawCalculatorTimelock.Timelock storage pointer)"
                              }
                            },
                            "id": 15719,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "structConstructorCall",
                            "lValueRequested": false,
                            "names": [
                              "drawId",
                              "timestamp"
                            ],
                            "nodeType": "FunctionCall",
                            "src": "2747:52:61",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                            }
                          },
                          "src": "2736:63:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "id": 15721,
                        "nodeType": "ExpressionStatement",
                        "src": "2736:63:61"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15723,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15686,
                              "src": "2825:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15724,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15688,
                              "src": "2834:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 15722,
                            "name": "LockedDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16214,
                            "src": "2814:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint64_$returns$__$",
                              "typeString": "function (uint32,uint64)"
                            }
                          },
                          "id": 15725,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2814:31:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15726,
                        "nodeType": "EmitStatement",
                        "src": "2809:36:61"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 15727,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2863:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 15695,
                        "id": 15728,
                        "nodeType": "Return",
                        "src": "2856:11:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15684,
                    "nodeType": "StructuredDocumentation",
                    "src": "2378:39:61",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "8871189b",
                  "id": 15730,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15692,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15691,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "2513:18:61"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2513:18:61"
                    }
                  ],
                  "name": "lock",
                  "nameLocation": "2431:4:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15690,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2496:8:61"
                  },
                  "parameters": {
                    "id": 15689,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15686,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "2443:7:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15730,
                        "src": "2436:14:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15685,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2436:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15688,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "2459:10:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15730,
                        "src": "2452:17:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15687,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2452:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2435:35:61"
                  },
                  "returnParameters": {
                    "id": 15695,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15694,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15730,
                        "src": "2549:4:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15693,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2549:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2548:6:61"
                  },
                  "scope": 15824,
                  "src": "2422:452:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16253
                  ],
                  "body": {
                    "id": 15740,
                    "nodeType": "Block",
                    "src": "3002:34:61",
                    "statements": [
                      {
                        "expression": {
                          "id": 15738,
                          "name": "calculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15597,
                          "src": "3019:10:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 15737,
                        "id": 15739,
                        "nodeType": "Return",
                        "src": "3012:17:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15731,
                    "nodeType": "StructuredDocumentation",
                    "src": "2880:39:61",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 15741,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "2933:17:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15733,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2967:8:61"
                  },
                  "parameters": {
                    "id": 15732,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2950:2:61"
                  },
                  "returnParameters": {
                    "id": 15737,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15736,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15741,
                        "src": "2985:15:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 15735,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15734,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "2985:15:61"
                          },
                          "referencedDeclaration": 8482,
                          "src": "2985:15:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2984:17:61"
                  },
                  "scope": 15824,
                  "src": "2924:112:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16260
                  ],
                  "body": {
                    "id": 15751,
                    "nodeType": "Block",
                    "src": "3158:32:61",
                    "statements": [
                      {
                        "expression": {
                          "id": 15749,
                          "name": "timelock",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15601,
                          "src": "3175:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "functionReturnParameters": 15748,
                        "id": 15750,
                        "nodeType": "Return",
                        "src": "3168:15:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15742,
                    "nodeType": "StructuredDocumentation",
                    "src": "3042:39:61",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "6221a54b",
                  "id": 15752,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTimelock",
                  "nameLocation": "3095:11:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15744,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3123:8:61"
                  },
                  "parameters": {
                    "id": 15743,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3106:2:61"
                  },
                  "returnParameters": {
                    "id": 15748,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15747,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15752,
                        "src": "3141:15:61",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15746,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15745,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16207,
                            "src": "3141:8:61"
                          },
                          "referencedDeclaration": 16207,
                          "src": "3141:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3140:17:61"
                  },
                  "scope": 15824,
                  "src": "3086:104:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16267
                  ],
                  "body": {
                    "id": 15770,
                    "nodeType": "Block",
                    "src": "3316:75:61",
                    "statements": [
                      {
                        "expression": {
                          "id": 15764,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15762,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15601,
                            "src": "3326:8:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15763,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15756,
                            "src": "3337:9:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                            }
                          },
                          "src": "3326:20:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "id": 15765,
                        "nodeType": "ExpressionStatement",
                        "src": "3326:20:61"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15767,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15756,
                              "src": "3374:9:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            ],
                            "id": 15766,
                            "name": "TimelockSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16220,
                            "src": "3362:11:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Timelock_$16207_memory_ptr_$returns$__$",
                              "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory)"
                            }
                          },
                          "id": 15768,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3362:22:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15769,
                        "nodeType": "EmitStatement",
                        "src": "3357:27:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15753,
                    "nodeType": "StructuredDocumentation",
                    "src": "3196:39:61",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "bdf28f5e",
                  "id": 15771,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15760,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15759,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3244,
                        "src": "3306:9:61"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3306:9:61"
                    }
                  ],
                  "name": "setTimelock",
                  "nameLocation": "3249:11:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15758,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3297:8:61"
                  },
                  "parameters": {
                    "id": 15757,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15756,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "3277:9:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15771,
                        "src": "3261:25:61",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15755,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15754,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16207,
                            "src": "3261:8:61"
                          },
                          "referencedDeclaration": 16207,
                          "src": "3261:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3260:27:61"
                  },
                  "returnParameters": {
                    "id": 15761,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3316:0:61"
                  },
                  "scope": 15824,
                  "src": "3240:151:61",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16273
                  ],
                  "body": {
                    "id": 15782,
                    "nodeType": "Block",
                    "src": "3501:53:61",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15779,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15601,
                              "src": "3538:8:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Timelock_$16207_storage",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                              }
                            ],
                            "id": 15778,
                            "name": "_timelockHasElapsed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15808,
                            "src": "3518:19:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$16207_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view returns (bool)"
                            }
                          },
                          "id": 15780,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3518:29:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 15777,
                        "id": 15781,
                        "nodeType": "Return",
                        "src": "3511:36:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15772,
                    "nodeType": "StructuredDocumentation",
                    "src": "3397:39:61",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "d3a9c612",
                  "id": 15783,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "hasElapsed",
                  "nameLocation": "3450:10:61",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15774,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3477:8:61"
                  },
                  "parameters": {
                    "id": 15773,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3460:2:61"
                  },
                  "returnParameters": {
                    "id": 15777,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15776,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15783,
                        "src": "3495:4:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15775,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3495:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3494:6:61"
                  },
                  "scope": 15824,
                  "src": "3441:113:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15807,
                    "nodeType": "Block",
                    "src": "3800:271:61",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 15795,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 15792,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15787,
                              "src": "3884:9:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            },
                            "id": 15793,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16204,
                            "src": "3884:19:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 15794,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3907:1:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3884:24:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15799,
                        "nodeType": "IfStatement",
                        "src": "3880:66:61",
                        "trueBody": {
                          "id": 15798,
                          "nodeType": "Block",
                          "src": "3910:36:61",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "74727565",
                                "id": 15796,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3931:4:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "true"
                              },
                              "functionReturnParameters": 15791,
                              "id": 15797,
                              "nodeType": "Return",
                              "src": "3924:11:61"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15804,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15800,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "4026:5:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 15801,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "4026:15:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "expression": {
                                  "id": 15802,
                                  "name": "_timelock",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15787,
                                  "src": "4044:9:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                    "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                  }
                                },
                                "id": 15803,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 16204,
                                "src": "4044:19:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "src": "4026:37:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 15805,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "4025:39:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 15791,
                        "id": 15806,
                        "nodeType": "Return",
                        "src": "4018:46:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15784,
                    "nodeType": "StructuredDocumentation",
                    "src": "3616:94:61",
                    "text": " @notice Read global DrawCalculator variable.\n @return IDrawCalculator"
                  },
                  "id": 15808,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_timelockHasElapsed",
                  "nameLocation": "3724:19:61",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15788,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15787,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "3760:9:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15808,
                        "src": "3744:25:61",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15786,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15785,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16207,
                            "src": "3744:8:61"
                          },
                          "referencedDeclaration": 16207,
                          "src": "3744:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3743:27:61"
                  },
                  "returnParameters": {
                    "id": 15791,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15790,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15808,
                        "src": "3794:4:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15789,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3794:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3793:6:61"
                  },
                  "scope": 15824,
                  "src": "3715:356:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15822,
                    "nodeType": "Block",
                    "src": "4279:83:61",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 15817,
                                  "name": "_timelock",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15812,
                                  "src": "4317:9:61",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                    "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                                    "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                  }
                                ],
                                "id": 15816,
                                "name": "_timelockHasElapsed",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15808,
                                "src": "4297:19:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$16207_memory_ptr_$returns$_t_bool_$",
                                  "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view returns (bool)"
                                }
                              },
                              "id": 15818,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4297:30:61",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f4d2f74696d656c6f636b2d6e6f742d65787069726564",
                              "id": 15819,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4329:25:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3b94bf08c62f227970785d1aa1846dcc2e65986b745b5e79ce64e97e577b1104",
                                "typeString": "literal_string \"OM/timelock-not-expired\""
                              },
                              "value": "OM/timelock-not-expired"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3b94bf08c62f227970785d1aa1846dcc2e65986b745b5e79ce64e97e577b1104",
                                "typeString": "literal_string \"OM/timelock-not-expired\""
                              }
                            ],
                            "id": 15815,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4289:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15820,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4289:66:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15821,
                        "nodeType": "ExpressionStatement",
                        "src": "4289:66:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15809,
                    "nodeType": "StructuredDocumentation",
                    "src": "4077:123:61",
                    "text": " @notice Require the timelock \"cooldown\" period has elapsed\n @param _timelock the Timelock to check"
                  },
                  "id": 15823,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireTimelockElapsed",
                  "nameLocation": "4214:23:61",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15813,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15812,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "4254:9:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 15823,
                        "src": "4238:25:61",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15811,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15810,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16207,
                            "src": "4238:8:61"
                          },
                          "referencedDeclaration": 16207,
                          "src": "4238:8:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4237:27:61"
                  },
                  "returnParameters": {
                    "id": 15814,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4279:0:61"
                  },
                  "scope": 15824,
                  "src": "4205:157:61",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 15825,
              "src": "725:3639:61",
              "usedErrors": []
            }
          ],
          "src": "37:4328:61"
        },
        "id": 61
      },
      "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "L1TimelockTrigger": [
              15926
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 15927,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15826,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:62"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15827,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15927,
              "sourceUnit": 3104,
              "src": "59:72:62",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "id": 15828,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15927,
              "sourceUnit": 8588,
              "src": "132:81:62",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15829,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15927,
              "sourceUnit": 16275,
              "src": "214:50:62",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15831,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "843:10:62"
                  },
                  "id": 15832,
                  "nodeType": "InheritanceSpecifier",
                  "src": "843:10:62"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15830,
                "nodeType": "StructuredDocumentation",
                "src": "266:546:62",
                "text": " @title  PoolTogether V4 L1TimelockTrigger\n @author PoolTogether Inc Team\n @notice L1TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts.\nThe L1TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing\nclaim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\nto  include a \"cooldown\" period for all new Draws. Allowing the correction of a\nmalicously set Draw in the unfortunate event an Owner is compromised."
              },
              "fullyImplemented": true,
              "id": 15926,
              "linearizedBaseContracts": [
                15926,
                3103,
                3258
              ],
              "name": "L1TimelockTrigger",
              "nameLocation": "822:17:62",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15833,
                    "nodeType": "StructuredDocumentation",
                    "src": "904:210:62",
                    "text": "@notice Emitted when the contract is deployed.\n @param prizeDistributionBuffer The address of the prize distribution buffer contract.\n @param timelock The address of the DrawCalculatorTimelock"
                  },
                  "id": 15841,
                  "name": "Deployed",
                  "nameLocation": "1125:8:62",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15840,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15836,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionBuffer",
                        "nameLocation": "1176:23:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15841,
                        "src": "1143:56:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15835,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15834,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "1143:24:62"
                          },
                          "referencedDeclaration": 8587,
                          "src": "1143:24:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15839,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "1241:8:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15841,
                        "src": "1209:40:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15838,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15837,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "1209:23:62"
                          },
                          "referencedDeclaration": 16274,
                          "src": "1209:23:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1133:122:62"
                  },
                  "src": "1119:137:62"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15842,
                    "nodeType": "StructuredDocumentation",
                    "src": "1262:158:62",
                    "text": " @notice Emitted when target prize distribution is pushed.\n @param drawId    Draw ID\n @param prizeDistribution PrizeDistribution"
                  },
                  "id": 15849,
                  "name": "PrizeDistributionPushed",
                  "nameLocation": "1431:23:62",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15848,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15844,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1479:6:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15849,
                        "src": "1464:21:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15843,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1464:6:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15847,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1538:17:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15849,
                        "src": "1495:60:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15846,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15845,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "1495:42:62"
                          },
                          "referencedDeclaration": 8506,
                          "src": "1495:42:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1454:107:62"
                  },
                  "src": "1425:137:62"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15850,
                    "nodeType": "StructuredDocumentation",
                    "src": "1622:55:62",
                    "text": "@notice Internal PrizeDistributionBuffer reference."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 15853,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1724:23:62",
                  "nodeType": "VariableDeclaration",
                  "scope": 15926,
                  "src": "1682:65:62",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 15852,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15851,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8587,
                      "src": "1682:24:62"
                    },
                    "referencedDeclaration": 8587,
                    "src": "1682:24:62",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15854,
                    "nodeType": "StructuredDocumentation",
                    "src": "1754:38:62",
                    "text": "@notice Timelock struct reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 15857,
                  "mutability": "mutable",
                  "name": "timelock",
                  "nameLocation": "1828:8:62",
                  "nodeType": "VariableDeclaration",
                  "scope": 15926,
                  "src": "1797:39:62",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 15856,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15855,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16274,
                      "src": "1797:23:62"
                    },
                    "referencedDeclaration": 16274,
                    "src": "1797:23:62",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15885,
                    "nodeType": "Block",
                    "src": "2359:158:62",
                    "statements": [
                      {
                        "expression": {
                          "id": 15874,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15872,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15853,
                            "src": "2369:23:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15873,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15863,
                            "src": "2395:24:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "2369:50:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 15875,
                        "nodeType": "ExpressionStatement",
                        "src": "2369:50:62"
                      },
                      {
                        "expression": {
                          "id": 15878,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15876,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15857,
                            "src": "2429:8:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15877,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15866,
                            "src": "2440:9:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "2429:20:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 15879,
                        "nodeType": "ExpressionStatement",
                        "src": "2429:20:62"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15881,
                              "name": "_prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15863,
                              "src": "2474:24:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            {
                              "id": 15882,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15866,
                              "src": "2500:9:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 15880,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15841,
                            "src": "2465:8:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IPrizeDistributionBuffer_$8587_$_t_contract$_IDrawCalculatorTimelock_$16274_$returns$__$",
                              "typeString": "function (contract IPrizeDistributionBuffer,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 15883,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2465:45:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15884,
                        "nodeType": "EmitStatement",
                        "src": "2460:50:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15858,
                    "nodeType": "StructuredDocumentation",
                    "src": "1887:307:62",
                    "text": " @notice Initialize L1TimelockTrigger smart contract.\n @param _owner                    Address of the L1TimelockTrigger owner.\n @param _prizeDistributionBuffer PrizeDistributionBuffer address\n @param _timelock                 Elapsed seconds before new Draw is available"
                  },
                  "id": 15886,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15869,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15860,
                          "src": "2351:6:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15870,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15868,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "2343:7:62"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2343:15:62"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15867,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15860,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2228:6:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15886,
                        "src": "2220:14:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15859,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2220:7:62",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15863,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "2269:24:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15886,
                        "src": "2244:49:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15862,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15861,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "2244:24:62"
                          },
                          "referencedDeclaration": 8587,
                          "src": "2244:24:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15866,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "2327:9:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15886,
                        "src": "2303:33:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15865,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15864,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "2303:23:62"
                          },
                          "referencedDeclaration": 16274,
                          "src": "2303:23:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2210:132:62"
                  },
                  "returnParameters": {
                    "id": 15871,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2359:0:62"
                  },
                  "scope": 15926,
                  "src": "2199:318:62",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15924,
                    "nodeType": "Block",
                    "src": "2916:324:62",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15901,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15890,
                                "src": "3014:5:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                                  "typeString": "struct IDrawBeacon.Draw calldata"
                                }
                              },
                              "id": 15902,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "3014:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 15907,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15903,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15890,
                                  "src": "3028:5:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                                    "typeString": "struct IDrawBeacon.Draw calldata"
                                  }
                                },
                                "id": 15904,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8171,
                                "src": "3028:15:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 15905,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15890,
                                  "src": "3046:5:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                                    "typeString": "struct IDrawBeacon.Draw calldata"
                                  }
                                },
                                "id": 15906,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8175,
                                "src": "3046:25:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "3028:43:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 15898,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15857,
                              "src": "3000:8:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 15900,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16246,
                            "src": "3000:13:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 15908,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3000:72:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15909,
                        "nodeType": "ExpressionStatement",
                        "src": "3000:72:62"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15913,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15890,
                                "src": "3128:5:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                                  "typeString": "struct IDrawBeacon.Draw calldata"
                                }
                              },
                              "id": 15914,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "3128:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15915,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15893,
                              "src": "3142:18:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            ],
                            "expression": {
                              "id": 15910,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15853,
                              "src": "3082:23:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 15912,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8575,
                            "src": "3082:45:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution memory) external returns (bool)"
                            }
                          },
                          "id": 15916,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3082:79:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15917,
                        "nodeType": "ExpressionStatement",
                        "src": "3082:79:62"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15919,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15890,
                                "src": "3200:5:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                                  "typeString": "struct IDrawBeacon.Draw calldata"
                                }
                              },
                              "id": 15920,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "3200:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15921,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15893,
                              "src": "3214:18:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            ],
                            "id": 15918,
                            "name": "PrizeDistributionPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15849,
                            "src": "3176:23:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 15922,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3176:57:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15923,
                        "nodeType": "EmitStatement",
                        "src": "3171:62:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15887,
                    "nodeType": "StructuredDocumentation",
                    "src": "2523:221:62",
                    "text": " @notice Push Draw onto draws ring buffer history.\n @dev    Restricts new draws by forcing a push timelock.\n @param _draw Draw struct\n @param _prizeDistribution PrizeDistribution struct"
                  },
                  "functionSelector": "af32b605",
                  "id": 15925,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15896,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15895,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "2897:18:62"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2897:18:62"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "2758:4:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15894,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15890,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "2798:5:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15925,
                        "src": "2772:31:62",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15889,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15888,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "2772:16:62"
                          },
                          "referencedDeclaration": 8176,
                          "src": "2772:16:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15893,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "2863:18:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 15925,
                        "src": "2813:68:62",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15892,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15891,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "2813:42:62"
                          },
                          "referencedDeclaration": 8506,
                          "src": "2813:42:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2762:125:62"
                  },
                  "returnParameters": {
                    "id": 15897,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2916:0:62"
                  },
                  "scope": 15926,
                  "src": "2749:491:62",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15927,
              "src": "813:2429:62",
              "usedErrors": []
            }
          ],
          "src": "36:3207:62"
        },
        "id": 62
      },
      "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "L2TimelockTrigger": [
              16055
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 16056,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15928,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:63"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15929,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16056,
              "sourceUnit": 3104,
              "src": "59:72:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 15930,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16056,
              "sourceUnit": 8333,
              "src": "132:68:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "id": 15931,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16056,
              "sourceUnit": 8588,
              "src": "201:81:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 15932,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16056,
              "sourceUnit": 8410,
              "src": "283:68:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15933,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16056,
              "sourceUnit": 16275,
              "src": "352:50:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15935,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "981:10:63"
                  },
                  "id": 15936,
                  "nodeType": "InheritanceSpecifier",
                  "src": "981:10:63"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15934,
                "nodeType": "StructuredDocumentation",
                "src": "404:546:63",
                "text": " @title  PoolTogether V4 L2TimelockTrigger\n @author PoolTogether Inc Team\n @notice L2TimelockTrigger(s) acts as an intermediary between multiple V4 smart contracts.\nThe L2TimelockTrigger is responsible for pushing Draws to a DrawBuffer and routing\nclaim requests from a PrizeDistributor to a DrawCalculator. The primary objective is\nto  include a \"cooldown\" period for all new Draws. Allowing the correction of a\nmalicously set Draw in the unfortunate event an Owner is compromised."
              },
              "fullyImplemented": true,
              "id": 16055,
              "linearizedBaseContracts": [
                16055,
                3103,
                3258
              ],
              "name": "L2TimelockTrigger",
              "nameLocation": "960:17:63",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15937,
                    "nodeType": "StructuredDocumentation",
                    "src": "998:50:63",
                    "text": "@notice Emitted when the contract is deployed."
                  },
                  "id": 15948,
                  "name": "Deployed",
                  "nameLocation": "1059:8:63",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15947,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15940,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "1097:10:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15948,
                        "src": "1077:30:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15939,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15938,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "1077:11:63"
                          },
                          "referencedDeclaration": 8409,
                          "src": "1077:11:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15943,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionBuffer",
                        "nameLocation": "1150:23:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15948,
                        "src": "1117:56:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15942,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15941,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "1117:24:63"
                          },
                          "referencedDeclaration": 8587,
                          "src": "1117:24:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15946,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "1215:8:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15948,
                        "src": "1183:40:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15945,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15944,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "1183:23:63"
                          },
                          "referencedDeclaration": 16274,
                          "src": "1183:23:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1067:162:63"
                  },
                  "src": "1053:177:63"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15949,
                    "nodeType": "StructuredDocumentation",
                    "src": "1236:190:63",
                    "text": " @notice Emitted when Draw and PrizeDistribution are pushed to external contracts.\n @param drawId            Draw ID\n @param prizeDistribution PrizeDistribution"
                  },
                  "id": 15959,
                  "name": "DrawAndPrizeDistributionPushed",
                  "nameLocation": "1437:30:63",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15958,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15951,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1492:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15959,
                        "src": "1477:21:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15950,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1477:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15954,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1525:4:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15959,
                        "src": "1508:21:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15953,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15952,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "1508:16:63"
                          },
                          "referencedDeclaration": 8176,
                          "src": "1508:16:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15957,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1582:17:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 15959,
                        "src": "1539:60:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15956,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15955,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "1539:42:63"
                          },
                          "referencedDeclaration": 8506,
                          "src": "1539:42:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1467:138:63"
                  },
                  "src": "1431:175:63"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15960,
                    "nodeType": "StructuredDocumentation",
                    "src": "1666:44:63",
                    "text": "@notice The DrawBuffer contract address."
                  },
                  "functionSelector": "ce343bb6",
                  "id": 15963,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "1744:10:63",
                  "nodeType": "VariableDeclaration",
                  "scope": 16055,
                  "src": "1715:39:63",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 15962,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15961,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8409,
                      "src": "1715:11:63"
                    },
                    "referencedDeclaration": 8409,
                    "src": "1715:11:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15964,
                    "nodeType": "StructuredDocumentation",
                    "src": "1761:55:63",
                    "text": "@notice Internal PrizeDistributionBuffer reference."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 15967,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1863:23:63",
                  "nodeType": "VariableDeclaration",
                  "scope": 16055,
                  "src": "1821:65:63",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 15966,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15965,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8587,
                      "src": "1821:24:63"
                    },
                    "referencedDeclaration": 8587,
                    "src": "1821:24:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15968,
                    "nodeType": "StructuredDocumentation",
                    "src": "1893:38:63",
                    "text": "@notice Timelock struct reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 15971,
                  "mutability": "mutable",
                  "name": "timelock",
                  "nameLocation": "1967:8:63",
                  "nodeType": "VariableDeclaration",
                  "scope": 16055,
                  "src": "1936:39:63",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 15970,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15969,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16274,
                      "src": "1936:23:63"
                    },
                    "referencedDeclaration": 16274,
                    "src": "1936:23:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16007,
                    "nodeType": "Block",
                    "src": "2594:205:63",
                    "statements": [
                      {
                        "expression": {
                          "id": 15991,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15989,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15963,
                            "src": "2604:10:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15990,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15977,
                            "src": "2617:11:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "2604:24:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 15992,
                        "nodeType": "ExpressionStatement",
                        "src": "2604:24:63"
                      },
                      {
                        "expression": {
                          "id": 15995,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15993,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15967,
                            "src": "2638:23:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15994,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15980,
                            "src": "2664:24:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "2638:50:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 15996,
                        "nodeType": "ExpressionStatement",
                        "src": "2638:50:63"
                      },
                      {
                        "expression": {
                          "id": 15999,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15997,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15971,
                            "src": "2698:8:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15998,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15983,
                            "src": "2709:9:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "2698:20:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 16000,
                        "nodeType": "ExpressionStatement",
                        "src": "2698:20:63"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16002,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15977,
                              "src": "2743:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 16003,
                              "name": "_prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15980,
                              "src": "2756:24:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            {
                              "id": 16004,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15983,
                              "src": "2782:9:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 16001,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15948,
                            "src": "2734:8:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawBuffer_$8409_$_t_contract$_IPrizeDistributionBuffer_$8587_$_t_contract$_IDrawCalculatorTimelock_$16274_$returns$__$",
                              "typeString": "function (contract IDrawBuffer,contract IPrizeDistributionBuffer,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 16005,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2734:58:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16006,
                        "nodeType": "EmitStatement",
                        "src": "2729:63:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15972,
                    "nodeType": "StructuredDocumentation",
                    "src": "2026:370:63",
                    "text": " @notice Initialize L2TimelockTrigger smart contract.\n @param _owner                   Address of the L2TimelockTrigger owner.\n @param _prizeDistributionBuffer PrizeDistributionBuffer address\n @param _drawBuffer              DrawBuffer address\n @param _timelock                Elapsed seconds before timelocked Draw is available"
                  },
                  "id": 16008,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15986,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15974,
                          "src": "2586:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15987,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15985,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "2578:7:63"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2578:15:63"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15984,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15974,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2430:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 16008,
                        "src": "2422:14:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15973,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2422:7:63",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15977,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "2458:11:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 16008,
                        "src": "2446:23:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15976,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15975,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "2446:11:63"
                          },
                          "referencedDeclaration": 8409,
                          "src": "2446:11:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15980,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "2504:24:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 16008,
                        "src": "2479:49:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15979,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15978,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8587,
                            "src": "2479:24:63"
                          },
                          "referencedDeclaration": 8587,
                          "src": "2479:24:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15983,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "2562:9:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 16008,
                        "src": "2538:33:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15982,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15981,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "2538:23:63"
                          },
                          "referencedDeclaration": 16274,
                          "src": "2538:23:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2412:165:63"
                  },
                  "returnParameters": {
                    "id": 15988,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2594:0:63"
                  },
                  "scope": 16055,
                  "src": "2401:398:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16053,
                    "nodeType": "Block",
                    "src": "3312:300:63",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16023,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16012,
                                "src": "3336:5:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 16024,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "3336:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 16029,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 16025,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16012,
                                  "src": "3350:5:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 16026,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8171,
                                "src": "3350:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 16027,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16012,
                                  "src": "3368:5:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 16028,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8175,
                                "src": "3368:25:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "3350:43:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 16020,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15971,
                              "src": "3322:8:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 16022,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16246,
                            "src": "3322:13:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 16030,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3322:72:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 16031,
                        "nodeType": "ExpressionStatement",
                        "src": "3322:72:63"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16035,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16012,
                              "src": "3424:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "expression": {
                              "id": 16032,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15963,
                              "src": "3404:10:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 16034,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8399,
                            "src": "3404:19:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_struct$_Draw_$8176_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) external returns (uint32)"
                            }
                          },
                          "id": 16036,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3404:26:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 16037,
                        "nodeType": "ExpressionStatement",
                        "src": "3404:26:63"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16041,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16012,
                                "src": "3486:5:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 16042,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "3486:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 16043,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16015,
                              "src": "3500:18:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            ],
                            "expression": {
                              "id": 16038,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15967,
                              "src": "3440:23:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$8587",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 16040,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8575,
                            "src": "3440:45:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionBuffer.PrizeDistribution memory) external returns (bool)"
                            }
                          },
                          "id": 16044,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3440:79:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 16045,
                        "nodeType": "ExpressionStatement",
                        "src": "3440:79:63"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16047,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16012,
                                "src": "3565:5:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 16048,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "3565:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 16049,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16012,
                              "src": "3579:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            {
                              "id": 16050,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16015,
                              "src": "3586:18:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                                "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution memory"
                              }
                            ],
                            "id": 16046,
                            "name": "DrawAndPrizeDistributionPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15959,
                            "src": "3534:30:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$8176_memory_ptr_$_t_struct$_PrizeDistribution_$8506_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory,struct IPrizeDistributionBuffer.PrizeDistribution memory)"
                            }
                          },
                          "id": 16051,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3534:71:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16052,
                        "nodeType": "EmitStatement",
                        "src": "3529:76:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16009,
                    "nodeType": "StructuredDocumentation",
                    "src": "2861:281:63",
                    "text": " @notice Push Draw onto draws ring buffer history.\n @dev    Restricts new draws by forcing a push timelock.\n @param _draw              Draw struct from IDrawBeacon\n @param _prizeDistribution PrizeDistribution struct from IPrizeDistributionBuffer"
                  },
                  "functionSelector": "af32b605",
                  "id": 16054,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 16018,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 16017,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "3293:18:63"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3293:18:63"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "3156:4:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16016,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16012,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "3194:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 16054,
                        "src": "3170:29:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16011,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16010,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "3170:16:63"
                          },
                          "referencedDeclaration": 8176,
                          "src": "3170:16:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16015,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "3259:18:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 16054,
                        "src": "3209:68:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$8506_memory_ptr",
                          "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 16014,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16013,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8506,
                            "src": "3209:42:63"
                          },
                          "referencedDeclaration": 8506,
                          "src": "3209:42:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$8506_storage_ptr",
                            "typeString": "struct IPrizeDistributionBuffer.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3160:123:63"
                  },
                  "returnParameters": {
                    "id": 16019,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3312:0:63"
                  },
                  "scope": 16055,
                  "src": "3147:465:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16056,
              "src": "951:2663:63",
              "usedErrors": []
            }
          ],
          "src": "36:3579:63"
        },
        "id": 63
      },
      "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributionFactory": [
              16284
            ],
            "IPrizeDistributor": [
              8685
            ],
            "IReceiverTimelockTrigger": [
              16323
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "ReceiverTimelockTrigger": [
              16164
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 16165,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16057,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:64"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 16058,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16165,
              "sourceUnit": 8333,
              "src": "59:68:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 16059,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16165,
              "sourceUnit": 8410,
              "src": "128:68:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 16060,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16165,
              "sourceUnit": 3104,
              "src": "197:72:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol",
              "file": "./interfaces/IReceiverTimelockTrigger.sol",
              "id": 16061,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16165,
              "sourceUnit": 16324,
              "src": "270:51:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./interfaces/IPrizeDistributionFactory.sol",
              "id": 16062,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16165,
              "sourceUnit": 16285,
              "src": "322:52:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 16063,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16165,
              "sourceUnit": 16275,
              "src": "375:50:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16065,
                    "name": "IReceiverTimelockTrigger",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16323,
                    "src": "914:24:64"
                  },
                  "id": 16066,
                  "nodeType": "InheritanceSpecifier",
                  "src": "914:24:64"
                },
                {
                  "baseName": {
                    "id": 16067,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3103,
                    "src": "940:10:64"
                  },
                  "id": 16068,
                  "nodeType": "InheritanceSpecifier",
                  "src": "940:10:64"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16064,
                "nodeType": "StructuredDocumentation",
                "src": "427:450:64",
                "text": " @title  PoolTogether V4 ReceiverTimelockTrigger\n @author PoolTogether Inc Team\n @notice The ReceiverTimelockTrigger smart contract is an upgrade of the L2TimelockTimelock smart contract.\nReducing protocol risk by eliminating off-chain computation of PrizeDistribution parameters. The timelock will\nonly pass the total supply of all tickets in a \"PrizePool Network\" to the prize distribution factory contract."
              },
              "fullyImplemented": true,
              "id": 16164,
              "linearizedBaseContracts": [
                16164,
                3103,
                3258,
                16323
              ],
              "name": "ReceiverTimelockTrigger",
              "nameLocation": "887:23:64",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 16069,
                    "nodeType": "StructuredDocumentation",
                    "src": "1011:44:64",
                    "text": "@notice The DrawBuffer contract address."
                  },
                  "functionSelector": "ce343bb6",
                  "id": 16072,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "1089:10:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 16164,
                  "src": "1060:39:64",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 16071,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16070,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 8409,
                      "src": "1060:11:64"
                    },
                    "referencedDeclaration": 8409,
                    "src": "1060:11:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 16073,
                    "nodeType": "StructuredDocumentation",
                    "src": "1106:56:64",
                    "text": "@notice Internal PrizeDistributionFactory reference."
                  },
                  "functionSelector": "78e072a9",
                  "id": 16076,
                  "mutability": "immutable",
                  "name": "prizeDistributionFactory",
                  "nameLocation": "1210:24:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 16164,
                  "src": "1167:67:64",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                    "typeString": "contract IPrizeDistributionFactory"
                  },
                  "typeName": {
                    "id": 16075,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16074,
                      "name": "IPrizeDistributionFactory",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16284,
                      "src": "1167:25:64"
                    },
                    "referencedDeclaration": 16284,
                    "src": "1167:25:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                      "typeString": "contract IPrizeDistributionFactory"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 16077,
                    "nodeType": "StructuredDocumentation",
                    "src": "1241:38:64",
                    "text": "@notice Timelock struct reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 16080,
                  "mutability": "immutable",
                  "name": "timelock",
                  "nameLocation": "1325:8:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 16164,
                  "src": "1284:49:64",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 16079,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16078,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16274,
                      "src": "1284:23:64"
                    },
                    "referencedDeclaration": 16274,
                    "src": "1284:23:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16116,
                    "nodeType": "Block",
                    "src": "1885:207:64",
                    "statements": [
                      {
                        "expression": {
                          "id": 16100,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16098,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16072,
                            "src": "1895:10:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16099,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16086,
                            "src": "1908:11:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "1895:24:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 16101,
                        "nodeType": "ExpressionStatement",
                        "src": "1895:24:64"
                      },
                      {
                        "expression": {
                          "id": 16104,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16102,
                            "name": "prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16076,
                            "src": "1929:24:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16103,
                            "name": "_prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16089,
                            "src": "1956:25:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "src": "1929:52:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "id": 16105,
                        "nodeType": "ExpressionStatement",
                        "src": "1929:52:64"
                      },
                      {
                        "expression": {
                          "id": 16108,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16106,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16080,
                            "src": "1991:8:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16107,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16092,
                            "src": "2002:9:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "1991:20:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 16109,
                        "nodeType": "ExpressionStatement",
                        "src": "1991:20:64"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16111,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16086,
                              "src": "2035:11:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 16112,
                              "name": "_prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16089,
                              "src": "2048:25:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            {
                              "id": 16113,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16092,
                              "src": "2075:9:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                                "typeString": "contract IPrizeDistributionFactory"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 16110,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16303,
                            "src": "2026:8:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawBuffer_$8409_$_t_contract$_IPrizeDistributionFactory_$16284_$_t_contract$_IDrawCalculatorTimelock_$16274_$returns$__$",
                              "typeString": "function (contract IDrawBuffer,contract IPrizeDistributionFactory,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 16114,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2026:59:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16115,
                        "nodeType": "EmitStatement",
                        "src": "2021:64:64"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16081,
                    "nodeType": "StructuredDocumentation",
                    "src": "1389:296:64",
                    "text": " @notice Initialize ReceiverTimelockTrigger smart contract.\n @param _owner The smart contract owner\n @param _drawBuffer DrawBuffer address\n @param _prizeDistributionFactory PrizeDistributionFactory address\n @param _timelock DrawCalculatorTimelock address"
                  },
                  "id": 16117,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16095,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16083,
                          "src": "1877:6:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 16096,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16094,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3258,
                        "src": "1869:7:64"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1869:15:64"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16093,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16083,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1719:6:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 16117,
                        "src": "1711:14:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16082,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1711:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16086,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "1747:11:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 16117,
                        "src": "1735:23:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 16085,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16084,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "1735:11:64"
                          },
                          "referencedDeclaration": 8409,
                          "src": "1735:11:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16089,
                        "mutability": "mutable",
                        "name": "_prizeDistributionFactory",
                        "nameLocation": "1794:25:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 16117,
                        "src": "1768:51:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 16088,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16087,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16284,
                            "src": "1768:25:64"
                          },
                          "referencedDeclaration": 16284,
                          "src": "1768:25:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16092,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "1853:9:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 16117,
                        "src": "1829:33:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 16091,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16090,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "1829:23:64"
                          },
                          "referencedDeclaration": 16274,
                          "src": "1829:23:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1701:167:64"
                  },
                  "returnParameters": {
                    "id": 16097,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1885:0:64"
                  },
                  "scope": 16164,
                  "src": "1690:402:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    16322
                  ],
                  "body": {
                    "id": 16162,
                    "nodeType": "Block",
                    "src": "2288:380:64",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16132,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16121,
                                "src": "2312:5:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 16133,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "2312:12:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 16138,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 16134,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16121,
                                  "src": "2326:5:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 16135,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8171,
                                "src": "2326:15:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 16136,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16121,
                                  "src": "2344:5:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 16137,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 8175,
                                "src": "2344:25:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2326:43:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 16129,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16080,
                              "src": "2298:8:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 16131,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16246,
                            "src": "2298:13:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 16139,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2298:72:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 16140,
                        "nodeType": "ExpressionStatement",
                        "src": "2298:72:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16144,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16121,
                              "src": "2400:5:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "expression": {
                              "id": 16141,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16072,
                              "src": "2380:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 16143,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 8399,
                            "src": "2380:19:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_struct$_Draw_$8176_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) external returns (uint32)"
                            }
                          },
                          "id": 16145,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2380:26:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 16146,
                        "nodeType": "ExpressionStatement",
                        "src": "2380:26:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16150,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16121,
                                "src": "2463:5:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 16151,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "2463:12:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 16152,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16123,
                              "src": "2477:25:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 16147,
                              "name": "prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16076,
                              "src": "2416:24:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            "id": 16149,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16283,
                            "src": "2416:46:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,uint256) external"
                            }
                          },
                          "id": 16153,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2416:87:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16154,
                        "nodeType": "ExpressionStatement",
                        "src": "2416:87:64"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16156,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16121,
                                "src": "2581:5:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 16157,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 8169,
                              "src": "2581:12:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 16158,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16121,
                              "src": "2607:5:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            {
                              "id": 16159,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16123,
                              "src": "2626:25:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16155,
                            "name": "DrawLockedPushedAndTotalNetworkTicketSupplyPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16313,
                            "src": "2518:49:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$8176_memory_ptr_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory,uint256)"
                            }
                          },
                          "id": 16160,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2518:143:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16161,
                        "nodeType": "EmitStatement",
                        "src": "2513:148:64"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16118,
                    "nodeType": "StructuredDocumentation",
                    "src": "2098:40:64",
                    "text": "@inheritdoc IReceiverTimelockTrigger"
                  },
                  "functionSelector": "a913c9da",
                  "id": 16163,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 16127,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 16126,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 3102,
                        "src": "2265:18:64"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2265:18:64"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "2152:4:64",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 16125,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2248:8:64"
                  },
                  "parameters": {
                    "id": 16124,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16121,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "2181:5:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 16163,
                        "src": "2157:29:64",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16120,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16119,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "2157:16:64"
                          },
                          "referencedDeclaration": 8176,
                          "src": "2157:16:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16123,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "2196:25:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 16163,
                        "src": "2188:33:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16122,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2188:7:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2156:66:64"
                  },
                  "returnParameters": {
                    "id": 16128,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2288:0:64"
                  },
                  "scope": 16164,
                  "src": "2143:525:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16165,
              "src": "878:1792:64",
              "usedErrors": []
            }
          ],
          "src": "36:2635:64"
        },
        "id": 64
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IBeaconTimelockTrigger": [
              16199
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributionFactory": [
              16284
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 16200,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16166,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:65"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 16167,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16200,
              "sourceUnit": 8333,
              "src": "59:68:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./IPrizeDistributionFactory.sol",
              "id": 16168,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16200,
              "sourceUnit": 16285,
              "src": "128:41:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./IDrawCalculatorTimelock.sol",
              "id": 16169,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16200,
              "sourceUnit": 16275,
              "src": "170:39:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 16170,
                "nodeType": "StructuredDocumentation",
                "src": "211:156:65",
                "text": " @title  PoolTogether V4 IBeaconTimelockTrigger\n @author PoolTogether Inc Team\n @notice The IBeaconTimelockTrigger smart contract interface..."
              },
              "fullyImplemented": false,
              "id": 16199,
              "linearizedBaseContracts": [
                16199
              ],
              "name": "IBeaconTimelockTrigger",
              "nameLocation": "378:22:65",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16171,
                    "nodeType": "StructuredDocumentation",
                    "src": "407:50:65",
                    "text": "@notice Emitted when the contract is deployed."
                  },
                  "id": 16179,
                  "name": "Deployed",
                  "nameLocation": "468:8:65",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16178,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16174,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionFactory",
                        "nameLocation": "520:24:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 16179,
                        "src": "486:58:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 16173,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16172,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16284,
                            "src": "486:25:65"
                          },
                          "referencedDeclaration": 16284,
                          "src": "486:25:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16177,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "586:8:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 16179,
                        "src": "554:40:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 16176,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16175,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "554:23:65"
                          },
                          "referencedDeclaration": 16274,
                          "src": "554:23:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "476:124:65"
                  },
                  "src": "462:139:65"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16180,
                    "nodeType": "StructuredDocumentation",
                    "src": "607:238:65",
                    "text": " @notice Emitted when Draw is locked and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\n @param drawId Draw ID\n @param draw Draw\n @param totalNetworkTicketSupply totalNetworkTicketSupply"
                  },
                  "id": 16189,
                  "name": "DrawLockedAndTotalNetworkTicketSupplyPushed",
                  "nameLocation": "856:43:65",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16188,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16182,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "924:6:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 16189,
                        "src": "909:21:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16181,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "909:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16185,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "957:4:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 16189,
                        "src": "940:21:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16184,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16183,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "940:16:65"
                          },
                          "referencedDeclaration": 8176,
                          "src": "940:16:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16187,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "979:24:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 16189,
                        "src": "971:32:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16186,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "971:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "899:110:65"
                  },
                  "src": "850:160:65"
                },
                {
                  "documentation": {
                    "id": 16190,
                    "nodeType": "StructuredDocumentation",
                    "src": "1016:291:65",
                    "text": " @notice Locks next Draw and pushes totalNetworkTicketSupply to PrizeDistributionFactory\n @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\n @param draw Draw\n @param totalNetworkTicketSupply totalNetworkTicketSupply"
                  },
                  "functionSelector": "a913c9da",
                  "id": 16198,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "1321:4:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16196,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16193,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1350:4:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 16198,
                        "src": "1326:28:65",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16192,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16191,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "1326:16:65"
                          },
                          "referencedDeclaration": 8176,
                          "src": "1326:16:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16195,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1364:24:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 16198,
                        "src": "1356:32:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16194,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1356:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1325:64:65"
                  },
                  "returnParameters": {
                    "id": 16197,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1398:0:65"
                  },
                  "scope": 16199,
                  "src": "1312:87:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16200,
              "src": "368:1033:65",
              "usedErrors": []
            }
          ],
          "src": "36:1366:65"
        },
        "id": 65
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 16275,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16201,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:66"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "id": 16202,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16275,
              "sourceUnit": 8483,
              "src": "61:72:66",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 16274,
              "linearizedBaseContracts": [
                16274
              ],
              "name": "IDrawCalculatorTimelock",
              "nameLocation": "145:23:66",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawCalculatorTimelock.Timelock",
                  "id": 16207,
                  "members": [
                    {
                      "constant": false,
                      "id": 16204,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "399:9:66",
                      "nodeType": "VariableDeclaration",
                      "scope": 16207,
                      "src": "392:16:66",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 16203,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "392:6:66",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 16206,
                      "mutability": "mutable",
                      "name": "drawId",
                      "nameLocation": "425:6:66",
                      "nodeType": "VariableDeclaration",
                      "scope": 16207,
                      "src": "418:13:66",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 16205,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "418:6:66",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Timelock",
                  "nameLocation": "373:8:66",
                  "nodeType": "StructDefinition",
                  "scope": 16274,
                  "src": "366:72:66",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16208,
                    "nodeType": "StructuredDocumentation",
                    "src": "444:137:66",
                    "text": " @notice Emitted when target draw id is locked.\n @param drawId    Draw ID\n @param timestamp Block timestamp"
                  },
                  "id": 16214,
                  "name": "LockedDraw",
                  "nameLocation": "592:10:66",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16213,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16210,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "618:6:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16214,
                        "src": "603:21:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16209,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "603:6:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16212,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "633:9:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16214,
                        "src": "626:16:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 16211,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "626:6:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "602:41:66"
                  },
                  "src": "586:58:66"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16215,
                    "nodeType": "StructuredDocumentation",
                    "src": "650:119:66",
                    "text": " @notice Emitted event when the timelock struct is updated\n @param timelock Timelock struct set"
                  },
                  "id": 16220,
                  "name": "TimelockSet",
                  "nameLocation": "780:11:66",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16219,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16218,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "801:8:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16220,
                        "src": "792:17:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 16217,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16216,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16207,
                            "src": "792:8:66"
                          },
                          "referencedDeclaration": 16207,
                          "src": "792:8:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "791:19:66"
                  },
                  "src": "774:37:66"
                },
                {
                  "documentation": {
                    "id": 16221,
                    "nodeType": "StructuredDocumentation",
                    "src": "817:373:66",
                    "text": " @notice Routes claim/calculate requests between PrizeDistributor and DrawCalculator.\n @dev    Will enforce a \"cooldown\" period between when a Draw is pushed and when users can start to claim prizes.\n @param user    User address\n @param drawIds Draw.drawId\n @param data    Encoded pick indices\n @return Prizes awardable array"
                  },
                  "functionSelector": "aaca392e",
                  "id": 16236,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "1204:9:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16229,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16223,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1231:4:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16236,
                        "src": "1223:12:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16222,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1223:7:66",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16226,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1263:7:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16236,
                        "src": "1245:25:66",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16224,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1245:6:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 16225,
                          "nodeType": "ArrayTypeName",
                          "src": "1245:8:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16228,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "1295:4:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16236,
                        "src": "1280:19:66",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 16227,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1280:5:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1213:92:66"
                  },
                  "returnParameters": {
                    "id": 16235,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16232,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16236,
                        "src": "1329:16:66",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16230,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1329:7:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 16231,
                          "nodeType": "ArrayTypeName",
                          "src": "1329:9:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16234,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16236,
                        "src": "1347:12:66",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 16233,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1347:5:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1328:32:66"
                  },
                  "scope": 16274,
                  "src": "1195:166:66",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16237,
                    "nodeType": "StructuredDocumentation",
                    "src": "1367:290:66",
                    "text": " @notice Lock passed draw id for `timelockDuration` seconds.\n @dev    Restricts new draws by forcing a push timelock.\n @param _drawId Draw id to lock.\n @param _timestamp Epoch timestamp to unlock the draw.\n @return True if operation was successful."
                  },
                  "functionSelector": "8871189b",
                  "id": 16246,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lock",
                  "nameLocation": "1671:4:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16242,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16239,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "1683:7:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16246,
                        "src": "1676:14:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16238,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1676:6:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16241,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "1699:10:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16246,
                        "src": "1692:17:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 16240,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1692:6:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1675:35:66"
                  },
                  "returnParameters": {
                    "id": 16245,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16244,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16246,
                        "src": "1729:4:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16243,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1729:4:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1728:6:66"
                  },
                  "scope": 16274,
                  "src": "1662:73:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16247,
                    "nodeType": "StructuredDocumentation",
                    "src": "1741:96:66",
                    "text": " @notice Read internal DrawCalculator variable.\n @return IDrawCalculator"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 16253,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "1851:17:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16248,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1868:2:66"
                  },
                  "returnParameters": {
                    "id": 16252,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16251,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16253,
                        "src": "1894:15:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 16250,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16249,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8482,
                            "src": "1894:15:66"
                          },
                          "referencedDeclaration": 8482,
                          "src": "1894:15:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$8482",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1893:17:66"
                  },
                  "scope": 16274,
                  "src": "1842:69:66",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16254,
                    "nodeType": "StructuredDocumentation",
                    "src": "1917:81:66",
                    "text": " @notice Read internal Timelock struct.\n @return Timelock"
                  },
                  "functionSelector": "6221a54b",
                  "id": 16260,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTimelock",
                  "nameLocation": "2012:11:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16255,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2023:2:66"
                  },
                  "returnParameters": {
                    "id": 16259,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16258,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16260,
                        "src": "2049:15:66",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 16257,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16256,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16207,
                            "src": "2049:8:66"
                          },
                          "referencedDeclaration": 16207,
                          "src": "2049:8:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2048:17:66"
                  },
                  "scope": 16274,
                  "src": "2003:63:66",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16261,
                    "nodeType": "StructuredDocumentation",
                    "src": "2072:136:66",
                    "text": " @notice Set the Timelock struct. Only callable by the contract owner.\n @param _timelock Timelock struct to set."
                  },
                  "functionSelector": "bdf28f5e",
                  "id": 16267,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setTimelock",
                  "nameLocation": "2222:11:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16265,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16264,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "2250:9:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 16267,
                        "src": "2234:25:66",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$16207_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 16263,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16262,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16207,
                            "src": "2234:8:66"
                          },
                          "referencedDeclaration": 16207,
                          "src": "2234:8:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$16207_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2233:27:66"
                  },
                  "returnParameters": {
                    "id": 16266,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2269:0:66"
                  },
                  "scope": 16274,
                  "src": "2213:57:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16268,
                    "nodeType": "StructuredDocumentation",
                    "src": "2276:161:66",
                    "text": " @notice Returns bool for timelockDuration elapsing.\n @return True if timelockDuration, since last timelock has elapsed, false otherwise."
                  },
                  "functionSelector": "d3a9c612",
                  "id": 16273,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "hasElapsed",
                  "nameLocation": "2451:10:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16269,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2461:2:66"
                  },
                  "returnParameters": {
                    "id": 16272,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16271,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16273,
                        "src": "2487:4:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16270,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2487:4:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2486:6:66"
                  },
                  "scope": 16274,
                  "src": "2442:51:66",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16275,
              "src": "135:2360:66",
              "usedErrors": []
            }
          ],
          "src": "37:2459:66"
        },
        "id": 66
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
          "exportedSymbols": {
            "IPrizeDistributionFactory": [
              16284
            ]
          },
          "id": 16285,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16276,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:67"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 16284,
              "linearizedBaseContracts": [
                16284
              ],
              "name": "IPrizeDistributionFactory",
              "nameLocation": "70:25:67",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "functionSelector": "0348b076",
                  "id": 16283,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "111:21:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16281,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16278,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "140:7:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16283,
                        "src": "133:14:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16277,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "133:6:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16280,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "157:25:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 16283,
                        "src": "149:33:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16279,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "149:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "132:51:67"
                  },
                  "returnParameters": {
                    "id": 16282,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "192:0:67"
                  },
                  "scope": 16284,
                  "src": "102:91:67",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16285,
              "src": "60:135:67",
              "usedErrors": []
            }
          ],
          "src": "36:160:67"
        },
        "id": 67
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributionFactory": [
              16284
            ],
            "IPrizeDistributor": [
              8685
            ],
            "IReceiverTimelockTrigger": [
              16323
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 16324,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16286,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:68"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 16287,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16324,
              "sourceUnit": 8333,
              "src": "59:68:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 16288,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16324,
              "sourceUnit": 8410,
              "src": "128:68:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./IPrizeDistributionFactory.sol",
              "id": 16289,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16324,
              "sourceUnit": 16285,
              "src": "197:41:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./IDrawCalculatorTimelock.sol",
              "id": 16290,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16324,
              "sourceUnit": 16275,
              "src": "239:39:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 16291,
                "nodeType": "StructuredDocumentation",
                "src": "280:160:68",
                "text": " @title  PoolTogether V4 IReceiverTimelockTrigger\n @author PoolTogether Inc Team\n @notice The IReceiverTimelockTrigger smart contract interface..."
              },
              "fullyImplemented": false,
              "id": 16323,
              "linearizedBaseContracts": [
                16323
              ],
              "name": "IReceiverTimelockTrigger",
              "nameLocation": "451:24:68",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16292,
                    "nodeType": "StructuredDocumentation",
                    "src": "482:50:68",
                    "text": "@notice Emitted when the contract is deployed."
                  },
                  "id": 16303,
                  "name": "Deployed",
                  "nameLocation": "543:8:68",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16302,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16295,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "581:10:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16303,
                        "src": "561:30:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 16294,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16293,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8409,
                            "src": "561:11:68"
                          },
                          "referencedDeclaration": 8409,
                          "src": "561:11:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$8409",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16298,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionFactory",
                        "nameLocation": "635:24:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16303,
                        "src": "601:58:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 16297,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16296,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16284,
                            "src": "601:25:68"
                          },
                          "referencedDeclaration": 16284,
                          "src": "601:25:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16284",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16301,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "701:8:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16303,
                        "src": "669:40:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 16300,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16299,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16274,
                            "src": "669:23:68"
                          },
                          "referencedDeclaration": 16274,
                          "src": "669:23:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$16274",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "551:164:68"
                  },
                  "src": "537:179:68"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16304,
                    "nodeType": "StructuredDocumentation",
                    "src": "722:265:68",
                    "text": " @notice Emitted when Draw is locked, pushed to Draw DrawBuffer and totalNetworkTicketSupply is pushed to PrizeDistributionFactory\n @param drawId Draw ID\n @param draw Draw\n @param totalNetworkTicketSupply totalNetworkTicketSupply"
                  },
                  "id": 16313,
                  "name": "DrawLockedPushedAndTotalNetworkTicketSupplyPushed",
                  "nameLocation": "998:49:68",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16312,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16306,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1072:6:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16313,
                        "src": "1057:21:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16305,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1057:6:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16309,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1105:4:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16313,
                        "src": "1088:21:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16308,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16307,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "1088:16:68"
                          },
                          "referencedDeclaration": 8176,
                          "src": "1088:16:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16311,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1127:24:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16313,
                        "src": "1119:32:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16310,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1119:7:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1047:110:68"
                  },
                  "src": "992:166:68"
                },
                {
                  "documentation": {
                    "id": 16314,
                    "nodeType": "StructuredDocumentation",
                    "src": "1164:319:68",
                    "text": " @notice Locks next Draw, pushes Draw to DraWBuffer and pushes totalNetworkTicketSupply to PrizeDistributionFactory.\n @dev    Restricts new draws for N seconds by forcing timelock on the next target draw id.\n @param draw Draw\n @param totalNetworkTicketSupply totalNetworkTicketSupply"
                  },
                  "functionSelector": "a913c9da",
                  "id": 16322,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "1497:4:68",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16320,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16317,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1526:4:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16322,
                        "src": "1502:28:68",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$8176_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16316,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16315,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 8176,
                            "src": "1502:16:68"
                          },
                          "referencedDeclaration": 8176,
                          "src": "1502:16:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$8176_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16319,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1540:24:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 16322,
                        "src": "1532:32:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16318,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1532:7:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1501:64:68"
                  },
                  "returnParameters": {
                    "id": 16321,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1574:0:68"
                  },
                  "scope": 16323,
                  "src": "1488:87:68",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16324,
              "src": "441:1136:68",
              "usedErrors": []
            }
          ],
          "src": "36:1542:68"
        },
        "id": 68
      },
      "@pooltogether/yield-source-interface/contracts/IYieldSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
          "exportedSymbols": {
            "IYieldSource": [
              16357
            ]
          },
          "id": 16358,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16325,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:69"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 16326,
                "nodeType": "StructuredDocumentation",
                "src": "63:211:69",
                "text": "@title Defines the functions used to interact with a yield source.  The Prize Pool inherits this contract.\n @notice Prize Pools subclasses need to implement this interface so that yield can be generated."
              },
              "fullyImplemented": false,
              "id": 16357,
              "linearizedBaseContracts": [
                16357
              ],
              "name": "IYieldSource",
              "nameLocation": "284:12:69",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 16327,
                    "nodeType": "StructuredDocumentation",
                    "src": "303:107:69",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token address."
                  },
                  "functionSelector": "c89039c5",
                  "id": 16332,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToken",
                  "nameLocation": "424:12:69",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16328,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "436:2:69"
                  },
                  "returnParameters": {
                    "id": 16331,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16330,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16332,
                        "src": "462:7:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16329,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "462:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "461:9:69"
                  },
                  "scope": 16357,
                  "src": "415:56:69",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16333,
                    "nodeType": "StructuredDocumentation",
                    "src": "477:154:69",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens."
                  },
                  "functionSelector": "b99152d0",
                  "id": 16340,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOfToken",
                  "nameLocation": "645:14:69",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16336,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16335,
                        "mutability": "mutable",
                        "name": "addr",
                        "nameLocation": "668:4:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16340,
                        "src": "660:12:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16334,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "660:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "659:14:69"
                  },
                  "returnParameters": {
                    "id": 16339,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16338,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16340,
                        "src": "692:7:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16337,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "692:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "691:9:69"
                  },
                  "scope": 16357,
                  "src": "636:65:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16341,
                    "nodeType": "StructuredDocumentation",
                    "src": "707:296:69",
                    "text": "@notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n @param to The user whose balance will receive the tokens"
                  },
                  "functionSelector": "87a6eeef",
                  "id": 16348,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supplyTokenTo",
                  "nameLocation": "1017:13:69",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16346,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16343,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1039:6:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16348,
                        "src": "1031:14:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16342,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1031:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16345,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1055:2:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16348,
                        "src": "1047:10:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16344,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1047:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1030:28:69"
                  },
                  "returnParameters": {
                    "id": 16347,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1067:0:69"
                  },
                  "scope": 16357,
                  "src": "1008:60:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 16349,
                    "nodeType": "StructuredDocumentation",
                    "src": "1074:234:69",
                    "text": "@notice Redeems tokens from the yield source.\n @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n @return The actual amount of interst bearing tokens that were redeemed."
                  },
                  "functionSelector": "013054c2",
                  "id": 16356,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeemToken",
                  "nameLocation": "1322:11:69",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16352,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16351,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1342:6:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 16356,
                        "src": "1334:14:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16350,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1334:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1333:16:69"
                  },
                  "returnParameters": {
                    "id": 16355,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16354,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16356,
                        "src": "1368:7:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16353,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1368:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1367:9:69"
                  },
                  "scope": 16357,
                  "src": "1313:64:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16358,
              "src": "274:1105:69",
              "usedErrors": []
            }
          ],
          "src": "37:1343:69"
        },
        "id": 69
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol",
          "exportedSymbols": {
            "ERC20": [
              16915
            ]
          },
          "id": 16916,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16359,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "33:24:70"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16360,
                "nodeType": "StructuredDocumentation",
                "src": "59:1199:70",
                "text": " NOTE: Copied from OpenZeppelin\n @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n We have followed general OpenZeppelin guidelines: functions revert instead\n of returning `false` on failure. This behavior is nonetheless conventional\n and does not conflict with the expectations of ERC20 applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}."
              },
              "fullyImplemented": true,
              "id": 16915,
              "linearizedBaseContracts": [
                16915
              ],
              "name": "ERC20",
              "nameLocation": "1268:5:70",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 16364,
                  "mutability": "mutable",
                  "name": "_balances",
                  "nameLocation": "1316:9:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 16915,
                  "src": "1280:45:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                    "typeString": "mapping(address => uint256)"
                  },
                  "typeName": {
                    "id": 16363,
                    "keyType": {
                      "id": 16361,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1288:7:70",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1280:27:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                      "typeString": "mapping(address => uint256)"
                    },
                    "valueType": {
                      "id": 16362,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1299:7:70",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 16370,
                  "mutability": "mutable",
                  "name": "_allowances",
                  "nameLocation": "1388:11:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 16915,
                  "src": "1332:67:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(address => uint256))"
                  },
                  "typeName": {
                    "id": 16369,
                    "keyType": {
                      "id": 16365,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1340:7:70",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1332:47:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(address => uint256))"
                    },
                    "valueType": {
                      "id": 16368,
                      "keyType": {
                        "id": 16366,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1359:7:70",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1351:27:70",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                        "typeString": "mapping(address => uint256)"
                      },
                      "valueType": {
                        "id": 16367,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1370:7:70",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 16372,
                  "mutability": "mutable",
                  "name": "_totalSupply",
                  "nameLocation": "1422:12:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 16915,
                  "src": "1406:28:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 16371,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1406:7:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 16374,
                  "mutability": "mutable",
                  "name": "_name",
                  "nameLocation": "1456:5:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 16915,
                  "src": "1441:20:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 16373,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1441:6:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 16376,
                  "mutability": "mutable",
                  "name": "_symbol",
                  "nameLocation": "1482:7:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 16915,
                  "src": "1467:22:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 16375,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1467:6:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 16378,
                  "mutability": "mutable",
                  "name": "_decimals",
                  "nameLocation": "1509:9:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 16915,
                  "src": "1495:23:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 16377,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "1495:5:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16379,
                    "nodeType": "StructuredDocumentation",
                    "src": "1525:158:70",
                    "text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."
                  },
                  "id": 16387,
                  "name": "Transfer",
                  "nameLocation": "1694:8:70",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16386,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16381,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1719:4:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16387,
                        "src": "1703:20:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16380,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1703:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16383,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1741:2:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16387,
                        "src": "1725:18:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16382,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1725:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16385,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1753:5:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16387,
                        "src": "1745:13:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16384,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1745:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1702:57:70"
                  },
                  "src": "1688:72:70"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16388,
                    "nodeType": "StructuredDocumentation",
                    "src": "1766:148:70",
                    "text": " @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."
                  },
                  "id": 16396,
                  "name": "Approval",
                  "nameLocation": "1925:8:70",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16395,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16390,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1950:5:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16396,
                        "src": "1934:21:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16389,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1934:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16392,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1973:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16396,
                        "src": "1957:23:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16391,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1957:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16394,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1990:5:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16396,
                        "src": "1982:13:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16393,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1982:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1933:63:70"
                  },
                  "src": "1919:78:70"
                },
                {
                  "body": {
                    "id": 16418,
                    "nodeType": "Block",
                    "src": "2409:88:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 16408,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16406,
                            "name": "_name",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16374,
                            "src": "2419:5:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16407,
                            "name": "name_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16399,
                            "src": "2427:5:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2419:13:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 16409,
                        "nodeType": "ExpressionStatement",
                        "src": "2419:13:70"
                      },
                      {
                        "expression": {
                          "id": 16412,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16410,
                            "name": "_symbol",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16376,
                            "src": "2442:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16411,
                            "name": "symbol_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16401,
                            "src": "2452:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2442:17:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 16413,
                        "nodeType": "ExpressionStatement",
                        "src": "2442:17:70"
                      },
                      {
                        "expression": {
                          "id": 16416,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16414,
                            "name": "_decimals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16378,
                            "src": "2469:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16415,
                            "name": "decimals_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16403,
                            "src": "2481:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "2469:21:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 16417,
                        "nodeType": "ExpressionStatement",
                        "src": "2469:21:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16397,
                    "nodeType": "StructuredDocumentation",
                    "src": "2003:298:70",
                    "text": " @dev Sets the values for {name} and {symbol}.\n The default value of {decimals} is 18. To select a different value for\n {decimals} you should overload it.\n All two of these values are immutable: they can only be set once during\n construction."
                  },
                  "id": 16419,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16404,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16399,
                        "mutability": "mutable",
                        "name": "name_",
                        "nameLocation": "2341:5:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16419,
                        "src": "2327:19:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16398,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2327:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16401,
                        "mutability": "mutable",
                        "name": "symbol_",
                        "nameLocation": "2370:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16419,
                        "src": "2356:21:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16400,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2356:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16403,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "2393:9:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16419,
                        "src": "2387:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 16402,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2387:5:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2317:91:70"
                  },
                  "returnParameters": {
                    "id": 16405,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2409:0:70"
                  },
                  "scope": 16915,
                  "src": "2306:191:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16427,
                    "nodeType": "Block",
                    "src": "2622:29:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 16425,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16374,
                          "src": "2639:5:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 16424,
                        "id": 16426,
                        "nodeType": "Return",
                        "src": "2632:12:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16420,
                    "nodeType": "StructuredDocumentation",
                    "src": "2503:54:70",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 16428,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "2571:4:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16421,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2575:2:70"
                  },
                  "returnParameters": {
                    "id": 16424,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16423,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16428,
                        "src": "2607:13:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16422,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2607:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2606:15:70"
                  },
                  "scope": 16915,
                  "src": "2562:89:70",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16436,
                    "nodeType": "Block",
                    "src": "2826:31:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 16434,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16376,
                          "src": "2843:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 16433,
                        "id": 16435,
                        "nodeType": "Return",
                        "src": "2836:14:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16429,
                    "nodeType": "StructuredDocumentation",
                    "src": "2657:102:70",
                    "text": " @dev Returns the symbol of the token, usually a shorter version of the\n name."
                  },
                  "functionSelector": "95d89b41",
                  "id": 16437,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "2773:6:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16430,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2779:2:70"
                  },
                  "returnParameters": {
                    "id": 16433,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16432,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16437,
                        "src": "2811:13:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16431,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2811:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2810:15:70"
                  },
                  "scope": 16915,
                  "src": "2764:93:70",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16445,
                    "nodeType": "Block",
                    "src": "3537:33:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 16443,
                          "name": "_decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16378,
                          "src": "3554:9:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 16442,
                        "id": 16444,
                        "nodeType": "Return",
                        "src": "3547:16:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16438,
                    "nodeType": "StructuredDocumentation",
                    "src": "2863:613:70",
                    "text": " @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5,05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the value {ERC20} uses, unless this function is\n overridden;\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}."
                  },
                  "functionSelector": "313ce567",
                  "id": 16446,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3490:8:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16439,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3498:2:70"
                  },
                  "returnParameters": {
                    "id": 16442,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16441,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16446,
                        "src": "3530:5:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 16440,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3530:5:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3529:7:70"
                  },
                  "scope": 16915,
                  "src": "3481:89:70",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16454,
                    "nodeType": "Block",
                    "src": "3691:36:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 16452,
                          "name": "_totalSupply",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16372,
                          "src": "3708:12:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16451,
                        "id": 16453,
                        "nodeType": "Return",
                        "src": "3701:19:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16447,
                    "nodeType": "StructuredDocumentation",
                    "src": "3576:49:70",
                    "text": " @dev See {IERC20-totalSupply}."
                  },
                  "functionSelector": "18160ddd",
                  "id": 16455,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "3639:11:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16448,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3650:2:70"
                  },
                  "returnParameters": {
                    "id": 16451,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16450,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16455,
                        "src": "3682:7:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16449,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3682:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3681:9:70"
                  },
                  "scope": 16915,
                  "src": "3630:97:70",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16467,
                    "nodeType": "Block",
                    "src": "3859:42:70",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 16463,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16364,
                            "src": "3876:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 16465,
                          "indexExpression": {
                            "id": 16464,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16458,
                            "src": "3886:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3876:18:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16462,
                        "id": 16466,
                        "nodeType": "Return",
                        "src": "3869:25:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16456,
                    "nodeType": "StructuredDocumentation",
                    "src": "3733:47:70",
                    "text": " @dev See {IERC20-balanceOf}."
                  },
                  "functionSelector": "70a08231",
                  "id": 16468,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "3794:9:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16459,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16458,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "3812:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16468,
                        "src": "3804:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16457,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3804:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3803:17:70"
                  },
                  "returnParameters": {
                    "id": 16462,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16461,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16468,
                        "src": "3850:7:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16460,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3850:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3849:9:70"
                  },
                  "scope": 16915,
                  "src": "3785:116:70",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16487,
                    "nodeType": "Block",
                    "src": "4187:78:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16479,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "4207:3:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16480,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "4207:10:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16481,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16471,
                              "src": "4219:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16482,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16473,
                              "src": "4230:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16478,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16715,
                            "src": "4197:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4197:40:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16484,
                        "nodeType": "ExpressionStatement",
                        "src": "4197:40:70"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16485,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4254:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16477,
                        "id": 16486,
                        "nodeType": "Return",
                        "src": "4247:11:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16469,
                    "nodeType": "StructuredDocumentation",
                    "src": "3907:192:70",
                    "text": " @dev See {IERC20-transfer}.\n Requirements:\n - `recipient` cannot be the zero address.\n - the caller must have a balance of at least `amount`."
                  },
                  "functionSelector": "a9059cbb",
                  "id": 16488,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "4113:8:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16474,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16471,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "4130:9:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16488,
                        "src": "4122:17:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16470,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4122:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16473,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4149:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16488,
                        "src": "4141:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16472,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4141:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4121:35:70"
                  },
                  "returnParameters": {
                    "id": 16477,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16476,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16488,
                        "src": "4181:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16475,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4181:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4180:6:70"
                  },
                  "scope": 16915,
                  "src": "4104:161:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16504,
                    "nodeType": "Block",
                    "src": "4412:51:70",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 16498,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16370,
                              "src": "4429:11:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 16500,
                            "indexExpression": {
                              "id": 16499,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16491,
                              "src": "4441:5:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4429:18:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 16502,
                          "indexExpression": {
                            "id": 16501,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16493,
                            "src": "4448:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4429:27:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 16497,
                        "id": 16503,
                        "nodeType": "Return",
                        "src": "4422:34:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16489,
                    "nodeType": "StructuredDocumentation",
                    "src": "4271:47:70",
                    "text": " @dev See {IERC20-allowance}."
                  },
                  "functionSelector": "dd62ed3e",
                  "id": 16505,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "4332:9:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16494,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16491,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "4350:5:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16505,
                        "src": "4342:13:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16490,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4342:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16493,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "4365:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16505,
                        "src": "4357:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16492,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4357:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4341:32:70"
                  },
                  "returnParameters": {
                    "id": 16497,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16496,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16505,
                        "src": "4403:7:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16495,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4403:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4402:9:70"
                  },
                  "scope": 16915,
                  "src": "4323:140:70",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16524,
                    "nodeType": "Block",
                    "src": "4681:75:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16516,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "4700:3:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16517,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "4700:10:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16518,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16508,
                              "src": "4712:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16519,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16510,
                              "src": "4721:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16515,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16888,
                            "src": "4691:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16520,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4691:37:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16521,
                        "nodeType": "ExpressionStatement",
                        "src": "4691:37:70"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16522,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4745:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16514,
                        "id": 16523,
                        "nodeType": "Return",
                        "src": "4738:11:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16506,
                    "nodeType": "StructuredDocumentation",
                    "src": "4469:127:70",
                    "text": " @dev See {IERC20-approve}.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 16525,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "4610:7:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16511,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16508,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "4626:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16525,
                        "src": "4618:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16507,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4618:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16510,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4643:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16525,
                        "src": "4635:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16509,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4635:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4617:33:70"
                  },
                  "returnParameters": {
                    "id": 16514,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16513,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16525,
                        "src": "4675:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16512,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4675:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4674:6:70"
                  },
                  "scope": 16915,
                  "src": "4601:155:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16571,
                    "nodeType": "Block",
                    "src": "5356:332:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16538,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16528,
                              "src": "5376:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16539,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16530,
                              "src": "5384:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16540,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16532,
                              "src": "5395:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16537,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16715,
                            "src": "5366:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16541,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5366:36:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16542,
                        "nodeType": "ExpressionStatement",
                        "src": "5366:36:70"
                      },
                      {
                        "assignments": [
                          16544
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16544,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "5421:16:70",
                            "nodeType": "VariableDeclaration",
                            "scope": 16571,
                            "src": "5413:24:70",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 16543,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5413:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16551,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 16545,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16370,
                              "src": "5440:11:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 16547,
                            "indexExpression": {
                              "id": 16546,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16528,
                              "src": "5452:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5440:19:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 16550,
                          "indexExpression": {
                            "expression": {
                              "id": 16548,
                              "name": "msg",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -15,
                              "src": "5460:3:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_message",
                                "typeString": "msg"
                              }
                            },
                            "id": 16549,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "sender",
                            "nodeType": "MemberAccess",
                            "src": "5460:10:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5440:31:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5413:58:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 16555,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16553,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16544,
                                "src": "5489:16:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 16554,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16532,
                                "src": "5509:6:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5489:26:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365",
                              "id": 16556,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5517:42:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              },
                              "value": "ERC20: transfer amount exceeds allowance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds allowance\""
                              }
                            ],
                            "id": 16552,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5481:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16557,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5481:79:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16558,
                        "nodeType": "ExpressionStatement",
                        "src": "5481:79:70"
                      },
                      {
                        "id": 16568,
                        "nodeType": "UncheckedBlock",
                        "src": "5570:90:70",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 16560,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16528,
                                  "src": "5603:6:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 16561,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "5611:3:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 16562,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "5611:10:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 16565,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 16563,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16544,
                                    "src": "5623:16:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 16564,
                                    "name": "amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16532,
                                    "src": "5642:6:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "5623:25:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16559,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16888,
                                "src": "5594:8:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 16566,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5594:55:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 16567,
                            "nodeType": "ExpressionStatement",
                            "src": "5594:55:70"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16569,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5677:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16536,
                        "id": 16570,
                        "nodeType": "Return",
                        "src": "5670:11:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16526,
                    "nodeType": "StructuredDocumentation",
                    "src": "4762:456:70",
                    "text": " @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n Requirements:\n - `sender` and `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`.\n - the caller must have allowance for ``sender``'s tokens of at least\n `amount`."
                  },
                  "functionSelector": "23b872dd",
                  "id": 16572,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "5232:12:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16533,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16528,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "5262:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16572,
                        "src": "5254:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16527,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5254:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16530,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "5286:9:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16572,
                        "src": "5278:17:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16529,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5278:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16532,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "5313:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16572,
                        "src": "5305:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16531,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5305:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5244:81:70"
                  },
                  "returnParameters": {
                    "id": 16536,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16535,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16572,
                        "src": "5350:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16534,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5350:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5349:6:70"
                  },
                  "scope": 16915,
                  "src": "5223:465:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16598,
                    "nodeType": "Block",
                    "src": "6177:114:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16583,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6196:3:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16584,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6196:10:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16585,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16575,
                              "src": "6208:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 16593,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "baseExpression": {
                                  "baseExpression": {
                                    "id": 16586,
                                    "name": "_allowances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16370,
                                    "src": "6217:11:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                      "typeString": "mapping(address => mapping(address => uint256))"
                                    }
                                  },
                                  "id": 16589,
                                  "indexExpression": {
                                    "expression": {
                                      "id": 16587,
                                      "name": "msg",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -15,
                                      "src": "6229:3:70",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_message",
                                        "typeString": "msg"
                                      }
                                    },
                                    "id": 16588,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "sender",
                                    "nodeType": "MemberAccess",
                                    "src": "6229:10:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "6217:23:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 16591,
                                "indexExpression": {
                                  "id": 16590,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16575,
                                  "src": "6241:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "6217:32:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 16592,
                                "name": "addedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16577,
                                "src": "6252:10:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6217:45:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16582,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16888,
                            "src": "6187:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16594,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6187:76:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16595,
                        "nodeType": "ExpressionStatement",
                        "src": "6187:76:70"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16596,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "6280:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16581,
                        "id": 16597,
                        "nodeType": "Return",
                        "src": "6273:11:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16573,
                    "nodeType": "StructuredDocumentation",
                    "src": "5694:384:70",
                    "text": " @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "39509351",
                  "id": 16599,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseAllowance",
                  "nameLocation": "6092:17:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16578,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16575,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "6118:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16599,
                        "src": "6110:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16574,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6110:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16577,
                        "mutability": "mutable",
                        "name": "addedValue",
                        "nameLocation": "6135:10:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16599,
                        "src": "6127:18:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16576,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6127:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6109:37:70"
                  },
                  "returnParameters": {
                    "id": 16581,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16580,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16599,
                        "src": "6171:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16579,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6171:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6170:6:70"
                  },
                  "scope": 16915,
                  "src": "6083:208:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16637,
                    "nodeType": "Block",
                    "src": "6905:302:70",
                    "statements": [
                      {
                        "assignments": [
                          16610
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16610,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "6923:16:70",
                            "nodeType": "VariableDeclaration",
                            "scope": 16637,
                            "src": "6915:24:70",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 16609,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6915:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16617,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 16611,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16370,
                              "src": "6942:11:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 16614,
                            "indexExpression": {
                              "expression": {
                                "id": 16612,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6954:3:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16613,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6954:10:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6942:23:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 16616,
                          "indexExpression": {
                            "id": 16615,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16602,
                            "src": "6966:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6942:32:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6915:59:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 16621,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16619,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16610,
                                "src": "6992:16:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 16620,
                                "name": "subtractedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16604,
                                "src": "7012:15:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6992:35:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                              "id": 16622,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7029:39:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              },
                              "value": "ERC20: decreased allowance below zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
                                "typeString": "literal_string \"ERC20: decreased allowance below zero\""
                              }
                            ],
                            "id": 16618,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6984:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16623,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6984:85:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16624,
                        "nodeType": "ExpressionStatement",
                        "src": "6984:85:70"
                      },
                      {
                        "id": 16634,
                        "nodeType": "UncheckedBlock",
                        "src": "7079:100:70",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 16626,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "7112:3:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 16627,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "7112:10:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 16628,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16602,
                                  "src": "7124:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 16631,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 16629,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16610,
                                    "src": "7133:16:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 16630,
                                    "name": "subtractedValue",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16604,
                                    "src": "7152:15:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "7133:34:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16625,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16888,
                                "src": "7103:8:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 16632,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7103:65:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 16633,
                            "nodeType": "ExpressionStatement",
                            "src": "7103:65:70"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16635,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "7196:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16608,
                        "id": 16636,
                        "nodeType": "Return",
                        "src": "7189:11:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16600,
                    "nodeType": "StructuredDocumentation",
                    "src": "6297:476:70",
                    "text": " @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`."
                  },
                  "functionSelector": "a457c2d7",
                  "id": 16638,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseAllowance",
                  "nameLocation": "6787:17:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16605,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16602,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "6813:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16638,
                        "src": "6805:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16601,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6805:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16604,
                        "mutability": "mutable",
                        "name": "subtractedValue",
                        "nameLocation": "6830:15:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16638,
                        "src": "6822:23:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16603,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6822:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6804:42:70"
                  },
                  "returnParameters": {
                    "id": 16608,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16607,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16638,
                        "src": "6895:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16606,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6895:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6894:6:70"
                  },
                  "scope": 16915,
                  "src": "6778:429:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16714,
                    "nodeType": "Block",
                    "src": "7798:596:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16654,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16649,
                                "name": "sender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16641,
                                "src": "7816:6:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16652,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7834:1:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 16651,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7826:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16650,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7826:7:70",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16653,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7826:10:70",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7816:20:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373",
                              "id": 16655,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7838:39:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              },
                              "value": "ERC20: transfer from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
                                "typeString": "literal_string \"ERC20: transfer from the zero address\""
                              }
                            ],
                            "id": 16648,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7808:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16656,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7808:70:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16657,
                        "nodeType": "ExpressionStatement",
                        "src": "7808:70:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16664,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16659,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16643,
                                "src": "7896:9:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16662,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7917:1:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 16661,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7909:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16660,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7909:7:70",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16663,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7909:10:70",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7896:23:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472657373",
                              "id": 16665,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7921:37:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              },
                              "value": "ERC20: transfer to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
                                "typeString": "literal_string \"ERC20: transfer to the zero address\""
                              }
                            ],
                            "id": 16658,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7888:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16666,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7888:71:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16667,
                        "nodeType": "ExpressionStatement",
                        "src": "7888:71:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16669,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16641,
                              "src": "7991:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16670,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16643,
                              "src": "7999:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16671,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16645,
                              "src": "8010:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16668,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16899,
                            "src": "7970:20:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16672,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7970:47:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16673,
                        "nodeType": "ExpressionStatement",
                        "src": "7970:47:70"
                      },
                      {
                        "assignments": [
                          16675
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16675,
                            "mutability": "mutable",
                            "name": "senderBalance",
                            "nameLocation": "8036:13:70",
                            "nodeType": "VariableDeclaration",
                            "scope": 16714,
                            "src": "8028:21:70",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 16674,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8028:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16679,
                        "initialValue": {
                          "baseExpression": {
                            "id": 16676,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16364,
                            "src": "8052:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 16678,
                          "indexExpression": {
                            "id": 16677,
                            "name": "sender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16641,
                            "src": "8062:6:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "8052:17:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8028:41:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 16683,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16681,
                                "name": "senderBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16675,
                                "src": "8087:13:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 16682,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16645,
                                "src": "8104:6:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8087:23:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365",
                              "id": 16684,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8112:40:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              },
                              "value": "ERC20: transfer amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
                                "typeString": "literal_string \"ERC20: transfer amount exceeds balance\""
                              }
                            ],
                            "id": 16680,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8079:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16685,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8079:74:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16686,
                        "nodeType": "ExpressionStatement",
                        "src": "8079:74:70"
                      },
                      {
                        "id": 16695,
                        "nodeType": "UncheckedBlock",
                        "src": "8163:77:70",
                        "statements": [
                          {
                            "expression": {
                              "id": 16693,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 16687,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16364,
                                  "src": "8187:9:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 16689,
                                "indexExpression": {
                                  "id": 16688,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16641,
                                  "src": "8197:6:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "8187:17:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 16692,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 16690,
                                  "name": "senderBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16675,
                                  "src": "8207:13:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 16691,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16645,
                                  "src": "8223:6:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8207:22:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8187:42:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 16694,
                            "nodeType": "ExpressionStatement",
                            "src": "8187:42:70"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 16700,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 16696,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16364,
                              "src": "8249:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 16698,
                            "indexExpression": {
                              "id": 16697,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16643,
                              "src": "8259:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8249:20:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 16699,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16645,
                            "src": "8273:6:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8249:30:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16701,
                        "nodeType": "ExpressionStatement",
                        "src": "8249:30:70"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16703,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16641,
                              "src": "8304:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16704,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16643,
                              "src": "8312:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16705,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16645,
                              "src": "8323:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16702,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16387,
                            "src": "8295:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16706,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8295:35:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16707,
                        "nodeType": "EmitStatement",
                        "src": "8290:40:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16709,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16641,
                              "src": "8361:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16710,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16643,
                              "src": "8369:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16711,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16645,
                              "src": "8380:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16708,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16910,
                            "src": "8341:19:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16712,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8341:46:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16713,
                        "nodeType": "ExpressionStatement",
                        "src": "8341:46:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16639,
                    "nodeType": "StructuredDocumentation",
                    "src": "7213:463:70",
                    "text": " @dev Moves `amount` of tokens from `sender` to `recipient`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n Requirements:\n - `sender` cannot be the zero address.\n - `recipient` cannot be the zero address.\n - `sender` must have a balance of at least `amount`."
                  },
                  "id": 16715,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transfer",
                  "nameLocation": "7690:9:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16646,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16641,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "7717:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16715,
                        "src": "7709:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16640,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7709:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16643,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "7741:9:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16715,
                        "src": "7733:17:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16642,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7733:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16645,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "7768:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16715,
                        "src": "7760:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16644,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7760:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7699:81:70"
                  },
                  "returnParameters": {
                    "id": 16647,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7798:0:70"
                  },
                  "scope": 16915,
                  "src": "7681:713:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16770,
                    "nodeType": "Block",
                    "src": "8735:324:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16729,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16724,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16718,
                                "src": "8753:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16727,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "8772:1:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 16726,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "8764:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16725,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8764:7:70",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16728,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8764:10:70",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "8753:21:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                              "id": 16730,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8776:33:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              },
                              "value": "ERC20: mint to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
                                "typeString": "literal_string \"ERC20: mint to the zero address\""
                              }
                            ],
                            "id": 16723,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8745:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16731,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8745:65:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16732,
                        "nodeType": "ExpressionStatement",
                        "src": "8745:65:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16736,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8850:1:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 16735,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8842:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16734,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8842:7:70",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16737,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8842:10:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16738,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16718,
                              "src": "8854:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16739,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16720,
                              "src": "8863:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16733,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16899,
                            "src": "8821:20:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16740,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8821:49:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16741,
                        "nodeType": "ExpressionStatement",
                        "src": "8821:49:70"
                      },
                      {
                        "expression": {
                          "id": 16744,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16742,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16372,
                            "src": "8881:12:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 16743,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16720,
                            "src": "8897:6:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8881:22:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16745,
                        "nodeType": "ExpressionStatement",
                        "src": "8881:22:70"
                      },
                      {
                        "expression": {
                          "id": 16750,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 16746,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16364,
                              "src": "8913:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 16748,
                            "indexExpression": {
                              "id": 16747,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16718,
                              "src": "8923:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8913:18:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 16749,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16720,
                            "src": "8935:6:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8913:28:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16751,
                        "nodeType": "ExpressionStatement",
                        "src": "8913:28:70"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16755,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8973:1:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 16754,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8965:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16753,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8965:7:70",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16756,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8965:10:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16757,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16718,
                              "src": "8977:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16758,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16720,
                              "src": "8986:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16752,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16387,
                            "src": "8956:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16759,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8956:37:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16760,
                        "nodeType": "EmitStatement",
                        "src": "8951:42:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16764,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9032:1:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 16763,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9024:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16762,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9024:7:70",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16765,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9024:10:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16766,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16718,
                              "src": "9036:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16767,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16720,
                              "src": "9045:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16761,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16910,
                            "src": "9004:19:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16768,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9004:48:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16769,
                        "nodeType": "ExpressionStatement",
                        "src": "9004:48:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16716,
                    "nodeType": "StructuredDocumentation",
                    "src": "8400:265:70",
                    "text": "@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address."
                  },
                  "id": 16771,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "8679:5:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16721,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16718,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "8693:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16771,
                        "src": "8685:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16717,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8685:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16720,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "8710:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16771,
                        "src": "8702:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16719,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8702:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8684:33:70"
                  },
                  "returnParameters": {
                    "id": 16722,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8735:0:70"
                  },
                  "scope": 16915,
                  "src": "8670:389:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16842,
                    "nodeType": "Block",
                    "src": "9444:511:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16785,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16780,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16774,
                                "src": "9462:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16783,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9481:1:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 16782,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9473:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16781,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9473:7:70",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16784,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9473:10:70",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9462:21:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f2061646472657373",
                              "id": 16786,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9485:35:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              },
                              "value": "ERC20: burn from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f",
                                "typeString": "literal_string \"ERC20: burn from the zero address\""
                              }
                            ],
                            "id": 16779,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9454:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16787,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9454:67:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16788,
                        "nodeType": "ExpressionStatement",
                        "src": "9454:67:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16790,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16774,
                              "src": "9553:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16793,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9570:1:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 16792,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9562:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16791,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9562:7:70",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16794,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9562:10:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16795,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16776,
                              "src": "9574:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16789,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16899,
                            "src": "9532:20:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16796,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9532:49:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16797,
                        "nodeType": "ExpressionStatement",
                        "src": "9532:49:70"
                      },
                      {
                        "assignments": [
                          16799
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16799,
                            "mutability": "mutable",
                            "name": "accountBalance",
                            "nameLocation": "9600:14:70",
                            "nodeType": "VariableDeclaration",
                            "scope": 16842,
                            "src": "9592:22:70",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 16798,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9592:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16803,
                        "initialValue": {
                          "baseExpression": {
                            "id": 16800,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16364,
                            "src": "9617:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 16802,
                          "indexExpression": {
                            "id": 16801,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16774,
                            "src": "9627:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "9617:18:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9592:43:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 16807,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16805,
                                "name": "accountBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16799,
                                "src": "9653:14:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 16806,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16776,
                                "src": "9671:6:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9653:24:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365",
                              "id": 16808,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9679:36:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              },
                              "value": "ERC20: burn amount exceeds balance"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd",
                                "typeString": "literal_string \"ERC20: burn amount exceeds balance\""
                              }
                            ],
                            "id": 16804,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9645:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16809,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9645:71:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16810,
                        "nodeType": "ExpressionStatement",
                        "src": "9645:71:70"
                      },
                      {
                        "id": 16819,
                        "nodeType": "UncheckedBlock",
                        "src": "9726:79:70",
                        "statements": [
                          {
                            "expression": {
                              "id": 16817,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 16811,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16364,
                                  "src": "9750:9:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 16813,
                                "indexExpression": {
                                  "id": 16812,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16774,
                                  "src": "9760:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "9750:18:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 16816,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 16814,
                                  "name": "accountBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16799,
                                  "src": "9771:14:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 16815,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16776,
                                  "src": "9788:6:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "9771:23:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9750:44:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 16818,
                            "nodeType": "ExpressionStatement",
                            "src": "9750:44:70"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 16822,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16820,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16372,
                            "src": "9814:12:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "id": 16821,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16776,
                            "src": "9830:6:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9814:22:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16823,
                        "nodeType": "ExpressionStatement",
                        "src": "9814:22:70"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16825,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16774,
                              "src": "9861:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16828,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9878:1:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 16827,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9870:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16826,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9870:7:70",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16829,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9870:10:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16830,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16776,
                              "src": "9882:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16824,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16387,
                            "src": "9852:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16831,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9852:37:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16832,
                        "nodeType": "EmitStatement",
                        "src": "9847:42:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16834,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16774,
                              "src": "9920:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16837,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9937:1:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  }
                                ],
                                "id": 16836,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9929:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16835,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9929:7:70",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16838,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9929:10:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16839,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16776,
                              "src": "9941:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16833,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16910,
                            "src": "9900:19:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16840,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9900:48:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16841,
                        "nodeType": "ExpressionStatement",
                        "src": "9900:48:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16772,
                    "nodeType": "StructuredDocumentation",
                    "src": "9065:309:70",
                    "text": " @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens."
                  },
                  "id": 16843,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_burn",
                  "nameLocation": "9388:5:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16777,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16774,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "9402:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16843,
                        "src": "9394:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16773,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9394:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16776,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "9419:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16843,
                        "src": "9411:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16775,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9411:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9393:33:70"
                  },
                  "returnParameters": {
                    "id": 16778,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9444:0:70"
                  },
                  "scope": 16915,
                  "src": "9379:576:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16887,
                    "nodeType": "Block",
                    "src": "10491:257:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16859,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16854,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16846,
                                "src": "10509:5:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16857,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10526:1:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 16856,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10518:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16855,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10518:7:70",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16858,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10518:10:70",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10509:19:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373",
                              "id": 16860,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10530:38:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              },
                              "value": "ERC20: approve from the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
                                "typeString": "literal_string \"ERC20: approve from the zero address\""
                              }
                            ],
                            "id": 16853,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10501:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16861,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10501:68:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16862,
                        "nodeType": "ExpressionStatement",
                        "src": "10501:68:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16869,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16864,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16848,
                                "src": "10587:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16867,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10606:1:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    }
                                  ],
                                  "id": 16866,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10598:7:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16865,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10598:7:70",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16868,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10598:10:70",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10587:21:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f766520746f20746865207a65726f2061646472657373",
                              "id": 16870,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10610:36:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              },
                              "value": "ERC20: approve to the zero address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
                                "typeString": "literal_string \"ERC20: approve to the zero address\""
                              }
                            ],
                            "id": 16863,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10579:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16871,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10579:68:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16872,
                        "nodeType": "ExpressionStatement",
                        "src": "10579:68:70"
                      },
                      {
                        "expression": {
                          "id": 16879,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 16873,
                                "name": "_allowances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16370,
                                "src": "10658:11:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(address => uint256))"
                                }
                              },
                              "id": 16876,
                              "indexExpression": {
                                "id": 16874,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16846,
                                "src": "10670:5:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "10658:18:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 16877,
                            "indexExpression": {
                              "id": 16875,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16848,
                              "src": "10677:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10658:27:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16878,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16850,
                            "src": "10688:6:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "10658:36:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 16880,
                        "nodeType": "ExpressionStatement",
                        "src": "10658:36:70"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16882,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16846,
                              "src": "10718:5:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16883,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16848,
                              "src": "10725:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16884,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16850,
                              "src": "10734:6:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16881,
                            "name": "Approval",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16396,
                            "src": "10709:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16885,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10709:32:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16886,
                        "nodeType": "EmitStatement",
                        "src": "10704:37:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16844,
                    "nodeType": "StructuredDocumentation",
                    "src": "9961:412:70",
                    "text": " @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address."
                  },
                  "id": 16888,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_approve",
                  "nameLocation": "10387:8:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16846,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "10413:5:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16888,
                        "src": "10405:13:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16845,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10405:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16848,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "10436:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16888,
                        "src": "10428:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16847,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10428:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16850,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "10461:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16888,
                        "src": "10453:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16849,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10453:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10395:78:70"
                  },
                  "returnParameters": {
                    "id": 16852,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10491:0:70"
                  },
                  "scope": 16915,
                  "src": "10378:370:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16898,
                    "nodeType": "Block",
                    "src": "11451:2:70",
                    "statements": []
                  },
                  "documentation": {
                    "id": 16889,
                    "nodeType": "StructuredDocumentation",
                    "src": "10754:573:70",
                    "text": " @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 16899,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "11341:20:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16896,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16891,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11379:4:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16899,
                        "src": "11371:12:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16890,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11371:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16893,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11401:2:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16899,
                        "src": "11393:10:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16892,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11393:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16895,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11421:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16899,
                        "src": "11413:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16894,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11413:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11361:72:70"
                  },
                  "returnParameters": {
                    "id": 16897,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11451:0:70"
                  },
                  "scope": 16915,
                  "src": "11332:121:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16909,
                    "nodeType": "Block",
                    "src": "12159:2:70",
                    "statements": []
                  },
                  "documentation": {
                    "id": 16900,
                    "nodeType": "StructuredDocumentation",
                    "src": "11459:577:70",
                    "text": " @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]."
                  },
                  "id": 16910,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_afterTokenTransfer",
                  "nameLocation": "12050:19:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16907,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16902,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "12087:4:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16910,
                        "src": "12079:12:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16901,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12079:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16904,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "12109:2:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16910,
                        "src": "12101:10:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16903,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12101:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16906,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "12129:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 16910,
                        "src": "12121:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16905,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12121:7:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12069:72:70"
                  },
                  "returnParameters": {
                    "id": 16908,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12159:0:70"
                  },
                  "scope": 16915,
                  "src": "12041:120:70",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 16914,
                  "mutability": "mutable",
                  "name": "__gap",
                  "nameLocation": "12187:5:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 16915,
                  "src": "12167:25:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_uint256_$45_storage",
                    "typeString": "uint256[45]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 16911,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "12167:7:70",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 16913,
                    "length": {
                      "hexValue": "3435",
                      "id": 16912,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "12175:2:70",
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_45_by_1",
                        "typeString": "int_const 45"
                      },
                      "value": "45"
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "12167:11:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_uint256_$45_storage_ptr",
                      "typeString": "uint256[45]"
                    }
                  },
                  "visibility": "private"
                }
              ],
              "scope": 16916,
              "src": "1259:10936:70",
              "usedErrors": []
            }
          ],
          "src": "33:12163:70"
        },
        "id": 70
      },
      "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol",
          "exportedSymbols": {
            "ERC20": [
              16915
            ],
            "ERC20Mintable": [
              16988
            ]
          },
          "id": 16989,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16917,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:71"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20.sol",
              "file": "./ERC20.sol",
              "id": 16918,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16989,
              "sourceUnit": 16916,
              "src": "63:21:71",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16920,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16915,
                    "src": "342:5:71"
                  },
                  "id": 16921,
                  "nodeType": "InheritanceSpecifier",
                  "src": "342:5:71"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16919,
                "nodeType": "StructuredDocumentation",
                "src": "86:229:71",
                "text": " @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n which have permission to mint (create) new tokens as they see fit.\n At construction, the deployer of the contract is the only minter."
              },
              "fullyImplemented": true,
              "id": 16988,
              "linearizedBaseContracts": [
                16988,
                16915
              ],
              "name": "ERC20Mintable",
              "nameLocation": "325:13:71",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 16935,
                    "nodeType": "Block",
                    "src": "490:2:71",
                    "statements": []
                  },
                  "id": 16936,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 16930,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16923,
                          "src": "463:5:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 16931,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16925,
                          "src": "470:7:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 16932,
                          "name": "_decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16927,
                          "src": "479:9:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        }
                      ],
                      "id": 16933,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16929,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 16915,
                        "src": "457:5:71"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "457:32:71"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16928,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16923,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "389:5:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16936,
                        "src": "375:19:71",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16922,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "375:6:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16925,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "418:7:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16936,
                        "src": "404:21:71",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16924,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "404:6:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16927,
                        "mutability": "mutable",
                        "name": "_decimals",
                        "nameLocation": "441:9:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16936,
                        "src": "435:15:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 16926,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "435:5:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "365:91:71"
                  },
                  "returnParameters": {
                    "id": 16934,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "490:0:71"
                  },
                  "scope": 16988,
                  "src": "354:138:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16953,
                    "nodeType": "Block",
                    "src": "697:60:71",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16947,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16939,
                              "src": "713:7:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16948,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16941,
                              "src": "722:6:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16946,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16771,
                            "src": "707:5:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16949,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "707:22:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16950,
                        "nodeType": "ExpressionStatement",
                        "src": "707:22:71"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16951,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "746:4:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16945,
                        "id": 16952,
                        "nodeType": "Return",
                        "src": "739:11:71"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16937,
                    "nodeType": "StructuredDocumentation",
                    "src": "498:125:71",
                    "text": " @dev See {ERC20-_mint}.\n Requirements:\n - the caller must have the {MinterRole}."
                  },
                  "functionSelector": "40c10f19",
                  "id": 16954,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "637:4:71",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16942,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16939,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "650:7:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16954,
                        "src": "642:15:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16938,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "642:7:71",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16941,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "667:6:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16954,
                        "src": "659:14:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16940,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "659:7:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "641:33:71"
                  },
                  "returnParameters": {
                    "id": 16945,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16944,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16954,
                        "src": "691:4:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16943,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "691:4:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "690:6:71"
                  },
                  "scope": 16988,
                  "src": "628:129:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16970,
                    "nodeType": "Block",
                    "src": "832:60:71",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16964,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16956,
                              "src": "848:7:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16965,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16958,
                              "src": "857:6:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16963,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16843,
                            "src": "842:5:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16966,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "842:22:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16967,
                        "nodeType": "ExpressionStatement",
                        "src": "842:22:71"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 16968,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "881:4:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 16962,
                        "id": 16969,
                        "nodeType": "Return",
                        "src": "874:11:71"
                      }
                    ]
                  },
                  "functionSelector": "9dc29fac",
                  "id": 16971,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "772:4:71",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16959,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16956,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "785:7:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16971,
                        "src": "777:15:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16955,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "777:7:71",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16958,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "802:6:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16971,
                        "src": "794:14:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16957,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "794:7:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "776:33:71"
                  },
                  "returnParameters": {
                    "id": 16962,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16961,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16971,
                        "src": "826:4:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16960,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "826:4:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "825:6:71"
                  },
                  "scope": 16988,
                  "src": "763:129:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16986,
                    "nodeType": "Block",
                    "src": "1001:44:71",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16981,
                              "name": "from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16973,
                              "src": "1021:4:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16982,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16975,
                              "src": "1027:2:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16983,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16977,
                              "src": "1031:6:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16980,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16715,
                            "src": "1011:9:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16984,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1011:27:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16985,
                        "nodeType": "ExpressionStatement",
                        "src": "1011:27:71"
                      }
                    ]
                  },
                  "functionSelector": "1c9c7903",
                  "id": 16987,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "masterTransfer",
                  "nameLocation": "907:14:71",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16978,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16973,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "939:4:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16987,
                        "src": "931:12:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16972,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "931:7:71",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16975,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "961:2:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16987,
                        "src": "953:10:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16974,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "953:7:71",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16977,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "981:6:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 16987,
                        "src": "973:14:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16976,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "973:7:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "921:72:71"
                  },
                  "returnParameters": {
                    "id": 16979,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1001:0:71"
                  },
                  "scope": 16988,
                  "src": "898:147:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 16989,
              "src": "316:731:71",
              "usedErrors": []
            }
          ],
          "src": "37:1011:71"
        },
        "id": 71
      },
      "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
          "exportedSymbols": {
            "ERC20": [
              16915
            ],
            "ERC20Mintable": [
              16988
            ],
            "IYieldSource": [
              16357
            ],
            "MockYieldSource": [
              17204
            ]
          },
          "id": 17205,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16990,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:72"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "file": "../IYieldSource.sol",
              "id": 16991,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17205,
              "sourceUnit": 16358,
              "src": "63:29:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/test/ERC20Mintable.sol",
              "file": "./ERC20Mintable.sol",
              "id": 16992,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17205,
              "sourceUnit": 16989,
              "src": "93:29:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16994,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16915,
                    "src": "382:5:72"
                  },
                  "id": 16995,
                  "nodeType": "InheritanceSpecifier",
                  "src": "382:5:72"
                },
                {
                  "baseName": {
                    "id": 16996,
                    "name": "IYieldSource",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16357,
                    "src": "389:12:72"
                  },
                  "id": 16997,
                  "nodeType": "InheritanceSpecifier",
                  "src": "389:12:72"
                }
              ],
              "contractDependencies": [
                16988
              ],
              "contractKind": "contract",
              "documentation": {
                "id": 16993,
                "nodeType": "StructuredDocumentation",
                "src": "124:229:72",
                "text": " @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},\n which have permission to mint (create) new tokens as they see fit.\n At construction, the deployer of the contract is the only minter."
              },
              "fullyImplemented": true,
              "id": 17204,
              "linearizedBaseContracts": [
                17204,
                16357,
                16915
              ],
              "name": "MockYieldSource",
              "nameLocation": "363:15:72",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "functionSelector": "fc0c546a",
                  "id": 17000,
                  "mutability": "mutable",
                  "name": "token",
                  "nameLocation": "429:5:72",
                  "nodeType": "VariableDeclaration",
                  "scope": 17204,
                  "src": "408:26:72",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                    "typeString": "contract ERC20Mintable"
                  },
                  "typeName": {
                    "id": 16999,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16998,
                      "name": "ERC20Mintable",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16988,
                      "src": "408:13:72"
                    },
                    "referencedDeclaration": 16988,
                    "src": "408:13:72",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                      "typeString": "contract ERC20Mintable"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 17024,
                    "nodeType": "Block",
                    "src": "570:69:72",
                    "statements": [
                      {
                        "expression": {
                          "id": 17022,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 17014,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17000,
                            "src": "580:5:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                              "typeString": "contract ERC20Mintable"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 17018,
                                "name": "_name",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17002,
                                "src": "606:5:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                }
                              },
                              {
                                "id": 17019,
                                "name": "_symbol",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17004,
                                "src": "613:7:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                }
                              },
                              {
                                "id": 17020,
                                "name": "_decimals",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17006,
                                "src": "622:9:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                },
                                {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                },
                                {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              ],
                              "id": 17017,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "NewExpression",
                              "src": "588:17:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_creation_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint8_$returns$_t_contract$_ERC20Mintable_$16988_$",
                                "typeString": "function (string memory,string memory,uint8) returns (contract ERC20Mintable)"
                              },
                              "typeName": {
                                "id": 17016,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 17015,
                                  "name": "ERC20Mintable",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 16988,
                                  "src": "592:13:72"
                                },
                                "referencedDeclaration": 16988,
                                "src": "592:13:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                  "typeString": "contract ERC20Mintable"
                                }
                              }
                            },
                            "id": 17021,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "588:44:72",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                              "typeString": "contract ERC20Mintable"
                            }
                          },
                          "src": "580:52:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                            "typeString": "contract ERC20Mintable"
                          }
                        },
                        "id": 17023,
                        "nodeType": "ExpressionStatement",
                        "src": "580:52:72"
                      }
                    ]
                  },
                  "id": 17025,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "hexValue": "5949454c44",
                          "id": 17009,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "550:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_aeed4774a6ca7dc9eef4423038c2a3abe132048336feddd81b2e9a5e941eb777",
                            "typeString": "literal_string \"YIELD\""
                          },
                          "value": "YIELD"
                        },
                        {
                          "hexValue": "594c44",
                          "id": 17010,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "559:5:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_5b258124977d949576b4227d04c11dc321c656da5497de128c6e01ecf66f56b3",
                            "typeString": "literal_string \"YLD\""
                          },
                          "value": "YLD"
                        },
                        {
                          "hexValue": "3138",
                          "id": 17011,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "566:2:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_18_by_1",
                            "typeString": "int_const 18"
                          },
                          "value": "18"
                        }
                      ],
                      "id": 17012,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 17008,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 16915,
                        "src": "544:5:72"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "544:25:72"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17007,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17002,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "476:5:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17025,
                        "src": "462:19:72",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 17001,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "462:6:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17004,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "505:7:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17025,
                        "src": "491:21:72",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 17003,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "491:6:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17006,
                        "mutability": "mutable",
                        "name": "_decimals",
                        "nameLocation": "528:9:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17025,
                        "src": "522:15:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 17005,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "522:5:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "452:91:72"
                  },
                  "returnParameters": {
                    "id": 17013,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "570:0:72"
                  },
                  "scope": 17204,
                  "src": "441:198:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 17040,
                    "nodeType": "Block",
                    "src": "685:50:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 17035,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "714:4:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 17034,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "706:7:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 17033,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "706:7:72",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 17036,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "706:13:72",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17037,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17027,
                              "src": "721:6:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 17030,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17000,
                              "src": "695:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 17032,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mint",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16954,
                            "src": "695:10:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,uint256) external returns (bool)"
                            }
                          },
                          "id": 17038,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "695:33:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17039,
                        "nodeType": "ExpressionStatement",
                        "src": "695:33:72"
                      }
                    ]
                  },
                  "functionSelector": "765287ef",
                  "id": 17041,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "yield",
                  "nameLocation": "654:5:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17028,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17027,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "668:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17041,
                        "src": "660:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17026,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "660:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "659:16:72"
                  },
                  "returnParameters": {
                    "id": 17029,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "685:0:72"
                  },
                  "scope": 17204,
                  "src": "645:90:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16332
                  ],
                  "body": {
                    "id": 17053,
                    "nodeType": "Block",
                    "src": "918:38:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17050,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17000,
                              "src": "943:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                "typeString": "contract ERC20Mintable"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                "typeString": "contract ERC20Mintable"
                              }
                            ],
                            "id": 17049,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "935:7:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 17048,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "935:7:72",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 17051,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "935:14:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 17047,
                        "id": 17052,
                        "nodeType": "Return",
                        "src": "928:21:72"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17042,
                    "nodeType": "StructuredDocumentation",
                    "src": "741:107:72",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token address."
                  },
                  "functionSelector": "c89039c5",
                  "id": 17054,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToken",
                  "nameLocation": "862:12:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 17044,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "891:8:72"
                  },
                  "parameters": {
                    "id": 17043,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "874:2:72"
                  },
                  "returnParameters": {
                    "id": 17047,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17046,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17054,
                        "src": "909:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17045,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "909:7:72",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "908:9:72"
                  },
                  "scope": 17204,
                  "src": "853:103:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16340
                  ],
                  "body": {
                    "id": 17069,
                    "nodeType": "Block",
                    "src": "1200:55:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 17065,
                                  "name": "addr",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17057,
                                  "src": "1242:4:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 17064,
                                "name": "balanceOf",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16468,
                                "src": "1232:9:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_uint256_$",
                                  "typeString": "function (address) view returns (uint256)"
                                }
                              },
                              "id": 17066,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1232:15:72",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17063,
                            "name": "sharesToTokens",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17203,
                            "src": "1217:14:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 17067,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1217:31:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 17062,
                        "id": 17068,
                        "nodeType": "Return",
                        "src": "1210:38:72"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17055,
                    "nodeType": "StructuredDocumentation",
                    "src": "962:154:72",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens."
                  },
                  "functionSelector": "b99152d0",
                  "id": 17070,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOfToken",
                  "nameLocation": "1130:14:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 17059,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1173:8:72"
                  },
                  "parameters": {
                    "id": 17058,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17057,
                        "mutability": "mutable",
                        "name": "addr",
                        "nameLocation": "1153:4:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17070,
                        "src": "1145:12:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17056,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1145:7:72",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1144:14:72"
                  },
                  "returnParameters": {
                    "id": 17062,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17061,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17070,
                        "src": "1191:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17060,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1191:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1190:9:72"
                  },
                  "scope": 17204,
                  "src": "1121:134:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16348
                  ],
                  "body": {
                    "id": 17102,
                    "nodeType": "Block",
                    "src": "1631:146:72",
                    "statements": [
                      {
                        "assignments": [
                          17080
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17080,
                            "mutability": "mutable",
                            "name": "shares",
                            "nameLocation": "1649:6:72",
                            "nodeType": "VariableDeclaration",
                            "scope": 17102,
                            "src": "1641:14:72",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 17079,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1641:7:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17084,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 17082,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17073,
                              "src": "1673:6:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17081,
                            "name": "tokensToShares",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17169,
                            "src": "1658:14:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 17083,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1658:22:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1641:39:72"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17088,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "1709:3:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 17089,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "1709:10:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 17092,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1729:4:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 17091,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1721:7:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 17090,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1721:7:72",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 17093,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1721:13:72",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17094,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17073,
                              "src": "1736:6:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 17085,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17000,
                              "src": "1690:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 17087,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "transferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16572,
                            "src": "1690:18:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) external returns (bool)"
                            }
                          },
                          "id": 17095,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1690:53:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17096,
                        "nodeType": "ExpressionStatement",
                        "src": "1690:53:72"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17098,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17075,
                              "src": "1759:2:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17099,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17080,
                              "src": "1763:6:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17097,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16771,
                            "src": "1753:5:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 17100,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1753:17:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17101,
                        "nodeType": "ExpressionStatement",
                        "src": "1753:17:72"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17071,
                    "nodeType": "StructuredDocumentation",
                    "src": "1261:296:72",
                    "text": "@notice Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\n @param amount The amount of asset tokens to be supplied.  Denominated in `depositToken()` as above.\n @param to The user whose balance will receive the tokens"
                  },
                  "functionSelector": "87a6eeef",
                  "id": 17103,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supplyTokenTo",
                  "nameLocation": "1571:13:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 17077,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1622:8:72"
                  },
                  "parameters": {
                    "id": 17076,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17073,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1593:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17103,
                        "src": "1585:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17072,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1585:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17075,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1609:2:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17103,
                        "src": "1601:10:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17074,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1601:7:72",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1584:28:72"
                  },
                  "returnParameters": {
                    "id": 17078,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1631:0:72"
                  },
                  "scope": 17204,
                  "src": "1562:215:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    16356
                  ],
                  "body": {
                    "id": 17134,
                    "nodeType": "Block",
                    "src": "2095:159:72",
                    "statements": [
                      {
                        "assignments": [
                          17113
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17113,
                            "mutability": "mutable",
                            "name": "shares",
                            "nameLocation": "2113:6:72",
                            "nodeType": "VariableDeclaration",
                            "scope": 17134,
                            "src": "2105:14:72",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 17112,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2105:7:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17117,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 17115,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17106,
                              "src": "2137:6:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17114,
                            "name": "tokensToShares",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17169,
                            "src": "2122:14:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 17116,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2122:22:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2105:39:72"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17119,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2160:3:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 17120,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2160:10:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17121,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17113,
                              "src": "2172:6:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17118,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16843,
                            "src": "2154:5:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 17122,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2154:25:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17123,
                        "nodeType": "ExpressionStatement",
                        "src": "2154:25:72"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17127,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2204:3:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 17128,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2204:10:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17129,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17106,
                              "src": "2216:6:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 17124,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17000,
                              "src": "2189:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 17126,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "transfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16488,
                            "src": "2189:14:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,uint256) external returns (bool)"
                            }
                          },
                          "id": 17130,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2189:34:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17131,
                        "nodeType": "ExpressionStatement",
                        "src": "2189:34:72"
                      },
                      {
                        "expression": {
                          "id": 17132,
                          "name": "amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 17106,
                          "src": "2241:6:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 17111,
                        "id": 17133,
                        "nodeType": "Return",
                        "src": "2234:13:72"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17104,
                    "nodeType": "StructuredDocumentation",
                    "src": "1783:234:72",
                    "text": "@notice Redeems tokens from the yield source.\n @param amount The amount of asset tokens to withdraw.  Denominated in `depositToken()` as above.\n @return The actual amount of interst bearing tokens that were redeemed."
                  },
                  "functionSelector": "013054c2",
                  "id": 17135,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeemToken",
                  "nameLocation": "2031:11:72",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 17108,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2068:8:72"
                  },
                  "parameters": {
                    "id": 17107,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17106,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2051:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17135,
                        "src": "2043:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17105,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2043:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2042:16:72"
                  },
                  "returnParameters": {
                    "id": 17111,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17110,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17135,
                        "src": "2086:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17109,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2086:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2085:9:72"
                  },
                  "scope": 17204,
                  "src": "2022:232:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17168,
                    "nodeType": "Block",
                    "src": "2330:218:72",
                    "statements": [
                      {
                        "assignments": [
                          17143
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17143,
                            "mutability": "mutable",
                            "name": "tokenBalance",
                            "nameLocation": "2348:12:72",
                            "nodeType": "VariableDeclaration",
                            "scope": 17168,
                            "src": "2340:20:72",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 17142,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2340:7:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17151,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 17148,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2387:4:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                    "typeString": "contract MockYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                    "typeString": "contract MockYieldSource"
                                  }
                                ],
                                "id": 17147,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2379:7:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 17146,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2379:7:72",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 17149,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2379:13:72",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 17144,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17000,
                              "src": "2363:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                "typeString": "contract ERC20Mintable"
                              }
                            },
                            "id": 17145,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16468,
                            "src": "2363:15:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 17150,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2363:30:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2340:53:72"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 17154,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 17152,
                            "name": "tokenBalance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17143,
                            "src": "2408:12:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 17153,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2424:1:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "2408:17:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 17166,
                          "nodeType": "Block",
                          "src": "2471:71:72",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 17164,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 17161,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 17158,
                                        "name": "tokens",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 17137,
                                        "src": "2493:6:72",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "arguments": [],
                                        "expression": {
                                          "argumentTypes": [],
                                          "id": 17159,
                                          "name": "totalSupply",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 16455,
                                          "src": "2502:11:72",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                                            "typeString": "function () view returns (uint256)"
                                          }
                                        },
                                        "id": 17160,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "2502:13:72",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "2493:22:72",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 17162,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "2492:24:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "id": 17163,
                                  "name": "tokenBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17143,
                                  "src": "2519:12:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "2492:39:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 17141,
                              "id": 17165,
                              "nodeType": "Return",
                              "src": "2485:46:72"
                            }
                          ]
                        },
                        "id": 17167,
                        "nodeType": "IfStatement",
                        "src": "2404:138:72",
                        "trueBody": {
                          "id": 17157,
                          "nodeType": "Block",
                          "src": "2427:38:72",
                          "statements": [
                            {
                              "expression": {
                                "id": 17155,
                                "name": "tokens",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17137,
                                "src": "2448:6:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 17141,
                              "id": 17156,
                              "nodeType": "Return",
                              "src": "2441:13:72"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "functionSelector": "f3044ac7",
                  "id": 17169,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tokensToShares",
                  "nameLocation": "2269:14:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17138,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17137,
                        "mutability": "mutable",
                        "name": "tokens",
                        "nameLocation": "2292:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17169,
                        "src": "2284:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17136,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2284:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2283:16:72"
                  },
                  "returnParameters": {
                    "id": 17141,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17140,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17169,
                        "src": "2321:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17139,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2321:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2320:9:72"
                  },
                  "scope": 17204,
                  "src": "2260:288:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 17202,
                    "nodeType": "Block",
                    "src": "2624:200:72",
                    "statements": [
                      {
                        "assignments": [
                          17177
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17177,
                            "mutability": "mutable",
                            "name": "supply",
                            "nameLocation": "2642:6:72",
                            "nodeType": "VariableDeclaration",
                            "scope": 17202,
                            "src": "2634:14:72",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 17176,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2634:7:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17180,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 17178,
                            "name": "totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16455,
                            "src": "2651:11:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 17179,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2651:13:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2634:30:72"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 17183,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 17181,
                            "name": "supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17177,
                            "src": "2679:6:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 17182,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2689:1:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "2679:11:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 17200,
                          "nodeType": "Block",
                          "src": "2736:82:72",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 17198,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 17195,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 17187,
                                        "name": "shares",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 17171,
                                        "src": "2758:6:72",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "id": 17192,
                                                "name": "this",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": -28,
                                                "src": "2791:4:72",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                                  "typeString": "contract MockYieldSource"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_contract$_MockYieldSource_$17204",
                                                  "typeString": "contract MockYieldSource"
                                                }
                                              ],
                                              "id": 17191,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "nodeType": "ElementaryTypeNameExpression",
                                              "src": "2783:7:72",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_type$_t_address_$",
                                                "typeString": "type(address)"
                                              },
                                              "typeName": {
                                                "id": 17190,
                                                "name": "address",
                                                "nodeType": "ElementaryTypeName",
                                                "src": "2783:7:72",
                                                "typeDescriptions": {}
                                              }
                                            },
                                            "id": 17193,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "typeConversion",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "2783:13:72",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          ],
                                          "expression": {
                                            "id": 17188,
                                            "name": "token",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 17000,
                                            "src": "2767:5:72",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_contract$_ERC20Mintable_$16988",
                                              "typeString": "contract ERC20Mintable"
                                            }
                                          },
                                          "id": 17189,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "balanceOf",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 16468,
                                          "src": "2767:15:72",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                            "typeString": "function (address) view external returns (uint256)"
                                          }
                                        },
                                        "id": 17194,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "2767:30:72",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "2758:39:72",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 17196,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "2757:41:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "id": 17197,
                                  "name": "supply",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17177,
                                  "src": "2801:6:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "2757:50:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 17175,
                              "id": 17199,
                              "nodeType": "Return",
                              "src": "2750:57:72"
                            }
                          ]
                        },
                        "id": 17201,
                        "nodeType": "IfStatement",
                        "src": "2675:143:72",
                        "trueBody": {
                          "id": 17186,
                          "nodeType": "Block",
                          "src": "2692:38:72",
                          "statements": [
                            {
                              "expression": {
                                "id": 17184,
                                "name": "shares",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17171,
                                "src": "2713:6:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 17175,
                              "id": 17185,
                              "nodeType": "Return",
                              "src": "2706:13:72"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "functionSelector": "27def4fd",
                  "id": 17203,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sharesToTokens",
                  "nameLocation": "2563:14:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17172,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17171,
                        "mutability": "mutable",
                        "name": "shares",
                        "nameLocation": "2586:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 17203,
                        "src": "2578:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17170,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2578:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2577:16:72"
                  },
                  "returnParameters": {
                    "id": 17175,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17174,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17203,
                        "src": "2615:7:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17173,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2615:7:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2614:9:72"
                  },
                  "scope": 17204,
                  "src": "2554:270:72",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                }
              ],
              "scope": 17205,
              "src": "354:2472:72",
              "usedErrors": []
            }
          ],
          "src": "37:2790:72"
        },
        "id": 72
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBeacon.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBeacon.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawBeacon": [
              4371
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IERC20": [
              663
            ],
            "Ownable": [
              3258
            ],
            "RNGInterface": [
              3314
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 17208,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17206,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:73"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
              "id": 17207,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17208,
              "sourceUnit": 4372,
              "src": "63:56:73",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:81:73"
        },
        "id": 73
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBuffer.sol",
          "exportedSymbols": {
            "DrawBuffer": [
              4742
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ]
          },
          "id": 17211,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17209,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:74"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/DrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/DrawBuffer.sol",
              "id": 17210,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17211,
              "sourceUnit": 4743,
              "src": "63:56:74",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:81:74"
        },
        "id": 74
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawCalculator.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawCalculator": [
              5772
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17214,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17212,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:75"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/DrawCalculator.sol",
              "file": "@pooltogether/v4-core/contracts/DrawCalculator.sol",
              "id": 17213,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17214,
              "sourceUnit": 5773,
              "src": "63:60:75",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:85:75"
        },
        "id": 75
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              9438
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "RingBufferLib": [
              9933
            ]
          },
          "id": 17217,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17215,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:76"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
              "id": 17216,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17217,
              "sourceUnit": 6276,
              "src": "63:69:76",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:94:76"
        },
        "id": 76
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributor.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributor.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributor": [
              8685
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributor": [
              6648
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 17220,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17218,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:77"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
              "file": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
              "id": 17219,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17220,
              "sourceUnit": 6649,
              "src": "63:62:77",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:87:77"
        },
        "id": 77
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Reserve.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Reserve.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "IERC20": [
              663
            ],
            "IReserve": [
              9090
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "Reserve": [
              7104
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 17223,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17221,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:78"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/Reserve.sol",
              "file": "@pooltogether/v4-core/contracts/Reserve.sol",
              "id": 17222,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17223,
              "sourceUnit": 7105,
              "src": "63:53:78",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:78:78"
        },
        "id": 78
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Ticket.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Ticket.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "Context": [
              1570
            ],
            "ControlledToken": [
              3492
            ],
            "Counters": [
              1644
            ],
            "ECDSA": [
              2237
            ],
            "EIP712": [
              2391
            ],
            "ERC20": [
              585
            ],
            "ERC20Permit": [
              857
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ],
            "IERC20Permit": [
              893
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "Strings": [
              1847
            ],
            "Ticket": [
              8103
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17226,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17224,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:79"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/Ticket.sol",
              "file": "@pooltogether/v4-core/contracts/Ticket.sol",
              "id": 17225,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17226,
              "sourceUnit": 8104,
              "src": "63:52:79",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:77:79"
        },
        "id": 79
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DelegateSignature": [
              10705
            ],
            "EIP2612PermitAndDeposit": [
              10908
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IERC20Permit": [
              893
            ],
            "IPrizePool": [
              8967
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "Signature": [
              10699
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17229,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17227,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:80"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol",
              "file": "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol",
              "id": 17228,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17229,
              "sourceUnit": 10909,
              "src": "63:76:80",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:101:80"
        },
        "id": 80
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "ERC165Checker": [
              2593
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC165": [
              2605
            ],
            "IERC20": [
              663
            ],
            "IERC721": [
              1233
            ],
            "IERC721Receiver": [
              1251
            ],
            "IPrizePool": [
              8967
            ],
            "ITicket": [
              9297
            ],
            "IYieldSource": [
              16357
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizePool": [
              11959
            ],
            "ReentrancyGuard": [
              39
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ],
            "YieldSourcePrizePool": [
              12207
            ]
          },
          "id": 17232,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17230,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:81"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol",
              "file": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol",
              "id": 17231,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17232,
              "sourceUnit": 12208,
              "src": "63:77:81",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:102:81"
        },
        "id": 81
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              9517
            ],
            "ICompLike": [
              8121
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "IPrizePool": [
              8967
            ],
            "IPrizeSplit": [
              9043
            ],
            "IStrategy": [
              9104
            ],
            "ITicket": [
              9297
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeSplit": [
              12557
            ],
            "PrizeSplitStrategy": [
              12690
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17235,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17233,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:82"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol",
              "file": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol",
              "id": 17234,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17235,
              "sourceUnit": 12691,
              "src": "63:79:82",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:104:82"
        },
        "id": 82
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/test/ERC20Mintable.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/test/ERC20Mintable.sol",
          "exportedSymbols": {
            "Context": [
              1570
            ],
            "ERC20": [
              585
            ],
            "ERC20Mintable": [
              12756
            ],
            "IERC20": [
              663
            ],
            "IERC20Metadata": [
              688
            ]
          },
          "id": 17238,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17236,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:83"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol",
              "file": "@pooltogether/v4-core/contracts/test/ERC20Mintable.sol",
              "id": 17237,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17238,
              "sourceUnit": 12757,
              "src": "63:64:83",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:89:83"
        },
        "id": 83
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawBeacon": [
              4371
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeTierHistory": [
              15371
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionFactory": [
              13228
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17241,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17239,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:84"
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol",
              "file": "@pooltogether/v4-periphery/contracts/PrizeDistributionFactory.sol",
              "id": 17240,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17241,
              "sourceUnit": 13229,
              "src": "63:75:84",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:100:84"
        },
        "id": 84
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeFlush.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeFlush.sol",
          "exportedSymbols": {
            "IERC20": [
              663
            ],
            "IPrizeFlush": [
              15266
            ],
            "IReserve": [
              9090
            ],
            "IStrategy": [
              9104
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "PrizeFlush": [
              13532
            ]
          },
          "id": 17244,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17242,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:85"
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol",
              "file": "@pooltogether/v4-periphery/contracts/PrizeFlush.sol",
              "id": 17243,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17244,
              "sourceUnit": 13533,
              "src": "63:61:85",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:86:85"
        },
        "id": 85
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawBeacon": [
              4371
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IERC20": [
              663
            ],
            "IPrizeTierHistory": [
              15371
            ],
            "Manageable": [
              3103
            ],
            "Ownable": [
              3258
            ],
            "PrizeTierHistory": [
              14075
            ],
            "RNGInterface": [
              3314
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ]
          },
          "id": 17247,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17245,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:86"
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol",
              "file": "@pooltogether/v4-periphery/contracts/PrizeTierHistory.sol",
              "id": 17246,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17247,
              "sourceUnit": 14076,
              "src": "63:67:86",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:92:86"
        },
        "id": 86
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/TwabRewards.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-periphery/contracts/TwabRewards.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IERC20": [
              663
            ],
            "ITicket": [
              9297
            ],
            "ITwabRewards": [
              15493
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ],
            "TwabRewards": [
              15183
            ]
          },
          "id": 17250,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17248,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:87"
            },
            {
              "absolutePath": "@pooltogether/v4-periphery/contracts/TwabRewards.sol",
              "file": "@pooltogether/v4-periphery/contracts/TwabRewards.sol",
              "id": 17249,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17250,
              "sourceUnit": 15184,
              "src": "63:62:87",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:87:87"
        },
        "id": 87
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "BeaconTimelockTrigger": [
              15584
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IBeaconTimelockTrigger": [
              16199
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributionFactory": [
              16284
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17253,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17251,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:88"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
              "id": 17252,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17253,
              "sourceUnit": 15585,
              "src": "63:72:88",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:97:88"
        },
        "id": 88
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawCalculatorTimelock": [
              15824
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17256,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17254,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:89"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
              "file": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
              "id": 17255,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17256,
              "sourceUnit": 15825,
              "src": "63:73:89",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:98:89"
        },
        "id": 89
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "L1TimelockTrigger": [
              15926
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17259,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17257,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:90"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
              "id": 17258,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17259,
              "sourceUnit": 15927,
              "src": "63:68:90",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:93:90"
        },
        "id": 90
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributor": [
              8685
            ],
            "ITicket": [
              9297
            ],
            "L2TimelockTrigger": [
              16055
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17262,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17260,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:91"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
              "id": 17261,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17262,
              "sourceUnit": 16056,
              "src": "63:68:91",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:93:91"
        },
        "id": 91
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1548
            ],
            "DrawRingBufferLib": [
              9438
            ],
            "ExtendedSafeCastLib": [
              9517
            ],
            "IControlledToken": [
              8160
            ],
            "IDrawBeacon": [
              8332
            ],
            "IDrawBuffer": [
              8409
            ],
            "IDrawCalculator": [
              8482
            ],
            "IDrawCalculatorTimelock": [
              16274
            ],
            "IERC20": [
              663
            ],
            "IPrizeDistributionBuffer": [
              8587
            ],
            "IPrizeDistributionFactory": [
              16284
            ],
            "IPrizeDistributor": [
              8685
            ],
            "IReceiverTimelockTrigger": [
              16323
            ],
            "ITicket": [
              9297
            ],
            "Manageable": [
              3103
            ],
            "ObservationLib": [
              9676
            ],
            "OverflowSafeComparatorLib": [
              9848
            ],
            "Ownable": [
              3258
            ],
            "PrizeDistributionBuffer": [
              6275
            ],
            "PrizeDistributor": [
              6648
            ],
            "RNGInterface": [
              3314
            ],
            "ReceiverTimelockTrigger": [
              16164
            ],
            "RingBufferLib": [
              9933
            ],
            "SafeCast": [
              2998
            ],
            "SafeERC20": [
              1117
            ],
            "TwabLib": [
              10683
            ]
          },
          "id": 17265,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17263,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:92"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
              "id": 17264,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17265,
              "sourceUnit": 16165,
              "src": "63:74:92",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:99:92"
        },
        "id": 92
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
          "exportedSymbols": {
            "ERC20": [
              16915
            ],
            "ERC20Mintable": [
              16988
            ],
            "IYieldSource": [
              16357
            ],
            "MockYieldSource": [
              17204
            ]
          },
          "id": 17268,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17266,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:93"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
              "file": "@pooltogether/yield-source-interface/contracts/test/MockYieldSource.sol",
              "id": 17267,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17268,
              "sourceUnit": 17205,
              "src": "63:81:93",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:106:93"
        },
        "id": 93
      }
    }
  }
}
